├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── addins.R ├── deps.R ├── html_document.R ├── html_document_js4shiny.R ├── html_document_plain.R ├── js4shiny-package.R ├── knitr.R ├── mdn.R ├── repl.R ├── snippets.R ├── utils-pipe.R ├── utils.R └── zzz.R ├── README.md ├── data-raw ├── .gitignore ├── README.md ├── books-first-sentences.R ├── build_sass.R ├── color_palette.R ├── js4shiny-xaringan-theme.R ├── us-cities-geocodes.csv └── us-cities-ranked-2019.R ├── data ├── first_sentences.rda └── us_cities_ranked.rda ├── inst ├── css │ ├── _variables.css │ └── tachyons.min.css ├── examples │ ├── .gitignore │ ├── css │ │ ├── css-aim │ │ │ ├── index.html │ │ │ ├── registry.yml │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── css-animation │ │ │ ├── animation-by-transition.Rmd │ │ │ └── registry.yml │ │ ├── css-basics │ │ │ ├── css-basics-appearance.Rmd │ │ │ ├── css-variables.Rmd │ │ │ └── registry.yml │ │ ├── css-box-size │ │ │ ├── box-size.ddfc4a3a.css │ │ │ ├── box-size.ddfc4a3a.css.map │ │ │ ├── boxSize.0f6b37c6.js │ │ │ ├── boxSize.0f6b37c6.js.map │ │ │ ├── boxSize.9e0d5c8b.css │ │ │ ├── boxSize.9e0d5c8b.css.map │ │ │ ├── index.html │ │ │ └── registry.yml │ │ ├── css-intermediate │ │ │ ├── css-box-sizing.Rmd │ │ │ ├── css-padding-border-margin.Rmd │ │ │ ├── css-pseudo-classes.Rmd │ │ │ ├── css-pseudo-elements.Rmd │ │ │ └── registry.yml │ │ ├── css-position │ │ │ ├── css-position-01-static.Rmd │ │ │ ├── css-position-02-relative.Rmd │ │ │ ├── css-position-03-absolute.Rmd │ │ │ ├── css-position-04-absolutely-sure.Rmd │ │ │ ├── css-position-05-fixed.Rmd │ │ │ ├── css-position-06-absolutely-relative.Rmd │ │ │ ├── css-position-07-sticky.Rmd │ │ │ └── registry.yml │ │ ├── css-selectors │ │ │ ├── css-selectors-01.Rmd │ │ │ ├── css-selectors-02.Rmd │ │ │ ├── css-selectors-03.Rmd │ │ │ ├── css-selectors-04.Rmd │ │ │ ├── css-selectors-05.Rmd │ │ │ ├── css-selectors-06.Rmd │ │ │ └── registry.yml │ │ ├── css-specificity │ │ │ ├── css-specificity-01.Rmd │ │ │ ├── css-specificity-02.Rmd │ │ │ ├── css-specificity-03.Rmd │ │ │ ├── css-specificity-04.Rmd │ │ │ ├── css-specificity-bookdown.Rmd │ │ │ └── registry.yml │ │ ├── css-units │ │ │ ├── css-units-01.Rmd │ │ │ ├── css-units-02.Rmd │ │ │ ├── css-units-03.Rmd │ │ │ ├── css-units-04.Rmd │ │ │ ├── css-units-05.Rmd │ │ │ └── registry.yml │ │ └── registry.yml │ ├── html │ │ ├── bootstrap │ │ │ ├── bootstrap-columns-demo.Rmd │ │ │ ├── bootstrap-columns-push.Rmd │ │ │ ├── bootstrap-component-buttons.Rmd │ │ │ ├── bootstrap-component-progress.Rmd │ │ │ ├── bootstrap-component-progress_solution.Rmd │ │ │ └── registry.yml │ │ ├── dom-tabs │ │ │ ├── dom-tabs-01.Rmd │ │ │ ├── dom-tabs-02.Rmd │ │ │ ├── dom-tabs-03.Rmd │ │ │ ├── dom-tabs-04.Rmd │ │ │ └── rmd-content.Rmd.source │ │ ├── first-page │ │ │ ├── first-page-00 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-01 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-02 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-03 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-04 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-05 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-06 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-07 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-08 │ │ │ │ ├── index.html │ │ │ │ └── registry.yml │ │ │ ├── first-page-09 │ │ │ │ ├── index.html │ │ │ │ ├── registry.yml │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ └── registry.yml │ │ ├── pkg-calendar-part-1.Rmd │ │ ├── pkg-calendar-part-2.Rmd │ │ ├── pkg-calendar │ │ │ ├── index.html │ │ │ └── registry.yml │ │ └── registry.yml │ ├── javascript │ │ ├── are-we-there-yet.Rmd │ │ ├── array-methods │ │ │ ├── count-letters.Rmd │ │ │ ├── filter-high-points.Rmd │ │ │ ├── for-loop-to-for-each.Rmd │ │ │ ├── mapping-words-1.Rmd │ │ │ ├── mapping-words-2.Rmd │ │ │ ├── mapping-words-3.Rmd │ │ │ ├── registry.yml │ │ │ ├── scrabble-forEach-word.Rmd │ │ │ ├── scrabble-map-word.Rmd │ │ │ ├── scrabble-reduce-rearrange.Rmd │ │ │ ├── scrabble-reduce-total.Rmd │ │ │ └── scrabble.Rmd │ │ ├── arrays-and-objects │ │ │ ├── compare-two-objects.Rmd │ │ │ ├── for-loop-object-ref.Rmd │ │ │ ├── for-loop-sum-array.Rmd │ │ │ ├── for-loop-sum-series.Rmd │ │ │ ├── registry.yml │ │ │ └── spread-node-element.Rmd │ │ ├── cardio │ │ │ ├── cardio-sorting-1.Rmd │ │ │ ├── cardio-sorting-2.Rmd │ │ │ ├── cardio-sorting-3.Rmd │ │ │ ├── cardio-sorting-4.Rmd │ │ │ ├── cardio-sorting-5.Rmd │ │ │ └── registry.yml │ │ ├── events │ │ │ ├── browser-event-types.Rmd │ │ │ ├── event-bubbling-animated.Rmd │ │ │ ├── event-bubbling.Rmd │ │ │ └── registry.yml │ │ ├── functions │ │ │ ├── limits-of-array-1.Rmd │ │ │ ├── limits-of-array-2.Rmd │ │ │ └── registry.yml │ │ ├── if-else-game-over.Rmd │ │ ├── json │ │ │ ├── reformat-r2js-data.Rmd │ │ │ └── registry.yml │ │ ├── r-in-js │ │ │ ├── r-js-duplicated.Rmd │ │ │ ├── r-js-mean-for.Rmd │ │ │ ├── r-js-mean-reduce.Rmd │ │ │ ├── r-js-runif-1.Rmd │ │ │ ├── r-js-runif-2.Rmd │ │ │ ├── r-js-sample.Rmd │ │ │ ├── r-js-seq-along.Rmd │ │ │ ├── r-js-seq.Rmd │ │ │ ├── r-js-table.Rmd │ │ │ ├── r-js-unique.Rmd │ │ │ └── registry.yml │ │ ├── registry.yml │ │ ├── scope │ │ │ ├── one-time-only.Rmd │ │ │ └── registry.yml │ │ ├── strings │ │ │ ├── registry.yml │ │ │ ├── ride-share-fares.Rmd │ │ │ ├── strings-in-for-loops.Rmd │ │ │ └── toTitleCase.Rmd │ │ ├── this │ │ │ ├── arrow-method-this.Rmd │ │ │ ├── registry.yml │ │ │ ├── this-counter.Rmd │ │ │ └── this-simple.Rmd │ │ └── truthy-falsy.Rmd │ ├── motivate │ │ ├── 01-feedback-color.Rmd │ │ ├── 02-feedback-icon-animation.Rmd │ │ ├── 03-feedback-animation-wiggle.Rmd │ │ ├── 04-feedback-update-text.Rmd │ │ ├── 05-control-focus.Rmd │ │ ├── 06-control-keyboard-events.Rmd │ │ ├── 07-design-add-content.Rmd │ │ ├── 08-design-rewrite.Rmd │ │ ├── 09-jslib-typerjs.Rmd │ │ ├── 10-jslib-frappe-charts.Rmd │ │ ├── 11-jslib-frappe-charts-extended.Rmd │ │ └── registry.yml │ └── shiny │ │ ├── drumkit-apps │ │ ├── drumkit-1 │ │ │ ├── index.html │ │ │ └── registry.yml │ │ ├── drumkit-2 │ │ │ ├── index.html │ │ │ └── registry.yml │ │ ├── drumkit-3 │ │ │ ├── index.html │ │ │ └── registry.yml │ │ ├── drumkit-4 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── drumkit-5 │ │ │ ├── app.R │ │ │ ├── drumkit.svg │ │ │ └── registry.yml │ │ ├── drumkit-6 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── drumkit-7 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ └── registry.yml │ │ ├── frappe-chart-apps │ │ ├── frappe-chart-basic │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── frappe-chart-full │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── frappe-chart-starter │ │ │ ├── app.R │ │ │ └── registry.yml │ │ └── registry.yml │ │ ├── registry.yml │ │ ├── shiny-animate │ │ ├── registry.yml │ │ ├── shiny-animate-1 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-animate-2 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ └── shiny-animate-3 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-browser-time │ │ ├── registry.yml │ │ ├── shiny-browser-time-01 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-browser-time-02 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-browser-time-03 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ └── shiny-browser-time-04 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-demo-apps │ │ ├── registry.yml │ │ └── shiny-starter-app │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-event │ │ ├── registry.yml │ │ ├── shiny-event-1 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-event-2 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-event-3 │ │ │ ├── app.R │ │ │ ├── registry.yml │ │ │ └── style.css │ │ └── shiny-event-4 │ │ │ ├── app.R │ │ │ ├── registry.yml │ │ │ └── style.css │ │ ├── shiny-messages │ │ ├── registry.yml │ │ ├── shiny-messages-1 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-messages-2 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ └── shiny-messages-3 │ │ │ ├── app.R │ │ │ └── registry.yml │ │ ├── shiny-setInputValue │ │ ├── app.R │ │ └── registry.yml │ │ └── shiny-typing │ │ ├── registry.yml │ │ ├── shiny-typing-01 │ │ ├── app.R │ │ └── registry.yml │ │ ├── shiny-typing-02 │ │ ├── app.R │ │ ├── registry.yml │ │ └── typing.js │ │ ├── shiny-typing-03 │ │ ├── app.R │ │ ├── registry.yml │ │ └── typing.js │ │ ├── shiny-typing-04 │ │ ├── app.R │ │ ├── registry.yml │ │ └── typing.js │ │ └── shiny-typing-05 │ │ ├── app.R │ │ ├── module_typingStats.R │ │ ├── registry.yml │ │ └── typing.js ├── json │ └── first-sentences.json ├── mdn-addin │ ├── mdn-logo.svg │ ├── mdn.css │ └── mdn.js ├── redirect │ ├── jslog.css │ └── redirectConsoleLog.js ├── repl │ ├── blank.Rmd │ ├── loading.svg │ ├── repl-child-redirect.js │ ├── repl-child.css │ ├── repl.css │ └── repl.js ├── rmarkdown │ └── templates │ │ ├── html-document-js │ │ ├── skeleton │ │ │ └── skeleton.Rmd │ │ └── template.yaml │ │ ├── html-document-plain │ │ ├── skeleton │ │ │ └── skeleton.Rmd │ │ └── template.yaml │ │ └── js4shiny-xaringan │ │ ├── skeleton │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── animate.css │ │ │ │ ├── js4shiny-xaringan-base.css │ │ │ │ ├── js4shiny-xaringan-extra.css │ │ │ │ └── tachyons.min.css │ │ │ ├── html │ │ │ │ └── js4shiny-includes.html │ │ │ └── js │ │ │ │ └── remark-latest.min.js │ │ └── skeleton.Rmd │ │ └── template.yaml ├── rstudio │ └── addins.dcf ├── snippets │ ├── css.snippets │ ├── html.snippets │ ├── javascript.snippets │ ├── markdown.snippets │ └── r.snippets ├── template-html │ ├── color-palette.pdf │ ├── css │ │ ├── _google-fonts.css │ │ ├── _variables-fonts.css │ │ ├── _variables.css │ │ ├── code.css │ │ ├── colors.css │ │ ├── colors.scss │ │ ├── pandoc-line-numbers.css │ │ ├── stylize.css │ │ ├── table.css │ │ └── utility.css │ ├── js4shiny.html │ ├── jsonview │ │ ├── jsonview.css │ │ └── jsonview.min.js │ └── stylize.css └── template-plain │ ├── normalize.css │ └── plain-template.html ├── js4shiny.Rproj ├── man ├── figures │ └── logo.png ├── first_sentences.Rd ├── html_dependency_js4shiny.Rd ├── html_document_js.Rd ├── html_document_js4shiny.Rd ├── html_document_plain.Rd ├── html_setup.Rd ├── js4shiny-package.Rd ├── js4shiny_rmd.Rd ├── knitr_js_engine.Rd ├── launch_shiny_in.Rd ├── lint_js_addin.Rd ├── live_preview.Rd ├── mdn_search.Rd ├── pipe.Rd ├── register_knitr.Rd ├── repl.Rd ├── snippets_install.Rd └── us_cities_ranked.Rd ├── pkgdown ├── _pkgdown.yml ├── extra.css └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── manual │ ├── .gitignore │ ├── repl │ │ └── test-initial-solution-rules.Rmd │ └── rmd-test │ │ └── test.Rmd ├── testthat.R └── testthat │ ├── html-engine │ └── html-engine.Rmd │ ├── register │ └── register.Rmd │ ├── test-addins.R │ ├── test-html_document.R │ ├── test-html_document_plain.R │ ├── test-knitr.R │ ├── test-repl.R │ └── test-utils.R └── vignettes ├── .gitignore └── literate-javascript.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Garrick Aden-Buie 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/addins.R -------------------------------------------------------------------------------- /R/deps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/deps.R -------------------------------------------------------------------------------- /R/html_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/html_document.R -------------------------------------------------------------------------------- /R/html_document_js4shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/html_document_js4shiny.R -------------------------------------------------------------------------------- /R/html_document_plain.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/html_document_plain.R -------------------------------------------------------------------------------- /R/js4shiny-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/js4shiny-package.R -------------------------------------------------------------------------------- /R/knitr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/knitr.R -------------------------------------------------------------------------------- /R/mdn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/mdn.R -------------------------------------------------------------------------------- /R/repl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/repl.R -------------------------------------------------------------------------------- /R/snippets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/snippets.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/.gitignore: -------------------------------------------------------------------------------- 1 | us-cities-ranked-2019.xlsx 2 | -------------------------------------------------------------------------------- /data-raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data-raw/README.md -------------------------------------------------------------------------------- /data-raw/books-first-sentences.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data-raw/books-first-sentences.R -------------------------------------------------------------------------------- /data-raw/build_sass.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data-raw/build_sass.R -------------------------------------------------------------------------------- /data-raw/color_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data-raw/color_palette.R -------------------------------------------------------------------------------- /data-raw/js4shiny-xaringan-theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data-raw/js4shiny-xaringan-theme.R -------------------------------------------------------------------------------- /data-raw/us-cities-geocodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data-raw/us-cities-geocodes.csv -------------------------------------------------------------------------------- /data-raw/us-cities-ranked-2019.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data-raw/us-cities-ranked-2019.R -------------------------------------------------------------------------------- /data/first_sentences.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data/first_sentences.rda -------------------------------------------------------------------------------- /data/us_cities_ranked.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/data/us_cities_ranked.rda -------------------------------------------------------------------------------- /inst/css/_variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/css/_variables.css -------------------------------------------------------------------------------- /inst/css/tachyons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/css/tachyons.min.css -------------------------------------------------------------------------------- /inst/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/.gitignore -------------------------------------------------------------------------------- /inst/examples/css/css-aim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-aim/index.html -------------------------------------------------------------------------------- /inst/examples/css/css-aim/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-aim/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-aim/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-aim/script.js -------------------------------------------------------------------------------- /inst/examples/css/css-aim/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-aim/style.css -------------------------------------------------------------------------------- /inst/examples/css/css-animation/animation-by-transition.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-animation/animation-by-transition.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-animation/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-animation/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-basics/css-basics-appearance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-basics/css-basics-appearance.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-basics/css-variables.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-basics/css-variables.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-basics/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-basics/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/box-size.ddfc4a3a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/box-size.ddfc4a3a.css -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/box-size.ddfc4a3a.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/box-size.ddfc4a3a.css.map -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/boxSize.0f6b37c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/boxSize.0f6b37c6.js -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/boxSize.0f6b37c6.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/boxSize.0f6b37c6.js.map -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/boxSize.9e0d5c8b.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/boxSize.9e0d5c8b.css -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/boxSize.9e0d5c8b.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/boxSize.9e0d5c8b.css.map -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/index.html -------------------------------------------------------------------------------- /inst/examples/css/css-box-size/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-box-size/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-intermediate/css-box-sizing.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-intermediate/css-box-sizing.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-intermediate/css-padding-border-margin.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-intermediate/css-padding-border-margin.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-intermediate/css-pseudo-classes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-intermediate/css-pseudo-classes.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-intermediate/css-pseudo-elements.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-intermediate/css-pseudo-elements.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-intermediate/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-intermediate/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-position/css-position-01-static.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/css-position-01-static.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-position/css-position-02-relative.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/css-position-02-relative.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-position/css-position-03-absolute.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/css-position-03-absolute.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-position/css-position-04-absolutely-sure.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/css-position-04-absolutely-sure.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-position/css-position-05-fixed.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/css-position-05-fixed.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-position/css-position-06-absolutely-relative.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/css-position-06-absolutely-relative.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-position/css-position-07-sticky.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/css-position-07-sticky.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-position/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-position/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-selectors/css-selectors-01.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-selectors/css-selectors-01.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-selectors/css-selectors-02.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-selectors/css-selectors-02.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-selectors/css-selectors-03.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-selectors/css-selectors-03.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-selectors/css-selectors-04.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-selectors/css-selectors-04.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-selectors/css-selectors-05.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-selectors/css-selectors-05.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-selectors/css-selectors-06.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-selectors/css-selectors-06.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-selectors/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-selectors/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-specificity/css-specificity-01.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-specificity/css-specificity-01.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-specificity/css-specificity-02.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-specificity/css-specificity-02.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-specificity/css-specificity-03.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-specificity/css-specificity-03.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-specificity/css-specificity-04.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-specificity/css-specificity-04.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-specificity/css-specificity-bookdown.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-specificity/css-specificity-bookdown.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-specificity/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-specificity/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/css-units/css-units-01.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-units/css-units-01.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-units/css-units-02.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-units/css-units-02.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-units/css-units-03.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-units/css-units-03.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-units/css-units-04.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-units/css-units-04.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-units/css-units-05.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-units/css-units-05.Rmd -------------------------------------------------------------------------------- /inst/examples/css/css-units/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/css-units/registry.yml -------------------------------------------------------------------------------- /inst/examples/css/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/css/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/bootstrap/bootstrap-columns-demo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/bootstrap/bootstrap-columns-demo.Rmd -------------------------------------------------------------------------------- /inst/examples/html/bootstrap/bootstrap-columns-push.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/bootstrap/bootstrap-columns-push.Rmd -------------------------------------------------------------------------------- /inst/examples/html/bootstrap/bootstrap-component-buttons.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/bootstrap/bootstrap-component-buttons.Rmd -------------------------------------------------------------------------------- /inst/examples/html/bootstrap/bootstrap-component-progress.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/bootstrap/bootstrap-component-progress.Rmd -------------------------------------------------------------------------------- /inst/examples/html/bootstrap/bootstrap-component-progress_solution.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/bootstrap/bootstrap-component-progress_solution.Rmd -------------------------------------------------------------------------------- /inst/examples/html/bootstrap/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/bootstrap/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/dom-tabs/dom-tabs-01.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/dom-tabs/dom-tabs-01.Rmd -------------------------------------------------------------------------------- /inst/examples/html/dom-tabs/dom-tabs-02.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/dom-tabs/dom-tabs-02.Rmd -------------------------------------------------------------------------------- /inst/examples/html/dom-tabs/dom-tabs-03.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/dom-tabs/dom-tabs-03.Rmd -------------------------------------------------------------------------------- /inst/examples/html/dom-tabs/dom-tabs-04.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/dom-tabs/dom-tabs-04.Rmd -------------------------------------------------------------------------------- /inst/examples/html/dom-tabs/rmd-content.Rmd.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/dom-tabs/rmd-content.Rmd.source -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-00/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-00/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-00/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-00/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-01/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-01/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-01/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-02/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-02/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-02/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-03/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-03/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-03/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-04/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-04/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-04/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-05/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-05/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-05/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-06/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-06/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-06/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-07/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-07/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-07/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-08/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-08/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-08/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-08/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-09/index.html -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-09/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-09/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-09/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-09/script.js -------------------------------------------------------------------------------- /inst/examples/html/first-page/first-page-09/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/first-page-09/style.css -------------------------------------------------------------------------------- /inst/examples/html/first-page/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/first-page/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/pkg-calendar-part-1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/pkg-calendar-part-1.Rmd -------------------------------------------------------------------------------- /inst/examples/html/pkg-calendar-part-2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/pkg-calendar-part-2.Rmd -------------------------------------------------------------------------------- /inst/examples/html/pkg-calendar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/pkg-calendar/index.html -------------------------------------------------------------------------------- /inst/examples/html/pkg-calendar/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/pkg-calendar/registry.yml -------------------------------------------------------------------------------- /inst/examples/html/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/html/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/are-we-there-yet.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/are-we-there-yet.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/count-letters.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/count-letters.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/filter-high-points.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/filter-high-points.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/for-loop-to-for-each.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/for-loop-to-for-each.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/mapping-words-1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/mapping-words-1.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/mapping-words-2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/mapping-words-2.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/mapping-words-3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/mapping-words-3.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/scrabble-forEach-word.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/scrabble-forEach-word.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/scrabble-map-word.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/scrabble-map-word.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/scrabble-reduce-rearrange.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/scrabble-reduce-rearrange.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/scrabble-reduce-total.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/scrabble-reduce-total.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/array-methods/scrabble.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/array-methods/scrabble.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/arrays-and-objects/compare-two-objects.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/arrays-and-objects/compare-two-objects.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/arrays-and-objects/for-loop-object-ref.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/arrays-and-objects/for-loop-object-ref.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/arrays-and-objects/for-loop-sum-array.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/arrays-and-objects/for-loop-sum-array.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/arrays-and-objects/for-loop-sum-series.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/arrays-and-objects/for-loop-sum-series.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/arrays-and-objects/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/arrays-and-objects/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/arrays-and-objects/spread-node-element.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/arrays-and-objects/spread-node-element.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/cardio/cardio-sorting-1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/cardio/cardio-sorting-1.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/cardio/cardio-sorting-2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/cardio/cardio-sorting-2.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/cardio/cardio-sorting-3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/cardio/cardio-sorting-3.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/cardio/cardio-sorting-4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/cardio/cardio-sorting-4.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/cardio/cardio-sorting-5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/cardio/cardio-sorting-5.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/cardio/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/cardio/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/events/browser-event-types.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/events/browser-event-types.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/events/event-bubbling-animated.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/events/event-bubbling-animated.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/events/event-bubbling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/events/event-bubbling.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/events/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/events/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/functions/limits-of-array-1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/functions/limits-of-array-1.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/functions/limits-of-array-2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/functions/limits-of-array-2.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/functions/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/functions/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/if-else-game-over.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/if-else-game-over.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/json/reformat-r2js-data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/json/reformat-r2js-data.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/json/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/json/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-duplicated.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-duplicated.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-mean-for.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-mean-for.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-mean-reduce.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-mean-reduce.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-runif-1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-runif-1.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-runif-2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-runif-2.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-sample.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-sample.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-seq-along.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-seq-along.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-seq.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-seq.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-table.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/r-js-unique.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/r-js-unique.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/r-in-js/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/r-in-js/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/scope/one-time-only.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/scope/one-time-only.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/scope/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/scope/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/strings/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/strings/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/strings/ride-share-fares.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/strings/ride-share-fares.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/strings/strings-in-for-loops.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/strings/strings-in-for-loops.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/strings/toTitleCase.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/strings/toTitleCase.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/this/arrow-method-this.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/this/arrow-method-this.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/this/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/this/registry.yml -------------------------------------------------------------------------------- /inst/examples/javascript/this/this-counter.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/this/this-counter.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/this/this-simple.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/this/this-simple.Rmd -------------------------------------------------------------------------------- /inst/examples/javascript/truthy-falsy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/javascript/truthy-falsy.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/01-feedback-color.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/01-feedback-color.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/02-feedback-icon-animation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/02-feedback-icon-animation.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/03-feedback-animation-wiggle.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/03-feedback-animation-wiggle.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/04-feedback-update-text.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/04-feedback-update-text.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/05-control-focus.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/05-control-focus.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/06-control-keyboard-events.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/06-control-keyboard-events.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/07-design-add-content.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/07-design-add-content.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/08-design-rewrite.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/08-design-rewrite.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/09-jslib-typerjs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/09-jslib-typerjs.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/10-jslib-frappe-charts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/10-jslib-frappe-charts.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/11-jslib-frappe-charts-extended.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/11-jslib-frappe-charts-extended.Rmd -------------------------------------------------------------------------------- /inst/examples/motivate/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/motivate/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-1/index.html -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-1/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-1/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-2/index.html -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-2/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-2/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-3/index.html -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-3/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-3/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-4/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-4/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-4/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-4/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-5/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-5/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-5/drumkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-5/drumkit.svg -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-5/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-5/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-6/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-6/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-6/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-6/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-7/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-7/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/drumkit-7/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/drumkit-7/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/drumkit-apps/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/drumkit-apps/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/frappe-chart-apps/frappe-chart-basic/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/frappe-chart-apps/frappe-chart-basic/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/frappe-chart-apps/frappe-chart-basic/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/frappe-chart-apps/frappe-chart-basic/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/frappe-chart-apps/frappe-chart-full/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/frappe-chart-apps/frappe-chart-full/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/frappe-chart-apps/frappe-chart-full/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/frappe-chart-apps/frappe-chart-full/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/frappe-chart-apps/frappe-chart-starter/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/frappe-chart-apps/frappe-chart-starter/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/frappe-chart-apps/frappe-chart-starter/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/frappe-chart-apps/frappe-chart-starter/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/frappe-chart-apps/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/frappe-chart-apps/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-animate/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-animate/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-animate/shiny-animate-1/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-animate/shiny-animate-1/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-animate/shiny-animate-1/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-animate/shiny-animate-1/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-animate/shiny-animate-2/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-animate/shiny-animate-2/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-animate/shiny-animate-2/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-animate/shiny-animate-2/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-animate/shiny-animate-3/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-animate/shiny-animate-3/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-animate/shiny-animate-3/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-animate/shiny-animate-3/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-01/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-01/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-01/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-01/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-02/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-02/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-02/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-02/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-03/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-03/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-03/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-03/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-04/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-04/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-browser-time/shiny-browser-time-04/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-browser-time/shiny-browser-time-04/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-demo-apps/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-demo-apps/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-demo-apps/shiny-starter-app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-demo-apps/shiny-starter-app/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-demo-apps/shiny-starter-app/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-demo-apps/shiny-starter-app/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-1/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-1/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-1/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-1/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-2/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-2/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-2/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-2/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-3/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-3/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-3/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-3/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-3/style.css -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-4/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-4/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-4/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-4/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-event/shiny-event-4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-event/shiny-event-4/style.css -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-messages/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-messages/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-messages/shiny-messages-1/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-messages/shiny-messages-1/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-messages/shiny-messages-1/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-messages/shiny-messages-1/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-messages/shiny-messages-2/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-messages/shiny-messages-2/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-messages/shiny-messages-2/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-messages/shiny-messages-2/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-messages/shiny-messages-3/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-messages/shiny-messages-3/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-messages/shiny-messages-3/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-messages/shiny-messages-3/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-setInputValue/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-setInputValue/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-setInputValue/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-setInputValue/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-01/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-01/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-01/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-01/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-02/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-02/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-02/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-02/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-02/typing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-02/typing.js -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-03/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-03/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-03/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-03/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-03/typing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-03/typing.js -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-04/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-04/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-04/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-04/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-04/typing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-04/typing.js -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-05/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-05/app.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-05/module_typingStats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-05/module_typingStats.R -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-05/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-05/registry.yml -------------------------------------------------------------------------------- /inst/examples/shiny/shiny-typing/shiny-typing-05/typing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/examples/shiny/shiny-typing/shiny-typing-05/typing.js -------------------------------------------------------------------------------- /inst/json/first-sentences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/json/first-sentences.json -------------------------------------------------------------------------------- /inst/mdn-addin/mdn-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/mdn-addin/mdn-logo.svg -------------------------------------------------------------------------------- /inst/mdn-addin/mdn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/mdn-addin/mdn.css -------------------------------------------------------------------------------- /inst/mdn-addin/mdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/mdn-addin/mdn.js -------------------------------------------------------------------------------- /inst/redirect/jslog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/redirect/jslog.css -------------------------------------------------------------------------------- /inst/redirect/redirectConsoleLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/redirect/redirectConsoleLog.js -------------------------------------------------------------------------------- /inst/repl/blank.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | example: 3 | title: "Blank" 4 | output: js4shiny::html_document_plain 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /inst/repl/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/repl/loading.svg -------------------------------------------------------------------------------- /inst/repl/repl-child-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/repl/repl-child-redirect.js -------------------------------------------------------------------------------- /inst/repl/repl-child.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/repl/repl-child.css -------------------------------------------------------------------------------- /inst/repl/repl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/repl/repl.css -------------------------------------------------------------------------------- /inst/repl/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/repl/repl.js -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-document-js/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/html-document-js/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-document-js/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/html-document-js/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-document-plain/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/html-document-plain/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-document-plain/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/html-document-plain/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/animate.css -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/js4shiny-xaringan-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/js4shiny-xaringan-base.css -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/js4shiny-xaringan-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/js4shiny-xaringan-extra.css -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/tachyons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/css/tachyons.min.css -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/html/js4shiny-includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/html/js4shiny-includes.html -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/js/remark-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/skeleton/assets/js/remark-latest.min.js -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/js4shiny-xaringan/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rmarkdown/templates/js4shiny-xaringan/template.yaml -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /inst/snippets/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/snippets/css.snippets -------------------------------------------------------------------------------- /inst/snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/snippets/html.snippets -------------------------------------------------------------------------------- /inst/snippets/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/snippets/javascript.snippets -------------------------------------------------------------------------------- /inst/snippets/markdown.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/snippets/markdown.snippets -------------------------------------------------------------------------------- /inst/snippets/r.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/snippets/r.snippets -------------------------------------------------------------------------------- /inst/template-html/color-palette.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/color-palette.pdf -------------------------------------------------------------------------------- /inst/template-html/css/_google-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/_google-fonts.css -------------------------------------------------------------------------------- /inst/template-html/css/_variables-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/_variables-fonts.css -------------------------------------------------------------------------------- /inst/template-html/css/_variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/_variables.css -------------------------------------------------------------------------------- /inst/template-html/css/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/code.css -------------------------------------------------------------------------------- /inst/template-html/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/colors.css -------------------------------------------------------------------------------- /inst/template-html/css/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/colors.scss -------------------------------------------------------------------------------- /inst/template-html/css/pandoc-line-numbers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/pandoc-line-numbers.css -------------------------------------------------------------------------------- /inst/template-html/css/stylize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/stylize.css -------------------------------------------------------------------------------- /inst/template-html/css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/table.css -------------------------------------------------------------------------------- /inst/template-html/css/utility.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/css/utility.css -------------------------------------------------------------------------------- /inst/template-html/js4shiny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/js4shiny.html -------------------------------------------------------------------------------- /inst/template-html/jsonview/jsonview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/jsonview/jsonview.css -------------------------------------------------------------------------------- /inst/template-html/jsonview/jsonview.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/jsonview/jsonview.min.js -------------------------------------------------------------------------------- /inst/template-html/stylize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-html/stylize.css -------------------------------------------------------------------------------- /inst/template-plain/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-plain/normalize.css -------------------------------------------------------------------------------- /inst/template-plain/plain-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/inst/template-plain/plain-template.html -------------------------------------------------------------------------------- /js4shiny.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/js4shiny.Rproj -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/first_sentences.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/first_sentences.Rd -------------------------------------------------------------------------------- /man/html_dependency_js4shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/html_dependency_js4shiny.Rd -------------------------------------------------------------------------------- /man/html_document_js.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/html_document_js.Rd -------------------------------------------------------------------------------- /man/html_document_js4shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/html_document_js4shiny.Rd -------------------------------------------------------------------------------- /man/html_document_plain.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/html_document_plain.Rd -------------------------------------------------------------------------------- /man/html_setup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/html_setup.Rd -------------------------------------------------------------------------------- /man/js4shiny-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/js4shiny-package.Rd -------------------------------------------------------------------------------- /man/js4shiny_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/js4shiny_rmd.Rd -------------------------------------------------------------------------------- /man/knitr_js_engine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/knitr_js_engine.Rd -------------------------------------------------------------------------------- /man/launch_shiny_in.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/launch_shiny_in.Rd -------------------------------------------------------------------------------- /man/lint_js_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/lint_js_addin.Rd -------------------------------------------------------------------------------- /man/live_preview.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/live_preview.Rd -------------------------------------------------------------------------------- /man/mdn_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/mdn_search.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/register_knitr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/register_knitr.Rd -------------------------------------------------------------------------------- /man/repl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/repl.Rd -------------------------------------------------------------------------------- /man/snippets_install.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/snippets_install.Rd -------------------------------------------------------------------------------- /man/us_cities_ranked.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/man/us_cities_ranked.Rd -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/manual/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /tests/manual/repl/test-initial-solution-rules.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/manual/repl/test-initial-solution-rules.Rmd -------------------------------------------------------------------------------- /tests/manual/rmd-test/test.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/manual/rmd-test/test.Rmd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/html-engine/html-engine.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/html-engine/html-engine.Rmd -------------------------------------------------------------------------------- /tests/testthat/register/register.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/register/register.Rmd -------------------------------------------------------------------------------- /tests/testthat/test-addins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/test-addins.R -------------------------------------------------------------------------------- /tests/testthat/test-html_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/test-html_document.R -------------------------------------------------------------------------------- /tests/testthat/test-html_document_plain.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/test-html_document_plain.R -------------------------------------------------------------------------------- /tests/testthat/test-knitr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/test-knitr.R -------------------------------------------------------------------------------- /tests/testthat/test-repl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/test-repl.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/literate-javascript.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadenbuie/js4shiny/HEAD/vignettes/literate-javascript.Rmd --------------------------------------------------------------------------------