Skip to content

Commit bb66d95

Browse files
authored
Merge branch 'dev' into danielklim/basedashrunner-host-option
2 parents 4120181 + 6545710 commit bb66d95

File tree

907 files changed

+360474
-44706
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

907 files changed

+360474
-44706
lines changed

.circleci/config.yml

Lines changed: 553 additions & 312 deletions
Large diffs are not rendered by default.

.flake8

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
ignore = C901, E203, E266, E501, E731, W503
33
select = B,C,E,F,W,T4
44
per-file-ignores =
5-
tests/*: E722, F811
5+
tests/*: E722, F811
6+
dash/html/I.py: E742

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These owners will be the default owners for everything in
22
# the repo. Unless a later match takes precedence
3-
* @alexcjohnson @Marc-Andre-Rivet @rpkyle
3+
* @alexcjohnson @T4rk1n @ndrezn @gvwilson @emilykl

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We do our best to catch bugs during the release process, but we rely on your hel
1313

1414

1515
**Describe your context**
16-
Please provide us your environment so we can easily reproduce the issue.
16+
Please provide us your environment, so we can easily reproduce the issue.
1717

1818
- replace the result of `pip list | grep dash` below
1919
```

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
- [ ] I have added entry in the `CHANGELOG.md`
1414
- [ ] If this PR needs a follow-up in **dash docs**, **community thread**, I have mentioned the relevant URLS as follows
1515
- [ ] this GitHub [#PR number]() updates the dash docs
16-
- [ ] here is the show and tell thread in Plotly Dash community
16+
- [ ] here is the show and tell thread in Plotly Dash community

.github/workflows/update-html.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: update-html
2+
run-name: Update dash html components attributes
3+
on:
4+
schedule:
5+
- cron: 10 0 1 * *
6+
workflow_dispatch:
7+
inputs:
8+
name:
9+
description: Name of the run
10+
required: false
11+
type: string
12+
13+
jobs:
14+
update-attributes:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
with:
19+
ref: dev
20+
- uses: actions/setup-node@v3
21+
- name: Extract elements
22+
working-directory: ./components/dash-html-components
23+
run: |
24+
npm ci
25+
npm run extract
26+
- name: Create Pull Request
27+
uses: peter-evans/create-pull-request@v5
28+
with:
29+
commit-message: Update Dash HTML elements & attributes.
30+
body: Automated HTML attributes update.

.gitignore

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ coverage.xml
4242
# Distribution / packaging
4343
.Python
4444
build/
45+
dash/deps/
46+
dash/html/*
47+
!dash/html/.gitkeep
48+
dash/dcc/*
49+
!dash/dcc/.gitkeep
50+
dash/dash_table/*
51+
!dash/dash_table/.gitkeep
4552
develop-eggs/
4653
dist/
4754
downloads/
@@ -63,10 +70,10 @@ node_modules/
6370
.npm
6471
npm-debug*
6572

66-
dash_renderer/
6773
dash_generator_test_component_standard/
6874
dash_generator_test_component_nested/
6975
dash_test_components/
76+
dash_generator_test_component_typescript/
7077
inst/
7178
man/
7279
R/
@@ -80,3 +87,8 @@ VERSION.txt
8087

8188
# vim
8289
*.swp
90+
91+
# Exceptions
92+
!components/dash-core-components/tests/integration/upload/upload-assets/upft001.csv
93+
!components/dash-table/tests/assets/*.csv
94+
!components/dash-table/tests/selenium/assets/*.csv

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
npm run lint && \
2+
(cd components/dash-core-components && npm run lint) && \
3+
(cd components/dash-table && npm run lint)

.huskyrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)