Skip to content

Commit a5fc8d5

Browse files
committed
Merge remote-tracking branch 'origin/dev' into 6646-advanced-table
* origin/dev: (277 commits) docs(tokens): consistency pass for new component descriptions (#12148) build(preset): use valid TS module resolution (#12151) docs: update list of contributors (#12134) chore: drop obsolete transforms (#12136) chore: release main (#11890) (#12147) build(deps): bump @arcgis/lumina, typescript, vite, vitest (#12137) chore(preset): fix JSON import in build config (#12142) docs(panel, action): update `text-color-pressed` token descriptions (#12140) chore: release next fix(input-time-picker): invert text color on Windows when each masked input is focused (#12130) chore: release next refactor(sematic-tokens): update `--calcite-corner-radius-default` to reference correct token (#12131) feat(semantic-tokens): add `--calcite-color-text-highlight` tokens (#12068) chore: release next feat(combobox): add `selectAll` toggle property (#11721) chore: release next fix(sort-handle): allow move and reorder events to be cancelled (#12095) chore: release next feat: added spike data, heart chart, and progress bar icons (#12127) feat(text-area): Add design tokens for corner radius, shadow, footer background color (#12124) ...
2 parents d9cd003 + 7d25fe8 commit a5fc8d5

File tree

747 files changed

+105939
-32001
lines changed

Some content is hidden

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

747 files changed

+105939
-32001
lines changed

.github/ISSUE_TEMPLATE/accessibility.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,5 +152,6 @@ body:
152152
- Esri Marketing
153153
- Professional Services - Midwest Delivery Center
154154
- Professional Services - Services Delivery
155+
- Workflow Manager
155156
- Calcite (design)
156157
- Calcite (dev)

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,6 @@ body:
147147
- Esri Marketing
148148
- Professional Services - Midwest Delivery Center
149149
- Professional Services - Services Delivery
150+
- Workflow Manager
150151
- Calcite (design)
151152
- Calcite (dev)

.github/ISSUE_TEMPLATE/enhancement.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,6 @@ body:
116116
- Esri Marketing
117117
- Professional Services - Midwest Delivery Center
118118
- Professional Services - Services Delivery
119+
- Workflow Manager
119120
- Calcite (design)
120121
- Calcite (dev)

.github/ISSUE_TEMPLATE/new-component.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,6 @@ body:
103103
- Esri Marketing
104104
- Professional Services - Midwest Delivery Center
105105
- Professional Services - Services Delivery
106+
- Workflow Manager
106107
- Calcite (design)
107108
- Calcite (dev)

.github/scripts/.lintstagedrc.js

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import baseConfig from "../../lint-staged.config.mjs";
2+
3+
/**
4+
* @filename: lint-staged.config.mjs
5+
* @type {import('lint-staged').Configuration}
6+
*/
7+
export default {
8+
...baseConfig,
9+
"*.{m,c,}js": ["eslint --fix", "prettier --write"],
10+
};

.github/workflows/chromatic.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
run: |
2323
npm install
2424
npm --workspace="packages/calcite-design-tokens" run build
25+
npm --workspace="packages/calcite-tailwind-preset" run build
2526
npm --workspace="packages/calcite-ui-icons" run build
2627
npm --workspace="packages/calcite-components" run build-storybook
2728
- name: Publish to Chromatic

.github/workflows/contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Update Contributor List
15-
uses: benelan/contributors-readme-action@no-commit-or-push
15+
uses: benelan/contributors-readme-action@calcite
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }}
1818
with:

.github/workflows/deploy-latest.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ jobs:
6666
run: |
6767
npm install
6868
npm run build
69-
npm run util:update-3rd-party-licenses
7069
7170
git config --global user.email "github-actions[bot]@users.noreply.github.com"
7271
git config --global user.name "github-actions[bot]"
@@ -75,7 +74,6 @@ jobs:
7574
7675
# The "|| true" prevents failure if there are no changes
7776
git add package-lock.json || true
78-
git add **/THIRD-PARTY-LICENSES.md || true
7977
8078
# The release-please PR only updates when there are new deployable
8179
# commits, e.g., fixes, features, or breaking changes. This is fine

.github/workflows/schedule-updates.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,31 @@ jobs:
5858
body: "This PR was automatically generated by the update-browserslist-db GitHub action"
5959
token: ${{ secrets.ADMIN_TOKEN }}
6060
labels: "chore,skip visual snapshots"
61+
62+
update-licenses:
63+
runs-on: ubuntu-latest
64+
steps:
65+
- uses: actions/checkout@v4
66+
with:
67+
fetch-depth: 0
68+
- uses: actions/setup-node@v4
69+
with:
70+
node-version-file: package.json
71+
cache: npm
72+
- name: Update 3rd party licenses
73+
run: |
74+
npm install
75+
npm run util:update-3rd-party-licenses
76+
- name: Commit and create pull request
77+
uses: peter-evans/create-pull-request@v7
78+
with:
79+
add-paths: |
80+
**/THIRD-PARTY-LICENSES.md
81+
base: dev
82+
branch: ci/update-3rd-party-licenses
83+
delete-branch: true
84+
commit-message: "docs: update 3rd party licenses"
85+
title: "docs: update 3rd party licenses"
86+
body: "This PR was automatically generated by the update-licenses GitHub action"
87+
token: ${{ secrets.ADMIN_TOKEN }}
88+
labels: "docs,skip visual snapshots"

0 commit comments

Comments
 (0)