├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── background_img.R ├── bubble_grid.R ├── color_scales.R ├── color_tiles.R ├── data_bars.R ├── data_bars_gradient.R ├── data_bars_pos_neg.R ├── embed_img.R ├── gauge_chart.R ├── highlight_max.R ├── highlight_min.R ├── highlight_min_max.R ├── icon_assign.R ├── icon_sets.R ├── icon_trend_indicator.R ├── merge_column.R ├── pill_buttons.R ├── pos_neg_colors.R ├── react_spark.R ├── reactablefmtr-package.R ├── save_reactable.R ├── table_elements.R └── themes.R ├── README.md ├── docs ├── 404.html ├── LICENSE-text.html ├── 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 ├── articles │ ├── color_scales.Rmd │ ├── color_scales.html │ ├── color_scales_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.0 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ ├── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ │ ├── tippy-binding-0.1.0 │ │ │ └── tippy.js │ │ └── tippyjs-3.2.0 │ │ │ ├── themes │ │ │ ├── google.css │ │ │ ├── light-border.css │ │ │ ├── light.css │ │ │ └── translucent.css │ │ │ └── tippy.all.min.js │ ├── color_tiles.Rmd │ ├── color_tiles.html │ ├── color_tiles_files │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.0 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ ├── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ │ ├── tippy-binding-0.1.0 │ │ │ └── tippy.js │ │ └── tippyjs-3.2.0 │ │ │ ├── themes │ │ │ ├── google.css │ │ │ ├── light-border.css │ │ │ ├── light.css │ │ │ └── translucent.css │ │ │ └── tippy.all.min.js │ ├── data_bars.Rmd │ ├── data_bars.html │ ├── data_bars_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── font-awesome-5.15.3 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ └── fa-solid-900.woff │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.0 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ └── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ ├── icon_assign.Rmd │ ├── icon_assign.html │ ├── icon_assign_files │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.0 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ └── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ ├── icon_sets.Rmd │ ├── icon_sets.html │ ├── icon_sets_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.0 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ └── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ ├── index.html │ ├── nba_player_ratings.Rmd │ ├── nba_player_ratings.html │ ├── nba_player_ratings_files │ │ ├── bootstrap-3.3.2 │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ └── shim │ │ │ │ ├── html5shiv.min.js │ │ │ │ └── respond.min.js │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── crosstalk-1.1.0.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── crosstalk-1.1.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── ionrangeslider-2.1.2 │ │ │ ├── css │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ │ ├── ion.rangeSlider.skinShiny.css │ │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ │ └── normalize.css │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ ├── sprite-skin-modern.png │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ └── sprite-skin-simple.png │ │ │ └── js │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ └── ion.rangeSlider.min.js │ │ ├── jquery-1.11.3 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── jquery-3.5.1 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.0 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ ├── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ │ ├── selectize-0.11.2 │ │ │ ├── css │ │ │ │ └── selectize.bootstrap3.css │ │ │ └── js │ │ │ │ ├── es5-shim.min.js │ │ │ │ └── selectize.min.js │ │ └── strftime-0.9.2 │ │ │ └── strftime-min.js │ ├── nfl_standings.Rmd │ ├── nfl_standings.html │ ├── nfl_standings_files │ │ ├── _Fira Mono-0.4.0 │ │ │ ├── N0bX2SlFPv1weGeLZDtQIg.woff │ │ │ └── font.css │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ └── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ ├── nfl_standings_tutorial.Rmd │ ├── nfl_standings_tutorial.html │ ├── nfl_standings_tutorial_files │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── font-awesome-5.15.3 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ └── fa-solid-900.woff │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ └── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ ├── reactablefmtr_cookbook.html │ ├── reactablefmtr_cookbook_files │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── crosstalk-1.1.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── dataui-binding-0.0.1 │ │ │ └── dataui.js │ │ ├── font-awesome-5.15.3 │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ └── fa-solid-900.woff │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── ionrangeslider-2.1.2 │ │ │ ├── css │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ │ ├── ion.rangeSlider.skinShiny.css │ │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ │ └── normalize.css │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ ├── sprite-skin-modern.png │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ └── sprite-skin-simple.png │ │ │ └── js │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ └── ion.rangeSlider.min.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ │ ├── selectize-0.11.2 │ │ │ ├── css │ │ │ │ └── selectize.bootstrap3.css │ │ │ └── js │ │ │ │ ├── es5-shim.min.js │ │ │ │ └── selectize.min.js │ │ ├── strftime-0.9.2 │ │ │ └── strftime-min.js │ │ ├── tippy-binding-0.1.0 │ │ │ └── tippy.js │ │ └── tippyjs-3.2.0 │ │ │ ├── themes │ │ │ ├── google.css │ │ │ ├── light-border.css │ │ │ ├── light.css │ │ │ └── translucent.css │ │ │ └── tippy.all.min.js │ ├── sparklines.Rmd │ ├── sparklines.html │ ├── sparklines_files │ │ ├── core-js-2.5.3 │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ └── shim.min.js │ │ ├── dataui-binding-0.0.1 │ │ │ └── dataui.js │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ │ ├── AUTHORS │ │ │ ├── LICENSE.txt │ │ │ ├── react-dom.min.js │ │ │ └── react.min.js │ │ ├── reactable-binding-0.2.3.9000 │ │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ │ └── reactable.js │ │ └── reactwidget-1.0.0 │ │ │ ├── react-tools.js │ │ │ └── react-tools.js.map │ ├── themes.Rmd │ ├── themes.html │ └── themes_files │ │ ├── core-js-2.5.3 │ │ ├── LICENSE │ │ ├── package.json │ │ └── shim.min.js │ │ ├── font-awesome-5.13.0 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── font-awesome-5.15.3 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-solid-900.ttf │ │ │ └── fa-solid-900.woff │ │ ├── header-attrs-2.7 │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.3 │ │ └── htmlwidgets.js │ │ ├── react-16.12.0 │ │ ├── AUTHORS │ │ ├── LICENSE.txt │ │ ├── react-dom.min.js │ │ └── react.min.js │ │ ├── reactable-binding-0.2.3.9000 │ │ └── reactable.js │ │ ├── reactable-binding-0.2.3 │ │ └── reactable.js │ │ └── reactwidget-1.0.0 │ │ ├── react-tools.js │ │ └── react-tools.js.map ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── deps │ ├── _Duru Sans-0.4.0 │ │ ├── font.css │ │ └── xn7iYH8xwmSyTvEV_HOxTA.woff │ ├── _Fira Mono-0.4.0 │ │ ├── N0bX2SlFPv1weGeLZDtQIg.woff │ │ └── font.css │ ├── _JetBrains Mono-0.4.0 │ │ ├── font.css │ │ └── tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPg.woff │ ├── _Open Sans-0.4.0 │ │ ├── font.css │ │ └── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff │ ├── _Roboto Mono-0.4.0 │ │ ├── L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQA.woff │ │ └── font.css │ ├── _Roboto Serif-0.4.0 │ │ ├── R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6Q.woff │ │ └── font.css │ ├── _Roboto Slab-0.4.0 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaw.woff │ │ └── font.css │ ├── _Roboto-0.4.0 │ │ ├── KFOmCnqEu92Fr1Me5g.woff │ │ └── font.css │ ├── _Source Code Pro-0.4.0 │ │ ├── HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM0.woff │ │ └── font.css │ ├── _Source Sans Pro-0.4.0 │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff │ │ └── font.css │ ├── bootstrap-5.1.0 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.min.css │ │ ├── font.css │ │ └── fonts │ │ │ ├── 1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrc.woff │ │ │ ├── 1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrc.woff │ │ │ ├── 4iCs6KVjbNBYlgo6ew.woff │ │ │ ├── 4iCs6KVjbNBYlgoKfw7w.woff │ │ │ ├── 4iCv6KVjbNBYlgoCxCvTtA.woff │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjsGyL.woff │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDQ.woff │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7j.woff │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7j.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdo.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdo.woff │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNRevw.woff │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvaNA.woff │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_TOQ.woff │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fOAKSw.woff │ │ │ ├── JTURjIg1_i6t8kCHKm45_ZpC7g0.woff │ │ │ ├── JTURjIg1_i6t8kCHKm45_dJE7g0.woff │ │ │ ├── JTUSjIg1_i6t8kCHKm45xW0.woff │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmEU9vAA.woff │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmSU5vAA.woff │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmWUlvAA.woff │ │ │ ├── KFOmCnqEu92Fr1Me5g.woff │ │ │ ├── KFOmCnqEu92Fr1Mu4mxM.woff │ │ │ ├── QGYpz_kZZAGCONcK2A4bGOj8mNhL.woff │ │ │ ├── S6u8w4BMUTPHjxsAXC-s.woff │ │ │ ├── S6u8w4BMUTPHjxswWA.woff │ │ │ ├── S6u9w4BMUTPHh6UVSwiPHw.woff │ │ │ ├── S6u9w4BMUTPHh6UVeww.woff │ │ │ ├── S6u9w4BMUTPHh7USSwiPHw.woff │ │ │ ├── S6u9w4BMUTPHh7USeww.woff │ │ │ ├── S6uyw4BMUTPHjx4wWA.woff │ │ │ ├── S6uyw4BMUTPHvxo.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZs.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff │ │ │ ├── XRXV3I6Li01BKof4MQ.woff │ │ │ ├── XRXW3I6Li01BKofA6sKkZQ.woff │ │ │ ├── XRXW3I6Li01BKofAjsOkZQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff │ │ │ ├── pe03MImSLYBIv1o4X1M8cc9iB_5p.woff │ │ │ ├── pe0qMImSLYBIv1o4X1M8cfe5.woff │ │ │ └── q5uGsou0JOdh94bfvQlr.woff │ ├── data-deps.txt │ └── jquery-3.5.1 │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── jquery-1.12.4.js │ │ ├── jquery-1.12.4.min.js │ │ ├── jquery-1.12.4.min.map │ │ ├── jquery-2.2.4.js │ │ ├── jquery-2.2.4.min.js │ │ ├── jquery-2.2.4.min.map │ │ ├── jquery-3.5.1.js │ │ ├── jquery-3.5.1.min.js │ │ └── jquery-3.5.1.min.map ├── docsearch.css ├── docsearch.js ├── extra.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── link.svg ├── logo.png ├── logo.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── add_icon_legend.html │ ├── add_legend.html │ ├── add_plus_sign.html │ ├── add_source.html │ ├── add_subtitle.html │ ├── add_title.html │ ├── background_img.html │ ├── bubble_grid.html │ ├── cell_style.html │ ├── cerulean.html │ ├── clean.html │ ├── color_scales.html │ ├── color_tiles.html │ ├── column_stack.html │ ├── cosmo.html │ ├── cyborg.html │ ├── dark.html │ ├── darkly.html │ ├── data_bars.html │ ├── data_bars_gradient.html │ ├── data_bars_pos_neg.html │ ├── default.html │ ├── embed_img.html │ ├── espn.html │ ├── figures │ │ ├── README_add_plus_sign.PNG │ │ ├── README_color_scales.PNG │ │ ├── README_color_scales_bright_values.PNG │ │ ├── README_color_scales_custom.PNG │ │ ├── README_color_scales_custom_colors.PNG │ │ ├── README_color_scales_default.PNG │ │ ├── README_color_scales_example.PNG │ │ ├── README_color_scales_round_corners.PNG │ │ ├── README_color_tiles.PNG │ │ ├── README_color_tiles_bright_values.PNG │ │ ├── README_color_tiles_number_fmt.PNG │ │ ├── README_data_bar_number_fmt.PNG │ │ ├── README_data_bars.PNG │ │ ├── README_data_bars_background.PNG │ │ ├── README_data_bars_conditional.PNG │ │ ├── README_data_bars_default.PNG │ │ ├── README_data_bars_gradient.PNG │ │ ├── README_data_bars_gradient_rainbow.PNG │ │ ├── README_data_bars_pos_neg.PNG │ │ ├── README_data_bars_pos_neg_default1.PNG │ │ ├── README_data_bars_pos_neg_gradient.PNG │ │ ├── README_data_bars_pos_neg_percent.PNG │ │ ├── README_highlight_max_default.PNG │ │ ├── README_highlight_min_default.PNG │ │ ├── README_highlight_min_max_default.PNG │ │ ├── README_highlight_min_max_highlighter.PNG │ │ ├── README_icon_sets_custom.PNG │ │ ├── README_icon_sets_default.PNG │ │ ├── README_icon_sets_number_fmt.PNG │ │ ├── README_icon_sets_percent.PNG │ │ ├── README_pos_neg_colors.PNG │ │ └── reactablefmtr_hex_logo.png │ ├── fivethirtyeight.html │ ├── flatly.html │ ├── gauge_chart.html │ ├── google_font.html │ ├── group_border_sort.html │ ├── group_merge_sort.html │ ├── highlight_bars.html │ ├── highlight_max.html │ ├── highlight_min.html │ ├── highlight_min_max.html │ ├── highlight_points.html │ ├── hoverdark.html │ ├── hoverlight.html │ ├── html.html │ ├── icon_assign.html │ ├── icon_sets.html │ ├── index.html │ ├── journal.html │ ├── lux.html │ ├── margin.html │ ├── merge_column.html │ ├── midnight.html │ ├── midnightblue.html │ ├── minty.html │ ├── no_lines.html │ ├── nytimes.html │ ├── pff.html │ ├── pill_buttons.html │ ├── pos_neg_colors.html │ ├── react_sparkbar.html │ ├── react_sparkline.html │ ├── reactablefmtr-package.html │ ├── sandstone.html │ ├── sanfran.html │ ├── save_reactable.html │ ├── save_reactable_test.html │ ├── slate.html │ ├── spacelab.html │ ├── sunrise.html │ ├── superhero.html │ ├── tooltip.html │ └── void.html ├── search.json └── sitemap.xml ├── man ├── add_icon_legend.Rd ├── add_legend.Rd ├── add_source.Rd ├── add_subtitle.Rd ├── add_title.Rd ├── background_img.Rd ├── bubble_grid.Rd ├── cell_style.Rd ├── cerulean.Rd ├── clean.Rd ├── color_scales.Rd ├── color_tiles.Rd ├── cosmo.Rd ├── cyborg.Rd ├── dark.Rd ├── darkly.Rd ├── data_bars.Rd ├── data_bars_gradient.Rd ├── data_bars_pos_neg.Rd ├── default.Rd ├── embed_img.Rd ├── espn.Rd ├── figures │ ├── 1CF51210-7B87-4BEC-AEDC-34A4F8C4A61C.jpeg │ ├── 1E065D82-9B6B-449B-B1E2-056A136C383C.png │ ├── 43042890-A054-49D2-B066-8E329BE90ACA.jpeg │ ├── 5E26F646-AE47-4044-B01D-6BEBF28DD08B.jpeg │ ├── 776E9662-ED4C-4E50-A702-0A1822793115.jpeg │ ├── 78A671F4-6705-4EE9-9B49-D29934FFE019.jpeg │ ├── A4783B9E-BC4E-4C68-8DFB-E7277CA38ACE.png │ ├── BB295375-698D-48C1-9275-AEEC3CB8443F.jpeg │ ├── C6731D97-6D37-4CD2-A93D-374352961F4A.png │ ├── EE85DA35-1A23-4A86-86F5-8C934CC75980.jpeg │ ├── MPGbyCarTypeICONS.png │ ├── README_add_plus_sign.PNG │ ├── README_add_title.png │ ├── README_color_scales.PNG │ ├── README_color_scales_bright_values.PNG │ ├── README_color_scales_custom.PNG │ ├── README_color_scales_custom_colors.PNG │ ├── README_color_scales_default.PNG │ ├── README_color_scales_example.PNG │ ├── README_color_scales_round_corners.PNG │ ├── README_color_tiles.PNG │ ├── README_color_tiles_bright_values.PNG │ ├── README_color_tiles_number_fmt.PNG │ ├── README_data_bar_number_fmt.PNG │ ├── README_data_bars.PNG │ ├── README_data_bars_background.PNG │ ├── README_data_bars_conditional.PNG │ ├── README_data_bars_default.PNG │ ├── README_data_bars_gradient.PNG │ ├── README_data_bars_gradient_rainbow.PNG │ ├── README_data_bars_pos_neg.PNG │ ├── README_data_bars_pos_neg_default1.PNG │ ├── README_data_bars_pos_neg_gradient.PNG │ ├── README_data_bars_pos_neg_percent.PNG │ ├── README_highlight_max_default.PNG │ ├── README_highlight_min_default.PNG │ ├── README_highlight_min_max_default.PNG │ ├── README_highlight_min_max_highlighter.PNG │ ├── README_icon_cars.png │ ├── README_icon_sets_cars.png │ ├── README_icon_sets_custom.PNG │ ├── README_icon_sets_default.PNG │ ├── README_icon_sets_number_fmt.PNG │ ├── README_icon_sets_percent.PNG │ ├── README_pos_neg_colors.PNG │ ├── all_data_bars_demo2.gif │ ├── bloombergchartgif.gif │ ├── bubble_grid.JPG │ ├── bubblegridexample.gif │ ├── color_scales_default.png │ ├── color_scales_mako.png │ ├── color_tiles_example_iris.png │ ├── color_tiles_viridis.png │ ├── color_tiles_viridis2.png │ ├── color_tiles_viridis3.png │ ├── colorscales_heatmap2.gif │ ├── crosstalkexamplegif.gif │ ├── data_bars_animated_demo.gif │ ├── data_bars_animated_demo_default.gif │ ├── data_bars_animated_demo_green.gif │ ├── fivethirtyeightthemeexample.gif │ ├── gauge_charts.JPG │ ├── gaugechartgif.gif │ ├── logo.png │ ├── react_sparkline.png │ ├── reactable_example.JPG │ ├── reactable_example.png │ ├── reactable_span.gif │ ├── reactableexample.gif │ ├── reactableexample2.gif │ ├── reactablefmtr_example.JPG │ ├── reactablefmtr_example.png │ ├── reactablefmtr_hex_logo.png │ ├── reactablefmtr_hex_logo.svg │ ├── reactablefmtr_site.PNG │ ├── reactablefmtrexample.gif │ ├── reactablefmtrexample2.gif │ ├── sparkbar_ex1.png │ ├── sparkline_ex1.png │ ├── sparkline_ex2.PNG │ ├── sparkline_line_ex1.png │ ├── sparklinesgif1.gif │ └── sparklinesgif2.gif ├── fivethirtyeight.Rd ├── flatly.Rd ├── gauge_chart.Rd ├── google_font.Rd ├── group_border_sort.Rd ├── group_merge_sort.Rd ├── highlight_bars.Rd ├── highlight_max.Rd ├── highlight_min.Rd ├── highlight_min_max.Rd ├── highlight_points.Rd ├── hoverdark.Rd ├── hoverlight.Rd ├── html.Rd ├── icon_assign.Rd ├── icon_sets.Rd ├── icon_trend_indicator.Rd ├── journal.Rd ├── lux.Rd ├── margin.Rd ├── merge_column.Rd ├── midnight.Rd ├── midnightblue.Rd ├── minty.Rd ├── no_lines.Rd ├── nytimes.Rd ├── pff.Rd ├── pill_buttons.Rd ├── pos_neg_colors.Rd ├── react_sparkbar.Rd ├── react_sparkline.Rd ├── reactablefmtr-package.Rd ├── sandstone.Rd ├── sanfran.Rd ├── save_reactable.Rd ├── slate.Rd ├── spacelab.Rd ├── sunrise.Rd ├── superhero.Rd ├── tooltip.Rd └── void.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 ├── reactablefmtr.Rproj └── vignettes ├── RAPTOR_by_team_19-20.csv ├── color_scales.Rmd ├── color_tiles.Rmd ├── data_bars.Rmd ├── icon_assign.Rmd ├── icon_sets.Rmd ├── nba_player_ratings.Rmd ├── nfl_standings.Rmd ├── nfl_standings_tutorial.Rmd ├── reactablefmtr_cookbook.Rmd ├── sparklines.Rmd └── themes.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^.*\.Rproj$ 2 | ^\.Rproj\.user$ 3 | ^_pkgdown\.yml$ 4 | ^pkgdown.yml$ 5 | ^docs$ 6 | ^pkgdown$ 7 | ^vignettes$ 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | 5 | # Session Data files 6 | .RData 7 | 8 | # User-specific files 9 | .Ruserdata 10 | 11 | # Example code in package build process 12 | *-Ex.R 13 | 14 | # Output files from R CMD build 15 | /*.tar.gz 16 | 17 | # Output files from R CMD check 18 | /*.Rcheck/ 19 | 20 | # RStudio files 21 | .Rproj.user/ 22 | 23 | # produced vignettes 24 | vignettes/*.html 25 | vignettes/*.pdf 26 | 27 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 28 | .httr-oauth 29 | 30 | # knitr and R markdown default cache directories 31 | *_cache/ 32 | /cache/ 33 | 34 | # Temporary files created by R markdown 35 | *.utf8.md 36 | *.knit.md 37 | 38 | # R Environment Variables 39 | .Renviron 40 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Kyle Cuilla 3 | -------------------------------------------------------------------------------- /R/reactablefmtr-package.R: -------------------------------------------------------------------------------- 1 | #' @keywords internal 2 | "_PACKAGE" 3 | 4 | # The following block is used by usethis to automatically manage 5 | # roxygen namespace tags. Modify with care! 6 | ## usethis namespace: start 7 | ## usethis namespace: end 8 | NULL 9 | -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/color_scales_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- 1 | // Hide empty tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) --> 2 | // v0.0.1 3 | // Written by JooYoung Seo (jooyoung@psu.edu) and Atsushi Yasumoto on June 1st, 2020. 4 | 5 | document.addEventListener('DOMContentLoaded', function() { 6 | const codeList = document.getElementsByClassName("sourceCode"); 7 | for (var i = 0; i < codeList.length; i++) { 8 | var linkList = codeList[i].getElementsByTagName('a'); 9 | for (var j = 0; j < linkList.length; j++) { 10 | if (linkList[j].innerHTML === "") { 11 | linkList[j].setAttribute('aria-hidden', 'true'); 12 | } 13 | } 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /docs/articles/color_scales_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_scales_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/color_scales_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/color_scales_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/color_scales_files/tippy-binding-0.1.0/tippy.js: -------------------------------------------------------------------------------- 1 | HTMLWidgets.widget({ 2 | 3 | name: 'tippy', 4 | 5 | type: 'output', 6 | 7 | factory: function(el, width, height) { 8 | 9 | var id; 10 | 11 | return { 12 | 13 | renderValue: function(x) { 14 | 15 | id = el.id 16 | 17 | if(x.hasOwnProperty('element')){ 18 | tippy('#' + x.element, x.opts); 19 | } else if(x.hasOwnProperty('class')){ 20 | if(x.hasOwnProperty('opts')){ 21 | tippy('.' + x.class, x.opts); 22 | } else { 23 | tippy('.' + x.class); 24 | } 25 | } else { 26 | el.innerHTML = x.text; 27 | el.setAttribute("data-tippy", x.tooltip); 28 | tippy('#' + id, x.opts); 29 | } 30 | 31 | }, 32 | 33 | resize: function(width, height) { 34 | 35 | } 36 | 37 | }; 38 | } 39 | }); 40 | -------------------------------------------------------------------------------- /docs/articles/color_scales_files/tippyjs-3.2.0/themes/google.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.google-theme .tippy-arrow{border-top:8px solid #505355;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.google-theme .tippy-arrow{border-bottom:8px solid #505355;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.google-theme .tippy-arrow{border-left:8px solid #505355;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.google-theme .tippy-arrow{border-right:8px solid #505355;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-tooltip.google-theme{background-color:#505355;padding:.25rem .4rem;font-size:.85rem;font-weight:600}.tippy-tooltip.google-theme .tippy-backdrop{background-color:#505355}.tippy-tooltip.google-theme .tippy-roundarrow{fill:#505355}.tippy-tooltip.google-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/color_scales_files/tippyjs-3.2.0/themes/light.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.light-theme .tippy-arrow{border-top:8px solid #fff;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme .tippy-arrow{border-bottom:8px solid #fff;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme .tippy-arrow{border-left:8px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme .tippy-arrow{border-right:8px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-tooltip.light-theme{color:#26323d;box-shadow:0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);background-color:#fff}.tippy-tooltip.light-theme .tippy-backdrop{background-color:#fff}.tippy-tooltip.light-theme .tippy-roundarrow{fill:#fff}.tippy-tooltip.light-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/color_scales_files/tippyjs-3.2.0/themes/translucent.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.translucent-theme .tippy-arrow{border-top:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.translucent-theme .tippy-arrow{border-bottom:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.translucent-theme .tippy-arrow{border-left:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.translucent-theme .tippy-arrow{border-right:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-tooltip.translucent-theme,.tippy-tooltip.translucent-theme .tippy-backdrop{background-color:rgba(0,0,0,.7)}.tippy-tooltip.translucent-theme .tippy-roundarrow{fill:rgba(0,0,0,.7)}.tippy-tooltip.translucent-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/color_tiles_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/tippy-binding-0.1.0/tippy.js: -------------------------------------------------------------------------------- 1 | HTMLWidgets.widget({ 2 | 3 | name: 'tippy', 4 | 5 | type: 'output', 6 | 7 | factory: function(el, width, height) { 8 | 9 | var id; 10 | 11 | return { 12 | 13 | renderValue: function(x) { 14 | 15 | id = el.id 16 | 17 | if(x.hasOwnProperty('element')){ 18 | tippy('#' + x.element, x.opts); 19 | } else if(x.hasOwnProperty('class')){ 20 | if(x.hasOwnProperty('opts')){ 21 | tippy('.' + x.class, x.opts); 22 | } else { 23 | tippy('.' + x.class); 24 | } 25 | } else { 26 | el.innerHTML = x.text; 27 | el.setAttribute("data-tippy", x.tooltip); 28 | tippy('#' + id, x.opts); 29 | } 30 | 31 | }, 32 | 33 | resize: function(width, height) { 34 | 35 | } 36 | 37 | }; 38 | } 39 | }); 40 | -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/tippyjs-3.2.0/themes/google.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.google-theme .tippy-arrow{border-top:8px solid #505355;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.google-theme .tippy-arrow{border-bottom:8px solid #505355;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.google-theme .tippy-arrow{border-left:8px solid #505355;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.google-theme .tippy-arrow{border-right:8px solid #505355;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-tooltip.google-theme{background-color:#505355;padding:.25rem .4rem;font-size:.85rem;font-weight:600}.tippy-tooltip.google-theme .tippy-backdrop{background-color:#505355}.tippy-tooltip.google-theme .tippy-roundarrow{fill:#505355}.tippy-tooltip.google-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/tippyjs-3.2.0/themes/light.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.light-theme .tippy-arrow{border-top:8px solid #fff;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme .tippy-arrow{border-bottom:8px solid #fff;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme .tippy-arrow{border-left:8px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme .tippy-arrow{border-right:8px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-tooltip.light-theme{color:#26323d;box-shadow:0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);background-color:#fff}.tippy-tooltip.light-theme .tippy-backdrop{background-color:#fff}.tippy-tooltip.light-theme .tippy-roundarrow{fill:#fff}.tippy-tooltip.light-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/color_tiles_files/tippyjs-3.2.0/themes/translucent.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.translucent-theme .tippy-arrow{border-top:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.translucent-theme .tippy-arrow{border-bottom:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.translucent-theme .tippy-arrow{border-left:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.translucent-theme .tippy-arrow{border-right:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-tooltip.translucent-theme,.tippy-tooltip.translucent-theme .tippy-backdrop{background-color:rgba(0,0,0,.7)}.tippy-tooltip.translucent-theme .tippy-roundarrow{fill:rgba(0,0,0,.7)}.tippy-tooltip.translucent-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/data_bars_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- 1 | // Hide empty tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) --> 2 | // v0.0.1 3 | // Written by JooYoung Seo (jooyoung@psu.edu) and Atsushi Yasumoto on June 1st, 2020. 4 | 5 | document.addEventListener('DOMContentLoaded', function() { 6 | const codeList = document.getElementsByClassName("sourceCode"); 7 | for (var i = 0; i < codeList.length; i++) { 8 | var linkList = codeList[i].getElementsByTagName('a'); 9 | for (var j = 0; j < linkList.length; j++) { 10 | if (linkList[j].innerHTML === "") { 11 | linkList[j].setAttribute('aria-hidden', 'true'); 12 | } 13 | } 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /docs/articles/data_bars_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/data_bars_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/data_bars_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/data_bars_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_assign_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/icon_assign_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- 1 | // Hide empty tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) --> 2 | // v0.0.1 3 | // Written by JooYoung Seo (jooyoung@psu.edu) and Atsushi Yasumoto on June 1st, 2020. 4 | 5 | document.addEventListener('DOMContentLoaded', function() { 6 | const codeList = document.getElementsByClassName("sourceCode"); 7 | for (var i = 0; i < codeList.length; i++) { 8 | var linkList = codeList[i].getElementsByTagName('a'); 9 | for (var j = 0; j < linkList.length; j++) { 10 | if (linkList[j].innerHTML === "") { 11 | linkList[j].setAttribute('aria-hidden', 'true'); 12 | } 13 | } 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/icon_sets_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/icon_sets_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/bootstrap-3.3.2/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/bootstrap-3.3.2/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/crosstalk-1.1.0.1/css/crosstalk.css: -------------------------------------------------------------------------------- 1 | /* Adjust margins outwards, so column contents line up with the edges of the 2 | parent of container-fluid. */ 3 | .container-fluid.crosstalk-bscols { 4 | margin-left: -30px; 5 | margin-right: -30px; 6 | white-space: normal; 7 | } 8 | 9 | /* But don't adjust the margins outwards if we're directly under the body, 10 | i.e. we were the top-level of something at the console. */ 11 | body > .container-fluid.crosstalk-bscols { 12 | margin-left: auto; 13 | margin-right: auto; 14 | } 15 | 16 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 17 | display: inline-block; 18 | padding-right: 12px; 19 | vertical-align: top; 20 | } 21 | 22 | @media only screen and (max-width:480px) { 23 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 24 | display: block; 25 | padding-right: inherit; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/crosstalk-1.1.1/css/crosstalk.css: -------------------------------------------------------------------------------- 1 | /* Adjust margins outwards, so column contents line up with the edges of the 2 | parent of container-fluid. */ 3 | .container-fluid.crosstalk-bscols { 4 | margin-left: -30px; 5 | margin-right: -30px; 6 | white-space: normal; 7 | } 8 | 9 | /* But don't adjust the margins outwards if we're directly under the body, 10 | i.e. we were the top-level of something at the console. */ 11 | body > .container-fluid.crosstalk-bscols { 12 | margin-left: auto; 13 | margin-right: auto; 14 | } 15 | 16 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 17 | display: inline-block; 18 | padding-right: 12px; 19 | vertical-align: top; 20 | } 21 | 22 | @media only screen and (max-width:480px) { 23 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 24 | display: block; 25 | padding-right: inherit; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-modern.png -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nba_player_ratings_files/ionrangeslider-2.1.2/img/sprite-skin-simple.png -------------------------------------------------------------------------------- /docs/articles/nba_player_ratings_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/_Fira Mono-0.4.0/N0bX2SlFPv1weGeLZDtQIg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/_Fira Mono-0.4.0/N0bX2SlFPv1weGeLZDtQIg.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/_Fira Mono-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Fira Mono'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(N0bX2SlFPv1weGeLZDtQIg.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/nfl_standings_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/nfl_standings_tutorial_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/nfl_standings_tutorial_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/crosstalk-1.1.1/css/crosstalk.css: -------------------------------------------------------------------------------- 1 | /* Adjust margins outwards, so column contents line up with the edges of the 2 | parent of container-fluid. */ 3 | .container-fluid.crosstalk-bscols { 4 | margin-left: -30px; 5 | margin-right: -30px; 6 | white-space: normal; 7 | } 8 | 9 | /* But don't adjust the margins outwards if we're directly under the body, 10 | i.e. we were the top-level of something at the console. */ 11 | body > .container-fluid.crosstalk-bscols { 12 | margin-left: auto; 13 | margin-right: auto; 14 | } 15 | 16 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 17 | display: inline-block; 18 | padding-right: 12px; 19 | vertical-align: top; 20 | } 21 | 22 | @media only screen and (max-width:480px) { 23 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 24 | display: block; 25 | padding-right: inherit; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-modern.png -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/reactablefmtr_cookbook_files/ionrangeslider-2.1.2/img/sprite-skin-simple.png -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/tippy-binding-0.1.0/tippy.js: -------------------------------------------------------------------------------- 1 | HTMLWidgets.widget({ 2 | 3 | name: 'tippy', 4 | 5 | type: 'output', 6 | 7 | factory: function(el, width, height) { 8 | 9 | var id; 10 | 11 | return { 12 | 13 | renderValue: function(x) { 14 | 15 | id = el.id 16 | 17 | if(x.hasOwnProperty('element')){ 18 | tippy('#' + x.element, x.opts); 19 | } else if(x.hasOwnProperty('class')){ 20 | if(x.hasOwnProperty('opts')){ 21 | tippy('.' + x.class, x.opts); 22 | } else { 23 | tippy('.' + x.class); 24 | } 25 | } else { 26 | el.innerHTML = x.text; 27 | el.setAttribute("data-tippy", x.tooltip); 28 | tippy('#' + id, x.opts); 29 | } 30 | 31 | }, 32 | 33 | resize: function(width, height) { 34 | 35 | } 36 | 37 | }; 38 | } 39 | }); 40 | -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/tippyjs-3.2.0/themes/google.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.google-theme .tippy-arrow{border-top:8px solid #505355;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.google-theme .tippy-arrow{border-bottom:8px solid #505355;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.google-theme .tippy-arrow{border-left:8px solid #505355;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.google-theme .tippy-arrow{border-right:8px solid #505355;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-tooltip.google-theme{background-color:#505355;padding:.25rem .4rem;font-size:.85rem;font-weight:600}.tippy-tooltip.google-theme .tippy-backdrop{background-color:#505355}.tippy-tooltip.google-theme .tippy-roundarrow{fill:#505355}.tippy-tooltip.google-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/tippyjs-3.2.0/themes/light.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.light-theme .tippy-arrow{border-top:8px solid #fff;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme .tippy-arrow{border-bottom:8px solid #fff;border-right:8px solid transparent;border-left:8px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme .tippy-arrow{border-left:8px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme .tippy-arrow{border-right:8px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent}.tippy-tooltip.light-theme{color:#26323d;box-shadow:0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);background-color:#fff}.tippy-tooltip.light-theme .tippy-backdrop{background-color:#fff}.tippy-tooltip.light-theme .tippy-roundarrow{fill:#fff}.tippy-tooltip.light-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/reactablefmtr_cookbook_files/tippyjs-3.2.0/themes/translucent.css: -------------------------------------------------------------------------------- 1 | .tippy-popper[x-placement^=top] .tippy-tooltip.translucent-theme .tippy-arrow{border-top:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.translucent-theme .tippy-arrow{border-bottom:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.translucent-theme .tippy-arrow{border-left:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.translucent-theme .tippy-arrow{border-right:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-tooltip.translucent-theme,.tippy-tooltip.translucent-theme .tippy-backdrop{background-color:rgba(0,0,0,.7)}.tippy-tooltip.translucent-theme .tippy-roundarrow{fill:rgba(0,0,0,.7)}.tippy-tooltip.translucent-theme[data-animatefill]{background-color:transparent} -------------------------------------------------------------------------------- /docs/articles/sparklines_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/sparklines_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/sparklines_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/articles/themes_files/core-js-2.5.3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2017 Denis Pushkarev 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.13.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/articles/themes_files/font-awesome-5.15.3/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/articles/themes_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/articles/themes_files/react-16.12.0/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013-present, Facebook, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/deps/_Duru Sans-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Duru Sans'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(xn7iYH8xwmSyTvEV_HOxTA.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/_Duru Sans-0.4.0/xn7iYH8xwmSyTvEV_HOxTA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Duru Sans-0.4.0/xn7iYH8xwmSyTvEV_HOxTA.woff -------------------------------------------------------------------------------- /docs/deps/_Fira Mono-0.4.0/N0bX2SlFPv1weGeLZDtQIg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Fira Mono-0.4.0/N0bX2SlFPv1weGeLZDtQIg.woff -------------------------------------------------------------------------------- /docs/deps/_Fira Mono-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Fira Mono'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(https://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtQIg.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/_JetBrains Mono-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'JetBrains Mono'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPg.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/_JetBrains Mono-0.4.0/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_JetBrains Mono-0.4.0/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPg.woff -------------------------------------------------------------------------------- /docs/deps/_Open Sans-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Open Sans'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-stretch: normal; 6 | font-display: swap; 7 | src: url(memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff) format('woff'); 8 | } 9 | -------------------------------------------------------------------------------- /docs/deps/_Open Sans-0.4.0/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Open Sans-0.4.0/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff -------------------------------------------------------------------------------- /docs/deps/_Roboto Mono-0.4.0/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Roboto Mono-0.4.0/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQA.woff -------------------------------------------------------------------------------- /docs/deps/_Roboto Mono-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto Mono'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQA.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/_Roboto Serif-0.4.0/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6Q.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Roboto Serif-0.4.0/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6Q.woff -------------------------------------------------------------------------------- /docs/deps/_Roboto Serif-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto Serif'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-stretch: normal; 6 | font-display: swap; 7 | src: url(R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6Q.woff) format('woff'); 8 | } 9 | -------------------------------------------------------------------------------- /docs/deps/_Roboto Slab-0.4.0/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Roboto Slab-0.4.0/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaw.woff -------------------------------------------------------------------------------- /docs/deps/_Roboto Slab-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto Slab'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaw.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/_Roboto-0.4.0/KFOmCnqEu92Fr1Me5g.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Roboto-0.4.0/KFOmCnqEu92Fr1Me5g.woff -------------------------------------------------------------------------------- /docs/deps/_Roboto-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(KFOmCnqEu92Fr1Me5g.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/_Source Code Pro-0.4.0/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Source Code Pro-0.4.0/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM0.woff -------------------------------------------------------------------------------- /docs/deps/_Source Code Pro-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Source Code Pro'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM0.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/_Source Sans Pro-0.4.0/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/_Source Sans Pro-0.4.0/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff -------------------------------------------------------------------------------- /docs/deps/_Source Sans Pro-0.4.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Source Sans Pro'; 3 | font-style: normal; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff) format('woff'); 7 | } 8 | -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Source Sans Pro'; 3 | font-style: italic; 4 | font-weight: 400; 5 | font-display: swap; 6 | src: url(fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7j.woff) format('woff'); 7 | } 8 | @font-face { 9 | font-family: 'Source Sans Pro'; 10 | font-style: normal; 11 | font-weight: 300; 12 | font-display: swap; 13 | src: url(fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkw.woff) format('woff'); 14 | } 15 | @font-face { 16 | font-family: 'Source Sans Pro'; 17 | font-style: normal; 18 | font-weight: 400; 19 | font-display: swap; 20 | src: url(fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff) format('woff'); 21 | } 22 | @font-face { 23 | font-family: 'Source Sans Pro'; 24 | font-style: normal; 25 | font-weight: 700; 26 | font-display: swap; 27 | src: url(fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkw.woff) format('woff'); 28 | } 29 | -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrc.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrc.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrc.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrc.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/4iCs6KVjbNBYlgo6ew.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/4iCs6KVjbNBYlgo6ew.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/4iCs6KVjbNBYlgoKfw7w.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/4iCs6KVjbNBYlgoKfw7w.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/4iCv6KVjbNBYlgoCxCvTtA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/4iCv6KVjbNBYlgoCxCvTtA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/4iCv6KVjbNBYlgoCxCvjsGyL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/4iCv6KVjbNBYlgoCxCvjsGyL.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7j.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7j.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7j.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7j.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkw.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkw.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdo.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkw.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdo.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/CSR54z1Qlv-GDxkbKVQ_dFsvWNRevw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/CSR54z1Qlv-GDxkbKVQ_dFsvWNRevw.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/CSR54z1Qlv-GDxkbKVQ_dFsvaNA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/CSR54z1Qlv-GDxkbKVQ_dFsvaNA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/CSR64z1Qlv-GDxkbKVQ_TOQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/CSR64z1Qlv-GDxkbKVQ_TOQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/CSR64z1Qlv-GDxkbKVQ_fOAKSw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/CSR64z1Qlv-GDxkbKVQ_fOAKSw.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/JTURjIg1_i6t8kCHKm45_ZpC7g0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/JTURjIg1_i6t8kCHKm45_ZpC7g0.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/JTURjIg1_i6t8kCHKm45_dJE7g0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/JTURjIg1_i6t8kCHKm45_dJE7g0.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/JTUSjIg1_i6t8kCHKm45xW0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/JTUSjIg1_i6t8kCHKm45xW0.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmEU9fBBc-.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmEU9fBBc-.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmEU9vAA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmEU9vAA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmSU5fBBc-.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmSU5fBBc-.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmSU5vAA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmSU5vAA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmWUlfBBc-.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmWUlfBBc-.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmWUlvAA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOlCnqEu92Fr1MmWUlvAA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOmCnqEu92Fr1Me5g.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOmCnqEu92Fr1Me5g.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/KFOmCnqEu92Fr1Mu4mxM.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/KFOmCnqEu92Fr1Mu4mxM.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/QGYpz_kZZAGCONcK2A4bGOj8mNhL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/QGYpz_kZZAGCONcK2A4bGOj8mNhL.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6u8w4BMUTPHjxsAXC-s.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6u8w4BMUTPHjxsAXC-s.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6u8w4BMUTPHjxswWA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6u8w4BMUTPHjxswWA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh6UVSwiPHw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh6UVSwiPHw.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh6UVeww.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh6UVeww.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh7USSwiPHw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh7USSwiPHw.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh7USeww.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6u9w4BMUTPHh7USeww.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6uyw4BMUTPHjx4wWA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6uyw4BMUTPHjx4wWA.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/S6uyw4BMUTPHvxo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/S6uyw4BMUTPHvxo.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZs.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/XRXV3I6Li01BKof4MQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/XRXV3I6Li01BKof4MQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/XRXW3I6Li01BKofA6sKkZQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/XRXW3I6Li01BKofA6sKkZQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/XRXW3I6Li01BKofAjsOkZQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/XRXW3I6Li01BKofAjsOkZQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWVAexg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWVAexg.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexg.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVAexg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVAexg.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4k.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4k.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4k.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4k.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQ.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/pe03MImSLYBIv1o4X1M8cc9iB_5p.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/pe03MImSLYBIv1o4X1M8cc9iB_5p.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/pe0qMImSLYBIv1o4X1M8cfe5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/pe0qMImSLYBIv1o4X1M8cfe5.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/fonts/q5uGsou0JOdh94bfvQlr.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/deps/bootstrap-5.1.0/fonts/q5uGsou0JOdh94bfvQlr.woff -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/deps/jquery-3.5.1/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright OpenJS Foundation and other contributors, https://openjsf.org/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- 1 | /* navbar gradient */ 2 | .navbar { 3 | background: linear-gradient(90deg, #0047a6, #004fb9, #0158ce, #0163e8, #046efe, #1d7dfe, #378bfe, #509afe, #61a4fe) !important; 4 | box-shadow: 0 0 15px 5px rgba(0,0,0,.15); 5 | border: none; 6 | font-size: 1.2rem; 7 | } 8 | 9 | /* secondary color (pkg version) */ 10 | .nav-text.text-muted.me-auto { 11 | color: #ff914d !important; 12 | } 13 | 14 | /* light mode hover dropdown */ 15 | #navbar > ul.navbar-nav.me-auto > li.nav-item.dropdown a:hover { 16 | background-color: #046efe !important; 17 | color: #fff; 18 | } 19 | 20 | /* dark mode */ 21 | .navbar-dark .navbar-nav .active>.nav-link { 22 | background-color: #046efe !important; color: #fff; 23 | border: none; 24 | } 25 | 26 | /* search bar dark mode */ 27 | .navbar-dark input[type="search"] { 28 | background-color: #fff !important; 29 | color: #222 !important; 30 | } 31 | 32 | /* highlight color */ 33 | ::selection { 34 | background: #ff914d90; /* WebKit/Blink Browsers */ 35 | } 36 | ::-moz-selection { 37 | background: #ff914d90; /* Gecko Browsers */ 38 | } 39 | -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/favicon.ico -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/logo.png -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- 1 | pandoc: 2.17.1.1 2 | pkgdown: 2.0.2 3 | pkgdown_sha: ~ 4 | articles: 5 | color_scales: color_scales.html 6 | color_tiles: color_tiles.html 7 | data_bars: data_bars.html 8 | icon_assign: icon_assign.html 9 | icon_sets: icon_sets.html 10 | nba_player_ratings: nba_player_ratings.html 11 | nfl_standings: nfl_standings.html 12 | nfl_standings_tutorial: nfl_standings_tutorial.html 13 | reactablefmtr_cookbook: reactablefmtr_cookbook.html 14 | sparklines: sparklines.html 15 | themes: themes.html 16 | last_built: 2022-05-25T17:36Z 17 | urls: 18 | reference: https://kcuilla.github.io/reactablefmtr/reference 19 | article: https://kcuilla.github.io/reactablefmtr/articles 20 | 21 | -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/figures/README_add_plus_sign.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_add_plus_sign.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_scales.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_scales.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_scales_bright_values.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_scales_bright_values.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_scales_custom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_scales_custom.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_scales_custom_colors.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_scales_custom_colors.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_scales_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_scales_default.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_scales_example.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_scales_example.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_scales_round_corners.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_scales_round_corners.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_tiles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_tiles.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_tiles_bright_values.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_tiles_bright_values.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_color_tiles_number_fmt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_color_tiles_number_fmt.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bar_number_fmt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bar_number_fmt.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_background.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_background.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_conditional.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_conditional.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_default.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_gradient.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_gradient.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_gradient_rainbow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_gradient_rainbow.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_pos_neg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_pos_neg.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_pos_neg_default1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_pos_neg_default1.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_pos_neg_gradient.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_pos_neg_gradient.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_data_bars_pos_neg_percent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_data_bars_pos_neg_percent.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_highlight_max_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_highlight_max_default.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_highlight_min_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_highlight_min_default.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_highlight_min_max_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_highlight_min_max_default.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_highlight_min_max_highlighter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_highlight_min_max_highlighter.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_icon_sets_custom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_icon_sets_custom.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_icon_sets_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_icon_sets_default.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_icon_sets_number_fmt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_icon_sets_number_fmt.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_icon_sets_percent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_icon_sets_percent.PNG -------------------------------------------------------------------------------- /docs/reference/figures/README_pos_neg_colors.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/README_pos_neg_colors.PNG -------------------------------------------------------------------------------- /docs/reference/figures/reactablefmtr_hex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/docs/reference/figures/reactablefmtr_hex_logo.png -------------------------------------------------------------------------------- /man/clean.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{clean} 4 | \alias{clean} 5 | \title{Theme clean} 6 | \usage{ 7 | clean( 8 | font_size = 14, 9 | font_color = "#222222", 10 | header_font_size = 15, 11 | header_font_color = "#222222", 12 | background_color = NULL, 13 | cell_padding = 6, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 14.} 20 | 21 | \item{font_color}{Color of the font for the text within the table. 22 | Default is #222222.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 15.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #222222.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is NULL.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 6.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | Simple clean-look theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard clean theme 49 | reactable(data, 50 | theme = clean()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = clean(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/cosmo.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{cosmo} 4 | \alias{cosmo} 5 | \title{Theme cosmo} 6 | \usage{ 7 | cosmo( 8 | font_size = 14, 9 | font_color = "#141415", 10 | header_font_size = 15, 11 | header_font_color = "#ffffff", 12 | background_color = "#f8f9fa", 13 | cell_padding = 6, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 14.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #141415.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 15.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #ffffff.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is #f8f9fa.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 6.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | Bootstrap-inspired cosmo theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard cosmo theme 49 | reactable(data, 50 | theme = cosmo()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = cosmo(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/dark.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{dark} 4 | \alias{dark} 5 | \title{Theme dark} 6 | \usage{ 7 | dark( 8 | font_size = 15, 9 | font_color = "#FFFFFF", 10 | header_font_size = 16, 11 | header_font_color = "#FFFFFF", 12 | background_color = "#252525", 13 | cell_padding = 6, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 15.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #FFFFFF.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 16.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #FFFFFF.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is #25252.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 6.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | dark table theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard dark theme 49 | reactable(data, 50 | theme = dark()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = dark(font_size = 12, font_color = "red", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/data_bars_gradient.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/data_bars_gradient.R 3 | \name{data_bars_gradient} 4 | \alias{data_bars_gradient} 5 | \title{Add horizontal gradient bars to rows in a column} 6 | \usage{ 7 | data_bars_gradient( 8 | data, 9 | colors = c("#1efffd", "#1e20ff"), 10 | background = "white", 11 | number_fmt = NULL 12 | ) 13 | } 14 | \arguments{ 15 | \item{data}{Dataset containing at least one numeric column.} 16 | 17 | \item{colors}{A vector of colors of at least two colors. 18 | Colors should be given in order from left to right as shown on the data bar. 19 | Default colors are c("#1efffd", "#1e20ff").} 20 | 21 | \item{background}{Optionally assign a color to use as the background for cells. 22 | Default is set to white.} 23 | 24 | \item{number_fmt}{Optionally format numbers using formats from the scales package. 25 | Default is set to NULL.} 26 | } 27 | \value{ 28 | a function that applies data bars 29 | to a column of numeric values. 30 | } 31 | \description{ 32 | The `data_bars_gradient()` function is depreciated. 33 | The new version of `data_bars()` can convert colors into gradients with `gradient = TRUE`. 34 | Please use `data_bars()` instead. 35 | } 36 | \examples{ 37 | data <- MASS::Cars93[20:49, c("Make", "MPG.city", "MPG.highway")] 38 | 39 | ## By default, colors are provided 40 | reactable(data, 41 | defaultColDef = colDef( 42 | align = "left", 43 | cell = data_bars(data, 44 | fill_color = c("#1efffd", "#1e20ff"), 45 | fill_gradient = TRUE))) 46 | 47 | } 48 | -------------------------------------------------------------------------------- /man/espn.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{espn} 4 | \alias{espn} 5 | \title{Theme espn} 6 | \usage{ 7 | espn( 8 | font_size = 12, 9 | font_color = "#6C6D6F", 10 | header_font_size = 11, 11 | header_font_color = "#48494a", 12 | background_color = NULL, 13 | cell_padding = 7, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 12.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #6C6D6F.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 11.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #48494a.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is NULL.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 7.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | ESPN-inspired table theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard espn theme 49 | reactable(data, 50 | theme = espn()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = espn(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/figures/1CF51210-7B87-4BEC-AEDC-34A4F8C4A61C.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/1CF51210-7B87-4BEC-AEDC-34A4F8C4A61C.jpeg -------------------------------------------------------------------------------- /man/figures/1E065D82-9B6B-449B-B1E2-056A136C383C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/1E065D82-9B6B-449B-B1E2-056A136C383C.png -------------------------------------------------------------------------------- /man/figures/43042890-A054-49D2-B066-8E329BE90ACA.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/43042890-A054-49D2-B066-8E329BE90ACA.jpeg -------------------------------------------------------------------------------- /man/figures/5E26F646-AE47-4044-B01D-6BEBF28DD08B.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/5E26F646-AE47-4044-B01D-6BEBF28DD08B.jpeg -------------------------------------------------------------------------------- /man/figures/776E9662-ED4C-4E50-A702-0A1822793115.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/776E9662-ED4C-4E50-A702-0A1822793115.jpeg -------------------------------------------------------------------------------- /man/figures/78A671F4-6705-4EE9-9B49-D29934FFE019.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/78A671F4-6705-4EE9-9B49-D29934FFE019.jpeg -------------------------------------------------------------------------------- /man/figures/A4783B9E-BC4E-4C68-8DFB-E7277CA38ACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/A4783B9E-BC4E-4C68-8DFB-E7277CA38ACE.png -------------------------------------------------------------------------------- /man/figures/BB295375-698D-48C1-9275-AEEC3CB8443F.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/BB295375-698D-48C1-9275-AEEC3CB8443F.jpeg -------------------------------------------------------------------------------- /man/figures/C6731D97-6D37-4CD2-A93D-374352961F4A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/C6731D97-6D37-4CD2-A93D-374352961F4A.png -------------------------------------------------------------------------------- /man/figures/EE85DA35-1A23-4A86-86F5-8C934CC75980.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/EE85DA35-1A23-4A86-86F5-8C934CC75980.jpeg -------------------------------------------------------------------------------- /man/figures/MPGbyCarTypeICONS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/MPGbyCarTypeICONS.png -------------------------------------------------------------------------------- /man/figures/README_add_plus_sign.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_add_plus_sign.PNG -------------------------------------------------------------------------------- /man/figures/README_add_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_add_title.png -------------------------------------------------------------------------------- /man/figures/README_color_scales.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_scales.PNG -------------------------------------------------------------------------------- /man/figures/README_color_scales_bright_values.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_scales_bright_values.PNG -------------------------------------------------------------------------------- /man/figures/README_color_scales_custom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_scales_custom.PNG -------------------------------------------------------------------------------- /man/figures/README_color_scales_custom_colors.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_scales_custom_colors.PNG -------------------------------------------------------------------------------- /man/figures/README_color_scales_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_scales_default.PNG -------------------------------------------------------------------------------- /man/figures/README_color_scales_example.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_scales_example.PNG -------------------------------------------------------------------------------- /man/figures/README_color_scales_round_corners.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_scales_round_corners.PNG -------------------------------------------------------------------------------- /man/figures/README_color_tiles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_tiles.PNG -------------------------------------------------------------------------------- /man/figures/README_color_tiles_bright_values.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_tiles_bright_values.PNG -------------------------------------------------------------------------------- /man/figures/README_color_tiles_number_fmt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_color_tiles_number_fmt.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bar_number_fmt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bar_number_fmt.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_background.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_background.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_conditional.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_conditional.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_default.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_gradient.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_gradient.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_gradient_rainbow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_gradient_rainbow.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_pos_neg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_pos_neg.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_pos_neg_default1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_pos_neg_default1.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_pos_neg_gradient.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_pos_neg_gradient.PNG -------------------------------------------------------------------------------- /man/figures/README_data_bars_pos_neg_percent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_data_bars_pos_neg_percent.PNG -------------------------------------------------------------------------------- /man/figures/README_highlight_max_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_highlight_max_default.PNG -------------------------------------------------------------------------------- /man/figures/README_highlight_min_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_highlight_min_default.PNG -------------------------------------------------------------------------------- /man/figures/README_highlight_min_max_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_highlight_min_max_default.PNG -------------------------------------------------------------------------------- /man/figures/README_highlight_min_max_highlighter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_highlight_min_max_highlighter.PNG -------------------------------------------------------------------------------- /man/figures/README_icon_cars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_icon_cars.png -------------------------------------------------------------------------------- /man/figures/README_icon_sets_cars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_icon_sets_cars.png -------------------------------------------------------------------------------- /man/figures/README_icon_sets_custom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_icon_sets_custom.PNG -------------------------------------------------------------------------------- /man/figures/README_icon_sets_default.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_icon_sets_default.PNG -------------------------------------------------------------------------------- /man/figures/README_icon_sets_number_fmt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_icon_sets_number_fmt.PNG -------------------------------------------------------------------------------- /man/figures/README_icon_sets_percent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_icon_sets_percent.PNG -------------------------------------------------------------------------------- /man/figures/README_pos_neg_colors.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/README_pos_neg_colors.PNG -------------------------------------------------------------------------------- /man/figures/all_data_bars_demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/all_data_bars_demo2.gif -------------------------------------------------------------------------------- /man/figures/bloombergchartgif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/bloombergchartgif.gif -------------------------------------------------------------------------------- /man/figures/bubble_grid.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/bubble_grid.JPG -------------------------------------------------------------------------------- /man/figures/bubblegridexample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/bubblegridexample.gif -------------------------------------------------------------------------------- /man/figures/color_scales_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/color_scales_default.png -------------------------------------------------------------------------------- /man/figures/color_scales_mako.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/color_scales_mako.png -------------------------------------------------------------------------------- /man/figures/color_tiles_example_iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/color_tiles_example_iris.png -------------------------------------------------------------------------------- /man/figures/color_tiles_viridis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/color_tiles_viridis.png -------------------------------------------------------------------------------- /man/figures/color_tiles_viridis2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/color_tiles_viridis2.png -------------------------------------------------------------------------------- /man/figures/color_tiles_viridis3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/color_tiles_viridis3.png -------------------------------------------------------------------------------- /man/figures/colorscales_heatmap2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/colorscales_heatmap2.gif -------------------------------------------------------------------------------- /man/figures/crosstalkexamplegif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/crosstalkexamplegif.gif -------------------------------------------------------------------------------- /man/figures/data_bars_animated_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/data_bars_animated_demo.gif -------------------------------------------------------------------------------- /man/figures/data_bars_animated_demo_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/data_bars_animated_demo_default.gif -------------------------------------------------------------------------------- /man/figures/data_bars_animated_demo_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/data_bars_animated_demo_green.gif -------------------------------------------------------------------------------- /man/figures/fivethirtyeightthemeexample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/fivethirtyeightthemeexample.gif -------------------------------------------------------------------------------- /man/figures/gauge_charts.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/gauge_charts.JPG -------------------------------------------------------------------------------- /man/figures/gaugechartgif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/gaugechartgif.gif -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/react_sparkline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/react_sparkline.png -------------------------------------------------------------------------------- /man/figures/reactable_example.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactable_example.JPG -------------------------------------------------------------------------------- /man/figures/reactable_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactable_example.png -------------------------------------------------------------------------------- /man/figures/reactable_span.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactable_span.gif -------------------------------------------------------------------------------- /man/figures/reactableexample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactableexample.gif -------------------------------------------------------------------------------- /man/figures/reactableexample2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactableexample2.gif -------------------------------------------------------------------------------- /man/figures/reactablefmtr_example.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactablefmtr_example.JPG -------------------------------------------------------------------------------- /man/figures/reactablefmtr_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactablefmtr_example.png -------------------------------------------------------------------------------- /man/figures/reactablefmtr_hex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactablefmtr_hex_logo.png -------------------------------------------------------------------------------- /man/figures/reactablefmtr_site.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactablefmtr_site.PNG -------------------------------------------------------------------------------- /man/figures/reactablefmtrexample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactablefmtrexample.gif -------------------------------------------------------------------------------- /man/figures/reactablefmtrexample2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/reactablefmtrexample2.gif -------------------------------------------------------------------------------- /man/figures/sparkbar_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/sparkbar_ex1.png -------------------------------------------------------------------------------- /man/figures/sparkline_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/sparkline_ex1.png -------------------------------------------------------------------------------- /man/figures/sparkline_ex2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/sparkline_ex2.PNG -------------------------------------------------------------------------------- /man/figures/sparkline_line_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/sparkline_line_ex1.png -------------------------------------------------------------------------------- /man/figures/sparklinesgif1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/sparklinesgif1.gif -------------------------------------------------------------------------------- /man/figures/sparklinesgif2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/man/figures/sparklinesgif2.gif -------------------------------------------------------------------------------- /man/flatly.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{flatly} 4 | \alias{flatly} 5 | \title{Theme flatly} 6 | \usage{ 7 | flatly( 8 | font_size = 14, 9 | font_color = "#212529", 10 | header_font_size = 15, 11 | header_font_color = "#ffffff", 12 | background_color = NULL, 13 | cell_padding = 6, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 14.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #212529.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 15.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #ffffff.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is NULL.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 6.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | Bootstrap-inspired flatly theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard flatly theme 49 | reactable(data, 50 | theme = flatly()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = flatly(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/google_font.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/table_elements.R 3 | \name{google_font} 4 | \alias{google_font} 5 | \title{Apply a font from Google Fonts to the table.} 6 | \usage{ 7 | google_font( 8 | table = NULL, 9 | font_family = "Poppins", 10 | font_weight = 400, 11 | font_style = "normal" 12 | ) 13 | } 14 | \arguments{ 15 | \item{table}{Null.} 16 | 17 | \item{font_family}{Color of the font for the text within the table. 18 | Default is #222222.} 19 | 20 | \item{font_weight}{The numeric weight of the font. 21 | Must be a value between 100 and 900. 22 | Note: not every font on Google Fonts has all font weights available. 23 | Please check for available weights for desired font family. 24 | Default is 400.} 25 | 26 | \item{font_style}{Style of the text font. 27 | Options are "normal" or "italic". 28 | Default is "normal".} 29 | } 30 | \value{ 31 | a function that applies a font to a reactable table. 32 | } 33 | \description{ 34 | Apply a font from Google Fonts to the table. 35 | } 36 | \examples{ 37 | \dontrun{ 38 | data <- iris[10:29, ] 39 | 40 | ## Default 'Poppins' font from Google Fonts 41 | reactable(data) \%>\% 42 | google_font() 43 | 44 | ## Apply styles to fonts 45 | reactable(data) \%>\% 46 | google_font("Roboto Mono", font_weight = 500, font_style = "italic") 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /man/group_merge_sort.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/table_elements.R 3 | \name{group_merge_sort} 4 | \alias{group_merge_sort} 5 | \title{Hide rows containing duplicate values on sort. Must be placed within reactable::colDef(style). 6 | Credit to Greg Lin, creator of {reactable} for writing the JS function.} 7 | \usage{ 8 | group_merge_sort(col_name = NULL) 9 | } 10 | \arguments{ 11 | \item{col_name}{Name of the column.} 12 | } 13 | \value{ 14 | a function that hides duplicate values on sort in a reactable table. 15 | } 16 | \description{ 17 | Hide rows containing duplicate values on sort. Must be placed within reactable::colDef(style). 18 | Credit to Greg Lin, creator of {reactable} for writing the JS function. 19 | } 20 | \examples{ 21 | data <- MASS::Cars93[1:20, c("Manufacturer", "Model", "Type", "MPG.city")] 22 | 23 | ## Merge unique groups in a column: 24 | reactable(data, 25 | pagination = FALSE, 26 | columns = list(Manufacturer = colDef( 27 | style = group_merge_sort("Manufacturer") 28 | )) 29 | ) 30 | 31 | ## Works with columns containing numeric data as well: 32 | reactable(data, 33 | pagination = FALSE, 34 | columns = list(MPG.city = colDef( 35 | style = group_merge_sort("MPG.city") 36 | )) 37 | ) 38 | } 39 | -------------------------------------------------------------------------------- /man/highlight_bars.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/react_spark.R 3 | \name{highlight_bars} 4 | \alias{highlight_bars} 5 | \title{Color of highlight used in `react_sparkbar`.} 6 | \usage{ 7 | highlight_bars( 8 | first = "transparent", 9 | last = "transparent", 10 | min = "transparent", 11 | max = "transparent" 12 | ) 13 | } 14 | \arguments{ 15 | \item{first, last, min, max}{The colors of first, last, min, and max bars} 16 | } 17 | \value{ 18 | a function that provides colors for specific bars. 19 | } 20 | \description{ 21 | Color of highlight used in `react_sparkbar`. 22 | } 23 | -------------------------------------------------------------------------------- /man/highlight_max.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/highlight_max.R 3 | \name{highlight_max} 4 | \alias{highlight_max} 5 | \title{Highlights the maximum value in a column} 6 | \usage{ 7 | highlight_max(data, font_color = "green", highlighter = NULL) 8 | } 9 | \arguments{ 10 | \item{data}{Dataset containing at least one numeric column.} 11 | 12 | \item{font_color}{color to assign to maximum value in a column. 13 | Default color is green.} 14 | 15 | \item{highlighter}{color to assign the background of a cell containing maximum value in a column.} 16 | } 17 | \value{ 18 | a function that applies a color 19 | to the maximum value in a column of numeric values. 20 | } 21 | \description{ 22 | The `highlight_max()` function assigns a font color and/or background color to the maximum value in a column. 23 | It should be placed within the style argument in reactable::colDef. 24 | } 25 | \examples{ 26 | data <- MASS::road[11:17, ] 27 | 28 | ## By default, the maximum value is bold with a green font color 29 | reactable(data, 30 | defaultColDef = colDef( 31 | style = highlight_max(data))) 32 | 33 | ## Assign a different font color 34 | reactable(data, 35 | defaultColDef = colDef( 36 | style = highlight_max(data, 37 | font_color = "red"))) 38 | 39 | ## Highlight the background of the cell for the maximum value in each column 40 | reactable(data, 41 | defaultColDef = colDef( 42 | style = highlight_max(data, 43 | highlighter = "yellow"))) 44 | 45 | } 46 | -------------------------------------------------------------------------------- /man/highlight_min.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/highlight_min.R 3 | \name{highlight_min} 4 | \alias{highlight_min} 5 | \title{Highlights the minimum value in a column} 6 | \usage{ 7 | highlight_min(data, font_color = "red", highlighter = NULL) 8 | } 9 | \arguments{ 10 | \item{data}{Dataset containing at least one numeric column.} 11 | 12 | \item{font_color}{color to assign to minimum value in a column. 13 | Default color is red.} 14 | 15 | \item{highlighter}{color to assign the background of a cell containing minimum value in a column.} 16 | } 17 | \value{ 18 | a function that applies a color 19 | to the minimum value in a column of numeric values. 20 | } 21 | \description{ 22 | The `highlight_min()` function assigns a font color and/or background color to the minimum value in a column. 23 | It should be placed within the style argument in reactable::colDef. 24 | } 25 | \examples{ 26 | data <- MASS::road[11:17, ] 27 | 28 | ## By default, the minimum value is bold with a red font color 29 | reactable(data, 30 | defaultColDef = colDef( 31 | style = highlight_min(data))) 32 | 33 | ## Assign a different font color 34 | reactable(data, 35 | defaultColDef = colDef( 36 | style = highlight_min(data, 37 | font_color = "green"))) 38 | 39 | ## Highlight the background of the cell for the minimum value in each column 40 | reactable(data, 41 | defaultColDef = colDef( 42 | style = highlight_min(data, 43 | highlighter = "yellow"))) 44 | 45 | } 46 | -------------------------------------------------------------------------------- /man/highlight_points.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/react_spark.R 3 | \name{highlight_points} 4 | \alias{highlight_points} 5 | \title{Color of points used in `react_sparkline`.} 6 | \usage{ 7 | highlight_points( 8 | all = "transparent", 9 | first = "transparent", 10 | last = "transparent", 11 | min = "transparent", 12 | max = "transparent" 13 | ) 14 | } 15 | \arguments{ 16 | \item{all, first, last, min, max}{The colors of all, first, last, min, and max points.} 17 | } 18 | \value{ 19 | a function that provides colors for specific points. 20 | } 21 | \description{ 22 | Color of points used in `react_sparkline`. 23 | } 24 | -------------------------------------------------------------------------------- /man/hoverdark.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{hoverdark} 4 | \alias{hoverdark} 5 | \title{Theme hoverdark} 6 | \usage{ 7 | hoverdark( 8 | font_size = 15, 9 | font_color = "#222222", 10 | header_font_size = 15, 11 | background_color = NULL, 12 | cell_padding = 4, 13 | centered = FALSE 14 | ) 15 | } 16 | \arguments{ 17 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 18 | Default is 15.} 19 | 20 | \item{font_color}{Color of the font for the text within the table. 21 | Default is #222222.} 22 | 23 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 24 | Default is 15.} 25 | 26 | \item{background_color}{Background color of the table. 27 | Default is NULL.} 28 | 29 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 30 | Default is 4.} 31 | 32 | \item{centered}{Logical: vertically center the contents of the table. 33 | Default is FALSE.} 34 | } 35 | \value{ 36 | an object of class theme that is applied to a reactable table. 37 | } 38 | \description{ 39 | Changes from light-themed to dark-themed on hover 40 | } 41 | \examples{ 42 | data <- iris[10:29, ] 43 | 44 | ## Standard hoverdark theme 45 | reactable(data, 46 | theme = hoverdark()) 47 | 48 | ## Additional options applied 49 | reactable(data, 50 | theme = hoverdark(font_size = 12, font_color = "grey", cell_padding = 3)) 51 | 52 | } 53 | -------------------------------------------------------------------------------- /man/hoverlight.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{hoverlight} 4 | \alias{hoverlight} 5 | \title{Theme hoverlight} 6 | \usage{ 7 | hoverlight( 8 | font_size = 15, 9 | font_color = "#ffffff", 10 | header_font_size = 15, 11 | background_color = "#000000", 12 | cell_padding = 4, 13 | centered = FALSE 14 | ) 15 | } 16 | \arguments{ 17 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 18 | Default is 15.} 19 | 20 | \item{font_color}{Color of the font for the text within the table. 21 | Default is #ffffff.} 22 | 23 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 24 | Default is 15.} 25 | 26 | \item{background_color}{Background color of the table. 27 | Default is #000000.} 28 | 29 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 30 | Default is 4.} 31 | 32 | \item{centered}{Logical: vertically center the contents of the table. 33 | Default is FALSE.} 34 | } 35 | \value{ 36 | an object of class theme that is applied to a reactable table. 37 | } 38 | \description{ 39 | Changes from dark-themed to light-themed on hover 40 | } 41 | \examples{ 42 | data <- iris[10:29, ] 43 | 44 | ## Standard hoverlight theme 45 | reactable(data, 46 | theme = hoverlight()) 47 | 48 | ## Additional options applied 49 | reactable(data, 50 | theme = hoverlight(font_size = 12, font_color = "grey", cell_padding = 3)) 51 | 52 | } 53 | -------------------------------------------------------------------------------- /man/html.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/table_elements.R 3 | \name{html} 4 | \alias{html} 5 | \title{Apply HTML attributes to title, subtitle, and source text.} 6 | \usage{ 7 | html(text, ...) 8 | } 9 | \arguments{ 10 | \item{text, ...}{The text provided within the title, subtitle or source with HTML attributes applied.} 11 | } 12 | \value{ 13 | an object of class HTML. 14 | } 15 | \description{ 16 | Use `html()` to apply HTML attributes to text within `add_title()`, `add_subtitle()`, and `add_source()`. 17 | } 18 | \examples{ 19 | \dontrun{ 20 | ## Change the title color to blue 21 | data <- iris[10:29, ] 22 | reactable(data) \%>\% 23 | add_title(html("Normal title. Blue title.")) 24 | 25 | ## Add emojis to the source 26 | data <- iris[10:100, ] 27 | reactable(data) \%>\% 28 | add_source(html("

