Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
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: 0 additions & 4 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ lib/
demo/.*\.js
demo/.*\.html
demo/.*\.css
demo/.*\.ts
demo/.*\.tsx
demo/.*\.less


# ignore Python files/folders
setup.py
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
python -m venv venv
. venv/bin/activate
pip install -r dev-requirements.txt --quiet
git clone --depth 1 git@github.com:plotly/dash.git dash-main
git clone --depth 1 -b dev git@github.com:plotly/dash.git dash-main
pip install -e ./dash-main[dev,testing] --quiet
renderer build
- run:
Expand Down
2 changes: 1 addition & 1 deletion .config/webpack/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ module.exports = (options = {}) => {
new WebpackDashDynamicImport()
]
};
};
};
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
/man
/R
/src/*.jl
/src/jl/
DESCRIPTION
NAMESPACE
Project.toml
Expand Down Expand Up @@ -45,4 +46,4 @@ dist
*__pycache__*
__pycache__/

*.pyc
*.pyc
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm run lint
5 changes: 0 additions & 5 deletions .huskyrc

This file was deleted.

7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- [#907](https://github.com/plotly/dash-table/pull/907)
- [#907](https://github.com/plotly/dash-table/pull/907)
- Fix a bug where pagination did not work or was not visible. [#834](https://github.com/plotly/dash-table/issues/834)
- Fix a bug where if you are on a page that no longer exists after the data is updated, no data is displayed. [#892](https://github.com/plotly/dash-table/issues/892)


### Added
- [#916](https://github.com/plotly/dash-table/pull/916)
- [#916](https://github.com/plotly/dash-table/pull/916)
- Added `html` option to `markdown_options` prop. This enables the use of html tags in markdown text.

- [#545](https://github.com/plotly/dash-table/issues/545)
- Case insensitive filtering
- 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
- [#918](https://github.com/plotly/dash-core-components/pull/918) Updated all dependencies. In particular the `highlight.js` upgrade changes code highlighting in markdown: we have long used their "github" style, this has been updated to more closely match current github styles.
- [#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
Expand Down
4 changes: 1 addition & 3 deletions demo/AppMode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,7 @@ function getBaseTableProps(mock: IDataMock): Partial<IProps> {
};
}

function getDefaultState(
generateData: Function = generateMockData
): {
function getDefaultState(generateData: Function = generateMockData): {
filter_query: string;
tableProps: Partial<PropsWithDefaults>;
} {
Expand Down
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dash-bootstrap-components==0.10.7
dash-bootstrap-components==0.12.2
pandas
preconditions
xlrd<2
openpyxl
Loading