From 8a4abad4a0da90683b7a3edc411da0886f1635c6 Mon Sep 17 00:00:00 2001 From: hammadtheone Date: Tue, 18 May 2021 12:28:30 -0400 Subject: [PATCH 1/3] Update dash-info.yaml --- dash-info.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dash-info.yaml b/dash-info.yaml index 8d8475a85..e220e8fb3 100644 --- a/dash-info.yaml +++ b/dash-info.yaml @@ -4,12 +4,12 @@ pkg_help_description: >- markup, which makes it accessible, responsive, and easy to style. This component was written from scratch in 'React.js' specifically for the 'Dash' community. Its API was designed to be - ergonomic and its behaviour is completely customizable through its + ergonomic and its behaviour is completely customizable through its properties. pkg_help_title: >- Core Interactive Table Component for 'Dash' pkg_authors: >- - c(person("Chris", "Parmer", email = "chris@plotly.com", role = c("aut")), person("Ryan Patrick", "Kyle", email = "ryan@plotly.com", role = c("cre"), comment = c(ORCID = "0000-0002-4958-2844")), person(family = "Plotly Technologies, Inc.", role = "cph")) + c(person("Chris", "Parmer", email = "chris@plotly.com", role = c("aut")), person("Ryan Patrick", "Kyle", email = "ryan@plotly.com", role = c("cre"), comment = c(ORCID = "0000-0002-4958-2844")), person(family = "Plotly Technologies, Inc.", role = "cph")) pkg_copyright: >- Plotly Technologies, Inc. r_examples: @@ -28,7 +28,6 @@ r_examples: # maintainers. if (interactive() && require(dash)) { library(dash) - library(dashTable) app <- Dash$new() @@ -53,7 +52,7 @@ r_examples: ) app$run_server() - + app <- Dash$new() # We can also make rows and columns selectable/deletable From ace6e951a59161ef13c423f31ff0eeb32e2f93ab Mon Sep 17 00:00:00 2001 From: hammadtheone Date: Tue, 18 May 2021 12:35:04 -0400 Subject: [PATCH 2/3] Updated CHANGELOG --- .Rbuildignore | 4 ++++ CHANGELOG.md | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.Rbuildignore b/.Rbuildignore index 0bb1753af..0acd35c8c 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -19,6 +19,10 @@ lib/ demo/.*\.js demo/.*\.html demo/.*\.css +demo/.*\.ts +demo/.*\.tsx +demo/.*\.less + # ignore Python files/folders setup.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 835db9b85..9439cc847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). - New props: `filter_options` - to control case of all filters, `columns.filter_options` - to control filter case for each column - New operators: `i=`, `ieq`, `i>=`, `ige`, `i>`, `igt`, `i<=`, `ile`, `i<`, `ilt`, `i!=`, `ine`, `icontains` - for case-insensitive filtering, `s=`, `seq`, `s>=`, `sge`, `s>`, `sgt`, `s<=`, `sle`, `s<`, `slt`, `s!=`, `sne`, `scontains` - to force case-sensitive filtering on case-insensitive columns +### Changed +- [#901](https://github.com/plotly/dash-core-components/pull/901) Updated R package `dash-info.yaml` to re-generate examples without loading add-on packages. + ## [4.11.3] - 2021-04-08 ### Changed - [#862](https://github.com/plotly/dash-table/pull/862) - update docstrings per https://github.com/plotly/dash/issues/1205 From 1ec31ab3d70f2880d3926b4eb79d57753fd36e9a Mon Sep 17 00:00:00 2001 From: hammadtheone Date: Tue, 18 May 2021 16:07:14 -0400 Subject: [PATCH 3/3] Update CHANGELOG description --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9439cc847..fdb870513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - New operators: `i=`, `ieq`, `i>=`, `ige`, `i>`, `igt`, `i<=`, `ile`, `i<`, `ilt`, `i!=`, `ine`, `icontains` - for case-insensitive filtering, `s=`, `seq`, `s>=`, `sge`, `s>`, `sgt`, `s<=`, `sle`, `s<`, `slt`, `s!=`, `sne`, `scontains` - to force case-sensitive filtering on case-insensitive columns ### Changed -- [#901](https://github.com/plotly/dash-core-components/pull/901) Updated R package `dash-info.yaml` to re-generate examples without loading add-on packages. +- [#901](https://github.com/plotly/dash-core-components/pull/901) Updated R package `dash-info.yaml` to regenerate example without attaching now-deprecated core component packages (`dashHtmlComponents`, `dashCoreComponents`, or `dashTable`). ## [4.11.3] - 2021-04-08 ### Changed