├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── dragSetUI.R ├── dragUI.R ├── dropUI.R ├── shinyDND.R └── util.R ├── README.md ├── inst ├── examples │ └── app.R └── www │ ├── dragndrop.css │ └── dragndrop.js ├── man ├── dragSetUI.Rd ├── dragUI.Rd ├── dropUI.Rd └── shinyDND.Rd ├── rsconnect └── shinyapps.io │ └── ayayron │ └── dragndrop.dcf └── shinydnd.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .Rproj.user 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: r 2 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/NEWS -------------------------------------------------------------------------------- /R/dragSetUI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/R/dragSetUI.R -------------------------------------------------------------------------------- /R/dragUI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/R/dragUI.R -------------------------------------------------------------------------------- /R/dropUI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/R/dropUI.R -------------------------------------------------------------------------------- /R/shinyDND.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/R/shinyDND.R -------------------------------------------------------------------------------- /R/util.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/R/util.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/README.md -------------------------------------------------------------------------------- /inst/examples/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/inst/examples/app.R -------------------------------------------------------------------------------- /inst/www/dragndrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/inst/www/dragndrop.css -------------------------------------------------------------------------------- /inst/www/dragndrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/inst/www/dragndrop.js -------------------------------------------------------------------------------- /man/dragSetUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/man/dragSetUI.Rd -------------------------------------------------------------------------------- /man/dragUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/man/dragUI.Rd -------------------------------------------------------------------------------- /man/dropUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/man/dropUI.Rd -------------------------------------------------------------------------------- /man/shinyDND.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/man/shinyDND.Rd -------------------------------------------------------------------------------- /rsconnect/shinyapps.io/ayayron/dragndrop.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/rsconnect/shinyapps.io/ayayron/dragndrop.dcf -------------------------------------------------------------------------------- /shinydnd.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayayron/shinydnd/HEAD/shinydnd.Rproj --------------------------------------------------------------------------------