Made with 💗 by: John Doe 😀

")) 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /man/lux.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{lux} 4 | \alias{lux} 5 | \title{Theme lux} 6 | \usage{ 7 | lux( 8 | font_size = 14, 9 | font_color = "#8c8c8c", 10 | header_font_size = 15, 11 | header_font_color = "#7f7f7f", 12 | background_color = NULL, 13 | cell_padding = 6, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 14.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #8c8c8c.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 15.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #7f7f7f.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is NULL.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 6.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | Bootstrap-inspired lux theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard lux theme 49 | reactable(data, 50 | theme = lux()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = lux(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/margin.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/table_elements.R 3 | \name{margin} 4 | \alias{margin} 5 | \title{Margin dimensions.} 6 | \usage{ 7 | margin(t = 0, r = 0, b = 0, l = 0) 8 | } 9 | \arguments{ 10 | \item{t, r, b, l}{The dimensions of the top, right, bottom, and left margins.} 11 | } 12 | \value{ 13 | a function that provides margin dimensions. 14 | } 15 | \description{ 16 | Margin dimensions. 17 | } 18 | -------------------------------------------------------------------------------- /man/minty.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{minty} 4 | \alias{minty} 5 | \title{Theme minty} 6 | \usage{ 7 | minty( 8 | font_size = 15, 9 | font_color = "#9a9a9a", 10 | header_font_size = 16, 11 | header_font_color = "#c9e7de", 12 | background_color = NULL, 13 | cell_padding = 6, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 15.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #9a9a9a.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 16.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #c9e7de.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is NULL.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 6.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | Bootstrap-inspired minty theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard minty theme 49 | reactable(data, 50 | theme = minty()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = minty(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/pff.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{pff} 4 | \alias{pff} 5 | \title{Theme pff} 6 | \usage{ 7 | pff( 8 | font_size = 16, 9 | font_color = "#878e94", 10 | header_font_size = 12, 11 | header_font_color = "#ffffff", 12 | background_color = NULL, 13 | cell_padding = 4, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 16.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #878e94.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 12.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #ffffff.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is NULL.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 4.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | Pro Football Focus-inspired table theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard pff theme 49 | reactable(data, 50 | theme = pff()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = pff(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /man/pos_neg_colors.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/pos_neg_colors.R 3 | \name{pos_neg_colors} 4 | \alias{pos_neg_colors} 5 | \title{Assign colors to negative and positive values} 6 | \usage{ 7 | pos_neg_colors(neg_col, pos_col, bold = NULL) 8 | } 9 | \arguments{ 10 | \item{neg_col}{color to assign to negative values.} 11 | 12 | \item{pos_col}{color to assign to positive values.} 13 | 14 | \item{bold}{optional argument to bold values. 15 | Default is set to NULL or not bold.} 16 | } 17 | \value{ 18 | a function that applies a color 19 | to the positive and negative values of numeric column. 20 | } 21 | \description{ 22 | The `pos_neg_colors()` function assigns a color to all negative values and a color to all positive values. 23 | It should be placed within the style argument in reactable::colDef. 24 | } 25 | \examples{ 26 | data <- data.frame( 27 | Symbol = c("GOOG", "FB", "AMZN", "NFLX", "TSLA"), 28 | Price = c(1265.13, 187.89, 1761.33, 276.82, 328.13), 29 | Change = c(4.14, 1.51, -19.45, 5.32, -12.45)) 30 | 31 | ## Assign the color red to negative values and green to positive values 32 | reactable(data, 33 | columns = list( 34 | Change = colDef( 35 | style = pos_neg_colors("red", "green")))) 36 | 37 | ## Bold values 38 | reactable(data, 39 | columns = list( 40 | Change = colDef( 41 | style = pos_neg_colors("red", "green", bold = TRUE)))) 42 | 43 | } 44 | -------------------------------------------------------------------------------- /man/slate.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/themes.R 3 | \name{slate} 4 | \alias{slate} 5 | \title{Theme slate} 6 | \usage{ 7 | slate( 8 | font_size = 15, 9 | font_color = "#aaaaaa", 10 | header_font_size = 16, 11 | header_font_color = "#97999b", 12 | background_color = "#272b30", 13 | cell_padding = 6, 14 | centered = FALSE 15 | ) 16 | } 17 | \arguments{ 18 | \item{font_size}{Numeric value representing the size of the font within the table (in px). 19 | Default is 15.} 20 | 21 | \item{font_color}{Color of the font for the text within the table and the group headers. 22 | Default is #aaaaaa.} 23 | 24 | \item{header_font_size}{Numeric value representing the size of the font within the table (in px). 25 | Default is 16.} 26 | 27 | \item{header_font_color}{Color of the font for the header text. 28 | Default is #97999b.} 29 | 30 | \item{background_color}{Background color of the table. 31 | Default is #272b30.} 32 | 33 | \item{cell_padding}{Numeric value representing the padding size between cells (in px). 34 | Default is 6.} 35 | 36 | \item{centered}{Logical: vertically center the contents of the table. 37 | Default is FALSE.} 38 | } 39 | \value{ 40 | an object of class theme that is applied to a reactable table. 41 | } 42 | \description{ 43 | Bootstrap-inspired slate theme 44 | } 45 | \examples{ 46 | data <- iris[10:29, ] 47 | 48 | ## Standard slate theme 49 | reactable(data, 50 | theme = slate()) 51 | 52 | ## Additional options applied 53 | reactable(data, 54 | theme = slate(font_size = 12, font_color = "grey", cell_padding = 3)) 55 | 56 | } 57 | -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- 1 | template: 2 | bootstrap: 5 3 | bootswatch: materia 4 | bslib: 5 | pkgdown-nav-height: 100px 6 | 7 | home: 8 | title: reactablefmtr package 9 | 10 | toc: 11 | depth: 2 12 | 13 | url: https://kcuilla.github.io/reactablefmtr/ 14 | 15 | navbar: 16 | structure: 17 | left: [examples, articles, demos, tutorials, reference, news] 18 | right: [github] 19 | components: 20 | articles: 21 | text: Examples 22 | menu: 23 | - text: Color Scales 24 | href: articles/color_scales.html 25 | - text: Color Tiles 26 | href: articles/color_tiles.html 27 | - text: Data Bars 28 | href: articles/data_bars.html 29 | - text: Icon Assign 30 | href: articles/icon_assign.html 31 | - text: Icon Sets 32 | href: articles/icon_sets.html 33 | - text: Sparklines 34 | href: articles/sparklines.html 35 | - text: Themes 36 | href: articles/themes.html 37 | demos: 38 | text: Demos 39 | menu: 40 | - text: Cookbook 41 | href: articles/reactablefmtr_cookbook.html 42 | - text: NBA Player Ratings 43 | href: articles/nba_player_ratings.html 44 | - text: NFL Standings 45 | href: articles/nfl_standings.html 46 | tutorials: 47 | text: Tutorials 48 | menu: 49 | - text: Building the NFL Standings Table 50 | href: articles/nfl_standings_tutorial.html 51 | reference: 52 | text: Reference 53 | href: reference/index.html 54 | -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- 1 | /* navbar gradient */ 2 | .navbar { 3 | background: linear-gradient(90deg, #0047a6, #004fb9, #0158ce, #0163e8, #046efe, #1d7dfe, #378bfe, #509afe, #61a4fe) !important; 4 | box-shadow: 0 0 15px 5px rgba(0,0,0,.15); 5 | border: none; 6 | font-size: 1.2rem; 7 | } 8 | 9 | /* secondary color (pkg version) */ 10 | .nav-text.text-muted.me-auto { 11 | color: #ff914d !important; 12 | } 13 | 14 | /* light mode hover dropdown */ 15 | #navbar > ul.navbar-nav.me-auto > li.nav-item.dropdown a:hover { 16 | background-color: #046efe !important; 17 | color: #fff; 18 | } 19 | 20 | /* dark mode */ 21 | .navbar-dark .navbar-nav .active>.nav-link { 22 | background-color: #046efe !important; color: #fff; 23 | border: none; 24 | } 25 | 26 | /* search bar dark mode */ 27 | .navbar-dark input[type="search"] { 28 | background-color: #fff !important; 29 | color: #222 !important; 30 | } 31 | 32 | /* highlight color */ 33 | ::selection { 34 | background: #ff914d90; /* WebKit/Blink Browsers */ 35 | } 36 | ::-moz-selection { 37 | background: #ff914d90; /* Gecko Browsers */ 38 | } 39 | -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuilla/reactablefmtr/b27113159c8736fe8ac4b6aaf062916a194b10b9/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /reactablefmtr.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | StripTrailingWhitespace: Yes 17 | 18 | BuildType: Package 19 | PackageUseDevtools: Yes 20 | PackageInstallArgs: --no-multiarch --with-keep.source 21 | PackageRoxygenize: rd,collate,namespace 22 | --------------------------------------------------------------------------------