├── .Rbuildignore ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── quickform.R ├── quickformHelpers.R └── shinyform.R ├── README.md ├── man ├── createFormApp.Rd ├── formServer.Rd ├── formUI.Rd └── quickform.Rd └── tests ├── quickform-test-app ├── app.R └── tests │ ├── shinytest.R │ └── shinytest │ ├── quickform-test-launch-expected │ ├── 001.json │ └── 001.png │ └── quickform-test-launch.R ├── testthat.R └── testthat ├── testQuickform.R ├── testcreateFormApp.R ├── testformServer.R └── testformUI.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: Dean Attali 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/quickform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/R/quickform.R -------------------------------------------------------------------------------- /R/quickformHelpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/R/quickformHelpers.R -------------------------------------------------------------------------------- /R/shinyform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/R/shinyform.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/README.md -------------------------------------------------------------------------------- /man/createFormApp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/man/createFormApp.Rd -------------------------------------------------------------------------------- /man/formServer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/man/formServer.Rd -------------------------------------------------------------------------------- /man/formUI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/man/formUI.Rd -------------------------------------------------------------------------------- /man/quickform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/man/quickform.Rd -------------------------------------------------------------------------------- /tests/quickform-test-app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/quickform-test-app/app.R -------------------------------------------------------------------------------- /tests/quickform-test-app/tests/shinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/quickform-test-app/tests/shinytest.R -------------------------------------------------------------------------------- /tests/quickform-test-app/tests/shinytest/quickform-test-launch-expected/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/quickform-test-app/tests/shinytest/quickform-test-launch-expected/001.json -------------------------------------------------------------------------------- /tests/quickform-test-app/tests/shinytest/quickform-test-launch-expected/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/quickform-test-app/tests/shinytest/quickform-test-launch-expected/001.png -------------------------------------------------------------------------------- /tests/quickform-test-app/tests/shinytest/quickform-test-launch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/quickform-test-app/tests/shinytest/quickform-test-launch.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/testQuickform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/testthat/testQuickform.R -------------------------------------------------------------------------------- /tests/testthat/testcreateFormApp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/testthat/testcreateFormApp.R -------------------------------------------------------------------------------- /tests/testthat/testformServer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/testthat/testformServer.R -------------------------------------------------------------------------------- /tests/testthat/testformUI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daattali/shinyforms/HEAD/tests/testthat/testformUI.R --------------------------------------------------------------------------------