Skip to content

Commit 0841466

Browse files
committedMay 27, 2021
Update dash-info.yaml (#903)
* Update dash-info.yaml * Updated CHANGELOG * Update CHANGELOG description
1 parent dd02bc9 commit 0841466

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed
 

‎packages/dash-table/.Rbuildignore

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ lib/
1919
demo/.*\.js
2020
demo/.*\.html
2121
demo/.*\.css
22+
demo/.*\.ts
23+
demo/.*\.tsx
24+
demo/.*\.less
25+
2226

2327
# ignore Python files/folders
2428
setup.py

‎packages/dash-table/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
99
- New props: `filter_options` - to control case of all filters, `columns.filter_options` - to control filter case for each column
1010
- 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
1111

12+
### Changed
13+
- [#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`).
14+
1215
## [4.11.3] - 2021-04-08
1316
### Changed
1417
- [#862](https://github.com/plotly/dash-table/pull/862) - update docstrings per https://github.com/plotly/dash/issues/1205

‎packages/dash-table/dash-info.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ pkg_help_description: >-
44
<table/> markup, which makes it accessible, responsive, and easy
55
to style. This component was written from scratch in 'React.js'
66
specifically for the 'Dash' community. Its API was designed to be
7-
ergonomic and its behaviour is completely customizable through its
7+
ergonomic and its behaviour is completely customizable through its
88
properties.
99
pkg_help_title: >-
1010
Core Interactive Table Component for 'Dash'
1111
pkg_authors: >-
12-
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"))
12+
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"))
1313
pkg_copyright: >-
1414
Plotly Technologies, Inc.
1515
r_examples:
@@ -28,7 +28,6 @@ r_examples:
2828
# maintainers.
2929
if (interactive() && require(dash)) {
3030
library(dash)
31-
library(dashTable)
3231
3332
app <- Dash$new()
3433
@@ -53,7 +52,7 @@ r_examples:
5352
)
5453
5554
app$run_server()
56-
55+
5756
app <- Dash$new()
5857
5958
# We can also make rows and columns selectable/deletable

0 commit comments

Comments
 (0)
Please sign in to comment.