├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── ability.R ├── active.R ├── class.R ├── dataDim.R ├── dataStr.R ├── dataViewer.R ├── event.R ├── filterDf.R ├── filterVar.R ├── importData.R ├── load_jstools.R ├── onLoad.R ├── shiny-utils.R ├── tingle-modal.R ├── toogle.R ├── utils.R └── zz_utils.R ├── README.Rmd ├── README.md ├── inst ├── shinytools_logo.svg └── static │ ├── assets │ └── tingle │ │ ├── LICENSE.txt │ │ ├── tingle-bindings.js │ │ ├── tingle.min.css │ │ └── tingle.min.js │ └── js │ └── shinytools.js ├── man ├── ability.Rd ├── activate.Rd ├── char2fact.Rd ├── click_event.Rd ├── default_disabled.Rd ├── fact2char.Rd ├── filterData.Rd ├── html_class.Rd ├── html_toogle.Rd ├── importData.Rd ├── load_jstools.Rd └── tingle-modal.Rd └── shinytools.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | # shinytools 0.1.0 2 | 3 | -------------------------------------------------------------------------------- /R/ability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/ability.R -------------------------------------------------------------------------------- /R/active.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/active.R -------------------------------------------------------------------------------- /R/class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/class.R -------------------------------------------------------------------------------- /R/dataDim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/dataDim.R -------------------------------------------------------------------------------- /R/dataStr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/dataStr.R -------------------------------------------------------------------------------- /R/dataViewer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/dataViewer.R -------------------------------------------------------------------------------- /R/event.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/event.R -------------------------------------------------------------------------------- /R/filterDf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/filterDf.R -------------------------------------------------------------------------------- /R/filterVar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/filterVar.R -------------------------------------------------------------------------------- /R/importData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/importData.R -------------------------------------------------------------------------------- /R/load_jstools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/load_jstools.R -------------------------------------------------------------------------------- /R/onLoad.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/onLoad.R -------------------------------------------------------------------------------- /R/shiny-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/shiny-utils.R -------------------------------------------------------------------------------- /R/tingle-modal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/tingle-modal.R -------------------------------------------------------------------------------- /R/toogle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/toogle.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zz_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/R/zz_utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/README.md -------------------------------------------------------------------------------- /inst/shinytools_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/inst/shinytools_logo.svg -------------------------------------------------------------------------------- /inst/static/assets/tingle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/inst/static/assets/tingle/LICENSE.txt -------------------------------------------------------------------------------- /inst/static/assets/tingle/tingle-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/inst/static/assets/tingle/tingle-bindings.js -------------------------------------------------------------------------------- /inst/static/assets/tingle/tingle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/inst/static/assets/tingle/tingle.min.css -------------------------------------------------------------------------------- /inst/static/assets/tingle/tingle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/inst/static/assets/tingle/tingle.min.js -------------------------------------------------------------------------------- /inst/static/js/shinytools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/inst/static/js/shinytools.js -------------------------------------------------------------------------------- /man/ability.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/ability.Rd -------------------------------------------------------------------------------- /man/activate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/activate.Rd -------------------------------------------------------------------------------- /man/char2fact.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/char2fact.Rd -------------------------------------------------------------------------------- /man/click_event.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/click_event.Rd -------------------------------------------------------------------------------- /man/default_disabled.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/default_disabled.Rd -------------------------------------------------------------------------------- /man/fact2char.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/fact2char.Rd -------------------------------------------------------------------------------- /man/filterData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/filterData.Rd -------------------------------------------------------------------------------- /man/html_class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/html_class.Rd -------------------------------------------------------------------------------- /man/html_toogle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/html_toogle.Rd -------------------------------------------------------------------------------- /man/importData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/importData.Rd -------------------------------------------------------------------------------- /man/load_jstools.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/load_jstools.Rd -------------------------------------------------------------------------------- /man/tingle-modal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/man/tingle-modal.Rd -------------------------------------------------------------------------------- /shinytools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardata-fr/shinytools/HEAD/shinytools.Rproj --------------------------------------------------------------------------------