gitextract_1rmdkxph/ ├── .Rbuildignore ├── .gitattributes ├── .github/ │ ├── .gitignore │ └── workflows/ │ └── R-CMD-check.yaml ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── babel.R │ ├── dependencies.R │ ├── meta.R │ ├── reacttools.R │ ├── scaffold_input.R │ ├── scaffold_utils.R │ └── scaffold_widget.R ├── README.Rmd ├── README.md ├── buildupdate/ │ └── getreact.R ├── cran-comments.md ├── docs/ │ ├── 404.html │ ├── CONDUCT.html │ ├── LICENSE-text.html │ ├── articles/ │ │ ├── index.html │ │ ├── intro_htmlwidgets.html │ │ ├── intro_htmlwidgets_files/ │ │ │ └── accessible-code-block-0.0.1/ │ │ │ └── empty-anchor.js │ │ ├── intro_inputs.html │ │ ├── intro_inputs_files/ │ │ │ └── accessible-code-block-0.0.1/ │ │ │ └── empty-anchor.js │ │ ├── intro_reactR.html │ │ └── intro_reactR_files/ │ │ ├── accessible-code-block-0.0.1/ │ │ │ └── empty-anchor.js │ │ ├── react-16.12.0/ │ │ │ ├── AUTHORS │ │ │ └── LICENSE.txt │ │ ├── react-16.7.0/ │ │ │ ├── AUTHORS │ │ │ └── LICENSE.txt │ │ ├── react-16.8.1/ │ │ │ ├── AUTHORS │ │ │ └── LICENSE.txt │ │ ├── react-16.8.6/ │ │ │ ├── AUTHORS │ │ │ └── LICENSE.txt │ │ ├── react-17.0.0/ │ │ │ ├── AUTHORS │ │ │ └── LICENSE.txt │ │ └── react-18.2.0/ │ │ ├── AUTHORS │ │ └── LICENSE.txt │ ├── authors.html │ ├── bootstrap-toc.css │ ├── bootstrap-toc.js │ ├── docsearch.css │ ├── docsearch.js │ ├── index.html │ ├── news/ │ │ └── index.html │ ├── pkgdown.css │ ├── pkgdown.js │ ├── pkgdown.yml │ ├── reference/ │ │ ├── React.html │ │ ├── babel_transform.html │ │ ├── component.html │ │ ├── createReactShinyInput.html │ │ ├── html_dependency_corejs.html │ │ ├── html_dependency_mobx.html │ │ ├── html_dependency_react.html │ │ ├── html_dependency_reacttools.html │ │ ├── index.html │ │ ├── reactMarkup.html │ │ ├── scaffoldReactShinyInput.html │ │ └── scaffoldReactWidget.html │ └── sitemap.xml ├── inst/ │ ├── examples/ │ │ ├── antd.R │ │ └── office-fabric.R │ ├── templates/ │ │ ├── input_app.R.txt │ │ ├── input_js.txt │ │ ├── input_r.txt │ │ ├── package.json.txt │ │ ├── webpack.config.js.txt │ │ ├── widget_app.R.txt │ │ ├── widget_js.txt │ │ ├── widget_r.txt │ │ └── widget_yaml.txt │ └── www/ │ ├── core-js/ │ │ ├── LICENSE │ │ └── package.json │ ├── mobx/ │ │ ├── LICENSE │ │ ├── mobx-react-lite.js │ │ ├── mobx-react.umd.js │ │ └── package.json │ ├── react/ │ │ ├── AUTHORS │ │ └── LICENSE.txt │ └── react-tools/ │ └── react-tools.js ├── js-tests/ │ └── react-tools.test.jsx ├── man/ │ ├── React.Rd │ ├── babel_transform.Rd │ ├── component.Rd │ ├── createReactShinyInput.Rd │ ├── html_dependency_corejs.Rd │ ├── html_dependency_mobx.Rd │ ├── html_dependency_react.Rd │ ├── html_dependency_reacttools.Rd │ ├── reactMarkup.Rd │ ├── scaffoldReactShinyInput.Rd │ └── scaffoldReactWidget.Rd ├── package.json ├── reactR.Rproj ├── srcjs/ │ ├── input.js │ ├── react-tools.js │ └── widget.js ├── vignettes/ │ ├── intro_htmlwidgets.Rmd │ ├── intro_inputs.Rmd │ └── intro_reactR.Rmd └── vite.config.js