├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── boilerplates.R ├── boxes.R ├── deps.R ├── gentelellaBody.R ├── gentelellaFooter.R ├── gentelellaGallery.R ├── gentelellaNavbar.R ├── gentelellaPage.R ├── gentelellaPageCustom.R ├── gentelellaSidebar.R ├── tabs.R ├── tracking.R └── useful-items.R ├── README.md ├── gentelellaShiny.Rproj ├── inst ├── .DS_Store ├── animate-3.5.0 │ └── animate.min.css ├── bootstrap-3.3.7 │ ├── bootstrap.min.css │ └── bootstrap.min.js ├── easypiechart-2.1.6 │ └── easypiechart.min.js ├── example │ └── app.R ├── fontawesome-4.6.3 │ └── font-awesome.min.css ├── gentelella-1.5.0 │ ├── custom.min.css │ ├── custom.min.js │ └── init.js ├── img │ ├── btn_google_signin_light_normal_web.png │ └── gentellaShinyGA.png ├── progress-1.0.0 │ ├── progress.min.css │ └── progress.min.js ├── smartwizard-3.3.1 │ └── wizard.js ├── templates │ └── main.html └── www │ ├── custom.min.css │ ├── custom.min.js │ └── login.html └── man ├── activityItem.Rd ├── activityList.Rd ├── alert.Rd ├── box.Rd ├── boxWidget.Rd ├── contactBox.Rd ├── dashboard_box.Rd ├── gentelellaBody.Rd ├── gentelellaFooter.Rd ├── gentelellaGallery.Rd ├── gentelellaNavbar.Rd ├── gentelellaPage.Rd ├── gentelellaPageCustom.Rd ├── gentelellaSidebar.Rd ├── graph_box.Rd ├── jumbotron.Rd ├── label.Rd ├── navbarBoilerPlate.Rd ├── notif.Rd ├── notifItem.Rd ├── pieChart.Rd ├── progressBar.Rd ├── quickList.Rd ├── quickListItem.Rd ├── ribbonBox.Rd ├── sideBarElement.Rd ├── sidebarDate.Rd ├── sidebarItem.Rd ├── sidebarMenu.Rd ├── sidebarProfile.Rd ├── socialBox.Rd ├── socialStats.Rd ├── socialStatsItem.Rd ├── tabItem.Rd ├── tabItems.Rd ├── tabPanel.Rd ├── tabPill.Rd ├── tabSetPanel.Rd ├── tabSetPill.Rd ├── tileCountElement.Rd ├── tileCountRow.Rd ├── tileCountUI.Rd ├── timeline.Rd ├── timelineItem.Rd ├── trackingTags.Rd ├── updateTileCount.Rd ├── userList.Rd ├── userListItem.Rd └── valueBox.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/boilerplates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/boilerplates.R -------------------------------------------------------------------------------- /R/boxes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/boxes.R -------------------------------------------------------------------------------- /R/deps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/deps.R -------------------------------------------------------------------------------- /R/gentelellaBody.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/gentelellaBody.R -------------------------------------------------------------------------------- /R/gentelellaFooter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/gentelellaFooter.R -------------------------------------------------------------------------------- /R/gentelellaGallery.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/gentelellaGallery.R -------------------------------------------------------------------------------- /R/gentelellaNavbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/gentelellaNavbar.R -------------------------------------------------------------------------------- /R/gentelellaPage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/gentelellaPage.R -------------------------------------------------------------------------------- /R/gentelellaPageCustom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/gentelellaPageCustom.R -------------------------------------------------------------------------------- /R/gentelellaSidebar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/gentelellaSidebar.R -------------------------------------------------------------------------------- /R/tabs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/tabs.R -------------------------------------------------------------------------------- /R/tracking.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/tracking.R -------------------------------------------------------------------------------- /R/useful-items.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/R/useful-items.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/README.md -------------------------------------------------------------------------------- /gentelellaShiny.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/gentelellaShiny.Rproj -------------------------------------------------------------------------------- /inst/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/.DS_Store -------------------------------------------------------------------------------- /inst/animate-3.5.0/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/animate-3.5.0/animate.min.css -------------------------------------------------------------------------------- /inst/bootstrap-3.3.7/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/bootstrap-3.3.7/bootstrap.min.css -------------------------------------------------------------------------------- /inst/bootstrap-3.3.7/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/bootstrap-3.3.7/bootstrap.min.js -------------------------------------------------------------------------------- /inst/easypiechart-2.1.6/easypiechart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/easypiechart-2.1.6/easypiechart.min.js -------------------------------------------------------------------------------- /inst/example/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/example/app.R -------------------------------------------------------------------------------- /inst/fontawesome-4.6.3/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/fontawesome-4.6.3/font-awesome.min.css -------------------------------------------------------------------------------- /inst/gentelella-1.5.0/custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/gentelella-1.5.0/custom.min.css -------------------------------------------------------------------------------- /inst/gentelella-1.5.0/custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/gentelella-1.5.0/custom.min.js -------------------------------------------------------------------------------- /inst/gentelella-1.5.0/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/gentelella-1.5.0/init.js -------------------------------------------------------------------------------- /inst/img/btn_google_signin_light_normal_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/img/btn_google_signin_light_normal_web.png -------------------------------------------------------------------------------- /inst/img/gentellaShinyGA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/img/gentellaShinyGA.png -------------------------------------------------------------------------------- /inst/progress-1.0.0/progress.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/progress-1.0.0/progress.min.css -------------------------------------------------------------------------------- /inst/progress-1.0.0/progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/progress-1.0.0/progress.min.js -------------------------------------------------------------------------------- /inst/smartwizard-3.3.1/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/smartwizard-3.3.1/wizard.js -------------------------------------------------------------------------------- /inst/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/templates/main.html -------------------------------------------------------------------------------- /inst/www/custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/www/custom.min.css -------------------------------------------------------------------------------- /inst/www/custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/www/custom.min.js -------------------------------------------------------------------------------- /inst/www/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/inst/www/login.html -------------------------------------------------------------------------------- /man/activityItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/activityItem.Rd -------------------------------------------------------------------------------- /man/activityList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/activityList.Rd -------------------------------------------------------------------------------- /man/alert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/alert.Rd -------------------------------------------------------------------------------- /man/box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/box.Rd -------------------------------------------------------------------------------- /man/boxWidget.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/boxWidget.Rd -------------------------------------------------------------------------------- /man/contactBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/contactBox.Rd -------------------------------------------------------------------------------- /man/dashboard_box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/dashboard_box.Rd -------------------------------------------------------------------------------- /man/gentelellaBody.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/gentelellaBody.Rd -------------------------------------------------------------------------------- /man/gentelellaFooter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/gentelellaFooter.Rd -------------------------------------------------------------------------------- /man/gentelellaGallery.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/gentelellaGallery.Rd -------------------------------------------------------------------------------- /man/gentelellaNavbar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/gentelellaNavbar.Rd -------------------------------------------------------------------------------- /man/gentelellaPage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/gentelellaPage.Rd -------------------------------------------------------------------------------- /man/gentelellaPageCustom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/gentelellaPageCustom.Rd -------------------------------------------------------------------------------- /man/gentelellaSidebar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/gentelellaSidebar.Rd -------------------------------------------------------------------------------- /man/graph_box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/graph_box.Rd -------------------------------------------------------------------------------- /man/jumbotron.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/jumbotron.Rd -------------------------------------------------------------------------------- /man/label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/label.Rd -------------------------------------------------------------------------------- /man/navbarBoilerPlate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/navbarBoilerPlate.Rd -------------------------------------------------------------------------------- /man/notif.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/notif.Rd -------------------------------------------------------------------------------- /man/notifItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/notifItem.Rd -------------------------------------------------------------------------------- /man/pieChart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/pieChart.Rd -------------------------------------------------------------------------------- /man/progressBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/progressBar.Rd -------------------------------------------------------------------------------- /man/quickList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/quickList.Rd -------------------------------------------------------------------------------- /man/quickListItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/quickListItem.Rd -------------------------------------------------------------------------------- /man/ribbonBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/ribbonBox.Rd -------------------------------------------------------------------------------- /man/sideBarElement.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/sideBarElement.Rd -------------------------------------------------------------------------------- /man/sidebarDate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/sidebarDate.Rd -------------------------------------------------------------------------------- /man/sidebarItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/sidebarItem.Rd -------------------------------------------------------------------------------- /man/sidebarMenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/sidebarMenu.Rd -------------------------------------------------------------------------------- /man/sidebarProfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/sidebarProfile.Rd -------------------------------------------------------------------------------- /man/socialBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/socialBox.Rd -------------------------------------------------------------------------------- /man/socialStats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/socialStats.Rd -------------------------------------------------------------------------------- /man/socialStatsItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/socialStatsItem.Rd -------------------------------------------------------------------------------- /man/tabItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tabItem.Rd -------------------------------------------------------------------------------- /man/tabItems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tabItems.Rd -------------------------------------------------------------------------------- /man/tabPanel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tabPanel.Rd -------------------------------------------------------------------------------- /man/tabPill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tabPill.Rd -------------------------------------------------------------------------------- /man/tabSetPanel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tabSetPanel.Rd -------------------------------------------------------------------------------- /man/tabSetPill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tabSetPill.Rd -------------------------------------------------------------------------------- /man/tileCountElement.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tileCountElement.Rd -------------------------------------------------------------------------------- /man/tileCountRow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tileCountRow.Rd -------------------------------------------------------------------------------- /man/tileCountUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/tileCountUI.Rd -------------------------------------------------------------------------------- /man/timeline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/timeline.Rd -------------------------------------------------------------------------------- /man/timelineItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/timelineItem.Rd -------------------------------------------------------------------------------- /man/trackingTags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/trackingTags.Rd -------------------------------------------------------------------------------- /man/updateTileCount.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/updateTileCount.Rd -------------------------------------------------------------------------------- /man/userList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/userList.Rd -------------------------------------------------------------------------------- /man/userListItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/userListItem.Rd -------------------------------------------------------------------------------- /man/valueBox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/gentelellaShiny/HEAD/man/valueBox.Rd --------------------------------------------------------------------------------