Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Update dash-info.yaml #903

Merged
merged 3 commits into from
May 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ lib/
demo/.*\.js
demo/.*\.html
demo/.*\.css
demo/.*\.ts
demo/.*\.tsx
demo/.*\.less


# ignore Python files/folders
setup.py
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 regenerate example without attaching now-deprecated core component packages (`dashHtmlComponents`, `dashCoreComponents`, or `dashTable`).

## [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
Expand Down
7 changes: 3 additions & 4 deletions dash-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ pkg_help_description: >-
<table/> 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 = "[email protected]", role = c("aut")), person("Ryan Patrick", "Kyle", email = "[email protected]", role = c("cre"), comment = c(ORCID = "0000-0002-4958-2844")), person(family = "Plotly Technologies, Inc.", role = "cph"))
c(person("Chris", "Parmer", email = "[email protected]", role = c("aut")), person("Ryan Patrick", "Kyle", email = "[email protected]", role = c("cre"), comment = c(ORCID = "0000-0002-4958-2844")), person(family = "Plotly Technologies, Inc.", role = "cph"))
pkg_copyright: >-
Plotly Technologies, Inc.
r_examples:
Expand All @@ -28,7 +28,6 @@ r_examples:
# maintainers.
if (interactive() && require(dash)) {
library(dash)
library(dashTable)

app <- Dash$new()

Expand All @@ -53,7 +52,7 @@ r_examples:
)

app$run_server()

app <- Dash$new()

# We can also make rows and columns selectable/deletable
Expand Down