From 1ae1f7a4761b9e316860b122f01206a475bdfc6f Mon Sep 17 00:00:00 2001 From: Calcite Admin Date: Wed, 4 Feb 2026 11:44:53 -0800 Subject: [PATCH 1/2] chore: release releases/2026.R1 --- .release-please-manifest.json | 10 +- examples/components/angular/package.json | 2 +- examples/components/preact/package.json | 2 +- examples/components/react/package.json | 2 +- examples/components/rollup/package.json | 2 +- examples/components/vite/package.json | 2 +- examples/components/vue/package.json | 2 +- .../components/web-dev-server/package.json | 2 +- examples/components/webpack/package.json | 2 +- package-lock.json | 32 ++-- packages/components-react/CHANGELOG.md | 14 ++ packages/components-react/package.json | 4 +- packages/components/CHANGELOG.md | 174 ++++++++++++++++++ packages/components/package.json | 8 +- packages/design-tokens/CHANGELOG.md | 26 +++ packages/design-tokens/package.json | 2 +- packages/tailwind-preset/CHANGELOG.md | 16 ++ packages/tailwind-preset/package.json | 6 +- packages/ui-icons/CHANGELOG.md | 15 ++ packages/ui-icons/docs/index.html | 2 +- packages/ui-icons/package.json | 2 +- 21 files changed, 286 insertions(+), 41 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dc7ffbdce21..d66caa5f4b2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "packages/components": "3.3.3", - "packages/components-react": "3.3.3", - "packages/design-tokens": "3.2.1", - "packages/ui-icons": "4.3.0", + "packages/components": "5.0.0", + "packages/components-react": "5.0.0", + "packages/design-tokens": "4.0.0", + "packages/ui-icons": "4.4.0", "packages/eslint-plugin-components": "2.0.3", - "packages/tailwind-preset": "1.0.2" + "packages/tailwind-preset": "1.1.0" } diff --git a/examples/components/angular/package.json b/examples/components/angular/package.json index 683cb6801ce..c66ee68489e 100644 --- a/examples/components/angular/package.json +++ b/examples/components/angular/package.json @@ -24,7 +24,7 @@ "@angular/forms": "^20.3.3", "@angular/platform-browser": "^20.3.3", "@angular/router": "^20.3.3", - "@esri/calcite-components": "3.3.3", + "@esri/calcite-components": "5.0.0", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.15.0" diff --git a/examples/components/preact/package.json b/examples/components/preact/package.json index 180e8174b31..20f4b58f5ff 100644 --- a/examples/components/preact/package.json +++ b/examples/components/preact/package.json @@ -27,7 +27,7 @@ ] }, "dependencies": { - "@esri/calcite-components": "3.3.3", + "@esri/calcite-components": "5.0.0", "preact": "^10.26.2", "preact-iso": "^2.9.0" }, diff --git a/examples/components/react/package.json b/examples/components/react/package.json index 42e520e4acf..09ce939489a 100644 --- a/examples/components/react/package.json +++ b/examples/components/react/package.json @@ -16,7 +16,7 @@ "preview": "vite preview" }, "dependencies": { - "@esri/calcite-components-react": "3.3.3", + "@esri/calcite-components-react": "5.0.0", "react": "^18.3.1", "react-dom": "^18.3.1" }, diff --git a/examples/components/rollup/package.json b/examples/components/rollup/package.json index 547e7d8a2be..cf928fafb7a 100644 --- a/examples/components/rollup/package.json +++ b/examples/components/rollup/package.json @@ -15,7 +15,7 @@ "start": "serve public" }, "dependencies": { - "@esri/calcite-components": "3.3.3" + "@esri/calcite-components": "5.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^26.0.1", diff --git a/examples/components/vite/package.json b/examples/components/vite/package.json index 5221b0fac44..3248a818571 100644 --- a/examples/components/vite/package.json +++ b/examples/components/vite/package.json @@ -15,7 +15,7 @@ "serve": "vite preview" }, "dependencies": { - "@esri/calcite-components": "3.3.3" + "@esri/calcite-components": "5.0.0" }, "devDependencies": { "@types/node": "24.10.0", diff --git a/examples/components/vue/package.json b/examples/components/vue/package.json index c06127541c0..37ad61d987c 100644 --- a/examples/components/vue/package.json +++ b/examples/components/vue/package.json @@ -16,7 +16,7 @@ "copy": "ncp ./node_modules/@esri/calcite-components/dist/cdn/assets/ ./public/assets/" }, "dependencies": { - "@esri/calcite-components": "3.3.3", + "@esri/calcite-components": "5.0.0", "vue": "^3.4.36" }, "devDependencies": { diff --git a/examples/components/web-dev-server/package.json b/examples/components/web-dev-server/package.json index 6b98f725e08..f0acd89f9bd 100644 --- a/examples/components/web-dev-server/package.json +++ b/examples/components/web-dev-server/package.json @@ -13,7 +13,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@esri/calcite-components": "3.3.3" + "@esri/calcite-components": "5.0.0" }, "devDependencies": { "@web/dev-server": "^0.4.6" diff --git a/examples/components/webpack/package.json b/examples/components/webpack/package.json index ab0d3060d5c..51742b9ef62 100644 --- a/examples/components/webpack/package.json +++ b/examples/components/webpack/package.json @@ -14,7 +14,7 @@ "start": "webpack-dev-server --open" }, "dependencies": { - "@esri/calcite-components": "3.3.3" + "@esri/calcite-components": "5.0.0" }, "devDependencies": { "copy-webpack-plugin": "^12.0.2", diff --git a/package-lock.json b/package-lock.json index ff972f04e5c..8be606bbb05 100644 --- a/package-lock.json +++ b/package-lock.json @@ -33495,7 +33495,7 @@ }, "packages/calcite-components": { "name": "@esri/calcite-components", - "version": "4.0.0-next.44", + "version": "5.0.0", "extraneous": true, "license": "SEE LICENSE.md", "dependencies": { @@ -33528,7 +33528,7 @@ }, "packages/calcite-components-react": { "name": "@esri/calcite-components-react", - "version": "4.0.0-next.44", + "version": "5.0.0", "extraneous": true, "license": "SEE LICENSE.md", "dependencies": { @@ -33544,7 +33544,7 @@ }, "packages/calcite-design-tokens": { "name": "@esri/calcite-design-tokens", - "version": "4.0.0-next.5", + "version": "4.0.0", "extraneous": true, "license": "SEE LICENSE.md", "devDependencies": { @@ -33553,7 +33553,7 @@ }, "packages/calcite-tailwind-preset": { "name": "@esri/calcite-tailwind-preset", - "version": "1.0.2-next.7", + "version": "1.1.0", "extraneous": true, "license": "SEE LICENSE.md", "dependencies": { @@ -33566,7 +33566,7 @@ }, "packages/calcite-ui-icons": { "name": "@esri/calcite-ui-icons", - "version": "4.4.0-next.8", + "version": "4.4.0", "extraneous": true, "license": "SEE LICENSE.md", "bin": { @@ -33585,12 +33585,12 @@ }, "packages/components": { "name": "@esri/calcite-components", - "version": "5.0.0-next.90", + "version": "5.0.0", "license": "SEE LICENSE.md", "dependencies": { "@arcgis/lumina": ">=5.0.0-next.144 <6.0.0", "@arcgis/toolkit": ">=5.0.0-next.144 <6.0.0", - "@esri/calcite-ui-icons": "4.4.0-next.22", + "@esri/calcite-ui-icons": "4.4.0", "@floating-ui/dom": "^1.6.12", "@floating-ui/utils": "^0.2.8", "@types/sortablejs": "^1.15.8", @@ -33606,8 +33606,8 @@ }, "devDependencies": { "@arcgis/lumina-compiler": ">=5.0.0-next.144 <6.0.0", - "@esri/calcite-design-tokens": "4.0.0-next.23", - "@esri/calcite-tailwind-preset": "1.1.0-next.13", + "@esri/calcite-design-tokens": "4.0.0", + "@esri/calcite-tailwind-preset": "1.1.0", "@esri/eslint-plugin-calcite-components": "2.0.4-next.9", "playwright": "1.57.0", "sass-embedded": "1.97.3", @@ -33616,11 +33616,11 @@ }, "packages/components-react": { "name": "@esri/calcite-components-react", - "version": "5.0.0-next.90", + "version": "5.0.0", "license": "SEE LICENSE.md", "dependencies": { "@arcgis/lumina": ">=5.0.0-next.144 <6.0.0", - "@esri/calcite-components": "5.0.0-next.90", + "@esri/calcite-components": "5.0.0", "@lit/react": "^1.0.8", "lit": "^3.3.0" }, @@ -33639,7 +33639,7 @@ }, "packages/design-tokens": { "name": "@esri/calcite-design-tokens", - "version": "4.0.0-next.23", + "version": "4.0.0", "license": "SEE LICENSE.md", "devDependencies": { "vitest": "4.0.18" @@ -33683,13 +33683,13 @@ }, "packages/tailwind-preset": { "name": "@esri/calcite-tailwind-preset", - "version": "1.1.0-next.13", + "version": "1.1.0", "license": "SEE LICENSE.md", "dependencies": { - "@esri/calcite-design-tokens": "4.0.0-next.23" + "@esri/calcite-design-tokens": "4.0.0" }, "peerDependencies": { - "@esri/calcite-design-tokens": "^4.0.0-next.1", + "@esri/calcite-design-tokens": "^4.0.0", "tailwindcss": "^3.0.0 < 4.0.0" } }, @@ -33700,7 +33700,7 @@ }, "packages/ui-icons": { "name": "@esri/calcite-ui-icons", - "version": "4.4.0-next.22", + "version": "4.4.0", "license": "SEE LICENSE.md", "bin": { "spriter": "bin/spriter.js" diff --git a/packages/components-react/CHANGELOG.md b/packages/components-react/CHANGELOG.md index 8bb16fe0c77..7c76ba5bca8 100644 --- a/packages/components-react/CHANGELOG.md +++ b/packages/components-react/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.3...@esri/calcite-components-react@5.0.0) (2026-02-04) + + +### Bug Fixes + +* Remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @esri/calcite-components bumped from 5.0.0-next.90 to 5.0.0 + ## [5.0.0-next.90](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.89...@esri/calcite-components-react@5.0.0-next.90) (2026-02-03) **Note:** Version bump only for package @esri/calcite-components-react diff --git a/packages/components-react/package.json b/packages/components-react/package.json index 772bb96b4db..9a8b39cb413 100644 --- a/packages/components-react/package.json +++ b/packages/components-react/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-components-react", - "version": "5.0.0-next.90", + "version": "5.0.0", "description": "A set of React components that wrap calcite components", "homepage": "https://developers.arcgis.com/calcite-design-system/", "repository": { @@ -29,7 +29,7 @@ }, "dependencies": { "@arcgis/lumina": ">=5.0.0-next.144 <6.0.0", - "@esri/calcite-components": "5.0.0-next.90", + "@esri/calcite-components": "5.0.0", "@lit/react": "^1.0.8", "lit": "^3.3.0" }, diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index ce0bfd37246..3d644bb5065 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,180 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.3...@esri/calcite-components@5.0.0) (2026-02-04) + + +### ⚠ BREAKING CHANGES + +* **combobox-item:** Deprecated `textLabel` prop has been removed, use `heading` instead. +* restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) +* **action:** Setting Action's default appearance to "transparent" and deprecating "solid" to better support embedded use cases where focus background colors can take precedence. +* removes the following deprecated custom CSS props: +* **input:** The deprecated `textarea` type was removed. Developers should use `calcite-text-area` instead. +* drop deprecated CDN namespace ([#12546](https://github.com/Esri/calcite-design-system/issues/12546)) +* **stepper:** Deprecated event has been removed, use the following event instead: +* **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** Deprecated slots have been removed. Use the following replacements instead: +* **input, input-number, input-text:** Removed support for the following css tokens as they are no longer needed: + +### Features + +* **accordion-item:** Update action slot spacing ([#13416](https://github.com/Esri/calcite-design-system/issues/13416)) ([56a383a](https://github.com/Esri/calcite-design-system/commit/56a383aa5e40ff05eab49d8e565faaff479643ac)) +* **accordion-item:** Update header to use semantic button instead of div ([#13664](https://github.com/Esri/calcite-design-system/issues/13664)) ([4022e50](https://github.com/Esri/calcite-design-system/commit/4022e500199688172d409d7b8f6e4dfcec6abb79)) +* **accordion-item:** Update heading and description styling for system consistency for 5.0 ([#13642](https://github.com/Esri/calcite-design-system/issues/13642)) ([4626f64](https://github.com/Esri/calcite-design-system/commit/4626f64c3ba377aae3e681e04437b3fafc9e8902)) +* **action-bar, action-pad, action-group:** Implement ARIA toolbar pattern with configurable selection modes ([#13386](https://github.com/Esri/calcite-design-system/issues/13386)) ([285fb5e](https://github.com/Esri/calcite-design-system/commit/285fb5ecae99f84fee6e4229dbeec87701820d59)) +* **action:** Adjust indicator size and position on small scale ([#13558](https://github.com/Esri/calcite-design-system/issues/13558)) ([e8172bb](https://github.com/Esri/calcite-design-system/commit/e8172bbdce8dcefd378521fd5539260d8c43ac40)) +* **action:** Update to 5.0 design ([#13252](https://github.com/Esri/calcite-design-system/issues/13252)) ([a3979b4](https://github.com/Esri/calcite-design-system/commit/a3979b49dd633e80b2279157b880d0e17de1049a)) +* Add `topLayerDisabled` property to additional components ([#13730](https://github.com/Esri/calcite-design-system/issues/13730)) ([44a99f8](https://github.com/Esri/calcite-design-system/commit/44a99f8badef073992d1f7177483775fdca29429)) +* **alert, autocomplete, combobox, dropdown, input-date-picker, popover, tooltip:** Add `topLayerDisabled` prop ([#13604](https://github.com/Esri/calcite-design-system/issues/13604)) ([f37d836](https://github.com/Esri/calcite-design-system/commit/f37d836afac35084490b29e577f60ff97e264db5)) +* **alert:** Remove title slot bottom margin on large scale ([#13646](https://github.com/Esri/calcite-design-system/issues/13646)) ([6946535](https://github.com/Esri/calcite-design-system/commit/694653565b1caf1cdf2f3dc56ef57c37457161d8)) +* **alert:** Update to action 5.0 spacing ([#13417](https://github.com/Esri/calcite-design-system/issues/13417)) ([2275e25](https://github.com/Esri/calcite-design-system/commit/2275e250da68dd255e8649d8edd3a023b2dbf27f)) +* **alert:** Use filled status icon for consistency ([#13665](https://github.com/Esri/calcite-design-system/issues/13665)) ([d743d0d](https://github.com/Esri/calcite-design-system/commit/d743d0dbd823f345909ac3f1b9b35be6426cfb71)) +* Apply user-provided locale (`lang`) and supported t9n locale in appropriate contexts ([#13315](https://github.com/Esri/calcite-design-system/issues/13315)) ([c054ecd](https://github.com/Esri/calcite-design-system/commit/c054ecdd5c9d98d9c98852d49448b5abff311aa5)) +* **autocomplete:** Add token for max menu height ([#13616](https://github.com/Esri/calcite-design-system/issues/13616)) ([75eaf0d](https://github.com/Esri/calcite-design-system/commit/75eaf0d706493981da5331faf19f0f569c6f8259)) +* **block:** Add content-end slot ([#13348](https://github.com/Esri/calcite-design-system/issues/13348)) ([077852c](https://github.com/Esri/calcite-design-system/commit/077852c10a539418ad77d4ff31d8ff6740ed867b)) +* **block:** Update heading styling for system consistency ([#13326](https://github.com/Esri/calcite-design-system/issues/13326)) ([5410977](https://github.com/Esri/calcite-design-system/commit/5410977e94f79e204d55e6e405ff7c0b709de560)) +* **block:** Update to Action 5.0 spacing ([#13429](https://github.com/Esri/calcite-design-system/issues/13429)) ([fe4aaab](https://github.com/Esri/calcite-design-system/commit/fe4aaabff4e5a4038b43b1922d7c57bb53af95a6)) +* **button, chip, stepper-item, swatch, table:** Adjust border color for consistency ([#13263](https://github.com/Esri/calcite-design-system/issues/13263)) ([733a632](https://github.com/Esri/calcite-design-system/commit/733a632fa07daa5a5cfdb99bb23c7355e6831b9a)) +* **card:** Update heading and description spacing ([#13320](https://github.com/Esri/calcite-design-system/issues/13320)) ([4b85af9](https://github.com/Esri/calcite-design-system/commit/4b85af99881ad9cfc680d50429f1e6e0bae0b992)) +* **card:** Update selection state styling for 5.0 ([#13341](https://github.com/Esri/calcite-design-system/issues/13341)) ([bcf0def](https://github.com/Esri/calcite-design-system/commit/bcf0deff33d2ffbb7cc86081008ab636e7ff3747)) +* **carousel:** Add `paginationDisabled` property ([#13704](https://github.com/Esri/calcite-design-system/issues/13704)) ([efd2573](https://github.com/Esri/calcite-design-system/commit/efd257380a0df3699ac4279415505fe4856179b8)) +* **carousel:** Add `paginationStatus` to messages ([#13710](https://github.com/Esri/calcite-design-system/issues/13710)) ([f671ef3](https://github.com/Esri/calcite-design-system/commit/f671ef39a1696dfd617c8ea92cfb448164430509)) +* **carousel:** Improve single Carousel Item display ([#13644](https://github.com/Esri/calcite-design-system/issues/13644)) ([109ec94](https://github.com/Esri/calcite-design-system/commit/109ec941b614713ae727244c402a786e44c20df5)) +* **chip:** Update to Action 5 spacing ([#13445](https://github.com/Esri/calcite-design-system/issues/13445)) ([ecd6d53](https://github.com/Esri/calcite-design-system/commit/ecd6d535fd9d62c798e411a99b05f4e8d126065b)) +* **combobox-item:** Remove textLabel prop and update heading and value properties ([#13427](https://github.com/Esri/calcite-design-system/issues/13427)) ([49ae75e](https://github.com/Esri/calcite-design-system/commit/49ae75e5e96267d1bbc1c8cf9598ba031fe2c61d)) +* **combobox-item:** Set heading as fallback for a11y props and value ([#13460](https://github.com/Esri/calcite-design-system/issues/13460)) ([602abec](https://github.com/Esri/calcite-design-system/commit/602abec0f2114d38f2024437fb5135bccc2bc34c)) +* **combobox:** Add `placement` prop ([#13471](https://github.com/Esri/calcite-design-system/issues/13471)) ([a3acef1](https://github.com/Esri/calcite-design-system/commit/a3acef14889e5f0017ec77ab1e9ca64c0a7fc602)) +* **date-picker, input-date-picker:** Add support for fr-CA ([#13371](https://github.com/Esri/calcite-design-system/issues/13371)) ([d4c69cb](https://github.com/Esri/calcite-design-system/commit/d4c69cb8ae375b35fbcc273b0b3c0940b3204ef8)) +* **dialog, flow-item, panel:** Update to Action 5.0 spacing ([#13437](https://github.com/Esri/calcite-design-system/issues/13437)) ([3b8f82f](https://github.com/Esri/calcite-design-system/commit/3b8f82f72552469a3a88289380aba3abb8237fdd)) +* **dialog, sheet:** Add `topLayerDisabled` prop ([#13600](https://github.com/Esri/calcite-design-system/issues/13600)) ([2ed7eb7](https://github.com/Esri/calcite-design-system/commit/2ed7eb7066d323a545071baf11389e499a3294fb)) +* **dialog:** Add fullScreenDisabled prop to prevent full screen layout ([#13753](https://github.com/Esri/calcite-design-system/issues/13753)) ([20c3031](https://github.com/Esri/calcite-design-system/commit/20c30310f6519999a05fccda421afa76ba9e7b78)) +* **dropdown-item:** Reduce height in small & medium scale. ([#13391](https://github.com/Esri/calcite-design-system/issues/13391)) ([6198029](https://github.com/Esri/calcite-design-system/commit/6198029724f25b607913e82a47909427957e2441)) +* **dropdown:** Update selection appearance ([#13571](https://github.com/Esri/calcite-design-system/issues/13571)) ([dcf7a36](https://github.com/Esri/calcite-design-system/commit/dcf7a3687004013d625b12acd5653aa07f1efcaa)) +* **flow-item:** Remove border from back button ([#13449](https://github.com/Esri/calcite-design-system/issues/13449)) ([41f1fb8](https://github.com/Esri/calcite-design-system/commit/41f1fb8ee22ead4000019e14eb22a545147a99dd)) +* **input-time-picker:** Support French Canadian (fr-CA) locale ([#13355](https://github.com/Esri/calcite-design-system/issues/13355)) ([7307cd0](https://github.com/Esri/calcite-design-system/commit/7307cd06ca36fcf9a05b5be4d394dd5a2a96c053)) +* **input, input-number, input-text:** Update prefix and suffix visuals for 4.0 ([#13226](https://github.com/Esri/calcite-design-system/issues/13226)) ([b24c754](https://github.com/Esri/calcite-design-system/commit/b24c754219450d3997250d82b3b475ee36ffe1c8)) +* **list, list-item:** Update action slot spacing for 5.0 ([#13463](https://github.com/Esri/calcite-design-system/issues/13463)) ([73bddc3](https://github.com/Esri/calcite-design-system/commit/73bddc3491b4d7d2d6fd8872d3c0b7551a5313ac)) +* **list:** Add `highlight` selection appearance ([#13570](https://github.com/Esri/calcite-design-system/issues/13570)) ([81ad34e](https://github.com/Esri/calcite-design-system/commit/81ad34e94c38a17d2d012296f7e658a597bc06c1)) +* **menu-item:** Update dropdown action spacing ([#13440](https://github.com/Esri/calcite-design-system/issues/13440)) ([010a0c5](https://github.com/Esri/calcite-design-system/commit/010a0c53df56dd7c1f34d47727e24d1e206953e9)) +* **menu:** Update vertical layout design ([#13576](https://github.com/Esri/calcite-design-system/issues/13576)) ([06f0913](https://github.com/Esri/calcite-design-system/commit/06f09137f9df8729bef112ab9f12f8d47427defc)) +* **navigation:** Update navigation action spacing ([#13434](https://github.com/Esri/calcite-design-system/issues/13434)) ([be3c2a5](https://github.com/Esri/calcite-design-system/commit/be3c2a548448f625254a08e0eeffcfb45218964f)) +* **notice:** Add css property for shadow ([#13791](https://github.com/Esri/calcite-design-system/issues/13791)) ([a4f2ecd](https://github.com/Esri/calcite-design-system/commit/a4f2ecde98685481532591fe648adf67256aa2c0)) +* **notice:** Add neutral kind & appearance property ([#13406](https://github.com/Esri/calcite-design-system/issues/13406)) ([1adc3f2](https://github.com/Esri/calcite-design-system/commit/1adc3f245613c600da8af7ad322563add181a54c)) +* **notice:** Add token for customizing border-radius ([#13447](https://github.com/Esri/calcite-design-system/issues/13447)) ([abc14be](https://github.com/Esri/calcite-design-system/commit/abc14beef9dfa3a7be5ed2642ecbe0321d8617ff)) +* **notice:** Update close button to action component & update actions-end slot spacing ([#13432](https://github.com/Esri/calcite-design-system/issues/13432)) ([9b041c0](https://github.com/Esri/calcite-design-system/commit/9b041c0972cd0d385981ab9b5b3e2c94bee053e6)) +* **popover:** Update to Action 5.0 spacing ([#13433](https://github.com/Esri/calcite-design-system/issues/13433)) ([9493dd6](https://github.com/Esri/calcite-design-system/commit/9493dd63753b62bd591577e60f0b3d7e4bdfc0df)) +* **sheet, dialog:** Add size override capability ([#13502](https://github.com/Esri/calcite-design-system/issues/13502)) ([da3914b](https://github.com/Esri/calcite-design-system/commit/da3914bb4d6fb09669aa34c4c65ef1617065e478)) +* **shell-panel:** Add border for resize handle ([#13697](https://github.com/Esri/calcite-design-system/issues/13697)) ([43bfac7](https://github.com/Esri/calcite-design-system/commit/43bfac73c6c45cfc759325889063dd638defe58e)) +* **shell-panel:** Add size override capability ([#13280](https://github.com/Esri/calcite-design-system/issues/13280)) ([172ca34](https://github.com/Esri/calcite-design-system/commit/172ca342fbd0239f2a43a7dacf897ba01378c25e)) +* **shell-panel:** Improve layout and height functionalities for float all display mode ([#13517](https://github.com/Esri/calcite-design-system/issues/13517)) ([3c02440](https://github.com/Esri/calcite-design-system/commit/3c02440999ad8779255a0785573653d3280aa43e)) +* **shell-panel:** Improve support for adjusting height of float-all display ([#13410](https://github.com/Esri/calcite-design-system/issues/13410)) ([1e09a92](https://github.com/Esri/calcite-design-system/commit/1e09a9228bd00198c92cc7e3a1896b3b3b3b9a64)) +* **shell-panel:** Improve support for height setting of float-all display mode ([#13442](https://github.com/Esri/calcite-design-system/issues/13442)) ([3cc19c4](https://github.com/Esri/calcite-design-system/commit/3cc19c4bc3c2df0a60fc61176e99168ca1a57ff2)) +* **shell-panel:** Update default max height for slotted calcite-panel ([#13454](https://github.com/Esri/calcite-design-system/issues/13454)) ([e793b37](https://github.com/Esri/calcite-design-system/commit/e793b37a85e6d4e44184e77ed0cc449b6d9ea7e2)) +* **shell-panel:** Update min-height to avoid content being cut off ([#13561](https://github.com/Esri/calcite-design-system/issues/13561)) ([391999c](https://github.com/Esri/calcite-design-system/commit/391999ca4020b3efe8c56c97eea172bda7954309)) +* **split-button:** Add hover, focus and press background-color css custom property tokens ([#13588](https://github.com/Esri/calcite-design-system/issues/13588)) ([f6a847a](https://github.com/Esri/calcite-design-system/commit/f6a847acb0facbf82402c6b5df463b5d59af71d2)) +* **stepper-item:** Reduce height and update styling for improved UX ([#13656](https://github.com/Esri/calcite-design-system/issues/13656)) ([6486b3d](https://github.com/Esri/calcite-design-system/commit/6486b3dbc23e7804a7de1f4a69cbe76b5a230a18)) +* **tab-title:** Update to Action 5.0 spacing ([#13444](https://github.com/Esri/calcite-design-system/issues/13444)) ([6010c7d](https://github.com/Esri/calcite-design-system/commit/6010c7d808b97dec1bfa9d707dfbdee2506db8be)) +* **table:** Update to Action 5.0 spacing ([#13436](https://github.com/Esri/calcite-design-system/issues/13436)) ([0dec108](https://github.com/Esri/calcite-design-system/commit/0dec108594d015081bc346633b504ecdfa716224)) +* **text-area:** Add loading property ([#13679](https://github.com/Esri/calcite-design-system/issues/13679)) ([d0c9b6a](https://github.com/Esri/calcite-design-system/commit/d0c9b6ad8872f071be62e05049dbd2ed112435ed)) +* **tile:** Add `highlight` type for `selectionAppearance` prop ([#13565](https://github.com/Esri/calcite-design-system/issues/13565)) ([9c0d2a2](https://github.com/Esri/calcite-design-system/commit/9c0d2a26eb430a5b90fb2f7b79e4ea8a85998a9d)) +* **tile:** Add headingLevel property ([#13501](https://github.com/Esri/calcite-design-system/issues/13501)) ([a5f56b3](https://github.com/Esri/calcite-design-system/commit/a5f56b3e12a4a631e326a8763191c01a341326c5)) +* **tile:** Fix excess margins with headingLevel property ([#13512](https://github.com/Esri/calcite-design-system/issues/13512)) ([6e5b252](https://github.com/Esri/calcite-design-system/commit/6e5b252e3a0c99cb7acf5a81632860ba2ab52f67)) +* **tree-item:** Update to Action 5.0 spacing ([#13435](https://github.com/Esri/calcite-design-system/issues/13435)) ([2cd46be](https://github.com/Esri/calcite-design-system/commit/2cd46be3ee872973efd3043faef990ed54cc58de)) +* **tree:** Update selection appearance ([#13572](https://github.com/Esri/calcite-design-system/issues/13572)) ([dd27a3c](https://github.com/Esri/calcite-design-system/commit/dd27a3c8265afcc6b2972a129335b9b2529f5e8a)) + + +### Bug Fixes + +* **accordion-item:** Enable support for deprecated icon color variable ([#13523](https://github.com/Esri/calcite-design-system/issues/13523)) ([2df8e24](https://github.com/Esri/calcite-design-system/commit/2df8e244af7c3597d5c3b42225e28d4d61aac015)) +* **action-bar, action-pad:** Remove topLayerDisabled property ([#13809](https://github.com/Esri/calcite-design-system/issues/13809)) ([e80fdc0](https://github.com/Esri/calcite-design-system/commit/e80fdc08a0ee2bd931de30460796271498aba6f6)) +* **action-group:** Skip ARIA attributes when selectionMode is `none` ([#13522](https://github.com/Esri/calcite-design-system/issues/13522)) ([528f528](https://github.com/Esri/calcite-design-system/commit/528f52812601e94c31ecb178336b82f3ffe72f4a)) +* **action-menu:** Clicking in between actions doesn't close popup ([#13680](https://github.com/Esri/calcite-design-system/issues/13680)) ([ca8ef20](https://github.com/Esri/calcite-design-system/commit/ca8ef20c4edf0c4cafb5db33e71465e20026c380)) +* **action-pad:** Avoid collapsing unrelated actions ([#13828](https://github.com/Esri/calcite-design-system/issues/13828)) ([68d234e](https://github.com/Esri/calcite-design-system/commit/68d234ebe41d67f342ce68ea1746fd8a4b076e46)) +* **action:** Allow background color to be changed with transparent appearance ([#13527](https://github.com/Esri/calcite-design-system/issues/13527)) ([d87955f](https://github.com/Esri/calcite-design-system/commit/d87955fc9fb750ece428c0c6d3eda6bfa807f764)) +* **action:** Drop extra opacity styles when disabled ([#13510](https://github.com/Esri/calcite-design-system/issues/13510)) ([0f375d0](https://github.com/Esri/calcite-design-system/commit/0f375d0fc6d6af0b4e08c947cf4f43f0636a0119)) +* **action:** Enable customizing background-color on hover & active when `appearance="transparent"` ([#13466](https://github.com/Esri/calcite-design-system/issues/13466)) ([c6953d2](https://github.com/Esri/calcite-design-system/commit/c6953d2df90b1e4187e4581850062cd1143ed3fa)) +* **action:** Remove text color change for loading state ([#13498](https://github.com/Esri/calcite-design-system/issues/13498)) ([52311c0](https://github.com/Esri/calcite-design-system/commit/52311c0bbd89fb5f4e9f936ee80bd2c1bab1c0e2)) +* **action:** Resolve specificity conflict between `selection-mode="highlight"` and `appearance="transparent"` ([#13686](https://github.com/Esri/calcite-design-system/issues/13686)) ([25f6965](https://github.com/Esri/calcite-design-system/commit/25f696578ea86db39973123755fe54ca74209075)) +* **action:** Support `transparent` and `highlight` `active` background colors ([#13699](https://github.com/Esri/calcite-design-system/issues/13699)) ([6e2e3f1](https://github.com/Esri/calcite-design-system/commit/6e2e3f17a12a868bfe4be0c4e0c82f46a35fb722)) +* **alert:** Disable `dismissProgress` animation when reduced motion preferred ([#13583](https://github.com/Esri/calcite-design-system/issues/13583)) ([bb93ee0](https://github.com/Esri/calcite-design-system/commit/bb93ee02b0e292aba61c94c35a9729a1ad5866a6)) +* **alert:** Enable visibilty of `dismiss-progress` element ([#13582](https://github.com/Esri/calcite-design-system/issues/13582)) ([4379ca8](https://github.com/Esri/calcite-design-system/commit/4379ca839632d60a1362a00c0ec56fb2f2b1da6a)) +* **block-section:** Fix inconsistent interaction states ([#13788](https://github.com/Esri/calcite-design-system/issues/13788)) ([96c53a7](https://github.com/Esri/calcite-design-system/commit/96c53a7718e30d325c4c6b07fce9fe4e2eeb0636)) +* **chip:** Enable support for deprecated icon color variable ([#13478](https://github.com/Esri/calcite-design-system/issues/13478)) ([96e9a42](https://github.com/Esri/calcite-design-system/commit/96e9a425cd6365be404cfab540e026edbd060065)) +* **combobox, filter, list:** Stop warning when filtering on empty data source ([#13352](https://github.com/Esri/calcite-design-system/issues/13352)) ([c46edb0](https://github.com/Esri/calcite-design-system/commit/c46edb0673941a9efb03305e834c2a58439e0ab9)) +* **combobox:** Avoid removing unrelated chips while deleting a chip via keyboard interaction ([#13688](https://github.com/Esri/calcite-design-system/issues/13688)) ([aa5ce4c](https://github.com/Esri/calcite-design-system/commit/aa5ce4cc24b837ff0b9030ba290159a32d66da9b)) +* **dialog, input-date-picker, popover, sheet:** Skip restoring focus when closing a focus-trap with no previously focused related element ([#13324](https://github.com/Esri/calcite-design-system/issues/13324)) ([4cb245b](https://github.com/Esri/calcite-design-system/commit/4cb245b04be2132113b83bf8be6f68bd9f7bb2db)) +* **dialog:** Allow resizing when `resizable` and `fullscreenDisabled` ([#13830](https://github.com/Esri/calcite-design-system/issues/13830)) ([46e4087](https://github.com/Esri/calcite-design-system/commit/46e4087c137ee32f244cb7789c4f678d629c38ae)) +* Don't import from undeclared `lit-html` dependency ([#13702](https://github.com/Esri/calcite-design-system/issues/13702)) ([648c96a](https://github.com/Esri/calcite-design-system/commit/648c96a6d296badeadc8a5205ad075b9449e1081)) +* **dropdown-item:** Enable customizing icon color with `--calcite-dropdown-item-text-color` token ([#13727](https://github.com/Esri/calcite-design-system/issues/13727)) ([67d61b6](https://github.com/Esri/calcite-design-system/commit/67d61b6f2fd657481b18fe66b42aafad6fad7b48)) +* Ensure popovers are toggled outside animations ([#13490](https://github.com/Esri/calcite-design-system/issues/13490)) ([89955ce](https://github.com/Esri/calcite-design-system/commit/89955ceb3efea794ac9dac10000fe6782725e9ca)) +* **flow-item:** Back button action uses the provided scale ([#13638](https://github.com/Esri/calcite-design-system/issues/13638)) ([1d71e76](https://github.com/Esri/calcite-design-system/commit/1d71e76fbfc6267234e0b6e17facef2b1658b473)) +* **input-date-picker:** Fix border display in RTL ([#13755](https://github.com/Esri/calcite-design-system/issues/13755)) ([f157845](https://github.com/Esri/calcite-design-system/commit/f157845a83d61b5fe806cb6796ca737f2032cdf7)) +* **input-date-picker:** Fix trailing border for vertical layout in RTL direction ([#13747](https://github.com/Esri/calcite-design-system/issues/13747)) ([99f0a0f](https://github.com/Esri/calcite-design-system/commit/99f0a0f1e8d9edb270064c6d3aef47fefe8dd34c)) +* **input-message:** Enable support for deprecated icon color variable ([#13586](https://github.com/Esri/calcite-design-system/issues/13586)) ([2e23dac](https://github.com/Esri/calcite-design-system/commit/2e23dacb626acce2796a5b23c3adb5923acaaf5d)) +* **input-number:** Enable support for deprecated icon color variable ([#13585](https://github.com/Esri/calcite-design-system/issues/13585)) ([c2e27d8](https://github.com/Esri/calcite-design-system/commit/c2e27d852b4b07141aedbc4275643b5410754f71)) +* **input-time-picker, time-picker:** Align time display closer to the browser's intended format ([#13372](https://github.com/Esri/calcite-design-system/issues/13372)) ([7d24300](https://github.com/Esri/calcite-design-system/commit/7d2430013ff1915bdcbac8607884ec7b9cd6e5ca)) +* **input-time-picker:** Enable support for deprecated icon color variable ([#13623](https://github.com/Esri/calcite-design-system/issues/13623)) ([f6f80bf](https://github.com/Esri/calcite-design-system/commit/f6f80bf8650c1a365d2d668ffffc39e782a309f9)) +* **input-time-picker:** Ensure popup fields match input fields ([#13802](https://github.com/Esri/calcite-design-system/issues/13802)) ([7b97908](https://github.com/Esri/calcite-design-system/commit/7b979087d092d3a41ad1391866bb31446aa87e80)) +* **input, input-number, input-text:** Correctly style affix when `readOnly` is set ([#13796](https://github.com/Esri/calcite-design-system/issues/13796)) ([9269304](https://github.com/Esri/calcite-design-system/commit/9269304f739e7dda81eba84e207e7863e340c2f8)) +* **input, input-number, input-text:** Update color of prefix and suffix ([#13682](https://github.com/Esri/calcite-design-system/issues/13682)) ([7b77dcd](https://github.com/Esri/calcite-design-system/commit/7b77dcd27c72a69d40670734135bda801b759dc4)) +* **input, input-number:** Stop active nudging when `readOnly` is set ([#13751](https://github.com/Esri/calcite-design-system/issues/13751)) ([92d93ec](https://github.com/Esri/calcite-design-system/commit/92d93ecc5f480746271d4710c8faba1fde0fc0ca)) +* **list-item:** Don't vertically stretch slotted action and dropdown component trigger buttons ([#13693](https://github.com/Esri/calcite-design-system/issues/13693)) ([f9e5d39](https://github.com/Esri/calcite-design-system/commit/f9e5d39e956b4376dffde2c5884d29bb1525d84b)) +* **list-item:** Fix icon start position when custom content is slotted ([#13749](https://github.com/Esri/calcite-design-system/issues/13749)) ([8c5f9f4](https://github.com/Esri/calcite-design-system/commit/8c5f9f483649f38190dd5b6fdf3f2bb00a6adb75)) +* **list-item:** Fix spacing issues to match Action 5 design ([#13659](https://github.com/Esri/calcite-design-system/issues/13659)) ([41f0808](https://github.com/Esri/calcite-design-system/commit/41f080878d04646b2630af505f8e68e1483475c4)) +* **list-item:** Maintain vertical alignment of slotted elements on focus ([#13425](https://github.com/Esri/calcite-design-system/issues/13425)) ([242c3db](https://github.com/Esri/calcite-design-system/commit/242c3db7905168aa77ba6ec6c32d622f7123f959)) +* **menu-item:** Enable support for deprecated icon color variable ([#13626](https://github.com/Esri/calcite-design-system/issues/13626)) ([fc69633](https://github.com/Esri/calcite-design-system/commit/fc696335506d930dc20df864bea860a3fefeb85c)) +* **navigation-logo:** Enable support for deprecated icon color variable ([#13633](https://github.com/Esri/calcite-design-system/issues/13633)) ([8c6746a](https://github.com/Esri/calcite-design-system/commit/8c6746a1eb435fb48260d0d7b15053f84b1f6f8f)) +* **notice:** Allow customizing backgroundColor of close action ([#13467](https://github.com/Esri/calcite-design-system/issues/13467)) ([6e03202](https://github.com/Esri/calcite-design-system/commit/6e03202f53b9cb693497c8c5631a867e57151a79)) +* **notice:** Apply correct colors for close action when hovered or active ([#13605](https://github.com/Esri/calcite-design-system/issues/13605)) ([7de7bec](https://github.com/Esri/calcite-design-system/commit/7de7becac037699ad90fd14e17006efbe4772836)) +* **notice:** No longer changes close action backgroundColor on focus ([#13625](https://github.com/Esri/calcite-design-system/issues/13625)) ([c53594f](https://github.com/Esri/calcite-design-system/commit/c53594f4332448d6283d7d0f56ec15333d31e735)) +* **panel, action-menu:** Pass `scale` down to nested `calcite-popover` ([#13731](https://github.com/Esri/calcite-design-system/issues/13731)) ([aee39f5](https://github.com/Esri/calcite-design-system/commit/aee39f55b21d7b6a8a7728bb32090e2fb4212b73)) +* **panel:** Enable support for deprecated icon color variable ([#13635](https://github.com/Esri/calcite-design-system/issues/13635)) ([812aa5a](https://github.com/Esri/calcite-design-system/commit/812aa5a50ff67a625b86032729eaff8b459b5628)) +* Remove invalid CSS files from component package exports ([#13401](https://github.com/Esri/calcite-design-system/issues/13401)) ([447e7fd](https://github.com/Esri/calcite-design-system/commit/447e7fdb77808376ae7a7d907b194a64c01ebb88)) +* Remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) +* Restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) +* **sheet:** Improve scrolling behavior for slotted content ([#13754](https://github.com/Esri/calcite-design-system/issues/13754)) ([29f61a1](https://github.com/Esri/calcite-design-system/commit/29f61a1f56a29d91e63cf2dc88bf2a0f277c55a7)) +* **shell-panel:** Configure component height with user-defined css properties ([#13461](https://github.com/Esri/calcite-design-system/issues/13461)) ([51b59e3](https://github.com/Esri/calcite-design-system/commit/51b59e33cf0c8dcd7fce9ec933c072f89b68a8d4)) +* **slider:** Ensure value is updated correctly on calciteSliderInput event ([#13700](https://github.com/Esri/calcite-design-system/issues/13700)) ([0b826b4](https://github.com/Esri/calcite-design-system/commit/0b826b40cc901ca5da769f995a8a40044908ec8e)) +* **slider:** Handle falsy values to reset ([#13766](https://github.com/Esri/calcite-design-system/issues/13766)) ([59f13d3](https://github.com/Esri/calcite-design-system/commit/59f13d377f3f6ded9bca41c9d08a794fa44155cf)) +* **tab-title:** Enable support for deprecated icon color variable, add "press" variables ([#13681](https://github.com/Esri/calcite-design-system/issues/13681)) ([3d73ed5](https://github.com/Esri/calcite-design-system/commit/3d73ed53337fbcaf07ea19bcadf4a995816bf217)) +* **tile-group:** Make horizontal layout always go horizontal ([#13260](https://github.com/Esri/calcite-design-system/issues/13260)) ([f915c8e](https://github.com/Esri/calcite-design-system/commit/f915c8e1f57ea2bb60832e56ea29d6e1ce59ba3b)) +* Update initial floating-ui styles to handle RTL top-layer positioning ([#13489](https://github.com/Esri/calcite-design-system/issues/13489)) ([73442ca](https://github.com/Esri/calcite-design-system/commit/73442caa8ad485b25e1024c981ccfc4268769f93)) + + +### Performance Improvements + +* **combobox:** Drop redundant repositioning after each render ([#13756](https://github.com/Esri/calcite-design-system/issues/13756)) ([abe8702](https://github.com/Esri/calcite-design-system/commit/abe8702f238e17190af603c40610c382cdc9f440)) + + +### Deprecations + +* **action:** Deprecate appearance property ([d87955f](https://github.com/Esri/calcite-design-system/commit/d87955fc9fb750ece428c0c6d3eda6bfa807f764)) +* **input-message:** Deprecate component ([#13419](https://github.com/Esri/calcite-design-system/issues/13419)) ([26dbc05](https://github.com/Esri/calcite-design-system/commit/26dbc053c792cbc459c70b98d196bfe5235fd5ce)) +* **list:** Deprecate `border` value for `selectionAppearance` prop ([81ad34e](https://github.com/Esri/calcite-design-system/commit/81ad34e94c38a17d2d012296f7e658a597bc06c1)) + + +### Code Refactoring + +* **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** Drop deprecated slots ([#13255](https://github.com/Esri/calcite-design-system/issues/13255)) ([97e3c8b](https://github.com/Esri/calcite-design-system/commit/97e3c8b26f65a1c9fa8e9f752f18f6327849ee62)) +* Drop deprecated component custom CSS props ([#13287](https://github.com/Esri/calcite-design-system/issues/13287)) ([6f60468](https://github.com/Esri/calcite-design-system/commit/6f60468f862771eb27165c90cb8df7c76035f50f)) +* **input:** Drop `textarea` type ([#13359](https://github.com/Esri/calcite-design-system/issues/13359)) ([f350d50](https://github.com/Esri/calcite-design-system/commit/f350d50d90431facaa5557a125573fd740db2eca)) +* **stepper:** Remove calciteStepperItemChange deprecated event ([#13329](https://github.com/Esri/calcite-design-system/issues/13329)) ([668da6f](https://github.com/Esri/calcite-design-system/commit/668da6fb147c6a5404bc89ab20a5f3ac95266867)) + + +### Build System + +* Drop deprecated CDN namespace ([#12546](https://github.com/Esri/calcite-design-system/issues/12546)) ([b8f4346](https://github.com/Esri/calcite-design-system/commit/b8f4346188f5b3677bea4553375aefb2b4e2b05f)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @esri/calcite-ui-icons bumped from 4.4.0-next.22 to 4.4.0 + * devDependencies + * @esri/calcite-design-tokens bumped from 4.0.0-next.23 to 4.0.0 + * @esri/calcite-tailwind-preset bumped from 1.1.0-next.13 to 1.1.0 + ## [5.0.0-next.90](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.89...@esri/calcite-components@5.0.0-next.90) (2026-02-03) ### Bug Fixes diff --git a/packages/components/package.json b/packages/components/package.json index a2314b38080..6793023f41f 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-components", - "version": "5.0.0-next.90", + "version": "5.0.0", "description": "Web Components for Esri's Calcite Design System.", "homepage": "https://developers.arcgis.com/calcite-design-system/", "repository": { @@ -76,7 +76,7 @@ "dependencies": { "@arcgis/lumina": ">=5.0.0-next.144 <6.0.0", "@arcgis/toolkit": ">=5.0.0-next.144 <6.0.0", - "@esri/calcite-ui-icons": "4.4.0-next.22", + "@esri/calcite-ui-icons": "4.4.0", "@floating-ui/dom": "^1.6.12", "@floating-ui/utils": "^0.2.8", "@types/sortablejs": "^1.15.8", @@ -92,8 +92,8 @@ }, "devDependencies": { "@arcgis/lumina-compiler": ">=5.0.0-next.144 <6.0.0", - "@esri/calcite-design-tokens": "4.0.0-next.23", - "@esri/calcite-tailwind-preset": "1.1.0-next.13", + "@esri/calcite-design-tokens": "4.0.0", + "@esri/calcite-tailwind-preset": "1.1.0", "@esri/eslint-plugin-calcite-components": "2.0.4-next.9", "playwright": "1.57.0", "sass-embedded": "1.97.3", diff --git a/packages/design-tokens/CHANGELOG.md b/packages/design-tokens/CHANGELOG.md index 0b1475545af..707f25ed2c5 100644 --- a/packages/design-tokens/CHANGELOG.md +++ b/packages/design-tokens/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@3.2.1...@esri/calcite-design-tokens@4.0.0) (2026-02-04) + + +### ⚠ BREAKING CHANGES + +* restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) + +### Features + +* **semantic-tokens:** Add surface colors ([#13496](https://github.com/Esri/calcite-design-system/issues/13496)) ([b2e5420](https://github.com/Esri/calcite-design-system/commit/b2e5420991e2ba1dce5cbb8674d5b8302cbf8fe3)) +* **semantic-tokens:** Update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)) +* **tokens:** Add missing rem-based space and size tokens ([#13769](https://github.com/Esri/calcite-design-system/issues/13769)) ([568e636](https://github.com/Esri/calcite-design-system/commit/568e6366ea35d5fca8c61c857c2f95b92089668a)) +* **tokens:** Add semantic rem-based font-size tokens ([#13042](https://github.com/Esri/calcite-design-system/issues/13042)) ([5c35af4](https://github.com/Esri/calcite-design-system/commit/5c35af4bc75688248c5bc58da87ad2088e7916fc)) +* **tokens:** Update semantic success and warning colors for improved a11y ([#13408](https://github.com/Esri/calcite-design-system/issues/13408)) ([1558e4b](https://github.com/Esri/calcite-design-system/commit/1558e4b6acc77ceab6c004ab9202795b817b2f89)) + + +### Bug Fixes + +* Restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) +* **tokens:** Update `--calcite-corner-radius-pill` to display pill shape correctly ([#13762](https://github.com/Esri/calcite-design-system/issues/13762)) ([fae5b49](https://github.com/Esri/calcite-design-system/commit/fae5b498d046a93307bfc0a8a820446c775f84bb)) + + +### Deprecations + +* **tokens:** Deprecate unused semantic tokens and add target removal versions for all tokens ([#13812](https://github.com/Esri/calcite-design-system/issues/13812)) ([96f9d0e](https://github.com/Esri/calcite-design-system/commit/96f9d0e320850c88b9b90df77c16bdda82b256dd)) + ## [4.0.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.22...@esri/calcite-design-tokens@4.0.0-next.23) (2026-02-02) **Note:** Version bump only for package @esri/calcite-design-tokens diff --git a/packages/design-tokens/package.json b/packages/design-tokens/package.json index 59736cda016..07a72289a2a 100644 --- a/packages/design-tokens/package.json +++ b/packages/design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-design-tokens", - "version": "4.0.0-next.23", + "version": "4.0.0", "description": "Esri's Calcite Design System Tokens", "keywords": [ "Calcite", diff --git a/packages/tailwind-preset/CHANGELOG.md b/packages/tailwind-preset/CHANGELOG.md index 9069327fffb..ed1b7c9ddd9 100644 --- a/packages/tailwind-preset/CHANGELOG.md +++ b/packages/tailwind-preset/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2...@esri/calcite-tailwind-preset@1.1.0) (2026-02-04) + + +### Features + +* **tailwind:** Switch text utils to use line-height token CSS props ([#12842](https://github.com/Esri/calcite-design-system/issues/12842)) ([0721c0c](https://github.com/Esri/calcite-design-system/commit/0721c0c98173b28df5337bcb1fcf0f3c4baccc46)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @esri/calcite-design-tokens bumped from 4.0.0-next.23 to 4.0.0 + * peerDependencies + * @esri/calcite-design-tokens bumped from ^4.0.0-next.1 to ^4.0.0 + ## [1.1.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.12...@esri/calcite-tailwind-preset@1.1.0-next.13) (2026-02-02) **Note:** Version bump only for package @esri/calcite-tailwind-preset diff --git a/packages/tailwind-preset/package.json b/packages/tailwind-preset/package.json index 217066552af..e11eee73ed8 100644 --- a/packages/tailwind-preset/package.json +++ b/packages/tailwind-preset/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-tailwind-preset", - "version": "1.1.0-next.13", + "version": "1.1.0", "description": "Tailwind CSS preset for the Calcite Design System", "repository": { "type": "git", @@ -23,10 +23,10 @@ "util:update-3rd-party-notices": "node ../../support/createThirdPartyNotices.mts" }, "dependencies": { - "@esri/calcite-design-tokens": "4.0.0-next.23" + "@esri/calcite-design-tokens": "4.0.0" }, "peerDependencies": { - "@esri/calcite-design-tokens": "^4.0.0-next.1", + "@esri/calcite-design-tokens": "^4.0.0", "tailwindcss": "^3.0.0 < 4.0.0" }, "volta": { diff --git a/packages/ui-icons/CHANGELOG.md b/packages/ui-icons/CHANGELOG.md index 492c7ded3b7..8ebb89261b3 100644 --- a/packages/ui-icons/CHANGELOG.md +++ b/packages/ui-icons/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.4.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.3.0...@esri/calcite-ui-icons@4.4.0) (2026-02-04) + + +### Features + +* Add 12.1 studio design icons ([#13709](https://github.com/Esri/calcite-design-system/issues/13709)) ([2f6b116](https://github.com/Esri/calcite-design-system/commit/2f6b116e3f739b46e2101f64ae5587f054518681)) +* Add contingent values retire ([#13403](https://github.com/Esri/calcite-design-system/issues/13403)) ([7e9a9d2](https://github.com/Esri/calcite-design-system/commit/7e9a9d2af2c2bf1b72dd75c4a2450f0e9ada3e39)) +* Add file-esl ([#13457](https://github.com/Esri/calcite-design-system/issues/13457)) ([1527a05](https://github.com/Esri/calcite-design-system/commit/1527a05e1f8adfef344f0e65a07c8a819b921bcb)) +* Add oriented imagery and group template feature icons ([#13821](https://github.com/Esri/calcite-design-system/issues/13821)) ([0478cac](https://github.com/Esri/calcite-design-system/commit/0478cacee7e7d114464e630c538114c9d904bb1b)) +* Add table download and table upload ([#13658](https://github.com/Esri/calcite-design-system/issues/13658)) ([4e7f388](https://github.com/Esri/calcite-design-system/commit/4e7f38832bede0633b2a0439bd2b3947d0081de8)) +* Add update-table ([#13293](https://github.com/Esri/calcite-design-system/issues/13293)) ([fd56824](https://github.com/Esri/calcite-design-system/commit/fd56824a37bccca1dfe2496ff43a9ecd4384e7a9)) +* Add values and sort view icons ([#13290](https://github.com/Esri/calcite-design-system/issues/13290)) ([b42f5ba](https://github.com/Esri/calcite-design-system/commit/b42f5baba9486e6b63638b724b7cba1a85343f7e)) +* Add variable generic ([#13666](https://github.com/Esri/calcite-design-system/issues/13666)) ([6c7c956](https://github.com/Esri/calcite-design-system/commit/6c7c9564c56d0191dd066d401b7e56066ad9ab36)) +* **semantic-tokens:** Update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)) + ## [4.4.0-next.22](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.21...@esri/calcite-ui-icons@4.4.0-next.22) (2026-02-02) ### Features diff --git a/packages/ui-icons/docs/index.html b/packages/ui-icons/docs/index.html index adf9e117d7f..777d7a9706d 100644 --- a/packages/ui-icons/docs/index.html +++ b/packages/ui-icons/docs/index.html @@ -48,7 +48,7 @@

Calcite UI Icons

- Version 4.3.0 + Version 4.4.0 View on GitHub diff --git a/packages/ui-icons/package.json b/packages/ui-icons/package.json index 17c45ab543c..07454bf3ad7 100644 --- a/packages/ui-icons/package.json +++ b/packages/ui-icons/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-ui-icons", - "version": "4.4.0-next.22", + "version": "4.4.0", "type": "module", "private": false, "description": "A collection of UI SVG icons created by Esri for applications.", From b0d996961954b1229f684dd480173616205e6919 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 4 Feb 2026 19:46:18 +0000 Subject: [PATCH 2/2] docs: remove prerelease changelog entries --- packages/components-react/CHANGELOG.md | 612 +------ packages/components-snippets/CHANGELOG.md | 12 - packages/components/CHANGELOG.md | 1412 ++--------------- packages/design-tokens/CHANGELOG.md | 171 +- packages/eslint-config/CHANGELOG.md | 28 - .../eslint-plugin-components/CHANGELOG.md | 40 - packages/tailwind-preset/CHANGELOG.md | 136 +- packages/typescript-config/CHANGELOG.md | 4 - packages/ui-icons/CHANGELOG.md | 167 +- 9 files changed, 175 insertions(+), 2407 deletions(-) diff --git a/packages/components-react/CHANGELOG.md b/packages/components-react/CHANGELOG.md index 7c76ba5bca8..ca623907bce 100644 --- a/packages/components-react/CHANGELOG.md +++ b/packages/components-react/CHANGELOG.md @@ -5,619 +5,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [5.0.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.3...@esri/calcite-components-react@5.0.0) (2026-02-04) - ### Bug Fixes -* Remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) - +- Remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) ### Dependencies -* The following workspace dependencies were updated - * dependencies - * @esri/calcite-components bumped from 5.0.0-next.90 to 5.0.0 - -## [5.0.0-next.90](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.89...@esri/calcite-components-react@5.0.0-next.90) (2026-02-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.89](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.88...@esri/calcite-components-react@5.0.0-next.89) (2026-02-02) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.88](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.87...@esri/calcite-components-react@5.0.0-next.88) (2026-01-31) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.87](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.86...@esri/calcite-components-react@5.0.0-next.87) (2026-01-30) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.86](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.85...@esri/calcite-components-react@5.0.0-next.86) (2026-01-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.85](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.84...@esri/calcite-components-react@5.0.0-next.85) (2026-01-28) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.84](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.83...@esri/calcite-components-react@5.0.0-next.84) (2026-01-28) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.83](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.82...@esri/calcite-components-react@5.0.0-next.83) (2026-01-28) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.82](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.81...@esri/calcite-components-react@5.0.0-next.82) (2026-01-27) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.81](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.80...@esri/calcite-components-react@5.0.0-next.81) (2026-01-27) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.80](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.79...@esri/calcite-components-react@5.0.0-next.80) (2026-01-26) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.79](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.78...@esri/calcite-components-react@5.0.0-next.79) (2026-01-26) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.78](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.77...@esri/calcite-components-react@5.0.0-next.78) (2026-01-22) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.77](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.76...@esri/calcite-components-react@5.0.0-next.77) (2026-01-22) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.76](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.75...@esri/calcite-components-react@5.0.0-next.76) (2026-01-22) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.75](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.74...@esri/calcite-components-react@5.0.0-next.75) (2026-01-22) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.74](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.73...@esri/calcite-components-react@5.0.0-next.74) (2026-01-21) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.73](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.72...@esri/calcite-components-react@5.0.0-next.73) (2026-01-21) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.72](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.71...@esri/calcite-components-react@5.0.0-next.72) (2026-01-20) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.71](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.70...@esri/calcite-components-react@5.0.0-next.71) (2026-01-16) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.70](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.69...@esri/calcite-components-react@5.0.0-next.70) (2026-01-16) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.69](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.68...@esri/calcite-components-react@5.0.0-next.69) (2026-01-16) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.68](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.67...@esri/calcite-components-react@5.0.0-next.68) (2026-01-16) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.67](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.66...@esri/calcite-components-react@5.0.0-next.67) (2026-01-15) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.66](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.65...@esri/calcite-components-react@5.0.0-next.66) (2026-01-15) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.65](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.64...@esri/calcite-components-react@5.0.0-next.65) (2026-01-15) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.64](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.63...@esri/calcite-components-react@5.0.0-next.64) (2026-01-15) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.63](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.62...@esri/calcite-components-react@5.0.0-next.63) (2026-01-14) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.62](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.61...@esri/calcite-components-react@5.0.0-next.62) (2026-01-14) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.61](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.60...@esri/calcite-components-react@5.0.0-next.61) (2026-01-13) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.60](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.59...@esri/calcite-components-react@5.0.0-next.60) (2026-01-13) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.59](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.58...@esri/calcite-components-react@5.0.0-next.59) (2026-01-13) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.58](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.57...@esri/calcite-components-react@5.0.0-next.58) (2026-01-12) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.57](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.56...@esri/calcite-components-react@5.0.0-next.57) (2026-01-12) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.56](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.55...@esri/calcite-components-react@5.0.0-next.56) (2026-01-12) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.55](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.54...@esri/calcite-components-react@5.0.0-next.55) (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.54](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.53...@esri/calcite-components-react@5.0.0-next.54) (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.53](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.52...@esri/calcite-components-react@5.0.0-next.53) (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.52](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.51...@esri/calcite-components-react@5.0.0-next.52) (2026-01-08) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.51](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.50...@esri/calcite-components-react@5.0.0-next.51) (2026-01-08) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.50](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.49...@esri/calcite-components-react@5.0.0-next.50) (2026-01-07) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.49](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.48...@esri/calcite-components-react@5.0.0-next.49) (2026-01-07) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.48](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.47...@esri/calcite-components-react@5.0.0-next.48) (2026-01-06) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.47](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.46...@esri/calcite-components-react@5.0.0-next.47) (2026-01-06) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.46](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.45...@esri/calcite-components-react@5.0.0-next.46) (2026-01-02) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.45](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.44...@esri/calcite-components-react@5.0.0-next.45) (2026-01-01) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.44](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.43...@esri/calcite-components-react@5.0.0-next.44) (2025-12-31) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.43](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.42...@esri/calcite-components-react@5.0.0-next.43) (2025-12-31) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.42](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.41...@esri/calcite-components-react@5.0.0-next.42) (2025-12-30) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.41](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.40...@esri/calcite-components-react@5.0.0-next.41) (2025-12-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.40](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.39...@esri/calcite-components-react@5.0.0-next.40) (2025-12-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.39](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.38...@esri/calcite-components-react@5.0.0-next.39) (2025-12-23) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.38](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.37...@esri/calcite-components-react@5.0.0-next.38) (2025-12-19) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.37](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.36...@esri/calcite-components-react@5.0.0-next.37) (2025-12-18) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.36](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.35...@esri/calcite-components-react@5.0.0-next.36) (2025-12-18) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.35](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.34...@esri/calcite-components-react@5.0.0-next.35) (2025-12-18) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.34](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.33...@esri/calcite-components-react@5.0.0-next.34) (2025-12-18) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.33](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.32...@esri/calcite-components-react@5.0.0-next.33) (2025-12-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.32](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.31...@esri/calcite-components-react@5.0.0-next.32) (2025-12-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.31](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.30...@esri/calcite-components-react@5.0.0-next.31) (2025-12-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.30](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.29...@esri/calcite-components-react@5.0.0-next.30) (2025-12-16) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.29](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.28...@esri/calcite-components-react@5.0.0-next.29) (2025-12-16) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.28](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.27...@esri/calcite-components-react@5.0.0-next.28) (2025-12-15) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.27](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.26...@esri/calcite-components-react@5.0.0-next.27) (2025-12-15) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.26](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.25...@esri/calcite-components-react@5.0.0-next.26) (2025-12-11) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.24...@esri/calcite-components-react@5.0.0-next.25) (2025-12-11) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.23...@esri/calcite-components-react@5.0.0-next.24) (2025-12-11) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.22...@esri/calcite-components-react@5.0.0-next.23) (2025-12-11) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.22](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.21...@esri/calcite-components-react@5.0.0-next.22) (2025-12-10) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.21](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.20...@esri/calcite-components-react@5.0.0-next.21) (2025-12-09) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.20](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.19...@esri/calcite-components-react@5.0.0-next.20) (2025-12-08) - -### Bug Fixes - -- remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) - -## [5.0.0-next.19](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.18...@esri/calcite-components-react@5.0.0-next.19) (2025-12-08) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.18](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.17...@esri/calcite-components-react@5.0.0-next.18) (2025-12-05) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.17](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.16...@esri/calcite-components-react@5.0.0-next.17) (2025-12-04) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.16](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.15...@esri/calcite-components-react@5.0.0-next.16) (2025-12-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.15](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.14...@esri/calcite-components-react@5.0.0-next.15) (2025-12-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.14](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.13...@esri/calcite-components-react@5.0.0-next.14) (2025-12-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.12...@esri/calcite-components-react@5.0.0-next.13) (2025-11-27) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.11...@esri/calcite-components-react@5.0.0-next.12) (2025-11-26) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.10...@esri/calcite-components-react@5.0.0-next.11) (2025-11-25) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.9...@esri/calcite-components-react@5.0.0-next.10) (2025-11-25) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.8...@esri/calcite-components-react@5.0.0-next.9) (2025-11-25) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.7...@esri/calcite-components-react@5.0.0-next.8) (2025-11-24) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.6...@esri/calcite-components-react@5.0.0-next.7) (2025-11-21) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.5...@esri/calcite-components-react@5.0.0-next.6) (2025-11-19) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.4...@esri/calcite-components-react@5.0.0-next.5) (2025-11-19) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.3...@esri/calcite-components-react@5.0.0-next.4) (2025-11-18) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.2...@esri/calcite-components-react@5.0.0-next.3) (2025-11-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.1...@esri/calcite-components-react@5.0.0-next.2) (2025-11-12) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@5.0.0-next.0...@esri/calcite-components-react@5.0.0-next.1) (2025-11-12) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [5.0.0-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.48...@esri/calcite-components-react@5.0.0-next.0) (2025-11-08) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.48](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.47...@esri/calcite-components-react@4.0.0-next.48) (2025-11-07) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.47](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.46...@esri/calcite-components-react@4.0.0-next.47) (2025-11-07) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.46](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.45...@esri/calcite-components-react@4.0.0-next.46) (2025-11-05) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.45](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.44...@esri/calcite-components-react@4.0.0-next.45) (2025-11-04) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.44](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.43...@esri/calcite-components-react@4.0.0-next.44) (2025-11-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.43](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.42...@esri/calcite-components-react@4.0.0-next.43) (2025-11-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.42](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.41...@esri/calcite-components-react@4.0.0-next.42) (2025-10-31) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.41](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.40...@esri/calcite-components-react@4.0.0-next.41) (2025-10-30) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.40](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.39...@esri/calcite-components-react@4.0.0-next.40) (2025-10-30) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.39](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.38...@esri/calcite-components-react@4.0.0-next.39) (2025-10-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.38](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.37...@esri/calcite-components-react@4.0.0-next.38) (2025-10-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.37](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.36...@esri/calcite-components-react@4.0.0-next.37) (2025-10-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.36](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.35...@esri/calcite-components-react@4.0.0-next.36) (2025-10-28) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.35](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.34...@esri/calcite-components-react@4.0.0-next.35) (2025-10-27) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.34](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.33...@esri/calcite-components-react@4.0.0-next.34) (2025-10-27) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.33](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.32...@esri/calcite-components-react@4.0.0-next.33) (2025-10-21) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.32](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.31...@esri/calcite-components-react@4.0.0-next.32) (2025-10-21) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.31](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.30...@esri/calcite-components-react@4.0.0-next.31) (2025-10-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.30](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.29...@esri/calcite-components-react@4.0.0-next.30) (2025-10-15) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.29](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.28...@esri/calcite-components-react@4.0.0-next.29) (2025-10-14) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.28](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.27...@esri/calcite-components-react@4.0.0-next.28) (2025-10-14) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.27](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.26...@esri/calcite-components-react@4.0.0-next.27) (2025-10-14) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.26](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.25...@esri/calcite-components-react@4.0.0-next.26) (2025-10-13) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.24...@esri/calcite-components-react@4.0.0-next.25) (2025-10-10) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.23...@esri/calcite-components-react@4.0.0-next.24) (2025-10-09) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.22...@esri/calcite-components-react@4.0.0-next.23) (2025-10-09) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.22](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.21...@esri/calcite-components-react@4.0.0-next.22) (2025-10-09) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.21](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.20...@esri/calcite-components-react@4.0.0-next.21) (2025-10-07) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.20](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.19...@esri/calcite-components-react@4.0.0-next.20) (2025-10-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.19](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.18...@esri/calcite-components-react@4.0.0-next.19) (2025-10-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.18](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.17...@esri/calcite-components-react@4.0.0-next.18) (2025-10-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.17](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.16...@esri/calcite-components-react@4.0.0-next.17) (2025-10-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.16](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.15...@esri/calcite-components-react@4.0.0-next.16) (2025-10-03) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.15](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.14...@esri/calcite-components-react@4.0.0-next.15) (2025-10-02) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.14](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.13...@esri/calcite-components-react@4.0.0-next.14) (2025-10-02) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.12...@esri/calcite-components-react@4.0.0-next.13) (2025-10-01) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.11...@esri/calcite-components-react@4.0.0-next.12) (2025-09-30) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.10...@esri/calcite-components-react@4.0.0-next.11) (2025-09-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.9...@esri/calcite-components-react@4.0.0-next.10) (2025-09-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.8...@esri/calcite-components-react@4.0.0-next.9) (2025-09-29) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.7...@esri/calcite-components-react@4.0.0-next.8) (2025-09-26) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.6...@esri/calcite-components-react@4.0.0-next.7) (2025-09-26) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.5...@esri/calcite-components-react@4.0.0-next.6) (2025-09-26) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.4...@esri/calcite-components-react@4.0.0-next.5) (2025-09-25) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.3...@esri/calcite-components-react@4.0.0-next.4) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.2...@esri/calcite-components-react@4.0.0-next.3) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.1...@esri/calcite-components-react@4.0.0-next.2) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@4.0.0-next.0...@esri/calcite-components-react@4.0.0-next.1) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [4.0.0-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.1-next.3...@esri/calcite-components-react@4.0.0-next.0) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.1-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.1-next.2...@esri/calcite-components-react@3.3.1-next.3) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.1-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.1-next.1...@esri/calcite-components-react@3.3.1-next.2) (2025-09-23) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.1-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.1-next.0...@esri/calcite-components-react@3.3.1-next.1) (2025-09-19) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.1-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.0-next.116...@esri/calcite-components-react@3.3.1-next.0) (2025-09-19) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.0-next.116](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.0-next.115...@esri/calcite-components-react@3.3.0-next.116) (2025-09-18) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.0-next.115](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.0-next.114...@esri/calcite-components-react@3.3.0-next.115) (2025-09-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.0-next.114](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.0-next.113...@esri/calcite-components-react@3.3.0-next.114) (2025-09-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.0-next.113](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.0-next.112...@esri/calcite-components-react@3.3.0-next.113) (2025-09-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.0-next.112](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.0-next.111...@esri/calcite-components-react@3.3.0-next.112) (2025-09-17) - -**Note:** Version bump only for package @esri/calcite-components-react - -## [3.3.0-next.111](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.0-next.110...@esri/calcite-components-react@3.3.0-next.111) (2025-09-13) - -**Note:** Version bump only for package @esri/calcite-components-react +- The following workspace dependencies were updated + - dependencies + - @esri/calcite-components bumped from 5.0.0-next.90 to 5.0.0 ## [3.3.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components-react@3.3.2...@esri/calcite-components-react@3.3.3) (2025-10-07) diff --git a/packages/components-snippets/CHANGELOG.md b/packages/components-snippets/CHANGELOG.md index bbb7dc0f032..61fd3cb8f5b 100644 --- a/packages/components-snippets/CHANGELOG.md +++ b/packages/components-snippets/CHANGELOG.md @@ -3,18 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## 0.0.2-next.3 (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-components-snippets - -## 0.0.2-next.2 (2025-12-31) - -**Note:** Version bump only for package @esri/calcite-components-snippets - -## 0.0.2-next.1 (2025-12-19) - -**Note:** Version bump only for package @esri/calcite-components-snippets - ## 0.0.2-next.0 (2025-12-17) **Note:** Version bump only for package @esri/calcite-components-snippets diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 3d644bb5065..c9a210bfb7c 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -5,1288 +5,170 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [5.0.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.3...@esri/calcite-components@5.0.0) (2026-02-04) - ### ⚠ BREAKING CHANGES -* **combobox-item:** Deprecated `textLabel` prop has been removed, use `heading` instead. -* restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) -* **action:** Setting Action's default appearance to "transparent" and deprecating "solid" to better support embedded use cases where focus background colors can take precedence. -* removes the following deprecated custom CSS props: -* **input:** The deprecated `textarea` type was removed. Developers should use `calcite-text-area` instead. -* drop deprecated CDN namespace ([#12546](https://github.com/Esri/calcite-design-system/issues/12546)) -* **stepper:** Deprecated event has been removed, use the following event instead: -* **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** Deprecated slots have been removed. Use the following replacements instead: -* **input, input-number, input-text:** Removed support for the following css tokens as they are no longer needed: - -### Features - -* **accordion-item:** Update action slot spacing ([#13416](https://github.com/Esri/calcite-design-system/issues/13416)) ([56a383a](https://github.com/Esri/calcite-design-system/commit/56a383aa5e40ff05eab49d8e565faaff479643ac)) -* **accordion-item:** Update header to use semantic button instead of div ([#13664](https://github.com/Esri/calcite-design-system/issues/13664)) ([4022e50](https://github.com/Esri/calcite-design-system/commit/4022e500199688172d409d7b8f6e4dfcec6abb79)) -* **accordion-item:** Update heading and description styling for system consistency for 5.0 ([#13642](https://github.com/Esri/calcite-design-system/issues/13642)) ([4626f64](https://github.com/Esri/calcite-design-system/commit/4626f64c3ba377aae3e681e04437b3fafc9e8902)) -* **action-bar, action-pad, action-group:** Implement ARIA toolbar pattern with configurable selection modes ([#13386](https://github.com/Esri/calcite-design-system/issues/13386)) ([285fb5e](https://github.com/Esri/calcite-design-system/commit/285fb5ecae99f84fee6e4229dbeec87701820d59)) -* **action:** Adjust indicator size and position on small scale ([#13558](https://github.com/Esri/calcite-design-system/issues/13558)) ([e8172bb](https://github.com/Esri/calcite-design-system/commit/e8172bbdce8dcefd378521fd5539260d8c43ac40)) -* **action:** Update to 5.0 design ([#13252](https://github.com/Esri/calcite-design-system/issues/13252)) ([a3979b4](https://github.com/Esri/calcite-design-system/commit/a3979b49dd633e80b2279157b880d0e17de1049a)) -* Add `topLayerDisabled` property to additional components ([#13730](https://github.com/Esri/calcite-design-system/issues/13730)) ([44a99f8](https://github.com/Esri/calcite-design-system/commit/44a99f8badef073992d1f7177483775fdca29429)) -* **alert, autocomplete, combobox, dropdown, input-date-picker, popover, tooltip:** Add `topLayerDisabled` prop ([#13604](https://github.com/Esri/calcite-design-system/issues/13604)) ([f37d836](https://github.com/Esri/calcite-design-system/commit/f37d836afac35084490b29e577f60ff97e264db5)) -* **alert:** Remove title slot bottom margin on large scale ([#13646](https://github.com/Esri/calcite-design-system/issues/13646)) ([6946535](https://github.com/Esri/calcite-design-system/commit/694653565b1caf1cdf2f3dc56ef57c37457161d8)) -* **alert:** Update to action 5.0 spacing ([#13417](https://github.com/Esri/calcite-design-system/issues/13417)) ([2275e25](https://github.com/Esri/calcite-design-system/commit/2275e250da68dd255e8649d8edd3a023b2dbf27f)) -* **alert:** Use filled status icon for consistency ([#13665](https://github.com/Esri/calcite-design-system/issues/13665)) ([d743d0d](https://github.com/Esri/calcite-design-system/commit/d743d0dbd823f345909ac3f1b9b35be6426cfb71)) -* Apply user-provided locale (`lang`) and supported t9n locale in appropriate contexts ([#13315](https://github.com/Esri/calcite-design-system/issues/13315)) ([c054ecd](https://github.com/Esri/calcite-design-system/commit/c054ecdd5c9d98d9c98852d49448b5abff311aa5)) -* **autocomplete:** Add token for max menu height ([#13616](https://github.com/Esri/calcite-design-system/issues/13616)) ([75eaf0d](https://github.com/Esri/calcite-design-system/commit/75eaf0d706493981da5331faf19f0f569c6f8259)) -* **block:** Add content-end slot ([#13348](https://github.com/Esri/calcite-design-system/issues/13348)) ([077852c](https://github.com/Esri/calcite-design-system/commit/077852c10a539418ad77d4ff31d8ff6740ed867b)) -* **block:** Update heading styling for system consistency ([#13326](https://github.com/Esri/calcite-design-system/issues/13326)) ([5410977](https://github.com/Esri/calcite-design-system/commit/5410977e94f79e204d55e6e405ff7c0b709de560)) -* **block:** Update to Action 5.0 spacing ([#13429](https://github.com/Esri/calcite-design-system/issues/13429)) ([fe4aaab](https://github.com/Esri/calcite-design-system/commit/fe4aaabff4e5a4038b43b1922d7c57bb53af95a6)) -* **button, chip, stepper-item, swatch, table:** Adjust border color for consistency ([#13263](https://github.com/Esri/calcite-design-system/issues/13263)) ([733a632](https://github.com/Esri/calcite-design-system/commit/733a632fa07daa5a5cfdb99bb23c7355e6831b9a)) -* **card:** Update heading and description spacing ([#13320](https://github.com/Esri/calcite-design-system/issues/13320)) ([4b85af9](https://github.com/Esri/calcite-design-system/commit/4b85af99881ad9cfc680d50429f1e6e0bae0b992)) -* **card:** Update selection state styling for 5.0 ([#13341](https://github.com/Esri/calcite-design-system/issues/13341)) ([bcf0def](https://github.com/Esri/calcite-design-system/commit/bcf0deff33d2ffbb7cc86081008ab636e7ff3747)) -* **carousel:** Add `paginationDisabled` property ([#13704](https://github.com/Esri/calcite-design-system/issues/13704)) ([efd2573](https://github.com/Esri/calcite-design-system/commit/efd257380a0df3699ac4279415505fe4856179b8)) -* **carousel:** Add `paginationStatus` to messages ([#13710](https://github.com/Esri/calcite-design-system/issues/13710)) ([f671ef3](https://github.com/Esri/calcite-design-system/commit/f671ef39a1696dfd617c8ea92cfb448164430509)) -* **carousel:** Improve single Carousel Item display ([#13644](https://github.com/Esri/calcite-design-system/issues/13644)) ([109ec94](https://github.com/Esri/calcite-design-system/commit/109ec941b614713ae727244c402a786e44c20df5)) -* **chip:** Update to Action 5 spacing ([#13445](https://github.com/Esri/calcite-design-system/issues/13445)) ([ecd6d53](https://github.com/Esri/calcite-design-system/commit/ecd6d535fd9d62c798e411a99b05f4e8d126065b)) -* **combobox-item:** Remove textLabel prop and update heading and value properties ([#13427](https://github.com/Esri/calcite-design-system/issues/13427)) ([49ae75e](https://github.com/Esri/calcite-design-system/commit/49ae75e5e96267d1bbc1c8cf9598ba031fe2c61d)) -* **combobox-item:** Set heading as fallback for a11y props and value ([#13460](https://github.com/Esri/calcite-design-system/issues/13460)) ([602abec](https://github.com/Esri/calcite-design-system/commit/602abec0f2114d38f2024437fb5135bccc2bc34c)) -* **combobox:** Add `placement` prop ([#13471](https://github.com/Esri/calcite-design-system/issues/13471)) ([a3acef1](https://github.com/Esri/calcite-design-system/commit/a3acef14889e5f0017ec77ab1e9ca64c0a7fc602)) -* **date-picker, input-date-picker:** Add support for fr-CA ([#13371](https://github.com/Esri/calcite-design-system/issues/13371)) ([d4c69cb](https://github.com/Esri/calcite-design-system/commit/d4c69cb8ae375b35fbcc273b0b3c0940b3204ef8)) -* **dialog, flow-item, panel:** Update to Action 5.0 spacing ([#13437](https://github.com/Esri/calcite-design-system/issues/13437)) ([3b8f82f](https://github.com/Esri/calcite-design-system/commit/3b8f82f72552469a3a88289380aba3abb8237fdd)) -* **dialog, sheet:** Add `topLayerDisabled` prop ([#13600](https://github.com/Esri/calcite-design-system/issues/13600)) ([2ed7eb7](https://github.com/Esri/calcite-design-system/commit/2ed7eb7066d323a545071baf11389e499a3294fb)) -* **dialog:** Add fullScreenDisabled prop to prevent full screen layout ([#13753](https://github.com/Esri/calcite-design-system/issues/13753)) ([20c3031](https://github.com/Esri/calcite-design-system/commit/20c30310f6519999a05fccda421afa76ba9e7b78)) -* **dropdown-item:** Reduce height in small & medium scale. ([#13391](https://github.com/Esri/calcite-design-system/issues/13391)) ([6198029](https://github.com/Esri/calcite-design-system/commit/6198029724f25b607913e82a47909427957e2441)) -* **dropdown:** Update selection appearance ([#13571](https://github.com/Esri/calcite-design-system/issues/13571)) ([dcf7a36](https://github.com/Esri/calcite-design-system/commit/dcf7a3687004013d625b12acd5653aa07f1efcaa)) -* **flow-item:** Remove border from back button ([#13449](https://github.com/Esri/calcite-design-system/issues/13449)) ([41f1fb8](https://github.com/Esri/calcite-design-system/commit/41f1fb8ee22ead4000019e14eb22a545147a99dd)) -* **input-time-picker:** Support French Canadian (fr-CA) locale ([#13355](https://github.com/Esri/calcite-design-system/issues/13355)) ([7307cd0](https://github.com/Esri/calcite-design-system/commit/7307cd06ca36fcf9a05b5be4d394dd5a2a96c053)) -* **input, input-number, input-text:** Update prefix and suffix visuals for 4.0 ([#13226](https://github.com/Esri/calcite-design-system/issues/13226)) ([b24c754](https://github.com/Esri/calcite-design-system/commit/b24c754219450d3997250d82b3b475ee36ffe1c8)) -* **list, list-item:** Update action slot spacing for 5.0 ([#13463](https://github.com/Esri/calcite-design-system/issues/13463)) ([73bddc3](https://github.com/Esri/calcite-design-system/commit/73bddc3491b4d7d2d6fd8872d3c0b7551a5313ac)) -* **list:** Add `highlight` selection appearance ([#13570](https://github.com/Esri/calcite-design-system/issues/13570)) ([81ad34e](https://github.com/Esri/calcite-design-system/commit/81ad34e94c38a17d2d012296f7e658a597bc06c1)) -* **menu-item:** Update dropdown action spacing ([#13440](https://github.com/Esri/calcite-design-system/issues/13440)) ([010a0c5](https://github.com/Esri/calcite-design-system/commit/010a0c53df56dd7c1f34d47727e24d1e206953e9)) -* **menu:** Update vertical layout design ([#13576](https://github.com/Esri/calcite-design-system/issues/13576)) ([06f0913](https://github.com/Esri/calcite-design-system/commit/06f09137f9df8729bef112ab9f12f8d47427defc)) -* **navigation:** Update navigation action spacing ([#13434](https://github.com/Esri/calcite-design-system/issues/13434)) ([be3c2a5](https://github.com/Esri/calcite-design-system/commit/be3c2a548448f625254a08e0eeffcfb45218964f)) -* **notice:** Add css property for shadow ([#13791](https://github.com/Esri/calcite-design-system/issues/13791)) ([a4f2ecd](https://github.com/Esri/calcite-design-system/commit/a4f2ecde98685481532591fe648adf67256aa2c0)) -* **notice:** Add neutral kind & appearance property ([#13406](https://github.com/Esri/calcite-design-system/issues/13406)) ([1adc3f2](https://github.com/Esri/calcite-design-system/commit/1adc3f245613c600da8af7ad322563add181a54c)) -* **notice:** Add token for customizing border-radius ([#13447](https://github.com/Esri/calcite-design-system/issues/13447)) ([abc14be](https://github.com/Esri/calcite-design-system/commit/abc14beef9dfa3a7be5ed2642ecbe0321d8617ff)) -* **notice:** Update close button to action component & update actions-end slot spacing ([#13432](https://github.com/Esri/calcite-design-system/issues/13432)) ([9b041c0](https://github.com/Esri/calcite-design-system/commit/9b041c0972cd0d385981ab9b5b3e2c94bee053e6)) -* **popover:** Update to Action 5.0 spacing ([#13433](https://github.com/Esri/calcite-design-system/issues/13433)) ([9493dd6](https://github.com/Esri/calcite-design-system/commit/9493dd63753b62bd591577e60f0b3d7e4bdfc0df)) -* **sheet, dialog:** Add size override capability ([#13502](https://github.com/Esri/calcite-design-system/issues/13502)) ([da3914b](https://github.com/Esri/calcite-design-system/commit/da3914bb4d6fb09669aa34c4c65ef1617065e478)) -* **shell-panel:** Add border for resize handle ([#13697](https://github.com/Esri/calcite-design-system/issues/13697)) ([43bfac7](https://github.com/Esri/calcite-design-system/commit/43bfac73c6c45cfc759325889063dd638defe58e)) -* **shell-panel:** Add size override capability ([#13280](https://github.com/Esri/calcite-design-system/issues/13280)) ([172ca34](https://github.com/Esri/calcite-design-system/commit/172ca342fbd0239f2a43a7dacf897ba01378c25e)) -* **shell-panel:** Improve layout and height functionalities for float all display mode ([#13517](https://github.com/Esri/calcite-design-system/issues/13517)) ([3c02440](https://github.com/Esri/calcite-design-system/commit/3c02440999ad8779255a0785573653d3280aa43e)) -* **shell-panel:** Improve support for adjusting height of float-all display ([#13410](https://github.com/Esri/calcite-design-system/issues/13410)) ([1e09a92](https://github.com/Esri/calcite-design-system/commit/1e09a9228bd00198c92cc7e3a1896b3b3b3b9a64)) -* **shell-panel:** Improve support for height setting of float-all display mode ([#13442](https://github.com/Esri/calcite-design-system/issues/13442)) ([3cc19c4](https://github.com/Esri/calcite-design-system/commit/3cc19c4bc3c2df0a60fc61176e99168ca1a57ff2)) -* **shell-panel:** Update default max height for slotted calcite-panel ([#13454](https://github.com/Esri/calcite-design-system/issues/13454)) ([e793b37](https://github.com/Esri/calcite-design-system/commit/e793b37a85e6d4e44184e77ed0cc449b6d9ea7e2)) -* **shell-panel:** Update min-height to avoid content being cut off ([#13561](https://github.com/Esri/calcite-design-system/issues/13561)) ([391999c](https://github.com/Esri/calcite-design-system/commit/391999ca4020b3efe8c56c97eea172bda7954309)) -* **split-button:** Add hover, focus and press background-color css custom property tokens ([#13588](https://github.com/Esri/calcite-design-system/issues/13588)) ([f6a847a](https://github.com/Esri/calcite-design-system/commit/f6a847acb0facbf82402c6b5df463b5d59af71d2)) -* **stepper-item:** Reduce height and update styling for improved UX ([#13656](https://github.com/Esri/calcite-design-system/issues/13656)) ([6486b3d](https://github.com/Esri/calcite-design-system/commit/6486b3dbc23e7804a7de1f4a69cbe76b5a230a18)) -* **tab-title:** Update to Action 5.0 spacing ([#13444](https://github.com/Esri/calcite-design-system/issues/13444)) ([6010c7d](https://github.com/Esri/calcite-design-system/commit/6010c7d808b97dec1bfa9d707dfbdee2506db8be)) -* **table:** Update to Action 5.0 spacing ([#13436](https://github.com/Esri/calcite-design-system/issues/13436)) ([0dec108](https://github.com/Esri/calcite-design-system/commit/0dec108594d015081bc346633b504ecdfa716224)) -* **text-area:** Add loading property ([#13679](https://github.com/Esri/calcite-design-system/issues/13679)) ([d0c9b6a](https://github.com/Esri/calcite-design-system/commit/d0c9b6ad8872f071be62e05049dbd2ed112435ed)) -* **tile:** Add `highlight` type for `selectionAppearance` prop ([#13565](https://github.com/Esri/calcite-design-system/issues/13565)) ([9c0d2a2](https://github.com/Esri/calcite-design-system/commit/9c0d2a26eb430a5b90fb2f7b79e4ea8a85998a9d)) -* **tile:** Add headingLevel property ([#13501](https://github.com/Esri/calcite-design-system/issues/13501)) ([a5f56b3](https://github.com/Esri/calcite-design-system/commit/a5f56b3e12a4a631e326a8763191c01a341326c5)) -* **tile:** Fix excess margins with headingLevel property ([#13512](https://github.com/Esri/calcite-design-system/issues/13512)) ([6e5b252](https://github.com/Esri/calcite-design-system/commit/6e5b252e3a0c99cb7acf5a81632860ba2ab52f67)) -* **tree-item:** Update to Action 5.0 spacing ([#13435](https://github.com/Esri/calcite-design-system/issues/13435)) ([2cd46be](https://github.com/Esri/calcite-design-system/commit/2cd46be3ee872973efd3043faef990ed54cc58de)) -* **tree:** Update selection appearance ([#13572](https://github.com/Esri/calcite-design-system/issues/13572)) ([dd27a3c](https://github.com/Esri/calcite-design-system/commit/dd27a3c8265afcc6b2972a129335b9b2529f5e8a)) - - -### Bug Fixes - -* **accordion-item:** Enable support for deprecated icon color variable ([#13523](https://github.com/Esri/calcite-design-system/issues/13523)) ([2df8e24](https://github.com/Esri/calcite-design-system/commit/2df8e244af7c3597d5c3b42225e28d4d61aac015)) -* **action-bar, action-pad:** Remove topLayerDisabled property ([#13809](https://github.com/Esri/calcite-design-system/issues/13809)) ([e80fdc0](https://github.com/Esri/calcite-design-system/commit/e80fdc08a0ee2bd931de30460796271498aba6f6)) -* **action-group:** Skip ARIA attributes when selectionMode is `none` ([#13522](https://github.com/Esri/calcite-design-system/issues/13522)) ([528f528](https://github.com/Esri/calcite-design-system/commit/528f52812601e94c31ecb178336b82f3ffe72f4a)) -* **action-menu:** Clicking in between actions doesn't close popup ([#13680](https://github.com/Esri/calcite-design-system/issues/13680)) ([ca8ef20](https://github.com/Esri/calcite-design-system/commit/ca8ef20c4edf0c4cafb5db33e71465e20026c380)) -* **action-pad:** Avoid collapsing unrelated actions ([#13828](https://github.com/Esri/calcite-design-system/issues/13828)) ([68d234e](https://github.com/Esri/calcite-design-system/commit/68d234ebe41d67f342ce68ea1746fd8a4b076e46)) -* **action:** Allow background color to be changed with transparent appearance ([#13527](https://github.com/Esri/calcite-design-system/issues/13527)) ([d87955f](https://github.com/Esri/calcite-design-system/commit/d87955fc9fb750ece428c0c6d3eda6bfa807f764)) -* **action:** Drop extra opacity styles when disabled ([#13510](https://github.com/Esri/calcite-design-system/issues/13510)) ([0f375d0](https://github.com/Esri/calcite-design-system/commit/0f375d0fc6d6af0b4e08c947cf4f43f0636a0119)) -* **action:** Enable customizing background-color on hover & active when `appearance="transparent"` ([#13466](https://github.com/Esri/calcite-design-system/issues/13466)) ([c6953d2](https://github.com/Esri/calcite-design-system/commit/c6953d2df90b1e4187e4581850062cd1143ed3fa)) -* **action:** Remove text color change for loading state ([#13498](https://github.com/Esri/calcite-design-system/issues/13498)) ([52311c0](https://github.com/Esri/calcite-design-system/commit/52311c0bbd89fb5f4e9f936ee80bd2c1bab1c0e2)) -* **action:** Resolve specificity conflict between `selection-mode="highlight"` and `appearance="transparent"` ([#13686](https://github.com/Esri/calcite-design-system/issues/13686)) ([25f6965](https://github.com/Esri/calcite-design-system/commit/25f696578ea86db39973123755fe54ca74209075)) -* **action:** Support `transparent` and `highlight` `active` background colors ([#13699](https://github.com/Esri/calcite-design-system/issues/13699)) ([6e2e3f1](https://github.com/Esri/calcite-design-system/commit/6e2e3f17a12a868bfe4be0c4e0c82f46a35fb722)) -* **alert:** Disable `dismissProgress` animation when reduced motion preferred ([#13583](https://github.com/Esri/calcite-design-system/issues/13583)) ([bb93ee0](https://github.com/Esri/calcite-design-system/commit/bb93ee02b0e292aba61c94c35a9729a1ad5866a6)) -* **alert:** Enable visibilty of `dismiss-progress` element ([#13582](https://github.com/Esri/calcite-design-system/issues/13582)) ([4379ca8](https://github.com/Esri/calcite-design-system/commit/4379ca839632d60a1362a00c0ec56fb2f2b1da6a)) -* **block-section:** Fix inconsistent interaction states ([#13788](https://github.com/Esri/calcite-design-system/issues/13788)) ([96c53a7](https://github.com/Esri/calcite-design-system/commit/96c53a7718e30d325c4c6b07fce9fe4e2eeb0636)) -* **chip:** Enable support for deprecated icon color variable ([#13478](https://github.com/Esri/calcite-design-system/issues/13478)) ([96e9a42](https://github.com/Esri/calcite-design-system/commit/96e9a425cd6365be404cfab540e026edbd060065)) -* **combobox, filter, list:** Stop warning when filtering on empty data source ([#13352](https://github.com/Esri/calcite-design-system/issues/13352)) ([c46edb0](https://github.com/Esri/calcite-design-system/commit/c46edb0673941a9efb03305e834c2a58439e0ab9)) -* **combobox:** Avoid removing unrelated chips while deleting a chip via keyboard interaction ([#13688](https://github.com/Esri/calcite-design-system/issues/13688)) ([aa5ce4c](https://github.com/Esri/calcite-design-system/commit/aa5ce4cc24b837ff0b9030ba290159a32d66da9b)) -* **dialog, input-date-picker, popover, sheet:** Skip restoring focus when closing a focus-trap with no previously focused related element ([#13324](https://github.com/Esri/calcite-design-system/issues/13324)) ([4cb245b](https://github.com/Esri/calcite-design-system/commit/4cb245b04be2132113b83bf8be6f68bd9f7bb2db)) -* **dialog:** Allow resizing when `resizable` and `fullscreenDisabled` ([#13830](https://github.com/Esri/calcite-design-system/issues/13830)) ([46e4087](https://github.com/Esri/calcite-design-system/commit/46e4087c137ee32f244cb7789c4f678d629c38ae)) -* Don't import from undeclared `lit-html` dependency ([#13702](https://github.com/Esri/calcite-design-system/issues/13702)) ([648c96a](https://github.com/Esri/calcite-design-system/commit/648c96a6d296badeadc8a5205ad075b9449e1081)) -* **dropdown-item:** Enable customizing icon color with `--calcite-dropdown-item-text-color` token ([#13727](https://github.com/Esri/calcite-design-system/issues/13727)) ([67d61b6](https://github.com/Esri/calcite-design-system/commit/67d61b6f2fd657481b18fe66b42aafad6fad7b48)) -* Ensure popovers are toggled outside animations ([#13490](https://github.com/Esri/calcite-design-system/issues/13490)) ([89955ce](https://github.com/Esri/calcite-design-system/commit/89955ceb3efea794ac9dac10000fe6782725e9ca)) -* **flow-item:** Back button action uses the provided scale ([#13638](https://github.com/Esri/calcite-design-system/issues/13638)) ([1d71e76](https://github.com/Esri/calcite-design-system/commit/1d71e76fbfc6267234e0b6e17facef2b1658b473)) -* **input-date-picker:** Fix border display in RTL ([#13755](https://github.com/Esri/calcite-design-system/issues/13755)) ([f157845](https://github.com/Esri/calcite-design-system/commit/f157845a83d61b5fe806cb6796ca737f2032cdf7)) -* **input-date-picker:** Fix trailing border for vertical layout in RTL direction ([#13747](https://github.com/Esri/calcite-design-system/issues/13747)) ([99f0a0f](https://github.com/Esri/calcite-design-system/commit/99f0a0f1e8d9edb270064c6d3aef47fefe8dd34c)) -* **input-message:** Enable support for deprecated icon color variable ([#13586](https://github.com/Esri/calcite-design-system/issues/13586)) ([2e23dac](https://github.com/Esri/calcite-design-system/commit/2e23dacb626acce2796a5b23c3adb5923acaaf5d)) -* **input-number:** Enable support for deprecated icon color variable ([#13585](https://github.com/Esri/calcite-design-system/issues/13585)) ([c2e27d8](https://github.com/Esri/calcite-design-system/commit/c2e27d852b4b07141aedbc4275643b5410754f71)) -* **input-time-picker, time-picker:** Align time display closer to the browser's intended format ([#13372](https://github.com/Esri/calcite-design-system/issues/13372)) ([7d24300](https://github.com/Esri/calcite-design-system/commit/7d2430013ff1915bdcbac8607884ec7b9cd6e5ca)) -* **input-time-picker:** Enable support for deprecated icon color variable ([#13623](https://github.com/Esri/calcite-design-system/issues/13623)) ([f6f80bf](https://github.com/Esri/calcite-design-system/commit/f6f80bf8650c1a365d2d668ffffc39e782a309f9)) -* **input-time-picker:** Ensure popup fields match input fields ([#13802](https://github.com/Esri/calcite-design-system/issues/13802)) ([7b97908](https://github.com/Esri/calcite-design-system/commit/7b979087d092d3a41ad1391866bb31446aa87e80)) -* **input, input-number, input-text:** Correctly style affix when `readOnly` is set ([#13796](https://github.com/Esri/calcite-design-system/issues/13796)) ([9269304](https://github.com/Esri/calcite-design-system/commit/9269304f739e7dda81eba84e207e7863e340c2f8)) -* **input, input-number, input-text:** Update color of prefix and suffix ([#13682](https://github.com/Esri/calcite-design-system/issues/13682)) ([7b77dcd](https://github.com/Esri/calcite-design-system/commit/7b77dcd27c72a69d40670734135bda801b759dc4)) -* **input, input-number:** Stop active nudging when `readOnly` is set ([#13751](https://github.com/Esri/calcite-design-system/issues/13751)) ([92d93ec](https://github.com/Esri/calcite-design-system/commit/92d93ecc5f480746271d4710c8faba1fde0fc0ca)) -* **list-item:** Don't vertically stretch slotted action and dropdown component trigger buttons ([#13693](https://github.com/Esri/calcite-design-system/issues/13693)) ([f9e5d39](https://github.com/Esri/calcite-design-system/commit/f9e5d39e956b4376dffde2c5884d29bb1525d84b)) -* **list-item:** Fix icon start position when custom content is slotted ([#13749](https://github.com/Esri/calcite-design-system/issues/13749)) ([8c5f9f4](https://github.com/Esri/calcite-design-system/commit/8c5f9f483649f38190dd5b6fdf3f2bb00a6adb75)) -* **list-item:** Fix spacing issues to match Action 5 design ([#13659](https://github.com/Esri/calcite-design-system/issues/13659)) ([41f0808](https://github.com/Esri/calcite-design-system/commit/41f080878d04646b2630af505f8e68e1483475c4)) -* **list-item:** Maintain vertical alignment of slotted elements on focus ([#13425](https://github.com/Esri/calcite-design-system/issues/13425)) ([242c3db](https://github.com/Esri/calcite-design-system/commit/242c3db7905168aa77ba6ec6c32d622f7123f959)) -* **menu-item:** Enable support for deprecated icon color variable ([#13626](https://github.com/Esri/calcite-design-system/issues/13626)) ([fc69633](https://github.com/Esri/calcite-design-system/commit/fc696335506d930dc20df864bea860a3fefeb85c)) -* **navigation-logo:** Enable support for deprecated icon color variable ([#13633](https://github.com/Esri/calcite-design-system/issues/13633)) ([8c6746a](https://github.com/Esri/calcite-design-system/commit/8c6746a1eb435fb48260d0d7b15053f84b1f6f8f)) -* **notice:** Allow customizing backgroundColor of close action ([#13467](https://github.com/Esri/calcite-design-system/issues/13467)) ([6e03202](https://github.com/Esri/calcite-design-system/commit/6e03202f53b9cb693497c8c5631a867e57151a79)) -* **notice:** Apply correct colors for close action when hovered or active ([#13605](https://github.com/Esri/calcite-design-system/issues/13605)) ([7de7bec](https://github.com/Esri/calcite-design-system/commit/7de7becac037699ad90fd14e17006efbe4772836)) -* **notice:** No longer changes close action backgroundColor on focus ([#13625](https://github.com/Esri/calcite-design-system/issues/13625)) ([c53594f](https://github.com/Esri/calcite-design-system/commit/c53594f4332448d6283d7d0f56ec15333d31e735)) -* **panel, action-menu:** Pass `scale` down to nested `calcite-popover` ([#13731](https://github.com/Esri/calcite-design-system/issues/13731)) ([aee39f5](https://github.com/Esri/calcite-design-system/commit/aee39f55b21d7b6a8a7728bb32090e2fb4212b73)) -* **panel:** Enable support for deprecated icon color variable ([#13635](https://github.com/Esri/calcite-design-system/issues/13635)) ([812aa5a](https://github.com/Esri/calcite-design-system/commit/812aa5a50ff67a625b86032729eaff8b459b5628)) -* Remove invalid CSS files from component package exports ([#13401](https://github.com/Esri/calcite-design-system/issues/13401)) ([447e7fd](https://github.com/Esri/calcite-design-system/commit/447e7fdb77808376ae7a7d907b194a64c01ebb88)) -* Remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) -* Restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) -* **sheet:** Improve scrolling behavior for slotted content ([#13754](https://github.com/Esri/calcite-design-system/issues/13754)) ([29f61a1](https://github.com/Esri/calcite-design-system/commit/29f61a1f56a29d91e63cf2dc88bf2a0f277c55a7)) -* **shell-panel:** Configure component height with user-defined css properties ([#13461](https://github.com/Esri/calcite-design-system/issues/13461)) ([51b59e3](https://github.com/Esri/calcite-design-system/commit/51b59e33cf0c8dcd7fce9ec933c072f89b68a8d4)) -* **slider:** Ensure value is updated correctly on calciteSliderInput event ([#13700](https://github.com/Esri/calcite-design-system/issues/13700)) ([0b826b4](https://github.com/Esri/calcite-design-system/commit/0b826b40cc901ca5da769f995a8a40044908ec8e)) -* **slider:** Handle falsy values to reset ([#13766](https://github.com/Esri/calcite-design-system/issues/13766)) ([59f13d3](https://github.com/Esri/calcite-design-system/commit/59f13d377f3f6ded9bca41c9d08a794fa44155cf)) -* **tab-title:** Enable support for deprecated icon color variable, add "press" variables ([#13681](https://github.com/Esri/calcite-design-system/issues/13681)) ([3d73ed5](https://github.com/Esri/calcite-design-system/commit/3d73ed53337fbcaf07ea19bcadf4a995816bf217)) -* **tile-group:** Make horizontal layout always go horizontal ([#13260](https://github.com/Esri/calcite-design-system/issues/13260)) ([f915c8e](https://github.com/Esri/calcite-design-system/commit/f915c8e1f57ea2bb60832e56ea29d6e1ce59ba3b)) -* Update initial floating-ui styles to handle RTL top-layer positioning ([#13489](https://github.com/Esri/calcite-design-system/issues/13489)) ([73442ca](https://github.com/Esri/calcite-design-system/commit/73442caa8ad485b25e1024c981ccfc4268769f93)) - +- **combobox-item:** Deprecated `textLabel` prop has been removed, use `heading` instead. +- restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) +- **action:** Setting Action's default appearance to "transparent" and deprecating "solid" to better support embedded use cases where focus background colors can take precedence. +- removes the following deprecated custom CSS props: +- **input:** The deprecated `textarea` type was removed. Developers should use `calcite-text-area` instead. +- drop deprecated CDN namespace ([#12546](https://github.com/Esri/calcite-design-system/issues/12546)) +- **stepper:** Deprecated event has been removed, use the following event instead: +- **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** Deprecated slots have been removed. Use the following replacements instead: +- **input, input-number, input-text:** Removed support for the following css tokens as they are no longer needed: + +### Features + +- **accordion-item:** Update action slot spacing ([#13416](https://github.com/Esri/calcite-design-system/issues/13416)) ([56a383a](https://github.com/Esri/calcite-design-system/commit/56a383aa5e40ff05eab49d8e565faaff479643ac)) +- **accordion-item:** Update header to use semantic button instead of div ([#13664](https://github.com/Esri/calcite-design-system/issues/13664)) ([4022e50](https://github.com/Esri/calcite-design-system/commit/4022e500199688172d409d7b8f6e4dfcec6abb79)) +- **accordion-item:** Update heading and description styling for system consistency for 5.0 ([#13642](https://github.com/Esri/calcite-design-system/issues/13642)) ([4626f64](https://github.com/Esri/calcite-design-system/commit/4626f64c3ba377aae3e681e04437b3fafc9e8902)) +- **action-bar, action-pad, action-group:** Implement ARIA toolbar pattern with configurable selection modes ([#13386](https://github.com/Esri/calcite-design-system/issues/13386)) ([285fb5e](https://github.com/Esri/calcite-design-system/commit/285fb5ecae99f84fee6e4229dbeec87701820d59)) +- **action:** Adjust indicator size and position on small scale ([#13558](https://github.com/Esri/calcite-design-system/issues/13558)) ([e8172bb](https://github.com/Esri/calcite-design-system/commit/e8172bbdce8dcefd378521fd5539260d8c43ac40)) +- **action:** Update to 5.0 design ([#13252](https://github.com/Esri/calcite-design-system/issues/13252)) ([a3979b4](https://github.com/Esri/calcite-design-system/commit/a3979b49dd633e80b2279157b880d0e17de1049a)) +- Add `topLayerDisabled` property to additional components ([#13730](https://github.com/Esri/calcite-design-system/issues/13730)) ([44a99f8](https://github.com/Esri/calcite-design-system/commit/44a99f8badef073992d1f7177483775fdca29429)) +- **alert, autocomplete, combobox, dropdown, input-date-picker, popover, tooltip:** Add `topLayerDisabled` prop ([#13604](https://github.com/Esri/calcite-design-system/issues/13604)) ([f37d836](https://github.com/Esri/calcite-design-system/commit/f37d836afac35084490b29e577f60ff97e264db5)) +- **alert:** Remove title slot bottom margin on large scale ([#13646](https://github.com/Esri/calcite-design-system/issues/13646)) ([6946535](https://github.com/Esri/calcite-design-system/commit/694653565b1caf1cdf2f3dc56ef57c37457161d8)) +- **alert:** Update to action 5.0 spacing ([#13417](https://github.com/Esri/calcite-design-system/issues/13417)) ([2275e25](https://github.com/Esri/calcite-design-system/commit/2275e250da68dd255e8649d8edd3a023b2dbf27f)) +- **alert:** Use filled status icon for consistency ([#13665](https://github.com/Esri/calcite-design-system/issues/13665)) ([d743d0d](https://github.com/Esri/calcite-design-system/commit/d743d0dbd823f345909ac3f1b9b35be6426cfb71)) +- Apply user-provided locale (`lang`) and supported t9n locale in appropriate contexts ([#13315](https://github.com/Esri/calcite-design-system/issues/13315)) ([c054ecd](https://github.com/Esri/calcite-design-system/commit/c054ecdd5c9d98d9c98852d49448b5abff311aa5)) +- **autocomplete:** Add token for max menu height ([#13616](https://github.com/Esri/calcite-design-system/issues/13616)) ([75eaf0d](https://github.com/Esri/calcite-design-system/commit/75eaf0d706493981da5331faf19f0f569c6f8259)) +- **block:** Add content-end slot ([#13348](https://github.com/Esri/calcite-design-system/issues/13348)) ([077852c](https://github.com/Esri/calcite-design-system/commit/077852c10a539418ad77d4ff31d8ff6740ed867b)) +- **block:** Update heading styling for system consistency ([#13326](https://github.com/Esri/calcite-design-system/issues/13326)) ([5410977](https://github.com/Esri/calcite-design-system/commit/5410977e94f79e204d55e6e405ff7c0b709de560)) +- **block:** Update to Action 5.0 spacing ([#13429](https://github.com/Esri/calcite-design-system/issues/13429)) ([fe4aaab](https://github.com/Esri/calcite-design-system/commit/fe4aaabff4e5a4038b43b1922d7c57bb53af95a6)) +- **button, chip, stepper-item, swatch, table:** Adjust border color for consistency ([#13263](https://github.com/Esri/calcite-design-system/issues/13263)) ([733a632](https://github.com/Esri/calcite-design-system/commit/733a632fa07daa5a5cfdb99bb23c7355e6831b9a)) +- **card:** Update heading and description spacing ([#13320](https://github.com/Esri/calcite-design-system/issues/13320)) ([4b85af9](https://github.com/Esri/calcite-design-system/commit/4b85af99881ad9cfc680d50429f1e6e0bae0b992)) +- **card:** Update selection state styling for 5.0 ([#13341](https://github.com/Esri/calcite-design-system/issues/13341)) ([bcf0def](https://github.com/Esri/calcite-design-system/commit/bcf0deff33d2ffbb7cc86081008ab636e7ff3747)) +- **carousel:** Add `paginationDisabled` property ([#13704](https://github.com/Esri/calcite-design-system/issues/13704)) ([efd2573](https://github.com/Esri/calcite-design-system/commit/efd257380a0df3699ac4279415505fe4856179b8)) +- **carousel:** Add `paginationStatus` to messages ([#13710](https://github.com/Esri/calcite-design-system/issues/13710)) ([f671ef3](https://github.com/Esri/calcite-design-system/commit/f671ef39a1696dfd617c8ea92cfb448164430509)) +- **carousel:** Improve single Carousel Item display ([#13644](https://github.com/Esri/calcite-design-system/issues/13644)) ([109ec94](https://github.com/Esri/calcite-design-system/commit/109ec941b614713ae727244c402a786e44c20df5)) +- **chip:** Update to Action 5 spacing ([#13445](https://github.com/Esri/calcite-design-system/issues/13445)) ([ecd6d53](https://github.com/Esri/calcite-design-system/commit/ecd6d535fd9d62c798e411a99b05f4e8d126065b)) +- **combobox-item:** Remove textLabel prop and update heading and value properties ([#13427](https://github.com/Esri/calcite-design-system/issues/13427)) ([49ae75e](https://github.com/Esri/calcite-design-system/commit/49ae75e5e96267d1bbc1c8cf9598ba031fe2c61d)) +- **combobox-item:** Set heading as fallback for a11y props and value ([#13460](https://github.com/Esri/calcite-design-system/issues/13460)) ([602abec](https://github.com/Esri/calcite-design-system/commit/602abec0f2114d38f2024437fb5135bccc2bc34c)) +- **combobox:** Add `placement` prop ([#13471](https://github.com/Esri/calcite-design-system/issues/13471)) ([a3acef1](https://github.com/Esri/calcite-design-system/commit/a3acef14889e5f0017ec77ab1e9ca64c0a7fc602)) +- **date-picker, input-date-picker:** Add support for fr-CA ([#13371](https://github.com/Esri/calcite-design-system/issues/13371)) ([d4c69cb](https://github.com/Esri/calcite-design-system/commit/d4c69cb8ae375b35fbcc273b0b3c0940b3204ef8)) +- **dialog, flow-item, panel:** Update to Action 5.0 spacing ([#13437](https://github.com/Esri/calcite-design-system/issues/13437)) ([3b8f82f](https://github.com/Esri/calcite-design-system/commit/3b8f82f72552469a3a88289380aba3abb8237fdd)) +- **dialog, sheet:** Add `topLayerDisabled` prop ([#13600](https://github.com/Esri/calcite-design-system/issues/13600)) ([2ed7eb7](https://github.com/Esri/calcite-design-system/commit/2ed7eb7066d323a545071baf11389e499a3294fb)) +- **dialog:** Add fullScreenDisabled prop to prevent full screen layout ([#13753](https://github.com/Esri/calcite-design-system/issues/13753)) ([20c3031](https://github.com/Esri/calcite-design-system/commit/20c30310f6519999a05fccda421afa76ba9e7b78)) +- **dropdown-item:** Reduce height in small & medium scale. ([#13391](https://github.com/Esri/calcite-design-system/issues/13391)) ([6198029](https://github.com/Esri/calcite-design-system/commit/6198029724f25b607913e82a47909427957e2441)) +- **dropdown:** Update selection appearance ([#13571](https://github.com/Esri/calcite-design-system/issues/13571)) ([dcf7a36](https://github.com/Esri/calcite-design-system/commit/dcf7a3687004013d625b12acd5653aa07f1efcaa)) +- **flow-item:** Remove border from back button ([#13449](https://github.com/Esri/calcite-design-system/issues/13449)) ([41f1fb8](https://github.com/Esri/calcite-design-system/commit/41f1fb8ee22ead4000019e14eb22a545147a99dd)) +- **input-time-picker:** Support French Canadian (fr-CA) locale ([#13355](https://github.com/Esri/calcite-design-system/issues/13355)) ([7307cd0](https://github.com/Esri/calcite-design-system/commit/7307cd06ca36fcf9a05b5be4d394dd5a2a96c053)) +- **input, input-number, input-text:** Update prefix and suffix visuals for 4.0 ([#13226](https://github.com/Esri/calcite-design-system/issues/13226)) ([b24c754](https://github.com/Esri/calcite-design-system/commit/b24c754219450d3997250d82b3b475ee36ffe1c8)) +- **list, list-item:** Update action slot spacing for 5.0 ([#13463](https://github.com/Esri/calcite-design-system/issues/13463)) ([73bddc3](https://github.com/Esri/calcite-design-system/commit/73bddc3491b4d7d2d6fd8872d3c0b7551a5313ac)) +- **list:** Add `highlight` selection appearance ([#13570](https://github.com/Esri/calcite-design-system/issues/13570)) ([81ad34e](https://github.com/Esri/calcite-design-system/commit/81ad34e94c38a17d2d012296f7e658a597bc06c1)) +- **menu-item:** Update dropdown action spacing ([#13440](https://github.com/Esri/calcite-design-system/issues/13440)) ([010a0c5](https://github.com/Esri/calcite-design-system/commit/010a0c53df56dd7c1f34d47727e24d1e206953e9)) +- **menu:** Update vertical layout design ([#13576](https://github.com/Esri/calcite-design-system/issues/13576)) ([06f0913](https://github.com/Esri/calcite-design-system/commit/06f09137f9df8729bef112ab9f12f8d47427defc)) +- **navigation:** Update navigation action spacing ([#13434](https://github.com/Esri/calcite-design-system/issues/13434)) ([be3c2a5](https://github.com/Esri/calcite-design-system/commit/be3c2a548448f625254a08e0eeffcfb45218964f)) +- **notice:** Add css property for shadow ([#13791](https://github.com/Esri/calcite-design-system/issues/13791)) ([a4f2ecd](https://github.com/Esri/calcite-design-system/commit/a4f2ecde98685481532591fe648adf67256aa2c0)) +- **notice:** Add neutral kind & appearance property ([#13406](https://github.com/Esri/calcite-design-system/issues/13406)) ([1adc3f2](https://github.com/Esri/calcite-design-system/commit/1adc3f245613c600da8af7ad322563add181a54c)) +- **notice:** Add token for customizing border-radius ([#13447](https://github.com/Esri/calcite-design-system/issues/13447)) ([abc14be](https://github.com/Esri/calcite-design-system/commit/abc14beef9dfa3a7be5ed2642ecbe0321d8617ff)) +- **notice:** Update close button to action component & update actions-end slot spacing ([#13432](https://github.com/Esri/calcite-design-system/issues/13432)) ([9b041c0](https://github.com/Esri/calcite-design-system/commit/9b041c0972cd0d385981ab9b5b3e2c94bee053e6)) +- **popover:** Update to Action 5.0 spacing ([#13433](https://github.com/Esri/calcite-design-system/issues/13433)) ([9493dd6](https://github.com/Esri/calcite-design-system/commit/9493dd63753b62bd591577e60f0b3d7e4bdfc0df)) +- **sheet, dialog:** Add size override capability ([#13502](https://github.com/Esri/calcite-design-system/issues/13502)) ([da3914b](https://github.com/Esri/calcite-design-system/commit/da3914bb4d6fb09669aa34c4c65ef1617065e478)) +- **shell-panel:** Add border for resize handle ([#13697](https://github.com/Esri/calcite-design-system/issues/13697)) ([43bfac7](https://github.com/Esri/calcite-design-system/commit/43bfac73c6c45cfc759325889063dd638defe58e)) +- **shell-panel:** Add size override capability ([#13280](https://github.com/Esri/calcite-design-system/issues/13280)) ([172ca34](https://github.com/Esri/calcite-design-system/commit/172ca342fbd0239f2a43a7dacf897ba01378c25e)) +- **shell-panel:** Improve layout and height functionalities for float all display mode ([#13517](https://github.com/Esri/calcite-design-system/issues/13517)) ([3c02440](https://github.com/Esri/calcite-design-system/commit/3c02440999ad8779255a0785573653d3280aa43e)) +- **shell-panel:** Improve support for adjusting height of float-all display ([#13410](https://github.com/Esri/calcite-design-system/issues/13410)) ([1e09a92](https://github.com/Esri/calcite-design-system/commit/1e09a9228bd00198c92cc7e3a1896b3b3b3b9a64)) +- **shell-panel:** Improve support for height setting of float-all display mode ([#13442](https://github.com/Esri/calcite-design-system/issues/13442)) ([3cc19c4](https://github.com/Esri/calcite-design-system/commit/3cc19c4bc3c2df0a60fc61176e99168ca1a57ff2)) +- **shell-panel:** Update default max height for slotted calcite-panel ([#13454](https://github.com/Esri/calcite-design-system/issues/13454)) ([e793b37](https://github.com/Esri/calcite-design-system/commit/e793b37a85e6d4e44184e77ed0cc449b6d9ea7e2)) +- **shell-panel:** Update min-height to avoid content being cut off ([#13561](https://github.com/Esri/calcite-design-system/issues/13561)) ([391999c](https://github.com/Esri/calcite-design-system/commit/391999ca4020b3efe8c56c97eea172bda7954309)) +- **split-button:** Add hover, focus and press background-color css custom property tokens ([#13588](https://github.com/Esri/calcite-design-system/issues/13588)) ([f6a847a](https://github.com/Esri/calcite-design-system/commit/f6a847acb0facbf82402c6b5df463b5d59af71d2)) +- **stepper-item:** Reduce height and update styling for improved UX ([#13656](https://github.com/Esri/calcite-design-system/issues/13656)) ([6486b3d](https://github.com/Esri/calcite-design-system/commit/6486b3dbc23e7804a7de1f4a69cbe76b5a230a18)) +- **tab-title:** Update to Action 5.0 spacing ([#13444](https://github.com/Esri/calcite-design-system/issues/13444)) ([6010c7d](https://github.com/Esri/calcite-design-system/commit/6010c7d808b97dec1bfa9d707dfbdee2506db8be)) +- **table:** Update to Action 5.0 spacing ([#13436](https://github.com/Esri/calcite-design-system/issues/13436)) ([0dec108](https://github.com/Esri/calcite-design-system/commit/0dec108594d015081bc346633b504ecdfa716224)) +- **text-area:** Add loading property ([#13679](https://github.com/Esri/calcite-design-system/issues/13679)) ([d0c9b6a](https://github.com/Esri/calcite-design-system/commit/d0c9b6ad8872f071be62e05049dbd2ed112435ed)) +- **tile:** Add `highlight` type for `selectionAppearance` prop ([#13565](https://github.com/Esri/calcite-design-system/issues/13565)) ([9c0d2a2](https://github.com/Esri/calcite-design-system/commit/9c0d2a26eb430a5b90fb2f7b79e4ea8a85998a9d)) +- **tile:** Add headingLevel property ([#13501](https://github.com/Esri/calcite-design-system/issues/13501)) ([a5f56b3](https://github.com/Esri/calcite-design-system/commit/a5f56b3e12a4a631e326a8763191c01a341326c5)) +- **tile:** Fix excess margins with headingLevel property ([#13512](https://github.com/Esri/calcite-design-system/issues/13512)) ([6e5b252](https://github.com/Esri/calcite-design-system/commit/6e5b252e3a0c99cb7acf5a81632860ba2ab52f67)) +- **tree-item:** Update to Action 5.0 spacing ([#13435](https://github.com/Esri/calcite-design-system/issues/13435)) ([2cd46be](https://github.com/Esri/calcite-design-system/commit/2cd46be3ee872973efd3043faef990ed54cc58de)) +- **tree:** Update selection appearance ([#13572](https://github.com/Esri/calcite-design-system/issues/13572)) ([dd27a3c](https://github.com/Esri/calcite-design-system/commit/dd27a3c8265afcc6b2972a129335b9b2529f5e8a)) + +### Bug Fixes + +- **accordion-item:** Enable support for deprecated icon color variable ([#13523](https://github.com/Esri/calcite-design-system/issues/13523)) ([2df8e24](https://github.com/Esri/calcite-design-system/commit/2df8e244af7c3597d5c3b42225e28d4d61aac015)) +- **action-bar, action-pad:** Remove topLayerDisabled property ([#13809](https://github.com/Esri/calcite-design-system/issues/13809)) ([e80fdc0](https://github.com/Esri/calcite-design-system/commit/e80fdc08a0ee2bd931de30460796271498aba6f6)) +- **action-group:** Skip ARIA attributes when selectionMode is `none` ([#13522](https://github.com/Esri/calcite-design-system/issues/13522)) ([528f528](https://github.com/Esri/calcite-design-system/commit/528f52812601e94c31ecb178336b82f3ffe72f4a)) +- **action-menu:** Clicking in between actions doesn't close popup ([#13680](https://github.com/Esri/calcite-design-system/issues/13680)) ([ca8ef20](https://github.com/Esri/calcite-design-system/commit/ca8ef20c4edf0c4cafb5db33e71465e20026c380)) +- **action-pad:** Avoid collapsing unrelated actions ([#13828](https://github.com/Esri/calcite-design-system/issues/13828)) ([68d234e](https://github.com/Esri/calcite-design-system/commit/68d234ebe41d67f342ce68ea1746fd8a4b076e46)) +- **action:** Allow background color to be changed with transparent appearance ([#13527](https://github.com/Esri/calcite-design-system/issues/13527)) ([d87955f](https://github.com/Esri/calcite-design-system/commit/d87955fc9fb750ece428c0c6d3eda6bfa807f764)) +- **action:** Drop extra opacity styles when disabled ([#13510](https://github.com/Esri/calcite-design-system/issues/13510)) ([0f375d0](https://github.com/Esri/calcite-design-system/commit/0f375d0fc6d6af0b4e08c947cf4f43f0636a0119)) +- **action:** Enable customizing background-color on hover & active when `appearance="transparent"` ([#13466](https://github.com/Esri/calcite-design-system/issues/13466)) ([c6953d2](https://github.com/Esri/calcite-design-system/commit/c6953d2df90b1e4187e4581850062cd1143ed3fa)) +- **action:** Remove text color change for loading state ([#13498](https://github.com/Esri/calcite-design-system/issues/13498)) ([52311c0](https://github.com/Esri/calcite-design-system/commit/52311c0bbd89fb5f4e9f936ee80bd2c1bab1c0e2)) +- **action:** Resolve specificity conflict between `selection-mode="highlight"` and `appearance="transparent"` ([#13686](https://github.com/Esri/calcite-design-system/issues/13686)) ([25f6965](https://github.com/Esri/calcite-design-system/commit/25f696578ea86db39973123755fe54ca74209075)) +- **action:** Support `transparent` and `highlight` `active` background colors ([#13699](https://github.com/Esri/calcite-design-system/issues/13699)) ([6e2e3f1](https://github.com/Esri/calcite-design-system/commit/6e2e3f17a12a868bfe4be0c4e0c82f46a35fb722)) +- **alert:** Disable `dismissProgress` animation when reduced motion preferred ([#13583](https://github.com/Esri/calcite-design-system/issues/13583)) ([bb93ee0](https://github.com/Esri/calcite-design-system/commit/bb93ee02b0e292aba61c94c35a9729a1ad5866a6)) +- **alert:** Enable visibilty of `dismiss-progress` element ([#13582](https://github.com/Esri/calcite-design-system/issues/13582)) ([4379ca8](https://github.com/Esri/calcite-design-system/commit/4379ca839632d60a1362a00c0ec56fb2f2b1da6a)) +- **block-section:** Fix inconsistent interaction states ([#13788](https://github.com/Esri/calcite-design-system/issues/13788)) ([96c53a7](https://github.com/Esri/calcite-design-system/commit/96c53a7718e30d325c4c6b07fce9fe4e2eeb0636)) +- **chip:** Enable support for deprecated icon color variable ([#13478](https://github.com/Esri/calcite-design-system/issues/13478)) ([96e9a42](https://github.com/Esri/calcite-design-system/commit/96e9a425cd6365be404cfab540e026edbd060065)) +- **combobox, filter, list:** Stop warning when filtering on empty data source ([#13352](https://github.com/Esri/calcite-design-system/issues/13352)) ([c46edb0](https://github.com/Esri/calcite-design-system/commit/c46edb0673941a9efb03305e834c2a58439e0ab9)) +- **combobox:** Avoid removing unrelated chips while deleting a chip via keyboard interaction ([#13688](https://github.com/Esri/calcite-design-system/issues/13688)) ([aa5ce4c](https://github.com/Esri/calcite-design-system/commit/aa5ce4cc24b837ff0b9030ba290159a32d66da9b)) +- **dialog, input-date-picker, popover, sheet:** Skip restoring focus when closing a focus-trap with no previously focused related element ([#13324](https://github.com/Esri/calcite-design-system/issues/13324)) ([4cb245b](https://github.com/Esri/calcite-design-system/commit/4cb245b04be2132113b83bf8be6f68bd9f7bb2db)) +- **dialog:** Allow resizing when `resizable` and `fullscreenDisabled` ([#13830](https://github.com/Esri/calcite-design-system/issues/13830)) ([46e4087](https://github.com/Esri/calcite-design-system/commit/46e4087c137ee32f244cb7789c4f678d629c38ae)) +- Don't import from undeclared `lit-html` dependency ([#13702](https://github.com/Esri/calcite-design-system/issues/13702)) ([648c96a](https://github.com/Esri/calcite-design-system/commit/648c96a6d296badeadc8a5205ad075b9449e1081)) +- **dropdown-item:** Enable customizing icon color with `--calcite-dropdown-item-text-color` token ([#13727](https://github.com/Esri/calcite-design-system/issues/13727)) ([67d61b6](https://github.com/Esri/calcite-design-system/commit/67d61b6f2fd657481b18fe66b42aafad6fad7b48)) +- Ensure popovers are toggled outside animations ([#13490](https://github.com/Esri/calcite-design-system/issues/13490)) ([89955ce](https://github.com/Esri/calcite-design-system/commit/89955ceb3efea794ac9dac10000fe6782725e9ca)) +- **flow-item:** Back button action uses the provided scale ([#13638](https://github.com/Esri/calcite-design-system/issues/13638)) ([1d71e76](https://github.com/Esri/calcite-design-system/commit/1d71e76fbfc6267234e0b6e17facef2b1658b473)) +- **input-date-picker:** Fix border display in RTL ([#13755](https://github.com/Esri/calcite-design-system/issues/13755)) ([f157845](https://github.com/Esri/calcite-design-system/commit/f157845a83d61b5fe806cb6796ca737f2032cdf7)) +- **input-date-picker:** Fix trailing border for vertical layout in RTL direction ([#13747](https://github.com/Esri/calcite-design-system/issues/13747)) ([99f0a0f](https://github.com/Esri/calcite-design-system/commit/99f0a0f1e8d9edb270064c6d3aef47fefe8dd34c)) +- **input-message:** Enable support for deprecated icon color variable ([#13586](https://github.com/Esri/calcite-design-system/issues/13586)) ([2e23dac](https://github.com/Esri/calcite-design-system/commit/2e23dacb626acce2796a5b23c3adb5923acaaf5d)) +- **input-number:** Enable support for deprecated icon color variable ([#13585](https://github.com/Esri/calcite-design-system/issues/13585)) ([c2e27d8](https://github.com/Esri/calcite-design-system/commit/c2e27d852b4b07141aedbc4275643b5410754f71)) +- **input-time-picker, time-picker:** Align time display closer to the browser's intended format ([#13372](https://github.com/Esri/calcite-design-system/issues/13372)) ([7d24300](https://github.com/Esri/calcite-design-system/commit/7d2430013ff1915bdcbac8607884ec7b9cd6e5ca)) +- **input-time-picker:** Enable support for deprecated icon color variable ([#13623](https://github.com/Esri/calcite-design-system/issues/13623)) ([f6f80bf](https://github.com/Esri/calcite-design-system/commit/f6f80bf8650c1a365d2d668ffffc39e782a309f9)) +- **input-time-picker:** Ensure popup fields match input fields ([#13802](https://github.com/Esri/calcite-design-system/issues/13802)) ([7b97908](https://github.com/Esri/calcite-design-system/commit/7b979087d092d3a41ad1391866bb31446aa87e80)) +- **input, input-number, input-text:** Correctly style affix when `readOnly` is set ([#13796](https://github.com/Esri/calcite-design-system/issues/13796)) ([9269304](https://github.com/Esri/calcite-design-system/commit/9269304f739e7dda81eba84e207e7863e340c2f8)) +- **input, input-number, input-text:** Update color of prefix and suffix ([#13682](https://github.com/Esri/calcite-design-system/issues/13682)) ([7b77dcd](https://github.com/Esri/calcite-design-system/commit/7b77dcd27c72a69d40670734135bda801b759dc4)) +- **input, input-number:** Stop active nudging when `readOnly` is set ([#13751](https://github.com/Esri/calcite-design-system/issues/13751)) ([92d93ec](https://github.com/Esri/calcite-design-system/commit/92d93ecc5f480746271d4710c8faba1fde0fc0ca)) +- **list-item:** Don't vertically stretch slotted action and dropdown component trigger buttons ([#13693](https://github.com/Esri/calcite-design-system/issues/13693)) ([f9e5d39](https://github.com/Esri/calcite-design-system/commit/f9e5d39e956b4376dffde2c5884d29bb1525d84b)) +- **list-item:** Fix icon start position when custom content is slotted ([#13749](https://github.com/Esri/calcite-design-system/issues/13749)) ([8c5f9f4](https://github.com/Esri/calcite-design-system/commit/8c5f9f483649f38190dd5b6fdf3f2bb00a6adb75)) +- **list-item:** Fix spacing issues to match Action 5 design ([#13659](https://github.com/Esri/calcite-design-system/issues/13659)) ([41f0808](https://github.com/Esri/calcite-design-system/commit/41f080878d04646b2630af505f8e68e1483475c4)) +- **list-item:** Maintain vertical alignment of slotted elements on focus ([#13425](https://github.com/Esri/calcite-design-system/issues/13425)) ([242c3db](https://github.com/Esri/calcite-design-system/commit/242c3db7905168aa77ba6ec6c32d622f7123f959)) +- **menu-item:** Enable support for deprecated icon color variable ([#13626](https://github.com/Esri/calcite-design-system/issues/13626)) ([fc69633](https://github.com/Esri/calcite-design-system/commit/fc696335506d930dc20df864bea860a3fefeb85c)) +- **navigation-logo:** Enable support for deprecated icon color variable ([#13633](https://github.com/Esri/calcite-design-system/issues/13633)) ([8c6746a](https://github.com/Esri/calcite-design-system/commit/8c6746a1eb435fb48260d0d7b15053f84b1f6f8f)) +- **notice:** Allow customizing backgroundColor of close action ([#13467](https://github.com/Esri/calcite-design-system/issues/13467)) ([6e03202](https://github.com/Esri/calcite-design-system/commit/6e03202f53b9cb693497c8c5631a867e57151a79)) +- **notice:** Apply correct colors for close action when hovered or active ([#13605](https://github.com/Esri/calcite-design-system/issues/13605)) ([7de7bec](https://github.com/Esri/calcite-design-system/commit/7de7becac037699ad90fd14e17006efbe4772836)) +- **notice:** No longer changes close action backgroundColor on focus ([#13625](https://github.com/Esri/calcite-design-system/issues/13625)) ([c53594f](https://github.com/Esri/calcite-design-system/commit/c53594f4332448d6283d7d0f56ec15333d31e735)) +- **panel, action-menu:** Pass `scale` down to nested `calcite-popover` ([#13731](https://github.com/Esri/calcite-design-system/issues/13731)) ([aee39f5](https://github.com/Esri/calcite-design-system/commit/aee39f55b21d7b6a8a7728bb32090e2fb4212b73)) +- **panel:** Enable support for deprecated icon color variable ([#13635](https://github.com/Esri/calcite-design-system/issues/13635)) ([812aa5a](https://github.com/Esri/calcite-design-system/commit/812aa5a50ff67a625b86032729eaff8b459b5628)) +- Remove invalid CSS files from component package exports ([#13401](https://github.com/Esri/calcite-design-system/issues/13401)) ([447e7fd](https://github.com/Esri/calcite-design-system/commit/447e7fdb77808376ae7a7d907b194a64c01ebb88)) +- Remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) +- Restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) +- **sheet:** Improve scrolling behavior for slotted content ([#13754](https://github.com/Esri/calcite-design-system/issues/13754)) ([29f61a1](https://github.com/Esri/calcite-design-system/commit/29f61a1f56a29d91e63cf2dc88bf2a0f277c55a7)) +- **shell-panel:** Configure component height with user-defined css properties ([#13461](https://github.com/Esri/calcite-design-system/issues/13461)) ([51b59e3](https://github.com/Esri/calcite-design-system/commit/51b59e33cf0c8dcd7fce9ec933c072f89b68a8d4)) +- **slider:** Ensure value is updated correctly on calciteSliderInput event ([#13700](https://github.com/Esri/calcite-design-system/issues/13700)) ([0b826b4](https://github.com/Esri/calcite-design-system/commit/0b826b40cc901ca5da769f995a8a40044908ec8e)) +- **slider:** Handle falsy values to reset ([#13766](https://github.com/Esri/calcite-design-system/issues/13766)) ([59f13d3](https://github.com/Esri/calcite-design-system/commit/59f13d377f3f6ded9bca41c9d08a794fa44155cf)) +- **tab-title:** Enable support for deprecated icon color variable, add "press" variables ([#13681](https://github.com/Esri/calcite-design-system/issues/13681)) ([3d73ed5](https://github.com/Esri/calcite-design-system/commit/3d73ed53337fbcaf07ea19bcadf4a995816bf217)) +- **tile-group:** Make horizontal layout always go horizontal ([#13260](https://github.com/Esri/calcite-design-system/issues/13260)) ([f915c8e](https://github.com/Esri/calcite-design-system/commit/f915c8e1f57ea2bb60832e56ea29d6e1ce59ba3b)) +- Update initial floating-ui styles to handle RTL top-layer positioning ([#13489](https://github.com/Esri/calcite-design-system/issues/13489)) ([73442ca](https://github.com/Esri/calcite-design-system/commit/73442caa8ad485b25e1024c981ccfc4268769f93)) ### Performance Improvements -* **combobox:** Drop redundant repositioning after each render ([#13756](https://github.com/Esri/calcite-design-system/issues/13756)) ([abe8702](https://github.com/Esri/calcite-design-system/commit/abe8702f238e17190af603c40610c382cdc9f440)) - +- **combobox:** Drop redundant repositioning after each render ([#13756](https://github.com/Esri/calcite-design-system/issues/13756)) ([abe8702](https://github.com/Esri/calcite-design-system/commit/abe8702f238e17190af603c40610c382cdc9f440)) ### Deprecations -* **action:** Deprecate appearance property ([d87955f](https://github.com/Esri/calcite-design-system/commit/d87955fc9fb750ece428c0c6d3eda6bfa807f764)) -* **input-message:** Deprecate component ([#13419](https://github.com/Esri/calcite-design-system/issues/13419)) ([26dbc05](https://github.com/Esri/calcite-design-system/commit/26dbc053c792cbc459c70b98d196bfe5235fd5ce)) -* **list:** Deprecate `border` value for `selectionAppearance` prop ([81ad34e](https://github.com/Esri/calcite-design-system/commit/81ad34e94c38a17d2d012296f7e658a597bc06c1)) - +- **action:** Deprecate appearance property ([d87955f](https://github.com/Esri/calcite-design-system/commit/d87955fc9fb750ece428c0c6d3eda6bfa807f764)) +- **input-message:** Deprecate component ([#13419](https://github.com/Esri/calcite-design-system/issues/13419)) ([26dbc05](https://github.com/Esri/calcite-design-system/commit/26dbc053c792cbc459c70b98d196bfe5235fd5ce)) +- **list:** Deprecate `border` value for `selectionAppearance` prop ([81ad34e](https://github.com/Esri/calcite-design-system/commit/81ad34e94c38a17d2d012296f7e658a597bc06c1)) ### Code Refactoring -* **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** Drop deprecated slots ([#13255](https://github.com/Esri/calcite-design-system/issues/13255)) ([97e3c8b](https://github.com/Esri/calcite-design-system/commit/97e3c8b26f65a1c9fa8e9f752f18f6327849ee62)) -* Drop deprecated component custom CSS props ([#13287](https://github.com/Esri/calcite-design-system/issues/13287)) ([6f60468](https://github.com/Esri/calcite-design-system/commit/6f60468f862771eb27165c90cb8df7c76035f50f)) -* **input:** Drop `textarea` type ([#13359](https://github.com/Esri/calcite-design-system/issues/13359)) ([f350d50](https://github.com/Esri/calcite-design-system/commit/f350d50d90431facaa5557a125573fd740db2eca)) -* **stepper:** Remove calciteStepperItemChange deprecated event ([#13329](https://github.com/Esri/calcite-design-system/issues/13329)) ([668da6f](https://github.com/Esri/calcite-design-system/commit/668da6fb147c6a5404bc89ab20a5f3ac95266867)) - +- **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** Drop deprecated slots ([#13255](https://github.com/Esri/calcite-design-system/issues/13255)) ([97e3c8b](https://github.com/Esri/calcite-design-system/commit/97e3c8b26f65a1c9fa8e9f752f18f6327849ee62)) +- Drop deprecated component custom CSS props ([#13287](https://github.com/Esri/calcite-design-system/issues/13287)) ([6f60468](https://github.com/Esri/calcite-design-system/commit/6f60468f862771eb27165c90cb8df7c76035f50f)) +- **input:** Drop `textarea` type ([#13359](https://github.com/Esri/calcite-design-system/issues/13359)) ([f350d50](https://github.com/Esri/calcite-design-system/commit/f350d50d90431facaa5557a125573fd740db2eca)) +- **stepper:** Remove calciteStepperItemChange deprecated event ([#13329](https://github.com/Esri/calcite-design-system/issues/13329)) ([668da6f](https://github.com/Esri/calcite-design-system/commit/668da6fb147c6a5404bc89ab20a5f3ac95266867)) ### Build System -* Drop deprecated CDN namespace ([#12546](https://github.com/Esri/calcite-design-system/issues/12546)) ([b8f4346](https://github.com/Esri/calcite-design-system/commit/b8f4346188f5b3677bea4553375aefb2b4e2b05f)) - +- Drop deprecated CDN namespace ([#12546](https://github.com/Esri/calcite-design-system/issues/12546)) ([b8f4346](https://github.com/Esri/calcite-design-system/commit/b8f4346188f5b3677bea4553375aefb2b4e2b05f)) ### Dependencies -* The following workspace dependencies were updated - * dependencies - * @esri/calcite-ui-icons bumped from 4.4.0-next.22 to 4.4.0 - * devDependencies - * @esri/calcite-design-tokens bumped from 4.0.0-next.23 to 4.0.0 - * @esri/calcite-tailwind-preset bumped from 1.1.0-next.13 to 1.1.0 - -## [5.0.0-next.90](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.89...@esri/calcite-components@5.0.0-next.90) (2026-02-03) - -### Bug Fixes - -- **accordion-item:** enable support for deprecated icon color variable ([#13523](https://github.com/Esri/calcite-design-system/issues/13523)) ([2df8e24](https://github.com/Esri/calcite-design-system/commit/2df8e244af7c3597d5c3b42225e28d4d61aac015)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) -- **action-pad:** avoid collapsing unrelated actions ([#13828](https://github.com/Esri/calcite-design-system/issues/13828)) ([68d234e](https://github.com/Esri/calcite-design-system/commit/68d234ebe41d67f342ce68ea1746fd8a4b076e46)), closes [#12098](https://github.com/Esri/calcite-design-system/issues/12098) -- **combobox:** avoid removing unrelated chips while deleting a chip via keyboard interaction ([#13688](https://github.com/Esri/calcite-design-system/issues/13688)) ([aa5ce4c](https://github.com/Esri/calcite-design-system/commit/aa5ce4cc24b837ff0b9030ba290159a32d66da9b)), closes [#13050](https://github.com/Esri/calcite-design-system/issues/13050) -- **dialog:** allow resizing when `resizable` and `fullscreenDisabled` ([#13830](https://github.com/Esri/calcite-design-system/issues/13830)) ([46e4087](https://github.com/Esri/calcite-design-system/commit/46e4087c137ee32f244cb7789c4f678d629c38ae)), closes [#10568](https://github.com/Esri/calcite-design-system/issues/10568) -- **menu-item:** enable support for deprecated icon color variable ([#13626](https://github.com/Esri/calcite-design-system/issues/13626)) ([fc69633](https://github.com/Esri/calcite-design-system/commit/fc696335506d930dc20df864bea860a3fefeb85c)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) - -## [5.0.0-next.89](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.88...@esri/calcite-components@5.0.0-next.89) (2026-02-02) - -**Note:** Version bump only for package @esri/calcite-components - -## [5.0.0-next.88](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.87...@esri/calcite-components@5.0.0-next.88) (2026-01-31) - -### Bug Fixes - -- **input-time-picker:** ensure popup fields match input fields ([#13802](https://github.com/Esri/calcite-design-system/issues/13802)) ([7b97908](https://github.com/Esri/calcite-design-system/commit/7b979087d092d3a41ad1391866bb31446aa87e80)), closes [#13328](https://github.com/Esri/calcite-design-system/issues/13328) - -## [5.0.0-next.87](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.86...@esri/calcite-components@5.0.0-next.87) (2026-01-30) - -### Features - -- **sheet, dialog:** add size override capability ([#13502](https://github.com/Esri/calcite-design-system/issues/13502)) ([da3914b](https://github.com/Esri/calcite-design-system/commit/da3914bb4d6fb09669aa34c4c65ef1617065e478)), closes [#10568](https://github.com/Esri/calcite-design-system/issues/10568) - -### Bug Fixes - -- **action-bar, action-pad:** remove topLayerDisabled property ([#13809](https://github.com/Esri/calcite-design-system/issues/13809)) ([e80fdc0](https://github.com/Esri/calcite-design-system/commit/e80fdc08a0ee2bd931de30460796271498aba6f6)), closes [#13698](https://github.com/Esri/calcite-design-system/issues/13698) - -## [5.0.0-next.86](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.85...@esri/calcite-components@5.0.0-next.86) (2026-01-29) - -### Bug Fixes - -- **slider:** ensure value is updated correctly on calciteSliderInput event ([#13700](https://github.com/Esri/calcite-design-system/issues/13700)) ([0b826b4](https://github.com/Esri/calcite-design-system/commit/0b826b40cc901ca5da769f995a8a40044908ec8e)), closes [#13603](https://github.com/Esri/calcite-design-system/issues/13603) - -### Performance Improvements - -- **combobox:** drop redundant repositioning after each render ([#13756](https://github.com/Esri/calcite-design-system/issues/13756)) ([abe8702](https://github.com/Esri/calcite-design-system/commit/abe8702f238e17190af603c40610c382cdc9f440)), closes [#13667](https://github.com/Esri/calcite-design-system/issues/13667) - -## [5.0.0-next.85](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.84...@esri/calcite-components@5.0.0-next.85) (2026-01-28) - -### Bug Fixes - -- **input, input-number, input-text:** correctly style affix when `readOnly` is set ([#13796](https://github.com/Esri/calcite-design-system/issues/13796)) ([9269304](https://github.com/Esri/calcite-design-system/commit/9269304f739e7dda81eba84e207e7863e340c2f8)), closes [#13792](https://github.com/Esri/calcite-design-system/issues/13792) - -## [5.0.0-next.84](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.83...@esri/calcite-components@5.0.0-next.84) (2026-01-28) - -### Bug Fixes - -- **chip:** enable support for deprecated icon color variable ([#13478](https://github.com/Esri/calcite-design-system/issues/13478)) ([96e9a42](https://github.com/Esri/calcite-design-system/commit/96e9a425cd6365be404cfab540e026edbd060065)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) - -## [5.0.0-next.83](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.82...@esri/calcite-components@5.0.0-next.83) (2026-01-28) - -### Bug Fixes - -- **block-section:** fix inconsistent interaction states ([#13788](https://github.com/Esri/calcite-design-system/issues/13788)) ([96c53a7](https://github.com/Esri/calcite-design-system/commit/96c53a7718e30d325c4c6b07fce9fe4e2eeb0636)), closes [#12658](https://github.com/Esri/calcite-design-system/issues/12658) - -## [5.0.0-next.82](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.81...@esri/calcite-components@5.0.0-next.82) (2026-01-27) - -### Features - -- **notice:** Add css property for shadow ([#13791](https://github.com/Esri/calcite-design-system/issues/13791)) ([a4f2ecd](https://github.com/Esri/calcite-design-system/commit/a4f2ecde98685481532591fe648adf67256aa2c0)), closes [#13790](https://github.com/Esri/calcite-design-system/issues/13790) - -## [5.0.0-next.81](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.80...@esri/calcite-components@5.0.0-next.81) (2026-01-27) - -### Bug Fixes - -- **dropdown-item:** enable customizing icon color with `--calcite-dropdown-item-text-color` token ([#13727](https://github.com/Esri/calcite-design-system/issues/13727)) ([67d61b6](https://github.com/Esri/calcite-design-system/commit/67d61b6f2fd657481b18fe66b42aafad6fad7b48)), closes [#13661](https://github.com/Esri/calcite-design-system/issues/13661) -- **slider:** handle falsy values to reset ([#13766](https://github.com/Esri/calcite-design-system/issues/13766)) ([59f13d3](https://github.com/Esri/calcite-design-system/commit/59f13d377f3f6ded9bca41c9d08a794fa44155cf)), closes [#8881](https://github.com/Esri/calcite-design-system/issues/8881) - -## [5.0.0-next.80](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.79...@esri/calcite-components@5.0.0-next.80) (2026-01-26) - -### Features - -- **split-button:** add hover, focus and press background-color css custom property tokens ([#13588](https://github.com/Esri/calcite-design-system/issues/13588)) ([f6a847a](https://github.com/Esri/calcite-design-system/commit/f6a847acb0facbf82402c6b5df463b5d59af71d2)), closes [#13462](https://github.com/Esri/calcite-design-system/issues/13462) - -## [5.0.0-next.79](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.78...@esri/calcite-components@5.0.0-next.79) (2026-01-26) - -### Features - -- **dialog:** Add fullscreenDisabled prop to prevent full screen layout ([#13753](https://github.com/Esri/calcite-design-system/issues/13753)) ([20c3031](https://github.com/Esri/calcite-design-system/commit/20c30310f6519999a05fccda421afa76ba9e7b78)), closes [#6191](https://github.com/Esri/calcite-design-system/issues/6191) - -### Bug Fixes - -- **input-date-picker:** Fix border display in RTL ([#13755](https://github.com/Esri/calcite-design-system/issues/13755)) ([f157845](https://github.com/Esri/calcite-design-system/commit/f157845a83d61b5fe806cb6796ca737f2032cdf7)), closes [#13127](https://github.com/Esri/calcite-design-system/issues/13127) -- **sheet:** Improve scrolling behavior for slotted content ([#13754](https://github.com/Esri/calcite-design-system/issues/13754)) ([29f61a1](https://github.com/Esri/calcite-design-system/commit/29f61a1f56a29d91e63cf2dc88bf2a0f277c55a7)), closes [#12393](https://github.com/Esri/calcite-design-system/issues/12393) - -## [5.0.0-next.78](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.77...@esri/calcite-components@5.0.0-next.78) (2026-01-22) - -### Bug Fixes - -- **input-date-picker:** Fix border display in RTL ([#13755](https://github.com/Esri/calcite-design-system/issues/13755)) ([f157845](https://github.com/Esri/calcite-design-system/commit/99f0a0f1e8d9edb270064c6d3aef47fefe8dd34c)), closes [#13127](https://github.com/Esri/calcite-design-system/issues/13127) - -## [5.0.0-next.77](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.76...@esri/calcite-components@5.0.0-next.77) (2026-01-22) - -### Bug Fixes - -- **list-item:** fix icon start position when custom content is slotted ([#13749](https://github.com/Esri/calcite-design-system/issues/13749)) ([8c5f9f4](https://github.com/Esri/calcite-design-system/commit/8c5f9f483649f38190dd5b6fdf3f2bb00a6adb75)), closes [#11607](https://github.com/Esri/calcite-design-system/issues/11607) - -## [5.0.0-next.76](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.75...@esri/calcite-components@5.0.0-next.76) (2026-01-22) - -### Bug Fixes - -- **input, input-number:** stop active nudging when `readOnly` is set ([#13751](https://github.com/Esri/calcite-design-system/issues/13751)) ([92d93ec](https://github.com/Esri/calcite-design-system/commit/92d93ecc5f480746271d4710c8faba1fde0fc0ca)), closes [#12407](https://github.com/Esri/calcite-design-system/issues/12407) - -## [5.0.0-next.75](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.74...@esri/calcite-components@5.0.0-next.75) (2026-01-22) - -### Bug Fixes - -- **input-date-picker:** fix trailing border for vertical layout in RTL direction ([#13747](https://github.com/Esri/calcite-design-system/issues/13747)) ([99f0a0f](https://github.com/Esri/calcite-design-system/commit/99f0a0f1e8d9edb270064c6d3aef47fefe8dd34c)), closes [#13127](https://github.com/Esri/calcite-design-system/issues/13127) - -## [5.0.0-next.74](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.73...@esri/calcite-components@5.0.0-next.74) (2026-01-21) - -### Features - -- add `topLayerDisabled` property to additional components ([#13730](https://github.com/Esri/calcite-design-system/issues/13730)) ([44a99f8](https://github.com/Esri/calcite-design-system/commit/44a99f8badef073992d1f7177483775fdca29429)), closes [#13698](https://github.com/Esri/calcite-design-system/issues/13698) - -### Bug Fixes - -- **panel, action-menu:** pass `scale` down to nested `calcite-popover` ([#13731](https://github.com/Esri/calcite-design-system/issues/13731)) ([aee39f5](https://github.com/Esri/calcite-design-system/commit/aee39f55b21d7b6a8a7728bb32090e2fb4212b73)), closes [#13714](https://github.com/Esri/calcite-design-system/issues/13714) - -## [5.0.0-next.73](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.72...@esri/calcite-components@5.0.0-next.73) (2026-01-21) - -### Bug Fixes - -- **tab-title:** enable support for deprecated icon color variable, add "press" variables ([#13681](https://github.com/Esri/calcite-design-system/issues/13681)) ([3d73ed5](https://github.com/Esri/calcite-design-system/commit/3d73ed53337fbcaf07ea19bcadf4a995816bf217)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) - -## [5.0.0-next.72](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.71...@esri/calcite-components@5.0.0-next.72) (2026-01-20) - -### Features - -- **shell-panel:** add border for resize handle ([#13697](https://github.com/Esri/calcite-design-system/issues/13697)) ([43bfac7](https://github.com/Esri/calcite-design-system/commit/43bfac73c6c45cfc759325889063dd638defe58e)), closes [#12178](https://github.com/Esri/calcite-design-system/issues/12178) - -## [5.0.0-next.71](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.70...@esri/calcite-components@5.0.0-next.71) (2026-01-16) - -### Bug Fixes - -- **action:** support `transparent` and `highlight` `active` background colors ([#13699](https://github.com/Esri/calcite-design-system/issues/13699)) ([6e2e3f1](https://github.com/Esri/calcite-design-system/commit/6e2e3f17a12a868bfe4be0c4e0c82f46a35fb722)), closes [#13690](https://github.com/Esri/calcite-design-system/issues/13690) [#13686](https://github.com/Esri/calcite-design-system/issues/13686) [/github.com/Esri/calcite-design-system/pull/13686#issuecomment-3749700724](https://github.com/Esri//github.com/Esri/calcite-design-system/pull/13686/issues/issuecomment-3749700724) - -## [5.0.0-next.70](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.69...@esri/calcite-components@5.0.0-next.70) (2026-01-16) - -### Features - -- **carousel:** add `paginationDisabled` property ([#13704](https://github.com/Esri/calcite-design-system/issues/13704)) ([efd2573](https://github.com/Esri/calcite-design-system/commit/efd257380a0df3699ac4279415505fe4856179b8)), closes [#11131](https://github.com/Esri/calcite-design-system/issues/11131) [#12270](https://github.com/Esri/calcite-design-system/issues/12270) - -## [5.0.0-next.69](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.68...@esri/calcite-components@5.0.0-next.69) (2026-01-16) - -### Bug Fixes - -- **input-message:** enable support for deprecated icon color variable ([#13586](https://github.com/Esri/calcite-design-system/issues/13586)) ([2e23dac](https://github.com/Esri/calcite-design-system/commit/2e23dacb626acce2796a5b23c3adb5923acaaf5d)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) - -## [5.0.0-next.68](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.67...@esri/calcite-components@5.0.0-next.68) (2026-01-16) - -### Bug Fixes - -- don't import from undeclared `lit-html` dependency ([#13702](https://github.com/Esri/calcite-design-system/issues/13702)) ([648c96a](https://github.com/Esri/calcite-design-system/commit/648c96a6d296badeadc8a5205ad075b9449e1081)) - -## [5.0.0-next.67](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.66...@esri/calcite-components@5.0.0-next.67) (2026-01-15) - -### Features - -- **carousel:** add `paginationStatus` to messages ([#13710](https://github.com/Esri/calcite-design-system/issues/13710)) ([f671ef3](https://github.com/Esri/calcite-design-system/commit/f671ef39a1696dfd617c8ea92cfb448164430509)), closes [#11131](https://github.com/Esri/calcite-design-system/issues/11131) [#13704](https://github.com/Esri/calcite-design-system/issues/13704) - -## [5.0.0-next.66](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.65...@esri/calcite-components@5.0.0-next.66) (2026-01-15) - -### Features - -- **text-area:** add loading property ([#13679](https://github.com/Esri/calcite-design-system/issues/13679)) ([d0c9b6a](https://github.com/Esri/calcite-design-system/commit/d0c9b6ad8872f071be62e05049dbd2ed112435ed)), closes [#13389](https://github.com/Esri/calcite-design-system/issues/13389) - -## [5.0.0-next.65](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.64...@esri/calcite-components@5.0.0-next.65) (2026-01-15) - -### Bug Fixes - -- **navigation-logo:** enable support for deprecated icon color variable ([#13633](https://github.com/Esri/calcite-design-system/issues/13633)) ([8c6746a](https://github.com/Esri/calcite-design-system/commit/8c6746a1eb435fb48260d0d7b15053f84b1f6f8f)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) - -## [5.0.0-next.64](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.63...@esri/calcite-components@5.0.0-next.64) (2026-01-15) - -### Bug Fixes - -- **input-number:** enable support for deprecated icon color variable ([#13585](https://github.com/Esri/calcite-design-system/issues/13585)) ([c2e27d8](https://github.com/Esri/calcite-design-system/commit/c2e27d852b4b07141aedbc4275643b5410754f71)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) - -## [5.0.0-next.63](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.62...@esri/calcite-components@5.0.0-next.63) (2026-01-14) - -### Bug Fixes - -- **list-item:** don't vertically stretch slotted action and dropdown component trigger buttons ([#13693](https://github.com/Esri/calcite-design-system/issues/13693)) ([f9e5d39](https://github.com/Esri/calcite-design-system/commit/f9e5d39e956b4376dffde2c5884d29bb1525d84b)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) - -## [5.0.0-next.62](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.61...@esri/calcite-components@5.0.0-next.62) (2026-01-14) - -### Bug Fixes - -- **input-time-picker:** enable support for deprecated icon color variable ([#13623](https://github.com/Esri/calcite-design-system/issues/13623)) ([f6f80bf](https://github.com/Esri/calcite-design-system/commit/f6f80bf8650c1a365d2d668ffffc39e782a309f9)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) -- **list-item:** maintain vertical alignment of slotted elements on focus ([#13425](https://github.com/Esri/calcite-design-system/issues/13425)) ([242c3db](https://github.com/Esri/calcite-design-system/commit/242c3db7905168aa77ba6ec6c32d622f7123f959)), closes [#12940](https://github.com/Esri/calcite-design-system/issues/12940) -- **panel:** enable support for deprecated icon color variable ([#13635](https://github.com/Esri/calcite-design-system/issues/13635)) ([812aa5a](https://github.com/Esri/calcite-design-system/commit/812aa5a50ff67a625b86032729eaff8b459b5628)), closes [#13056](https://github.com/Esri/calcite-design-system/issues/13056) - -## [5.0.0-next.61](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.60...@esri/calcite-components@5.0.0-next.61) (2026-01-13) - -### Bug Fixes - -- **action:** resolve specificity conflict between `selection-mode="highlight"` and `appearance="transparent"` ([#13686](https://github.com/Esri/calcite-design-system/issues/13686)) ([25f6965](https://github.com/Esri/calcite-design-system/commit/25f696578ea86db39973123755fe54ca74209075)), closes [#13462](https://github.com/Esri/calcite-design-system/issues/13462) [#10758](https://github.com/Esri/calcite-design-system/issues/10758) - -## [5.0.0-next.60](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.59...@esri/calcite-components@5.0.0-next.60) (2026-01-13) - -### Bug Fixes - -- **action-menu:** clicking in between actions doesn't close popup ([#13680](https://github.com/Esri/calcite-design-system/issues/13680)) ([ca8ef20](https://github.com/Esri/calcite-design-system/commit/ca8ef20c4edf0c4cafb5db33e71465e20026c380)), closes [#13453](https://github.com/Esri/calcite-design-system/issues/13453) - -## [5.0.0-next.59](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.58...@esri/calcite-components@5.0.0-next.59) (2026-01-13) - -### Features - -- **accordion-item:** update header to use semantic button instead of div ([#13664](https://github.com/Esri/calcite-design-system/issues/13664)) ([4022e50](https://github.com/Esri/calcite-design-system/commit/4022e500199688172d409d7b8f6e4dfcec6abb79)), closes [#4123](https://github.com/Esri/calcite-design-system/issues/4123) - -### Bug Fixes - -- **input, input-number, input-text:** update color of prefix and suffix ([#13682](https://github.com/Esri/calcite-design-system/issues/13682)) ([7b77dcd](https://github.com/Esri/calcite-design-system/commit/7b77dcd27c72a69d40670734135bda801b759dc4)), closes [#13568](https://github.com/Esri/calcite-design-system/issues/13568) - -## [5.0.0-next.58](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.57...@esri/calcite-components@5.0.0-next.58) (2026-01-12) - -### Bug Fixes - -- **notice:** no longer changes close action backgroundColor on focus ([#13625](https://github.com/Esri/calcite-design-system/issues/13625)) ([c53594f](https://github.com/Esri/calcite-design-system/commit/c53594f4332448d6283d7d0f56ec15333d31e735)), closes [#13624](https://github.com/Esri/calcite-design-system/issues/13624) - -## [5.0.0-next.57](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.56...@esri/calcite-components@5.0.0-next.57) (2026-01-12) - -### Features - -- **alert, autocomplete, combobox, dropdown, input-date-picker, popover, tooltip:** add `topLayerDisabled` prop ([#13604](https://github.com/Esri/calcite-design-system/issues/13604)) ([f37d836](https://github.com/Esri/calcite-design-system/commit/f37d836afac35084490b29e577f60ff97e264db5)) - -## [5.0.0-next.56](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.55...@esri/calcite-components@5.0.0-next.56) (2026-01-12) - -**Note:** Version bump only for package @esri/calcite-components - -## [5.0.0-next.55](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.54...@esri/calcite-components@5.0.0-next.55) (2026-01-09) - -### Features - -- **autocomplete:** add token for max menu height ([#13616](https://github.com/Esri/calcite-design-system/issues/13616)) ([75eaf0d](https://github.com/Esri/calcite-design-system/commit/75eaf0d706493981da5331faf19f0f569c6f8259)), closes [#13227](https://github.com/Esri/calcite-design-system/issues/13227) [#13227](https://github.com/Esri/calcite-design-system/issues/13227) - -## [5.0.0-next.54](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.53...@esri/calcite-components@5.0.0-next.54) (2026-01-09) - -### Features - -- **alert:** use filled status icon for consistency ([#13665](https://github.com/Esri/calcite-design-system/issues/13665)) ([d743d0d](https://github.com/Esri/calcite-design-system/commit/d743d0dbd823f345909ac3f1b9b35be6426cfb71)), closes [#12464](https://github.com/Esri/calcite-design-system/issues/12464) - -## [5.0.0-next.53](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.52...@esri/calcite-components@5.0.0-next.53) (2026-01-09) - -### Bug Fixes - -- **list-item:** fix spacing issues to match Action 5 design ([#13659](https://github.com/Esri/calcite-design-system/issues/13659)) ([41f0808](https://github.com/Esri/calcite-design-system/commit/41f080878d04646b2630af505f8e68e1483475c4)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) [#issuecomment-3706465653](https://github.com/Esri/calcite-design-system/issues/issuecomment-3706465653) [/github.com/Esri/calcite-design-system/issues/10777#issuecomment-3706465653](https://github.com/Esri//github.com/Esri/calcite-design-system/issues/10777/issues/issuecomment-3706465653) [/github.com/Esri/calcite-design-system/issues/10777#issuecomment-3706465653](https://github.com/Esri//github.com/Esri/calcite-design-system/issues/10777/issues/issuecomment-3706465653) - -## [5.0.0-next.52](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.51...@esri/calcite-components@5.0.0-next.52) (2026-01-08) - -### Features - -- **carousel:** Improve single Carousel Item display ([#13644](https://github.com/Esri/calcite-design-system/issues/13644)) ([109ec94](https://github.com/Esri/calcite-design-system/commit/109ec941b614713ae727244c402a786e44c20df5)), closes [#12270](https://github.com/Esri/calcite-design-system/issues/12270) - -## [5.0.0-next.51](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.50...@esri/calcite-components@5.0.0-next.51) (2026-01-08) - -### Features - -- **stepper-item:** reduce height and update styling for improved UX ([#13656](https://github.com/Esri/calcite-design-system/issues/13656)) ([6486b3d](https://github.com/Esri/calcite-design-system/commit/6486b3dbc23e7804a7de1f4a69cbe76b5a230a18)), closes [#10720](https://github.com/Esri/calcite-design-system/issues/10720) - -## [5.0.0-next.50](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.49...@esri/calcite-components@5.0.0-next.50) (2026-01-07) - -**Note:** Version bump only for package @esri/calcite-components - -## [5.0.0-next.49](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.48...@esri/calcite-components@5.0.0-next.49) (2026-01-07) - -### Bug Fixes - -- **flow-item:** back button action uses the provided scale ([#13638](https://github.com/Esri/calcite-design-system/issues/13638)) ([1d71e76](https://github.com/Esri/calcite-design-system/commit/1d71e76fbfc6267234e0b6e17facef2b1658b473)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) - -## [5.0.0-next.48](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.47...@esri/calcite-components@5.0.0-next.48) (2026-01-06) - -### Features - -- **accordion-item:** update heading and description styling for system consistency for 5.0 ([#13642](https://github.com/Esri/calcite-design-system/issues/13642)) ([4626f64](https://github.com/Esri/calcite-design-system/commit/4626f64c3ba377aae3e681e04437b3fafc9e8902)), closes [#12306](https://github.com/Esri/calcite-design-system/issues/12306) -- **alert:** remove title slot bottom margin on large scale ([#13646](https://github.com/Esri/calcite-design-system/issues/13646)) ([6946535](https://github.com/Esri/calcite-design-system/commit/694653565b1caf1cdf2f3dc56ef57c37457161d8)), closes [#11597](https://github.com/Esri/calcite-design-system/issues/11597) -- **tile:** Add `highlight` type for `selectionAppearance` prop ([#13565](https://github.com/Esri/calcite-design-system/issues/13565)) ([9c0d2a2](https://github.com/Esri/calcite-design-system/commit/9c0d2a26eb430a5b90fb2f7b79e4ea8a85998a9d)), closes [#10779](https://github.com/Esri/calcite-design-system/issues/10779) - -## [5.0.0-next.47](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.46...@esri/calcite-components@5.0.0-next.47) (2026-01-06) - -### Bug Fixes - -- **notice:** allow customizing backgroundColor of close action ([#13467](https://github.com/Esri/calcite-design-system/issues/13467)) ([6e03202](https://github.com/Esri/calcite-design-system/commit/6e03202f53b9cb693497c8c5631a867e57151a79)) -- **notice:** apply correct colors for close action when hovered or active ([#13605](https://github.com/Esri/calcite-design-system/issues/13605)) ([7de7bec](https://github.com/Esri/calcite-design-system/commit/7de7becac037699ad90fd14e17006efbe4772836)), closes [#13504](https://github.com/Esri/calcite-design-system/issues/13504) - -### Reverts - -- **button:** remove stateful background color css tokens ([#13627](https://github.com/Esri/calcite-design-system/issues/13627)) ([85a90e4](https://github.com/Esri/calcite-design-system/commit/85a90e46b2abcaabfef2c9564f4c6c97eab140af)), closes [#13548](https://github.com/Esri/calcite-design-system/issues/13548) - -## [5.0.0-next.46](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.45...@esri/calcite-components@5.0.0-next.46) (2026-01-02) - -### Bug Fixes - -- ensure top layer placement when open component is reconnected ([#13622](https://github.com/Esri/calcite-design-system/issues/13622)) ([5a15056](https://github.com/Esri/calcite-design-system/commit/5a150562d64a1cd594ae3ef5a501278c2fd634d7)), closes [#13621](https://github.com/Esri/calcite-design-system/issues/13621) - -## [5.0.0-next.45](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.44...@esri/calcite-components@5.0.0-next.45) (2026-01-01) - -### Features - -- **dropdown:** update selection appearance ([#13571](https://github.com/Esri/calcite-design-system/issues/13571)) ([dcf7a36](https://github.com/Esri/calcite-design-system/commit/dcf7a3687004013d625b12acd5653aa07f1efcaa)) - -## [5.0.0-next.44](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.43...@esri/calcite-components@5.0.0-next.44) (2025-12-31) - -### Features - -- **tree:** update selection appearance ([#13572](https://github.com/Esri/calcite-design-system/issues/13572)) ([dd27a3c](https://github.com/Esri/calcite-design-system/commit/dd27a3c8265afcc6b2972a129335b9b2529f5e8a)), closes [#10776](https://github.com/Esri/calcite-design-system/issues/10776) - -## [5.0.0-next.43](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.42...@esri/calcite-components@5.0.0-next.43) (2025-12-31) - -### Features - -- **dialog, sheet:** add `topLayerDisabled` prop ([#13600](https://github.com/Esri/calcite-design-system/issues/13600)) ([2ed7eb7](https://github.com/Esri/calcite-design-system/commit/2ed7eb7066d323a545071baf11389e499a3294fb)) - -## [5.0.0-next.42](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.41...@esri/calcite-components@5.0.0-next.42) (2025-12-30) - -### Features - -- **list:** add `highlight` selection appearance ([#13570](https://github.com/Esri/calcite-design-system/issues/13570)) ([81ad34e](https://github.com/Esri/calcite-design-system/commit/81ad34e94c38a17d2d012296f7e658a597bc06c1)), closes [#10778](https://github.com/Esri/calcite-design-system/issues/10778) -- **menu:** update vertical layout design ([#13576](https://github.com/Esri/calcite-design-system/issues/13576)) ([06f0913](https://github.com/Esri/calcite-design-system/commit/06f09137f9df8729bef112ab9f12f8d47427defc)), closes [#10767](https://github.com/Esri/calcite-design-system/issues/10767) - -## [5.0.0-next.41](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.40...@esri/calcite-components@5.0.0-next.41) (2025-12-29) - -### Bug Fixes - -- **alert:** disable `dismissProgress` animation when reduced motion preferred ([#13583](https://github.com/Esri/calcite-design-system/issues/13583)) ([bb93ee0](https://github.com/Esri/calcite-design-system/commit/bb93ee02b0e292aba61c94c35a9729a1ad5866a6)), closes [#6358](https://github.com/Esri/calcite-design-system/issues/6358) -- **alert:** enable visibilty of `dismiss-progress` element ([#13582](https://github.com/Esri/calcite-design-system/issues/13582)) ([4379ca8](https://github.com/Esri/calcite-design-system/commit/4379ca839632d60a1362a00c0ec56fb2f2b1da6a)), closes [#13581](https://github.com/Esri/calcite-design-system/issues/13581) [#12904](https://github.com/Esri/calcite-design-system/issues/12904) - -## [5.0.0-next.40](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.39...@esri/calcite-components@5.0.0-next.40) (2025-12-29) - -### Bug Fixes - -- **button:** allow customizing color, hover, focus and press background colors ([#13548](https://github.com/Esri/calcite-design-system/issues/13548)) ([2fbf450](https://github.com/Esri/calcite-design-system/commit/2fbf45050eb82c175844f3552043441638a08a45)), closes [#13462](https://github.com/Esri/calcite-design-system/issues/13462) - -## [5.0.0-next.39](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.38...@esri/calcite-components@5.0.0-next.39) (2025-12-23) - -### Features - -- **action:** adjust indicator size and position on small scale ([#13558](https://github.com/Esri/calcite-design-system/issues/13558)) ([e8172bb](https://github.com/Esri/calcite-design-system/commit/e8172bbdce8dcefd378521fd5539260d8c43ac40)), closes [#13516](https://github.com/Esri/calcite-design-system/issues/13516) -- **shell-panel:** update min-height to avoid content being cut off ([#13561](https://github.com/Esri/calcite-design-system/issues/13561)) ([391999c](https://github.com/Esri/calcite-design-system/commit/391999ca4020b3efe8c56c97eea172bda7954309)), closes [#13448](https://github.com/Esri/calcite-design-system/issues/13448) - -### Bug Fixes - -- **action-group:** skip ARIA attributes when selectionMode is `none` ([#13522](https://github.com/Esri/calcite-design-system/issues/13522)) ([528f528](https://github.com/Esri/calcite-design-system/commit/528f52812601e94c31ecb178336b82f3ffe72f4a)), closes [#13483](https://github.com/Esri/calcite-design-system/issues/13483) -- **action:** allow background color to be changed with transparent appearance ([#13527](https://github.com/Esri/calcite-design-system/issues/13527)) ([d87955f](https://github.com/Esri/calcite-design-system/commit/d87955fc9fb750ece428c0c6d3eda6bfa807f764)), closes [#13462](https://github.com/Esri/calcite-design-system/issues/13462) -- ensure popovers are toggled outside animations ([#13490](https://github.com/Esri/calcite-design-system/issues/13490)) ([89955ce](https://github.com/Esri/calcite-design-system/commit/89955ceb3efea794ac9dac10000fe6782725e9ca)), closes [#13211](https://github.com/Esri/calcite-design-system/issues/13211) - -## [5.0.0-next.38](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.37...@esri/calcite-components@5.0.0-next.38) (2025-12-19) - -### Features - -- **shell-panel:** improve layout and height functionalities for float all display mode ([#13517](https://github.com/Esri/calcite-design-system/issues/13517)) ([3c02440](https://github.com/Esri/calcite-design-system/commit/3c02440999ad8779255a0785573653d3280aa43e)), closes [#13448](https://github.com/Esri/calcite-design-system/issues/13448) - -## [5.0.0-next.37](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.36...@esri/calcite-components@5.0.0-next.37) (2025-12-18) - -### Features - -- **tile:** fix excess margins with headingLevel property ([#13512](https://github.com/Esri/calcite-design-system/issues/13512)) ([6e5b252](https://github.com/Esri/calcite-design-system/commit/6e5b252e3a0c99cb7acf5a81632860ba2ab52f67)), closes [#12460](https://github.com/Esri/calcite-design-system/issues/12460) [#12460](https://github.com/Esri/calcite-design-system/issues/12460) [/github.com/Esri/calcite-design-system/issues/12460#issuecomment-3667861071](https://github.com/Esri//github.com/Esri/calcite-design-system/issues/12460/issues/issuecomment-3667861071) - -## [5.0.0-next.36](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.35...@esri/calcite-components@5.0.0-next.36) (2025-12-18) - -### Bug Fixes - -- **action:** drop extra opacity styles when disabled ([#13510](https://github.com/Esri/calcite-design-system/issues/13510)) ([0f375d0](https://github.com/Esri/calcite-design-system/commit/0f375d0fc6d6af0b4e08c947cf4f43f0636a0119)), closes [#12601](https://github.com/Esri/calcite-design-system/issues/12601) - -## [5.0.0-next.35](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.34...@esri/calcite-components@5.0.0-next.35) (2025-12-18) - -### Bug Fixes - -- update initial floating-ui styles to handle RTL top-layer positioning ([#13489](https://github.com/Esri/calcite-design-system/issues/13489)) ([73442ca](https://github.com/Esri/calcite-design-system/commit/73442caa8ad485b25e1024c981ccfc4268769f93)) - -## [5.0.0-next.34](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.33...@esri/calcite-components@5.0.0-next.34) (2025-12-18) - -**Note:** Version bump only for package @esri/calcite-components - -## [5.0.0-next.33](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.32...@esri/calcite-components@5.0.0-next.33) (2025-12-17) - -### Features - -- **list, list-item:** update action slot spacing for 5.0 ([#13463](https://github.com/Esri/calcite-design-system/issues/13463)) ([73bddc3](https://github.com/Esri/calcite-design-system/commit/73bddc3491b4d7d2d6fd8872d3c0b7551a5313ac)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **tile:** add headingLevel property ([#13501](https://github.com/Esri/calcite-design-system/issues/13501)) ([a5f56b3](https://github.com/Esri/calcite-design-system/commit/a5f56b3e12a4a631e326a8763191c01a341326c5)), closes [#12460](https://github.com/Esri/calcite-design-system/issues/12460) - -## [5.0.0-next.32](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.31...@esri/calcite-components@5.0.0-next.32) (2025-12-17) - -### Bug Fixes - -- **action:** remove text color change for loading state ([#13498](https://github.com/Esri/calcite-design-system/issues/13498)) ([52311c0](https://github.com/Esri/calcite-design-system/commit/52311c0bbd89fb5f4e9f936ee80bd2c1bab1c0e2)), closes [#12601](https://github.com/Esri/calcite-design-system/issues/12601) - -## [5.0.0-next.31](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.30...@esri/calcite-components@5.0.0-next.31) (2025-12-17) - -### Bug Fixes - -- **input-time-picker, time-picker:** align time display closer to the browser's intended format ([#13372](https://github.com/Esri/calcite-design-system/issues/13372)) ([7d24300](https://github.com/Esri/calcite-design-system/commit/7d2430013ff1915bdcbac8607884ec7b9cd6e5ca)), closes [#12723](https://github.com/Esri/calcite-design-system/issues/12723) [#13355](https://github.com/Esri/calcite-design-system/issues/13355) - -## [5.0.0-next.30](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.29...@esri/calcite-components@5.0.0-next.30) (2025-12-16) - -**Note:** Version bump only for package @esri/calcite-components - -## [5.0.0-next.29](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.28...@esri/calcite-components@5.0.0-next.29) (2025-12-16) - -### Features - -- **chip:** update to Action 5 spacing ([#13445](https://github.com/Esri/calcite-design-system/issues/13445)) ([ecd6d53](https://github.com/Esri/calcite-design-system/commit/ecd6d535fd9d62c798e411a99b05f4e8d126065b)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) - -## [5.0.0-next.28](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.27...@esri/calcite-components@5.0.0-next.28) (2025-12-15) - -### Bug Fixes - -- **action:** enable customizing background-color on hover & active when `appearance="transparent"` ([#13466](https://github.com/Esri/calcite-design-system/issues/13466)) ([c6953d2](https://github.com/Esri/calcite-design-system/commit/c6953d2df90b1e4187e4581850062cd1143ed3fa)), closes [#13462](https://github.com/Esri/calcite-design-system/issues/13462) - -## [5.0.0-next.27](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.26...@esri/calcite-components@5.0.0-next.27) (2025-12-15) - -### Features - -- **combobox-item:** set heading as fallback for a11y props and value ([#13460](https://github.com/Esri/calcite-design-system/issues/13460)) ([602abec](https://github.com/Esri/calcite-design-system/commit/602abec0f2114d38f2024437fb5135bccc2bc34c)), closes [#9989](https://github.com/Esri/calcite-design-system/issues/9989) -- **combobox:** add `placement` prop ([#13471](https://github.com/Esri/calcite-design-system/issues/13471)) ([a3acef1](https://github.com/Esri/calcite-design-system/commit/a3acef14889e5f0017ec77ab1e9ca64c0a7fc602)), closes [#12155](https://github.com/Esri/calcite-design-system/issues/12155) -- **shell-panel:** add size override capability ([#13280](https://github.com/Esri/calcite-design-system/issues/13280)) ([172ca34](https://github.com/Esri/calcite-design-system/commit/172ca342fbd0239f2a43a7dacf897ba01378c25e)), closes [#10568](https://github.com/Esri/calcite-design-system/issues/10568) -- **tab-title:** update to Action 5.0 spacing ([#13444](https://github.com/Esri/calcite-design-system/issues/13444)) ([6010c7d](https://github.com/Esri/calcite-design-system/commit/6010c7d808b97dec1bfa9d707dfbdee2506db8be)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) - -### Bug Fixes - -- **shell-panel:** configure component height with user-defined css properties ([#13461](https://github.com/Esri/calcite-design-system/issues/13461)) ([51b59e3](https://github.com/Esri/calcite-design-system/commit/51b59e33cf0c8dcd7fce9ec933c072f89b68a8d4)), closes [#10825](https://github.com/Esri/calcite-design-system/issues/10825) - -## [5.0.0-next.26](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.25...@esri/calcite-components@5.0.0-next.26) (2025-12-11) - -### Features - -- **action-bar, action-pad, action-group:** implement ARIA toolbar pattern with configurable selection modes ([#13386](https://github.com/Esri/calcite-design-system/issues/13386)) ([285fb5e](https://github.com/Esri/calcite-design-system/commit/285fb5ecae99f84fee6e4229dbeec87701820d59)), closes [#7052](https://github.com/Esri/calcite-design-system/issues/7052) - -## [5.0.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.24...@esri/calcite-components@5.0.0-next.25) (2025-12-11) - -### Features - -- **shell-panel:** update default max height for slotted calcite-panel ([#13454](https://github.com/Esri/calcite-design-system/issues/13454)) ([e793b37](https://github.com/Esri/calcite-design-system/commit/e793b37a85e6d4e44184e77ed0cc449b6d9ea7e2)), closes [#10825](https://github.com/Esri/calcite-design-system/issues/10825) - -## [5.0.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.23...@esri/calcite-components@5.0.0-next.24) (2025-12-11) - -### Features - -- **notice:** add token for customizing border-radius ([#13447](https://github.com/Esri/calcite-design-system/issues/13447)) ([abc14be](https://github.com/Esri/calcite-design-system/commit/abc14beef9dfa3a7be5ed2642ecbe0321d8617ff)), closes [#10477](https://github.com/Esri/calcite-design-system/issues/10477) - -## [5.0.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.22...@esri/calcite-components@5.0.0-next.23) (2025-12-11) - -### Features - -- **navigation:** update navigation action spacing ([#13434](https://github.com/Esri/calcite-design-system/issues/13434)) ([be3c2a5](https://github.com/Esri/calcite-design-system/commit/be3c2a548448f625254a08e0eeffcfb45218964f)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) - -## [5.0.0-next.22](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.21...@esri/calcite-components@5.0.0-next.22) (2025-12-10) - -### ⚠ BREAKING CHANGES - -- **combobox-item:** Deprecated `textLabel` prop has been removed, use - `heading` instead. -- restore `--calcite-color-focus` in index.(s)css (#13398) - -### Features - -- **accordion-item:** update action slot spacing ([#13416](https://github.com/Esri/calcite-design-system/issues/13416)) ([56a383a](https://github.com/Esri/calcite-design-system/commit/56a383aa5e40ff05eab49d8e565faaff479643ac)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **alert:** update to action 5.0 spacing ([#13417](https://github.com/Esri/calcite-design-system/issues/13417)) ([2275e25](https://github.com/Esri/calcite-design-system/commit/2275e250da68dd255e8649d8edd3a023b2dbf27f)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **block:** update to Action 5.0 spacing ([#13429](https://github.com/Esri/calcite-design-system/issues/13429)) ([fe4aaab](https://github.com/Esri/calcite-design-system/commit/fe4aaabff4e5a4038b43b1922d7c57bb53af95a6)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **combobox-item:** remove textLabel prop and update heading and value properties ([#13427](https://github.com/Esri/calcite-design-system/issues/13427)) ([49ae75e](https://github.com/Esri/calcite-design-system/commit/49ae75e5e96267d1bbc1c8cf9598ba031fe2c61d)), closes [#9989](https://github.com/Esri/calcite-design-system/issues/9989) -- **dialog, flow-item, panel:** update to Action 5.0 spacing ([#13437](https://github.com/Esri/calcite-design-system/issues/13437)) ([3b8f82f](https://github.com/Esri/calcite-design-system/commit/3b8f82f72552469a3a88289380aba3abb8237fdd)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **flow-item:** remove border from back button ([#13449](https://github.com/Esri/calcite-design-system/issues/13449)) ([41f1fb8](https://github.com/Esri/calcite-design-system/commit/41f1fb8ee22ead4000019e14eb22a545147a99dd)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **menu-item:** update dropdown action spacing ([#13440](https://github.com/Esri/calcite-design-system/issues/13440)) ([010a0c5](https://github.com/Esri/calcite-design-system/commit/010a0c53df56dd7c1f34d47727e24d1e206953e9)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **notice:** add neutral kind & appearance property ([#13406](https://github.com/Esri/calcite-design-system/issues/13406)) ([1adc3f2](https://github.com/Esri/calcite-design-system/commit/1adc3f245613c600da8af7ad322563add181a54c)), closes [#10477](https://github.com/Esri/calcite-design-system/issues/10477) -- **notice:** update close button to action component & update actions-end slot spacing ([#13432](https://github.com/Esri/calcite-design-system/issues/13432)) ([9b041c0](https://github.com/Esri/calcite-design-system/commit/9b041c0972cd0d385981ab9b5b3e2c94bee053e6)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **popover:** update to Action 5.0 spacing ([#13433](https://github.com/Esri/calcite-design-system/issues/13433)) ([9493dd6](https://github.com/Esri/calcite-design-system/commit/9493dd63753b62bd591577e60f0b3d7e4bdfc0df)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **shell-panel:** improve support for height setting of float-all display mode ([#13442](https://github.com/Esri/calcite-design-system/issues/13442)) ([3cc19c4](https://github.com/Esri/calcite-design-system/commit/3cc19c4bc3c2df0a60fc61176e99168ca1a57ff2)), closes [#10825](https://github.com/Esri/calcite-design-system/issues/10825) -- **table:** update to Action 5.0 spacing ([#13436](https://github.com/Esri/calcite-design-system/issues/13436)) ([0dec108](https://github.com/Esri/calcite-design-system/commit/0dec108594d015081bc346633b504ecdfa716224)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) -- **tree-item:** update to Action 5.0 spacing ([#13435](https://github.com/Esri/calcite-design-system/issues/13435)) ([2cd46be](https://github.com/Esri/calcite-design-system/commit/2cd46be3ee872973efd3043faef990ed54cc58de)), closes [#10777](https://github.com/Esri/calcite-design-system/issues/10777) - -### Bug Fixes - -- restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) - -## [5.0.0-next.21](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.20...@esri/calcite-components@5.0.0-next.21) (2025-12-09) - -**Note:** Version bump only for package @esri/calcite-components - -## [5.0.0-next.20](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.19...@esri/calcite-components@5.0.0-next.20) (2025-12-08) - -### Bug Fixes - -- remove remaining references to legacy cdn output dir ([#13415](https://github.com/Esri/calcite-design-system/issues/13415)) ([90ca9cc](https://github.com/Esri/calcite-design-system/commit/90ca9cca81c918cd82b581b05bf68ab749ec47d2)) - -## [5.0.0-next.19](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.18...@esri/calcite-components@5.0.0-next.19) (2025-12-08) - -### Features - -- **shell-panel:** improve support for adjusting height of float-all display ([#13410](https://github.com/Esri/calcite-design-system/issues/13410)) ([1e09a92](https://github.com/Esri/calcite-design-system/commit/1e09a9228bd00198c92cc7e3a1896b3b3b3b9a64)), closes [#10825](https://github.com/Esri/calcite-design-system/issues/10825) - -## [5.0.0-next.18](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.17...@esri/calcite-components@5.0.0-next.18) (2025-12-05) - -### ⚠ BREAKING CHANGES - -- **action:** Setting Action's default appearance to "transparent" - and deprecating "solid" to better support embedded use cases where focus - background colors can take precedence. - -### Features - -- **action:** update to 5.0 design ([#13252](https://github.com/Esri/calcite-design-system/issues/13252)) ([a3979b4](https://github.com/Esri/calcite-design-system/commit/a3979b49dd633e80b2279157b880d0e17de1049a)), closes [#10759](https://github.com/Esri/calcite-design-system/issues/10759) - -## [5.0.0-next.17](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.16...@esri/calcite-components@5.0.0-next.17) (2025-12-04) - -**Note:** Version bump only for package @esri/calcite-components - -## [5.0.0-next.16](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.15...@esri/calcite-components@5.0.0-next.16) (2025-12-03) - -### Bug Fixes - -- remove invalid CSS files from component package exports ([#13401](https://github.com/Esri/calcite-design-system/issues/13401)) ([447e7fd](https://github.com/Esri/calcite-design-system/commit/447e7fdb77808376ae7a7d907b194a64c01ebb88)) - -## [5.0.0-next.15](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.14...@esri/calcite-components@5.0.0-next.15) (2025-12-03) - -### Features - -- **dropdown-item:** reduce height in small & medium scale. ([#13391](https://github.com/Esri/calcite-design-system/issues/13391)) ([6198029](https://github.com/Esri/calcite-design-system/commit/6198029724f25b607913e82a47909427957e2441)), closes [#10782](https://github.com/Esri/calcite-design-system/issues/10782) - -## [5.0.0-next.14](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.13...@esri/calcite-components@5.0.0-next.14) (2025-12-03) - -### ⚠ BREAKING CHANGES - -- removes the following deprecated custom CSS props: - -- `--calcite-accordion-item-text-color-press`† – use - `--calcite-accordion-text-color-press` -- `--calcite-action-group-padding`† – use `--calcite-action-group-gap` -- `--calcite-button-shadow-color`† – use `--calcite-button-shadow` -- `--calcite-card-selection-background-color-active`† – use - `--calcite-card-selection-background-color-press` -- `--calcite-card-selection-background-color-selected`† – use - `--calcite-card-background-color` -- `--calcite-card-selection-icon-color`† – use - `--calcite-card-selection-color` -- `--calcite-inline-editable-button-shadow-color`‡ -- `--calcite-input-date-picker-icon-color-hover`† -- `--calcite-notice-close-text-color-hover`† – use - `--calcite-notice-close-icon-color-hover` -- `--calcite-radio-size` – use `--calcite-radio-button-size` -- `--calcite-notice-close-text-color`† – use - `--calcite-notice-close-icon-color` -- `--calcite-popover-z-index`§ -- `--calcite-tooltip-z-index`§ -- `--calcite-rating-spacing-unit`† – use `--calcite-rating-spacing` - -† not referenced in styles, so there should be no impact from removal -‡ not deprecated previously, but used to set unreferenced custom prop -(see above) - -### Code Refactoring - -- drop deprecated component custom CSS props ([#13287](https://github.com/Esri/calcite-design-system/issues/13287)) ([6f60468](https://github.com/Esri/calcite-design-system/commit/6f60468f862771eb27165c90cb8df7c76035f50f)), closes [#13291](https://github.com/Esri/calcite-design-system/issues/13291) [#12904](https://github.com/Esri/calcite-design-system/issues/12904) - -## [5.0.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.12...@esri/calcite-components@5.0.0-next.13) (2025-11-27) - -### Features - -- **date-picker, input-date-picker:** add support for fr-CA ([#13371](https://github.com/Esri/calcite-design-system/issues/13371)) ([d4c69cb](https://github.com/Esri/calcite-design-system/commit/d4c69cb8ae375b35fbcc273b0b3c0940b3204ef8)), closes [#12739](https://github.com/Esri/calcite-design-system/issues/12739) [/github.com/Esri/calcite-design-system/pull/8402/commits/ddf6fb4abf14ddbf9c9f8addfcab3dc0ab01ca37#diff-7f7f554f952d5de6f34edd99045e2b733eb94356893329e036739cc9bec594d2L117](https://github.com/Esri//github.com/Esri/calcite-design-system/pull/8402/commits/ddf6fb4abf14ddbf9c9f8addfcab3dc0ab01ca37/issues/diff-7f7f554f952d5de6f34edd99045e2b733eb94356893329e036739cc9bec594d2L117) - -## [5.0.0-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.11...@esri/calcite-components@5.0.0-next.12) (2025-11-26) - -### Features - -- apply user-provided locale (`lang`) and supported t9n locale in appropriate contexts ([#13315](https://github.com/Esri/calcite-design-system/issues/13315)) ([c054ecd](https://github.com/Esri/calcite-design-system/commit/c054ecdd5c9d98d9c98852d49448b5abff311aa5)), closes [#12739](https://github.com/Esri/calcite-design-system/issues/12739) -- **input-time-picker:** support French Canadian (fr-CA) locale ([#13355](https://github.com/Esri/calcite-design-system/issues/13355)) ([7307cd0](https://github.com/Esri/calcite-design-system/commit/7307cd06ca36fcf9a05b5be4d394dd5a2a96c053)), closes [#12723](https://github.com/Esri/calcite-design-system/issues/12723) - -## [5.0.0-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.10...@esri/calcite-components@5.0.0-next.11) (2025-11-25) - -### Bug Fixes - -- **combobox, filter, list:** stop warning when filtering on empty data source ([#13352](https://github.com/Esri/calcite-design-system/issues/13352)) ([c46edb0](https://github.com/Esri/calcite-design-system/commit/c46edb0673941a9efb03305e834c2a58439e0ab9)), closes [#12264](https://github.com/Esri/calcite-design-system/issues/12264) - -## [5.0.0-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.9...@esri/calcite-components@5.0.0-next.10) (2025-11-25) - -### ⚠ BREAKING CHANGES - -- **input:** The deprecated `textarea` type was removed. Developers - should use `calcite-text-area` instead. - -### Code Refactoring - -- **input:** drop `textarea` type ([#13359](https://github.com/Esri/calcite-design-system/issues/13359)) ([f350d50](https://github.com/Esri/calcite-design-system/commit/f350d50d90431facaa5557a125573fd740db2eca)), closes [#13079](https://github.com/Esri/calcite-design-system/issues/13079) - -## [5.0.0-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.8...@esri/calcite-components@5.0.0-next.9) (2025-11-25) - -### Features - -- **block:** add content-end slot ([#13348](https://github.com/Esri/calcite-design-system/issues/13348)) ([077852c](https://github.com/Esri/calcite-design-system/commit/077852c10a539418ad77d4ff31d8ff6740ed867b)), closes [#10714](https://github.com/Esri/calcite-design-system/issues/10714) - -## [5.0.0-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.7...@esri/calcite-components@5.0.0-next.8) (2025-11-24) - -### ⚠ BREAKING CHANGES - -- drop deprecated CDN namespace (#12546) - -### Build System - -- drop deprecated CDN namespace ([#12546](https://github.com/Esri/calcite-design-system/issues/12546)) ([b8f4346](https://github.com/Esri/calcite-design-system/commit/b8f4346188f5b3677bea4553375aefb2b4e2b05f)), closes [#13266](https://github.com/Esri/calcite-design-system/issues/13266) - -## [5.0.0-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.6...@esri/calcite-components@5.0.0-next.7) (2025-11-21) - -### Features - -- **card:** Update selection state styling for 5.0 ([#13341](https://github.com/Esri/calcite-design-system/issues/13341)) ([bcf0def](https://github.com/Esri/calcite-design-system/commit/bcf0deff33d2ffbb7cc86081008ab636e7ff3747)), closes [#10771](https://github.com/Esri/calcite-design-system/issues/10771) - -## [5.0.0-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.5...@esri/calcite-components@5.0.0-next.6) (2025-11-19) - -### ⚠ BREAKING CHANGES - -- **stepper:** Deprecated event has been removed, use the following - event instead: - -`calciteStepperChange` - -### Code Refactoring - -- **stepper:** remove calciteStepperItemChange deprecated event ([#13329](https://github.com/Esri/calcite-design-system/issues/13329)) ([668da6f](https://github.com/Esri/calcite-design-system/commit/668da6fb147c6a5404bc89ab20a5f3ac95266867)), closes [#13080](https://github.com/Esri/calcite-design-system/issues/13080) - -## [5.0.0-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.4...@esri/calcite-components@5.0.0-next.5) (2025-11-19) - -### Bug Fixes - -- **dialog, input-date-picker, popover, sheet:** skip restoring focus when closing a focus-trap with no previously focused related element ([#13324](https://github.com/Esri/calcite-design-system/issues/13324)) ([4cb245b](https://github.com/Esri/calcite-design-system/commit/4cb245b04be2132113b83bf8be6f68bd9f7bb2db)) - -## [5.0.0-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.3...@esri/calcite-components@5.0.0-next.4) (2025-11-18) - -### Features - -- **block:** update heading styling for system consistency ([#13326](https://github.com/Esri/calcite-design-system/issues/13326)) ([5410977](https://github.com/Esri/calcite-design-system/commit/5410977e94f79e204d55e6e405ff7c0b709de560)), closes [#12305](https://github.com/Esri/calcite-design-system/issues/12305) - -## [5.0.0-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.2...@esri/calcite-components@5.0.0-next.3) (2025-11-17) - -### Features - -- **card:** update heading and description spacing ([#13320](https://github.com/Esri/calcite-design-system/issues/13320)) ([4b85af9](https://github.com/Esri/calcite-design-system/commit/4b85af99881ad9cfc680d50429f1e6e0bae0b992)), closes [#12304](https://github.com/Esri/calcite-design-system/issues/12304) - -## [5.0.0-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.1...@esri/calcite-components@5.0.0-next.2) (2025-11-12) - -### Features - -- **button, chip, stepper-item, swatch, table:** Adjust border color for consistency ([#13263](https://github.com/Esri/calcite-design-system/issues/13263)) ([733a632](https://github.com/Esri/calcite-design-system/commit/733a632fa07daa5a5cfdb99bb23c7355e6831b9a)), closes [#10769](https://github.com/Esri/calcite-design-system/issues/10769) [#10755](https://github.com/Esri/calcite-design-system/issues/10755) - -## [5.0.0-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@5.0.0-next.0...@esri/calcite-components@5.0.0-next.1) (2025-11-12) - -### ⚠ BREAKING CHANGES - -- **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** drop deprecated slots (#13255) - -### Code Refactoring - -- **action-bar, action, block, card, dialog, flow-item, panel, shell, tile:** drop deprecated slots ([#13255](https://github.com/Esri/calcite-design-system/issues/13255)) ([97e3c8b](https://github.com/Esri/calcite-design-system/commit/97e3c8b26f65a1c9fa8e9f752f18f6327849ee62)), closes [#13265](https://github.com/Esri/calcite-design-system/issues/13265) - -## [5.0.0-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.48...@esri/calcite-components@5.0.0-next.0) (2025-11-08) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.48](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.47...@esri/calcite-components@4.0.0-next.48) (2025-11-07) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.47](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.46...@esri/calcite-components@4.0.0-next.47) (2025-11-07) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.46](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.45...@esri/calcite-components@4.0.0-next.46) (2025-11-05) - -### ⚠ BREAKING CHANGES - -- **input, input-number, input-text:** Removed support for the following css tokens as they - are no longer needed: - -- `--calcite-autocomplete-input-prefix-background-color` -- `--calcite-autocomplete-input-suffix-background-color` -- `--calcite-color-picker-input-prefix-background-color` -- `--calcite-color-picker-input-suffix-background-color` -- `--calcite-input-prefix-background-color` -- `--calcite-input-suffix-background-color`. - -Use the following tokens to style prefix, suffix and input's background -color: - -- `--calcite-input-background-color` -- `--calcite-input-number-background-color` -- `--calcite-input-text-background-color` -- `--calcite-color-picker-input-background-color` -- `--calcite-autocomplete-input-background-color`. - -### Features - -- **input, input-number, input-text:** update prefix and suffix visuals for 4.0 ([#13226](https://github.com/Esri/calcite-design-system/issues/13226)) ([b24c754](https://github.com/Esri/calcite-design-system/commit/b24c754219450d3997250d82b3b475ee36ffe1c8)), closes [#10784](https://github.com/Esri/calcite-design-system/issues/10784) - -## [4.0.0-next.45](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.44...@esri/calcite-components@4.0.0-next.45) (2025-11-04) - -### Bug Fixes - -- **tile-group:** make horizontal layout always go horizontal ([#13260](https://github.com/Esri/calcite-design-system/issues/13260)) ([f915c8e](https://github.com/Esri/calcite-design-system/commit/f915c8e1f57ea2bb60832e56ea29d6e1ce59ba3b)), closes [#12606](https://github.com/Esri/calcite-design-system/issues/12606) - -## [4.0.0-next.44](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.43...@esri/calcite-components@4.0.0-next.44) (2025-11-03) - -### ⚠ BREAKING CHANGES - -- **color-picker:** Removed the deprecated `allowEmpty` property, use - `clearable` instead. - -### Code Refactoring - -- **color-picker:** remove deprecated `allowEmpty` property ([#13246](https://github.com/Esri/calcite-design-system/issues/13246)) ([cd38674](https://github.com/Esri/calcite-design-system/commit/cd38674958c4368732f435681a3586e7c8e0d9cc)), closes [#13086](https://github.com/Esri/calcite-design-system/issues/13086) - -## [4.0.0-next.43](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.42...@esri/calcite-components@4.0.0-next.43) (2025-11-03) - -### ⚠ BREAKING CHANGES - -- **tokens:** Updates components to honor the [recommended way of - setting font - family](https://github.com/Esri/calcite-design-system/blob/dev/packages/components/conventions/Styling.md#typography). - Developers can also use a plain css `font-family` declaration to target - desired components. - -### Features - -- **tokens:** Ensure components inherit font-family css overrides ([#13209](https://github.com/Esri/calcite-design-system/issues/13209)) ([ef30113](https://github.com/Esri/calcite-design-system/commit/ef3011337f2c2d310b2a3ae39ca60bb9e47bdc9a)), closes [#7175](https://github.com/Esri/calcite-design-system/issues/7175) - -## [4.0.0-next.42](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.41...@esri/calcite-components@4.0.0-next.42) (2025-10-31) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.41](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.40...@esri/calcite-components@4.0.0-next.41) (2025-10-30) - -### Features - -- **table-cell:** remove border styling from selected cell ([#13231](https://github.com/Esri/calcite-design-system/issues/13231)) ([ee6d1cc](https://github.com/Esri/calcite-design-system/commit/ee6d1cce53be5ab5abbe03a398eebf84422bde25)), closes [#10770](https://github.com/Esri/calcite-design-system/issues/10770) - -## [4.0.0-next.40](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.39...@esri/calcite-components@4.0.0-next.40) (2025-10-30) - -### ⚠ BREAKING CHANGES - -- **modal, shell-center-row, tile-select, tile-select-group, tip, tip-group, tip-manager:** deprecated components were removed, please update usage - to the following components: - -- `calcite-modal` ➡️ `calcite-dialog` -- `calcite-shell-center-row` ➡️ `calcite-shell-panel` (use in the - Shell’s `"panel-bottom"` slot) -- `calcite-tile-select` / `calcite-tile-select-group` ➡️ `calcite-tile` - / `calcite-tile-group` -- `calcite-tip` / `calcite-tip-group` / `calcite-tip-manager` ➡️ - `calcite-carousel` / `calcite-carousel-item` (optionally `calcite-panel` - – see [example](https://codepen.io/jcfranco/pen/raxYqyK?editors=1000)) - -- drop undocumented util classes (#13223) - -### Code Refactoring - -- drop undocumented util classes ([#13223](https://github.com/Esri/calcite-design-system/issues/13223)) ([6e8b324](https://github.com/Esri/calcite-design-system/commit/6e8b3245a59d7337c995eb2255533a281958f9f2)) -- **modal, shell-center-row, tile-select, tile-select-group, tip, tip-group, tip-manager:** drop deprecated components ([#13074](https://github.com/Esri/calcite-design-system/issues/13074)) ([64d5460](https://github.com/Esri/calcite-design-system/commit/64d54601cf1cb5bd9440d18b29e4a9789860ca53)), closes [#13078](https://github.com/Esri/calcite-design-system/issues/13078) - -## [4.0.0-next.39](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.38...@esri/calcite-components@4.0.0-next.39) (2025-10-29) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.38](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.37...@esri/calcite-components@4.0.0-next.38) (2025-10-29) - -### Bug Fixes - -- **input-time-picker:** always emit change event when user commits changes even when the value is directly set before or after the user commits the change ([#13216](https://github.com/Esri/calcite-design-system/issues/13216)) ([5332461](https://github.com/Esri/calcite-design-system/commit/5332461b74f0b2aeb1a0f3db29899c139ea50b41)), closes [#12391](https://github.com/Esri/calcite-design-system/issues/12391) [#12889](https://github.com/Esri/calcite-design-system/issues/12889) - -## [4.0.0-next.37](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.36...@esri/calcite-components@4.0.0-next.37) (2025-10-29) - -### Bug Fixes - -- **tile:** center text content for short headings ([#13213](https://github.com/Esri/calcite-design-system/issues/13213)) ([b207c63](https://github.com/Esri/calcite-design-system/commit/b207c63ddbd4926d56bd19380017e7fbaf4d00bc)), closes [#12606](https://github.com/Esri/calcite-design-system/issues/12606) [#12606](https://github.com/Esri/calcite-design-system/issues/12606) - -## [4.0.0-next.36](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.35...@esri/calcite-components@4.0.0-next.36) (2025-10-28) - -### Bug Fixes - -- **tab-title:** fix timing issue when emitting internal and public tab close events ([#12935](https://github.com/Esri/calcite-design-system/issues/12935)) ([6f05ba1](https://github.com/Esri/calcite-design-system/commit/6f05ba14ae6918676ae8d949a96ed3b3ca624511)), closes [#11789](https://github.com/Esri/calcite-design-system/issues/11789) - -## [4.0.0-next.35](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.34...@esri/calcite-components@4.0.0-next.35) (2025-10-27) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.34](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.33...@esri/calcite-components@4.0.0-next.34) (2025-10-27) - -### Bug Fixes - -- **option:** replace line breaks within text content ([#13205](https://github.com/Esri/calcite-design-system/issues/13205)) ([eb96b78](https://github.com/Esri/calcite-design-system/commit/eb96b788e568d01a5dce5e20ddec8b4f6c2b74a0)), closes [#12156](https://github.com/Esri/calcite-design-system/issues/12156) - -## [4.0.0-next.33](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.32...@esri/calcite-components@4.0.0-next.33) (2025-10-21) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.32](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.31...@esri/calcite-components@4.0.0-next.32) (2025-10-21) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.31](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.30...@esri/calcite-components@4.0.0-next.31) (2025-10-17) - -### Bug Fixes - -- **combobox-item:** emit `calciteComboboxItemChange` event on `Enter` key ([#13051](https://github.com/Esri/calcite-design-system/issues/13051)) ([0c27b47](https://github.com/Esri/calcite-design-system/commit/0c27b47fa4a7f000198705605d9e85a81a4e114b)), closes [#12647](https://github.com/Esri/calcite-design-system/issues/12647) - -## [4.0.0-next.30](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.29...@esri/calcite-components@4.0.0-next.30) (2025-10-15) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.29](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.28...@esri/calcite-components@4.0.0-next.29) (2025-10-14) - -### ⚠ BREAKING CHANGES - -- The `alert`, `autocomplete`, `combobox`, `dialog`, - `dropdown`, `input-date-picker`, `popover`, `sheet`, and `tooltip` - components will now be placed within the document's - [top-layer](https://developer.mozilla.org/en-US/docs/Glossary/Top_layer) - when open. Setting `z-index` token values on them are no longer - necessary. Developers no longer need to specify the tokens - `--calcite-z-index-tooltip`, `--calcite-z-index-popup`, - `-calcite-z-index-dropdown`, or `--calcite-floating-ui-z-index`. Use - cases that may be affected would be custom `z-index` stacking and screen - shot tests with components that are initially open. - -### Features - -- use the popover attribute to place floating components in the top-layer ([#12904](https://github.com/Esri/calcite-design-system/issues/12904)) ([1bf3b3b](https://github.com/Esri/calcite-design-system/commit/1bf3b3b6cce7dfc27913a177acad68fc40b277bb)), closes [#10208](https://github.com/Esri/calcite-design-system/issues/10208) [#13099](https://github.com/Esri/calcite-design-system/issues/13099) - -## [4.0.0-next.28](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.27...@esri/calcite-components@4.0.0-next.28) (2025-10-14) - -### Bug Fixes - -- **combobox:** add description for input accessibility ([#13047](https://github.com/Esri/calcite-design-system/issues/13047)) ([6981654](https://github.com/Esri/calcite-design-system/commit/6981654c879e6634a68e5dbb2298e05f33084475)), closes [#10633](https://github.com/Esri/calcite-design-system/issues/10633) - -## [4.0.0-next.27](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.26...@esri/calcite-components@4.0.0-next.27) (2025-10-14) - -### ⚠ BREAKING CHANGES - -- **shell-panel:** Remove `layout` and `position` properties. The `shell` - component will now handle this logic. Developers will no longer need to - set `position` and `layout` properties. - -### Features - -- **shell-panel:** `layout` and `position` properties are no longer required ([#12248](https://github.com/Esri/calcite-design-system/issues/12248)) ([de8c602](https://github.com/Esri/calcite-design-system/commit/de8c6029fd734090f2f39f4e94296fc29a09d71c)), closes [#8306](https://github.com/Esri/calcite-design-system/issues/8306) - -## [4.0.0-next.26](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.25...@esri/calcite-components@4.0.0-next.26) (2025-10-13) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.24...@esri/calcite-components@4.0.0-next.25) (2025-10-10) - -### Features - -- **tab-nav:** improve overflow UX ([#12850](https://github.com/Esri/calcite-design-system/issues/12850)) ([55e1809](https://github.com/Esri/calcite-design-system/commit/55e1809d918ab68b189b641ec7d2cdcfbd4cec32)), closes [#10177](https://github.com/Esri/calcite-design-system/issues/10177) [#12970](https://github.com/Esri/calcite-design-system/issues/12970) - -## [4.0.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.23...@esri/calcite-components@4.0.0-next.24) (2025-10-09) - -### ⚠ BREAKING CHANGES - -- Legacy custom CSS props were removed. Developers can - use [`calcite-codemod`](https://www.npmjs.com/package/calcite-codemod) - to migrate, upgrade to the CSS variables [introduced in version - 2](https://developers.arcgis.com/calcite-design-system/releases/changelogs/2.0.0/#css-variable-comparison-tables), - or include the [legacy CSS - props](https://github.com/Esri/calcite-design-system/blob/b0f063e213adaa31bc5fed124b7f29381735ccf5/packages/components/src/assets/styles/_legacy.scss) - locally. - -### Features - -- **action-bar, action-pad:** add new selectionAppearance property for 4.0 ([#13023](https://github.com/Esri/calcite-design-system/issues/13023)) ([61f0f05](https://github.com/Esri/calcite-design-system/commit/61f0f0569dc75ea54b1056431fd4513e73c441a9)), closes [#10758](https://github.com/Esri/calcite-design-system/issues/10758) - -### Code Refactoring - -- drop legacy custom CSS props deprecated at v2 ([#13089](https://github.com/Esri/calcite-design-system/issues/13089)) ([fc9cb47](https://github.com/Esri/calcite-design-system/commit/fc9cb47d4aa56bbeabe656176754c6933266a7eb)), closes [#11807](https://github.com/Esri/calcite-design-system/issues/11807) - -## [4.0.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.22...@esri/calcite-components@4.0.0-next.23) (2025-10-09) - -### ⚠ BREAKING CHANGES - -- **inline-editable:** No longer set `scale` based on slotted input. This - change is will allow the component to honor the `scale` property set on - slotted inputs. Developers should explicitly set `scale` on slotted - inputs if they are using a non-default scale. - -### Bug Fixes - -- **inline-editable:** no longer sets the component's scale to the slotted `calcite-input`'s scale ([#12241](https://github.com/Esri/calcite-design-system/issues/12241)) ([b399ab7](https://github.com/Esri/calcite-design-system/commit/b399ab7b05530e009935ffe97500f9d3bdff7344)), closes [#10466](https://github.com/Esri/calcite-design-system/issues/10466) - -## [4.0.0-next.22](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.21...@esri/calcite-components@4.0.0-next.22) (2025-10-09) - -### ⚠ BREAKING CHANGES - -- Developers using the legacy VS Code custom data files - should use `vscode.html-custom-data.json` as suggested in - - -### Bug Fixes - -- **option:** improve whitespace handling ([#13076](https://github.com/Esri/calcite-design-system/issues/13076)) ([e89a9b8](https://github.com/Esri/calcite-design-system/commit/e89a9b8903119315ddd6abba29eb30254e123f39)), closes [#12146](https://github.com/Esri/calcite-design-system/issues/12146) - -### Code Refactoring - -- drop legacy VS Code IntelliSense file ([#13072](https://github.com/Esri/calcite-design-system/issues/13072)) ([5f15e51](https://github.com/Esri/calcite-design-system/commit/5f15e51e8f204c74895ceab7a50d3e2f48a3cd54)), closes [#13082](https://github.com/Esri/calcite-design-system/issues/13082) - -## [4.0.0-next.21](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.20...@esri/calcite-components@4.0.0-next.21) (2025-10-07) - -### Bug Fixes - -- **button:** add backward compatibility for `--calcite-ui-icon-color` token ([#13058](https://github.com/Esri/calcite-design-system/issues/13058)) ([f07c3e4](https://github.com/Esri/calcite-design-system/commit/f07c3e426a8a2f833c14e42603b04deadad7d2e7)), closes [#13038](https://github.com/Esri/calcite-design-system/issues/13038) [/devtopia.esri.com/WebGIS/arcgis-js-api/pull/74895#issuecomment-5829349](https://github.com/Esri//devtopia.esri.com/WebGIS/arcgis-js-api/pull/74895/issues/issuecomment-5829349) - -## [4.0.0-next.20](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.19...@esri/calcite-components@4.0.0-next.20) (2025-10-03) - -### Bug Fixes - -- **table-row:** add deprecated background token as fallback ([#13025](https://github.com/Esri/calcite-design-system/issues/13025)) ([adae123](https://github.com/Esri/calcite-design-system/commit/adae123942790878ca660173cc3f7b8cfe67b080)), closes [#13024](https://github.com/Esri/calcite-design-system/issues/13024) - -## [4.0.0-next.19](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.18...@esri/calcite-components@4.0.0-next.19) (2025-10-03) - -### Bug Fixes - -- **panel, dialog:** Calcite dialog header fails to wrap for the longer text ([#13004](https://github.com/Esri/calcite-design-system/issues/13004)) ([44b0871](https://github.com/Esri/calcite-design-system/commit/44b08710cde535f1fca132736949f127f69836f6)), closes [#12964](https://github.com/Esri/calcite-design-system/issues/12964) - -## [4.0.0-next.18](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.17...@esri/calcite-components@4.0.0-next.18) (2025-10-03) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.17](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.16...@esri/calcite-components@4.0.0-next.17) (2025-10-03) - -### Bug Fixes - -- **button:** Ensure `--calcite-button-icon-color` is applied ([#13013](https://github.com/Esri/calcite-design-system/issues/13013)) ([2875ab4](https://github.com/Esri/calcite-design-system/commit/2875ab4d6760a6c90a5d4f413017daafb1ef2592)), closes [#12843](https://github.com/Esri/calcite-design-system/issues/12843) - -## [4.0.0-next.16](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.15...@esri/calcite-components@4.0.0-next.16) (2025-10-03) - -### Bug Fixes - -- **dialog:** exclude dialog content from keyboard focus ([#13015](https://github.com/Esri/calcite-design-system/issues/13015)) ([c74c1f8](https://github.com/Esri/calcite-design-system/commit/c74c1f86da92f22965e593cb0bde5424f22d76c9)), closes [#13000](https://github.com/Esri/calcite-design-system/issues/13000) [#12569](https://github.com/Esri/calcite-design-system/issues/12569) - -## [4.0.0-next.15](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.14...@esri/calcite-components@4.0.0-next.15) (2025-10-02) - -### ⚠ BREAKING CHANGES - -- **radio-button-group:** remove the deprecated `"grid"` type from the `layout` - property. - -### Code Refactoring - -- **radio-button-group:** remove deprecated `"grid"` `layout` type ([#13005](https://github.com/Esri/calcite-design-system/issues/13005)) ([48fe83f](https://github.com/Esri/calcite-design-system/commit/48fe83ffae7ee5e570830c672b56e53c44ded6a4)), closes [#12831](https://github.com/Esri/calcite-design-system/issues/12831) - -## [4.0.0-next.14](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.13...@esri/calcite-components@4.0.0-next.14) (2025-10-02) - -### Bug Fixes - -- **pagination, table:** fix page number when page size > total items ([#13007](https://github.com/Esri/calcite-design-system/issues/13007)) ([4bc835a](https://github.com/Esri/calcite-design-system/commit/4bc835af931b1a13f5857389270d63e7dc1b6fbb)), closes [#12975](https://github.com/Esri/calcite-design-system/issues/12975) [#12569](https://github.com/Esri/calcite-design-system/issues/12569) - -## [4.0.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.12...@esri/calcite-components@4.0.0-next.13) (2025-10-01) - -### Features - -- **color-picker, date-picker:** adjust outline color for 4.0 ([#12990](https://github.com/Esri/calcite-design-system/issues/12990)) ([7af0410](https://github.com/Esri/calcite-design-system/commit/7af04102003e7dddbaf337a9beff13258ca4a5a7)), closes [#10768](https://github.com/Esri/calcite-design-system/issues/10768) - -### Bug Fixes - -- **dropdown:** fix scroller size when setting max-items ([#12967](https://github.com/Esri/calcite-design-system/issues/12967)) ([05ade56](https://github.com/Esri/calcite-design-system/commit/05ade5615378269b3467d1a2eaf5d23c70dd3888)), closes [#12737](https://github.com/Esri/calcite-design-system/issues/12737) - -## [4.0.0-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.11...@esri/calcite-components@4.0.0-next.12) (2025-09-30) - -### Features - -- **list-item-group:** update design for 4.0 ([#12977](https://github.com/Esri/calcite-design-system/issues/12977)) ([c86419c](https://github.com/Esri/calcite-design-system/commit/c86419c48ebfce7dc72b63541f7e40be5e618c9b)), closes [#10764](https://github.com/Esri/calcite-design-system/issues/10764) - -## [4.0.0-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.10...@esri/calcite-components@4.0.0-next.11) (2025-09-29) - -### Bug Fixes - -- **list:** fix loader scrim height for empty list ([#12961](https://github.com/Esri/calcite-design-system/issues/12961)) ([e2c2806](https://github.com/Esri/calcite-design-system/commit/e2c28069f4a140f81a9bfd8184f566d9f287161b)), closes [#12943](https://github.com/Esri/calcite-design-system/issues/12943) - -## [4.0.0-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.9...@esri/calcite-components@4.0.0-next.10) (2025-09-29) - -### Features - -- **autocomplete-item-group:** update design for 4.0 ([#12965](https://github.com/Esri/calcite-design-system/issues/12965)) ([5cef2b8](https://github.com/Esri/calcite-design-system/commit/5cef2b8cc1c7a7788a147bad7d6ce8a740410979)), closes [#12177](https://github.com/Esri/calcite-design-system/issues/12177) - -## [4.0.0-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.8...@esri/calcite-components@4.0.0-next.9) (2025-09-29) - -### Bug Fixes - -- **carousel:** Ensure icon tokens are correctly applied ([#12902](https://github.com/Esri/calcite-design-system/issues/12902)) ([bb32814](https://github.com/Esri/calcite-design-system/commit/bb32814a41b769cbdb1aa6610e41d1f2daaf73bd)), closes [#12876](https://github.com/Esri/calcite-design-system/issues/12876) - -## [4.0.0-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.7...@esri/calcite-components@4.0.0-next.8) (2025-09-26) - -### Features - -- **combobox-item-group:** update group design for 4.0 ([#12933](https://github.com/Esri/calcite-design-system/issues/12933)) ([48b882e](https://github.com/Esri/calcite-design-system/commit/48b882e42d59d1a1b959a101894bcdf8f5d9bd80)), closes [#10780](https://github.com/Esri/calcite-design-system/issues/10780) - -## [4.0.0-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.6...@esri/calcite-components@4.0.0-next.7) (2025-09-26) - -### ⚠ BREAKING CHANGES - -- **icon:** The `icon` prop now strictly accepts values of type - `IconName`, and the previously supported `IconNameOrString` type has - been removed to enforce strict type safety and ensure only valid icons - are used. - -### Code Refactoring - -- **icon:** enforce IconName for icon prop ([#12920](https://github.com/Esri/calcite-design-system/issues/12920)) ([527c310](https://github.com/Esri/calcite-design-system/commit/527c310b86c08d4f773e81cc18f22d0f697d676e)), closes [#12357](https://github.com/Esri/calcite-design-system/issues/12357) - -## [4.0.0-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.5...@esri/calcite-components@4.0.0-next.6) (2025-09-26) - -### Bug Fixes - -- **panel:** Ensure `content-top` and `action-bar` slots are visible ([#12963](https://github.com/Esri/calcite-design-system/issues/12963)) ([bad18b4](https://github.com/Esri/calcite-design-system/commit/bad18b40f9ac4123d18f2e5ff70ecb806a0e378b)), closes [#12894](https://github.com/Esri/calcite-design-system/issues/12894) - -## [4.0.0-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.4...@esri/calcite-components@4.0.0-next.5) (2025-09-25) - -### Bug Fixes - -- **list-item:** fix memory leak caused by focusing before disconnecting ([#12956](https://github.com/Esri/calcite-design-system/issues/12956)) ([de813f3](https://github.com/Esri/calcite-design-system/commit/de813f3075bc0f7bc120ac0dba944ce9b1780c34)), closes [#12818](https://github.com/Esri/calcite-design-system/issues/12818) [/github.com/Esri/calcite-design-system/blob/dev/packages/components/src/components/list-item/list-item.tsx#L35](https://github.com/Esri/calcite-design-system/blob/dev/packages/components/src/components/list-item/list-item.tsx#L35) - -## [4.0.0-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.3...@esri/calcite-components@4.0.0-next.4) (2025-09-24) - -### Features - -- **tree-item:** add `calciteTreeItemSelect` event ([#12851](https://github.com/Esri/calcite-design-system/issues/12851)) ([afc3ba8](https://github.com/Esri/calcite-design-system/commit/afc3ba8da782e3af90f97beee52087cb80cb68ee)), closes [#10978](https://github.com/Esri/calcite-design-system/issues/10978) - -## [4.0.0-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.2...@esri/calcite-components@4.0.0-next.3) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-components - -## [4.0.0-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.1...@esri/calcite-components@4.0.0-next.2) (2025-09-24) - -### Features - -- **dropdown-group:** update design for 4.0 ([#12899](https://github.com/Esri/calcite-design-system/issues/12899)) ([06cb190](https://github.com/Esri/calcite-design-system/commit/06cb190389eb379c463a4efd66e2d6211119bb56)), closes [#10783](https://github.com/Esri/calcite-design-system/issues/10783) - -## [4.0.0-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@4.0.0-next.0...@esri/calcite-components@4.0.0-next.1) (2025-09-24) - -### Bug Fixes - -- **sort-handle:** update Ukranian translation ([#12944](https://github.com/Esri/calcite-design-system/issues/12944)) ([3192789](https://github.com/Esri/calcite-design-system/commit/3192789345477de31e7e926147bdced3bcbe6236)) - -## [4.0.0-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.1-next.3...@esri/calcite-components@4.0.0-next.0) (2025-09-24) - -### ⚠ BREAKING CHANGES - -- Consumers of the **main index file from the Sass - output** of the `calcite-design-tokens` package will be affected and - will need to update their imports accordingly. Developers can either use - [Sass's migrator](https://sass-lang.com/documentation/cli/migrator/) to - update their styles or stay on the previous version depending on the - desired imports. - -### Code Refactoring - -- migrate Sass imports ([#12216](https://github.com/Esri/calcite-design-system/issues/12216)) ([22a0da0](https://github.com/Esri/calcite-design-system/commit/22a0da015ce92947d92d2747e7f006812d881aab)), closes [#10585](https://github.com/Esri/calcite-design-system/issues/10585) [#10583](https://github.com/Esri/calcite-design-system/issues/10583) - -## [3.3.1-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.1-next.2...@esri/calcite-components@3.3.1-next.3) (2025-09-24) - -### Bug Fixes - -- **color-picker:** fix initial setting of alpha object color values ([#12934](https://github.com/Esri/calcite-design-system/issues/12934)) ([0048395](https://github.com/Esri/calcite-design-system/commit/004839538681def1e6ae25a967fed310bb9b12b0)), closes [#12871](https://github.com/Esri/calcite-design-system/issues/12871) - -### Performance Improvements - -- **filter:** return all matches early when input is empty string ([#12926](https://github.com/Esri/calcite-design-system/issues/12926)) ([adc0f1f](https://github.com/Esri/calcite-design-system/commit/adc0f1f604144d13f7d2b5ec57b01f4efcb0dba3)) - -## [3.3.1-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.1-next.1...@esri/calcite-components@3.3.1-next.2) (2025-09-23) - -### Bug Fixes - -- **dropdown:** ignore `selection-mode=none` items when `closeOnSelectDisabled=true` ([#12927](https://github.com/Esri/calcite-design-system/issues/12927)) ([2a982d7](https://github.com/Esri/calcite-design-system/commit/2a982d7111e7bccf1b22a8d3009d4afe7f44ca2d)), closes [#10821](https://github.com/Esri/calcite-design-system/issues/10821) - -## [3.3.1-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.1-next.0...@esri/calcite-components@3.3.1-next.1) (2025-09-19) - -### Bug Fixes - -- **input-date-picker:** correct token assignments and CSS setup ([#12883](https://github.com/Esri/calcite-design-system/issues/12883)) ([0fcfbb8](https://github.com/Esri/calcite-design-system/commit/0fcfbb8c85f3eafab1d21be52e5390111d31f271)), closes [#12885](https://github.com/Esri/calcite-design-system/issues/12885) - -## [3.3.1-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.0-next.116...@esri/calcite-components@3.3.1-next.0) (2025-09-19) - -### Bug Fixes - -- **inline-editable:** prevent interaction with start-editing button when hidden ([#12903](https://github.com/Esri/calcite-design-system/issues/12903)) ([ff7e420](https://github.com/Esri/calcite-design-system/commit/ff7e420329a5f5bd9abef9652a34d6ccd691f01c)), closes [#12858](https://github.com/Esri/calcite-design-system/issues/12858) - -## [3.3.0-next.116](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.0-next.115...@esri/calcite-components@3.3.0-next.116) (2025-09-18) - -**Note:** Version bump only for package @esri/calcite-components - -## [3.3.0-next.115](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.0-next.114...@esri/calcite-components@3.3.0-next.115) (2025-09-17) - -### Bug Fixes - -- **action:** set aria-expanded for actions used for expanding and collapsing ([#12579](https://github.com/Esri/calcite-design-system/issues/12579)) ([d116114](https://github.com/Esri/calcite-design-system/commit/d11611481a10349f1cee7cf4ef0bb2165d016364)), closes [#7003](https://github.com/Esri/calcite-design-system/issues/7003) [#10411](https://github.com/Esri/calcite-design-system/issues/10411) - -## [3.3.0-next.114](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.0-next.113...@esri/calcite-components@3.3.0-next.114) (2025-09-17) - -**Note:** Version bump only for package @esri/calcite-components - -## [3.3.0-next.113](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.0-next.112...@esri/calcite-components@3.3.0-next.113) (2025-09-17) - -### Features - -- **date-picker, table-cell:** update to use color-surface-highlight token ([#12888](https://github.com/Esri/calcite-design-system/issues/12888)) ([60dc765](https://github.com/Esri/calcite-design-system/commit/60dc7658258ae7be872dae98bf8a8d4431b4bfbc)), closes [#12482](https://github.com/Esri/calcite-design-system/issues/12482) -- **table:** allow the user to set a specific page to display ([#12558](https://github.com/Esri/calcite-design-system/issues/12558)) ([4ae2dce](https://github.com/Esri/calcite-design-system/commit/4ae2dce2775018d4e064cc8f5b469932ea58e09e)), closes [#8913](https://github.com/Esri/calcite-design-system/issues/8913) - -## [3.3.0-next.112](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.0-next.111...@esri/calcite-components@3.3.0-next.112) (2025-09-17) - -**Note:** Version bump only for package @esri/calcite-components +- The following workspace dependencies were updated + - dependencies + - @esri/calcite-ui-icons bumped from 4.4.0-next.22 to 4.4.0 + - devDependencies + - @esri/calcite-design-tokens bumped from 4.0.0-next.23 to 4.0.0 + - @esri/calcite-tailwind-preset bumped from 1.1.0-next.13 to 1.1.0 ## [3.3.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-components@3.3.2...@esri/calcite-components@3.3.3) (2025-10-07) diff --git a/packages/design-tokens/CHANGELOG.md b/packages/design-tokens/CHANGELOG.md index 707f25ed2c5..cb4b14dd02d 100644 --- a/packages/design-tokens/CHANGELOG.md +++ b/packages/design-tokens/CHANGELOG.md @@ -5,179 +5,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [4.0.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@3.2.1...@esri/calcite-design-tokens@4.0.0) (2026-02-04) - ### ⚠ BREAKING CHANGES -* restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) +- restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ### Features -* **semantic-tokens:** Add surface colors ([#13496](https://github.com/Esri/calcite-design-system/issues/13496)) ([b2e5420](https://github.com/Esri/calcite-design-system/commit/b2e5420991e2ba1dce5cbb8674d5b8302cbf8fe3)) -* **semantic-tokens:** Update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)) -* **tokens:** Add missing rem-based space and size tokens ([#13769](https://github.com/Esri/calcite-design-system/issues/13769)) ([568e636](https://github.com/Esri/calcite-design-system/commit/568e6366ea35d5fca8c61c857c2f95b92089668a)) -* **tokens:** Add semantic rem-based font-size tokens ([#13042](https://github.com/Esri/calcite-design-system/issues/13042)) ([5c35af4](https://github.com/Esri/calcite-design-system/commit/5c35af4bc75688248c5bc58da87ad2088e7916fc)) -* **tokens:** Update semantic success and warning colors for improved a11y ([#13408](https://github.com/Esri/calcite-design-system/issues/13408)) ([1558e4b](https://github.com/Esri/calcite-design-system/commit/1558e4b6acc77ceab6c004ab9202795b817b2f89)) - +- **semantic-tokens:** Add surface colors ([#13496](https://github.com/Esri/calcite-design-system/issues/13496)) ([b2e5420](https://github.com/Esri/calcite-design-system/commit/b2e5420991e2ba1dce5cbb8674d5b8302cbf8fe3)) +- **semantic-tokens:** Update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)) +- **tokens:** Add missing rem-based space and size tokens ([#13769](https://github.com/Esri/calcite-design-system/issues/13769)) ([568e636](https://github.com/Esri/calcite-design-system/commit/568e6366ea35d5fca8c61c857c2f95b92089668a)) +- **tokens:** Add semantic rem-based font-size tokens ([#13042](https://github.com/Esri/calcite-design-system/issues/13042)) ([5c35af4](https://github.com/Esri/calcite-design-system/commit/5c35af4bc75688248c5bc58da87ad2088e7916fc)) +- **tokens:** Update semantic success and warning colors for improved a11y ([#13408](https://github.com/Esri/calcite-design-system/issues/13408)) ([1558e4b](https://github.com/Esri/calcite-design-system/commit/1558e4b6acc77ceab6c004ab9202795b817b2f89)) ### Bug Fixes -* Restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) -* **tokens:** Update `--calcite-corner-radius-pill` to display pill shape correctly ([#13762](https://github.com/Esri/calcite-design-system/issues/13762)) ([fae5b49](https://github.com/Esri/calcite-design-system/commit/fae5b498d046a93307bfc0a8a820446c775f84bb)) - +- Restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) +- **tokens:** Update `--calcite-corner-radius-pill` to display pill shape correctly ([#13762](https://github.com/Esri/calcite-design-system/issues/13762)) ([fae5b49](https://github.com/Esri/calcite-design-system/commit/fae5b498d046a93307bfc0a8a820446c775f84bb)) ### Deprecations -* **tokens:** Deprecate unused semantic tokens and add target removal versions for all tokens ([#13812](https://github.com/Esri/calcite-design-system/issues/13812)) ([96f9d0e](https://github.com/Esri/calcite-design-system/commit/96f9d0e320850c88b9b90df77c16bdda82b256dd)) - -## [4.0.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.22...@esri/calcite-design-tokens@4.0.0-next.23) (2026-02-02) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.22](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.21...@esri/calcite-design-tokens@4.0.0-next.22) (2026-01-31) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.21](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.20...@esri/calcite-design-tokens@4.0.0-next.21) (2026-01-30) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.20](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.19...@esri/calcite-design-tokens@4.0.0-next.20) (2026-01-29) - -### Features - -- **tokens:** add missing rem-based space and size tokens ([#13769](https://github.com/Esri/calcite-design-system/issues/13769)) ([568e636](https://github.com/Esri/calcite-design-system/commit/568e6366ea35d5fca8c61c857c2f95b92089668a)), closes [#10051](https://github.com/Esri/calcite-design-system/issues/10051) -- **tokens:** update semantic success and warning colors for improved a11y ([#13408](https://github.com/Esri/calcite-design-system/issues/13408)) ([1558e4b](https://github.com/Esri/calcite-design-system/commit/1558e4b6acc77ceab6c004ab9202795b817b2f89)), closes [#13233](https://github.com/Esri/calcite-design-system/issues/13233) [#DA7C0](https://github.com/Esri/calcite-design-system/issues/DA7C0) [#C26B00](https://github.com/Esri/calcite-design-system/issues/C26B00) - -## [4.0.0-next.19](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.18...@esri/calcite-design-tokens@4.0.0-next.19) (2026-01-28) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.18](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.17...@esri/calcite-design-tokens@4.0.0-next.18) (2026-01-26) - -### Bug Fixes - -- **tokens:** update `--calcite-corner-radius-pill` to display pill shape correctly ([#13762](https://github.com/Esri/calcite-design-system/issues/13762)) ([fae5b49](https://github.com/Esri/calcite-design-system/commit/fae5b498d046a93307bfc0a8a820446c775f84bb)), closes [#13761](https://github.com/Esri/calcite-design-system/issues/13761) - -## [4.0.0-next.17](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.16...@esri/calcite-design-tokens@4.0.0-next.17) (2026-01-21) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.16](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.15...@esri/calcite-design-tokens@4.0.0-next.16) (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.15](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.14...@esri/calcite-design-tokens@4.0.0-next.15) (2025-12-31) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.14](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.13...@esri/calcite-design-tokens@4.0.0-next.14) (2025-12-23) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.12...@esri/calcite-design-tokens@4.0.0-next.13) (2025-12-18) - -### Features - -- **semantic-tokens:** add surface colors ([#13496](https://github.com/Esri/calcite-design-system/issues/13496)) ([b2e5420](https://github.com/Esri/calcite-design-system/commit/b2e5420991e2ba1dce5cbb8674d5b8302cbf8fe3)), closes [#10023](https://github.com/Esri/calcite-design-system/issues/10023) - -## [4.0.0-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.11...@esri/calcite-design-tokens@4.0.0-next.12) (2025-12-10) - -### ⚠ BREAKING CHANGES - -- restore `--calcite-color-focus` in index.(s)css (#13398) - -### Bug Fixes - -- restore `--calcite-color-focus` in index.(s)css ([#13398](https://github.com/Esri/calcite-design-system/issues/13398)) ([cb63f5f](https://github.com/Esri/calcite-design-system/commit/cb63f5ff5c8754c8eeae6218390636fafb30adb6)) - -## [4.0.0-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.10...@esri/calcite-design-tokens@4.0.0-next.11) (2025-12-09) - -### Features - -- **semantic-tokens:** update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)), closes [#13129](https://github.com/Esri/calcite-design-system/issues/13129) - -## [4.0.0-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.9...@esri/calcite-design-tokens@4.0.0-next.10) (2025-12-08) - -### Features - -- **tokens:** add semantic rem-based font-size tokens ([#13042](https://github.com/Esri/calcite-design-system/issues/13042)) ([5c35af4](https://github.com/Esri/calcite-design-system/commit/5c35af4bc75688248c5bc58da87ad2088e7916fc)), closes [#13037](https://github.com/Esri/calcite-design-system/issues/13037) - -## [4.0.0-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.8...@esri/calcite-design-tokens@4.0.0-next.9) (2025-12-03) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.7...@esri/calcite-design-tokens@4.0.0-next.8) (2025-11-12) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.6...@esri/calcite-design-tokens@4.0.0-next.7) (2025-11-05) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.5...@esri/calcite-design-tokens@4.0.0-next.6) (2025-11-04) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.4...@esri/calcite-design-tokens@4.0.0-next.5) (2025-10-27) - -### Features - -- **semantic-tokens:** add space tokens ([#13110](https://github.com/Esri/calcite-design-system/issues/13110)) ([158de92](https://github.com/Esri/calcite-design-system/commit/158de92115106976068c838a87d7a31a69575879)), closes [#12643](https://github.com/Esri/calcite-design-system/issues/12643) - -## [4.0.0-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.3...@esri/calcite-design-tokens@4.0.0-next.4) (2025-10-15) - -### Features - -- **semantic-tokens:** update dark mode foreground and background color token values ([#13101](https://github.com/Esri/calcite-design-system/issues/13101)) ([7754033](https://github.com/Esri/calcite-design-system/commit/77540331bb16577b9a452a803ca73bd619e9e0d7)), closes [#3122](https://github.com/Esri/calcite-design-system/issues/3122) - -## [4.0.0-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.2...@esri/calcite-design-tokens@4.0.0-next.3) (2025-10-13) - -### Features - -- **semantic-tokens:** update border color token values ([#13102](https://github.com/Esri/calcite-design-system/issues/13102)) ([4cb610f](https://github.com/Esri/calcite-design-system/commit/4cb610f005b23714440b4923faed6e6cace63d6c)), closes [#10755](https://github.com/Esri/calcite-design-system/issues/10755) - -## [4.0.0-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.1...@esri/calcite-design-tokens@4.0.0-next.2) (2025-10-09) - -### ⚠ BREAKING CHANGES - -- **design-tokens:** The internal JS output of design tokens was removed, - even though it appeared as a platform option on the [design tokens - reference - page](https://developers.arcgis.com/calcite-design-system/foundations/tokens/reference/). - Developers should use the CSS, SCSS, or ES6 output targets instead. - -### Code Refactoring - -- **design-tokens:** drop internal JS output ([#13088](https://github.com/Esri/calcite-design-system/issues/13088)) ([46272ee](https://github.com/Esri/calcite-design-system/commit/46272ee3dcc3b1fdac5f270f7c5de138954072d9)), closes [#13081](https://github.com/Esri/calcite-design-system/issues/13081) - -## [4.0.0-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@4.0.0-next.0...@esri/calcite-design-tokens@4.0.0-next.1) (2025-10-01) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [4.0.0-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@3.2.1-next.0...@esri/calcite-design-tokens@4.0.0-next.0) (2025-09-24) - -### ⚠ BREAKING CHANGES - -- Consumers of the **main index file from the Sass - output** of the `calcite-design-tokens` package will be affected and - will need to update their imports accordingly. Developers can either use - [Sass's migrator](https://sass-lang.com/documentation/cli/migrator/) to - update their styles or stay on the previous version depending on the - desired imports. - -### Code Refactoring - -- migrate Sass imports ([#12216](https://github.com/Esri/calcite-design-system/issues/12216)) ([22a0da0](https://github.com/Esri/calcite-design-system/commit/22a0da015ce92947d92d2747e7f006812d881aab)), closes [#10585](https://github.com/Esri/calcite-design-system/issues/10585) [#10583](https://github.com/Esri/calcite-design-system/issues/10583) - -## [3.2.1-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@3.2.0-next.15...@esri/calcite-design-tokens@3.2.1-next.0) (2025-09-19) - -**Note:** Version bump only for package @esri/calcite-design-tokens - -## [3.2.0-next.15](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@3.2.0-next.14...@esri/calcite-design-tokens@3.2.0-next.15) (2025-09-17) - -### Bug Fixes - -- **core-tokens:** add missing color token `l-vv-100` ([#12875](https://github.com/Esri/calcite-design-system/issues/12875)) ([ddbcfa4](https://github.com/Esri/calcite-design-system/commit/ddbcfa47f5b82e236570d18758a9762f04bafbd3)), closes [#12878](https://github.com/Esri/calcite-design-system/issues/12878) +- **tokens:** Deprecate unused semantic tokens and add target removal versions for all tokens ([#13812](https://github.com/Esri/calcite-design-system/issues/13812)) ([96f9d0e](https://github.com/Esri/calcite-design-system/commit/96f9d0e320850c88b9b90df77c16bdda82b256dd)) ## [3.2.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-design-tokens@3.2.0...@esri/calcite-design-tokens@3.2.1) (2025-09-30) diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index fa4cf290f10..ec5f72226bc 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -3,34 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## 0.0.1-next.7 (2026-01-09) - -**Note:** Version bump only for package @esri/eslint-config-calcite - -## 0.0.1-next.6 (2026-01-06) - -**Note:** Version bump only for package @esri/eslint-config-calcite - -## 0.0.1-next.5 (2025-11-17) - -**Note:** Version bump only for package @esri/eslint-config-calcite - -## 0.0.1-next.4 (2025-11-04) - -**Note:** Version bump only for package @esri/eslint-config-calcite - -## 0.0.1-next.3 (2025-07-17) - -**Note:** Version bump only for package @esri/eslint-config-calcite - -## 0.0.1-next.2 (2025-04-04) - -**Note:** Version bump only for package @esri/eslint-config-calcite - -## 0.0.1-next.1 (2025-01-25) - -**Note:** Version bump only for package @esri/eslint-config-calcite - ## 0.0.1-next.0 (2025-01-14) **Note:** Version bump only for package @esri/eslint-config-calcite diff --git a/packages/eslint-plugin-components/CHANGELOG.md b/packages/eslint-plugin-components/CHANGELOG.md index 55df0bf0c50..6a3266c5c00 100644 --- a/packages/eslint-plugin-components/CHANGELOG.md +++ b/packages/eslint-plugin-components/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.4-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.8...@esri/eslint-plugin-calcite-components@2.0.4-next.9) (2026-02-02) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.7...@esri/eslint-plugin-calcite-components@2.0.4-next.8) (2026-01-09) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.6...@esri/eslint-plugin-calcite-components@2.0.4-next.7) (2025-12-31) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.5...@esri/eslint-plugin-calcite-components@2.0.4-next.6) (2025-12-23) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.4...@esri/eslint-plugin-calcite-components@2.0.4-next.5) (2025-12-04) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.3...@esri/eslint-plugin-calcite-components@2.0.4-next.4) (2025-12-03) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.2...@esri/eslint-plugin-calcite-components@2.0.4-next.3) (2025-11-17) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.1...@esri/eslint-plugin-calcite-components@2.0.4-next.2) (2025-11-12) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.4-next.0...@esri/eslint-plugin-calcite-components@2.0.4-next.1) (2025-11-04) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - -## [2.0.4-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.3-next.5...@esri/eslint-plugin-calcite-components@2.0.4-next.0) (2025-09-19) - -**Note:** Version bump only for package @esri/eslint-plugin-calcite-components - ## [2.0.3](https://github.com/Esri/calcite-design-system/compare/@esri/eslint-plugin-calcite-components@2.0.2...@esri/eslint-plugin-calcite-components@2.0.3) (2025-09-16) **Note:** Version bump only for package @esri/eslint-plugin-calcite-components diff --git a/packages/tailwind-preset/CHANGELOG.md b/packages/tailwind-preset/CHANGELOG.md index ed1b7c9ddd9..ce654e7d2fa 100644 --- a/packages/tailwind-preset/CHANGELOG.md +++ b/packages/tailwind-preset/CHANGELOG.md @@ -5,141 +5,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [1.1.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2...@esri/calcite-tailwind-preset@1.1.0) (2026-02-04) - ### Features -* **tailwind:** Switch text utils to use line-height token CSS props ([#12842](https://github.com/Esri/calcite-design-system/issues/12842)) ([0721c0c](https://github.com/Esri/calcite-design-system/commit/0721c0c98173b28df5337bcb1fcf0f3c4baccc46)) - +- **tailwind:** Switch text utils to use line-height token CSS props ([#12842](https://github.com/Esri/calcite-design-system/issues/12842)) ([0721c0c](https://github.com/Esri/calcite-design-system/commit/0721c0c98173b28df5337bcb1fcf0f3c4baccc46)) ### Dependencies -* The following workspace dependencies were updated - * dependencies - * @esri/calcite-design-tokens bumped from 4.0.0-next.23 to 4.0.0 - * peerDependencies - * @esri/calcite-design-tokens bumped from ^4.0.0-next.1 to ^4.0.0 - -## [1.1.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.12...@esri/calcite-tailwind-preset@1.1.0-next.13) (2026-02-02) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.11...@esri/calcite-tailwind-preset@1.1.0-next.12) (2026-01-31) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.10...@esri/calcite-tailwind-preset@1.1.0-next.11) (2026-01-30) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.9...@esri/calcite-tailwind-preset@1.1.0-next.10) (2026-01-29) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.8...@esri/calcite-tailwind-preset@1.1.0-next.9) (2026-01-28) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.7...@esri/calcite-tailwind-preset@1.1.0-next.8) (2026-01-26) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.6...@esri/calcite-tailwind-preset@1.1.0-next.7) (2026-01-21) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.5...@esri/calcite-tailwind-preset@1.1.0-next.6) (2026-01-15) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.4...@esri/calcite-tailwind-preset@1.1.0-next.5) (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.3...@esri/calcite-tailwind-preset@1.1.0-next.4) (2026-01-06) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.2...@esri/calcite-tailwind-preset@1.1.0-next.3) (2025-12-31) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.1...@esri/calcite-tailwind-preset@1.1.0-next.2) (2025-12-23) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.1.0-next.0...@esri/calcite-tailwind-preset@1.1.0-next.1) (2025-12-18) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.1.0-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.14...@esri/calcite-tailwind-preset@1.1.0-next.0) (2025-12-16) - -### Features - -- **tailwind:** switch text utils to use line-height token CSS props ([#12842](https://github.com/Esri/calcite-design-system/issues/12842)) ([0721c0c](https://github.com/Esri/calcite-design-system/commit/0721c0c98173b28df5337bcb1fcf0f3c4baccc46)), closes [#11555](https://github.com/Esri/calcite-design-system/issues/11555) - -## [1.0.2-next.14](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.13...@esri/calcite-tailwind-preset@1.0.2-next.14) (2025-12-10) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.12...@esri/calcite-tailwind-preset@1.0.2-next.13) (2025-12-09) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.11...@esri/calcite-tailwind-preset@1.0.2-next.12) (2025-12-08) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.10...@esri/calcite-tailwind-preset@1.0.2-next.11) (2025-12-03) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.9...@esri/calcite-tailwind-preset@1.0.2-next.10) (2025-11-12) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.8...@esri/calcite-tailwind-preset@1.0.2-next.9) (2025-11-05) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.7...@esri/calcite-tailwind-preset@1.0.2-next.8) (2025-11-04) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.6...@esri/calcite-tailwind-preset@1.0.2-next.7) (2025-10-27) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.5...@esri/calcite-tailwind-preset@1.0.2-next.6) (2025-10-15) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.4...@esri/calcite-tailwind-preset@1.0.2-next.5) (2025-10-13) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.3...@esri/calcite-tailwind-preset@1.0.2-next.4) (2025-10-09) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.2...@esri/calcite-tailwind-preset@1.0.2-next.3) (2025-10-07) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.1...@esri/calcite-tailwind-preset@1.0.2-next.2) (2025-10-01) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.2-next.0...@esri/calcite-tailwind-preset@1.0.2-next.1) (2025-09-24) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.2-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.1-next.19...@esri/calcite-tailwind-preset@1.0.2-next.0) (2025-09-19) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset - -## [1.0.1-next.19](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.1-next.18...@esri/calcite-tailwind-preset@1.0.1-next.19) (2025-09-17) - -**Note:** Version bump only for package @esri/calcite-tailwind-preset +- The following workspace dependencies were updated + - dependencies + - @esri/calcite-design-tokens bumped from 4.0.0-next.23 to 4.0.0 + - peerDependencies + - @esri/calcite-design-tokens bumped from ^4.0.0-next.1 to ^4.0.0 ## [1.0.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-tailwind-preset@1.0.1...@esri/calcite-tailwind-preset@1.0.2) (2025-09-30) diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index ae40b90f9be..6e83311ba56 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -3,10 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## 0.0.1-next.1 (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-typescript-config - ## 0.0.1-next.0 (2025-07-22) **Note:** Version bump only for package @esri/calcite-typescript-config diff --git a/packages/ui-icons/CHANGELOG.md b/packages/ui-icons/CHANGELOG.md index 8ebb89261b3..4e05218e9af 100644 --- a/packages/ui-icons/CHANGELOG.md +++ b/packages/ui-icons/CHANGELOG.md @@ -5,166 +5,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## [4.4.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.3.0...@esri/calcite-ui-icons@4.4.0) (2026-02-04) - -### Features - -* Add 12.1 studio design icons ([#13709](https://github.com/Esri/calcite-design-system/issues/13709)) ([2f6b116](https://github.com/Esri/calcite-design-system/commit/2f6b116e3f739b46e2101f64ae5587f054518681)) -* Add contingent values retire ([#13403](https://github.com/Esri/calcite-design-system/issues/13403)) ([7e9a9d2](https://github.com/Esri/calcite-design-system/commit/7e9a9d2af2c2bf1b72dd75c4a2450f0e9ada3e39)) -* Add file-esl ([#13457](https://github.com/Esri/calcite-design-system/issues/13457)) ([1527a05](https://github.com/Esri/calcite-design-system/commit/1527a05e1f8adfef344f0e65a07c8a819b921bcb)) -* Add oriented imagery and group template feature icons ([#13821](https://github.com/Esri/calcite-design-system/issues/13821)) ([0478cac](https://github.com/Esri/calcite-design-system/commit/0478cacee7e7d114464e630c538114c9d904bb1b)) -* Add table download and table upload ([#13658](https://github.com/Esri/calcite-design-system/issues/13658)) ([4e7f388](https://github.com/Esri/calcite-design-system/commit/4e7f38832bede0633b2a0439bd2b3947d0081de8)) -* Add update-table ([#13293](https://github.com/Esri/calcite-design-system/issues/13293)) ([fd56824](https://github.com/Esri/calcite-design-system/commit/fd56824a37bccca1dfe2496ff43a9ecd4384e7a9)) -* Add values and sort view icons ([#13290](https://github.com/Esri/calcite-design-system/issues/13290)) ([b42f5ba](https://github.com/Esri/calcite-design-system/commit/b42f5baba9486e6b63638b724b7cba1a85343f7e)) -* Add variable generic ([#13666](https://github.com/Esri/calcite-design-system/issues/13666)) ([6c7c956](https://github.com/Esri/calcite-design-system/commit/6c7c9564c56d0191dd066d401b7e56066ad9ab36)) -* **semantic-tokens:** Update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)) - -## [4.4.0-next.22](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.21...@esri/calcite-ui-icons@4.4.0-next.22) (2026-02-02) - -### Features - -- add oriented imagery and group template feature icons ([#13821](https://github.com/Esri/calcite-design-system/issues/13821)) ([0478cac](https://github.com/Esri/calcite-design-system/commit/0478cacee7e7d114464e630c538114c9d904bb1b)) - -## [4.4.0-next.21](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.20...@esri/calcite-ui-icons@4.4.0-next.21) (2026-01-22) - -### Features - -- add 12.1 studio design icons ([#13709](https://github.com/Esri/calcite-design-system/issues/13709)) ([2f6b116](https://github.com/Esri/calcite-design-system/commit/2f6b116e3f739b46e2101f64ae5587f054518681)) - -## [4.4.0-next.20](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.19...@esri/calcite-ui-icons@4.4.0-next.20) (2026-01-12) - -### Features - -- add variable generic ([#13666](https://github.com/Esri/calcite-design-system/issues/13666)) ([6c7c956](https://github.com/Esri/calcite-design-system/commit/6c7c9564c56d0191dd066d401b7e56066ad9ab36)) - -## [4.4.0-next.19](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.18...@esri/calcite-ui-icons@4.4.0-next.19) (2026-01-09) - -**Note:** Version bump only for package @esri/calcite-ui-icons - -## [4.4.0-next.18](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.17...@esri/calcite-ui-icons@4.4.0-next.18) (2026-01-07) - -### Features - -- add table download and table upload ([#13658](https://github.com/Esri/calcite-design-system/issues/13658)) ([4e7f388](https://github.com/Esri/calcite-design-system/commit/4e7f38832bede0633b2a0439bd2b3947d0081de8)) - -## [4.4.0-next.17](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.16...@esri/calcite-ui-icons@4.4.0-next.17) (2025-12-23) - -**Note:** Version bump only for package @esri/calcite-ui-icons - -## [4.4.0-next.16](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.15...@esri/calcite-ui-icons@4.4.0-next.16) (2025-12-11) - -### Features - -- add file-esl ([#13457](https://github.com/Esri/calcite-design-system/issues/13457)) ([1527a05](https://github.com/Esri/calcite-design-system/commit/1527a05e1f8adfef344f0e65a07c8a819b921bcb)) - -## [4.4.0-next.15](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.14...@esri/calcite-ui-icons@4.4.0-next.15) (2025-12-09) - -### Features - -- **semantic-tokens:** update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)), closes [#13129](https://github.com/Esri/calcite-design-system/issues/13129) - -## [4.4.0-next.14](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.13...@esri/calcite-ui-icons@4.4.0-next.14) (2025-12-04) - -### Features - -- add contingent values retire ([#13403](https://github.com/Esri/calcite-design-system/issues/13403)) ([7e9a9d2](https://github.com/Esri/calcite-design-system/commit/7e9a9d2af2c2bf1b72dd75c4a2450f0e9ada3e39)) - -## [4.4.0-next.13](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.12...@esri/calcite-ui-icons@4.4.0-next.13) (2025-12-03) - -**Note:** Version bump only for package @esri/calcite-ui-icons - -## [4.4.0-next.12](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.11...@esri/calcite-ui-icons@4.4.0-next.12) (2025-11-12) - -**Note:** Version bump only for package @esri/calcite-ui-icons - -## [4.4.0-next.11](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.10...@esri/calcite-ui-icons@4.4.0-next.11) (2025-11-07) - -### Features - -- add update-table ([#13293](https://github.com/Esri/calcite-design-system/issues/13293)) ([fd56824](https://github.com/Esri/calcite-design-system/commit/fd56824a37bccca1dfe2496ff43a9ecd4384e7a9)) - -## [4.4.0-next.10](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.9...@esri/calcite-ui-icons@4.4.0-next.10) (2025-11-07) - -### Features - -- add values and sort view icons ([#13290](https://github.com/Esri/calcite-design-system/issues/13290)) ([b42f5ba](https://github.com/Esri/calcite-design-system/commit/b42f5baba9486e6b63638b724b7cba1a85343f7e)) - -## [4.4.0-next.9](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.8...@esri/calcite-ui-icons@4.4.0-next.9) (2025-11-04) - -**Note:** Version bump only for package @esri/calcite-ui-icons - -## [4.4.0-next.8](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.7...@esri/calcite-ui-icons@4.4.0-next.8) (2025-10-31) - -### Features - -- add item and group badges icons ([#13244](https://github.com/Esri/calcite-design-system/issues/13244)) ([b50aad6](https://github.com/Esri/calcite-design-system/commit/b50aad6528e466c0834c35e691ed6e8fd535344e)) - -## [4.4.0-next.7](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.6...@esri/calcite-ui-icons@4.4.0-next.7) (2025-10-29) - -### Features - -- add relative direction arrows ([#13215](https://github.com/Esri/calcite-design-system/issues/13215)) ([c2790f1](https://github.com/Esri/calcite-design-system/commit/c2790f157698e6d773048199321a669c36edde1d)) - -## [4.4.0-next.6](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.5...@esri/calcite-ui-icons@4.4.0-next.6) (2025-10-28) - -### Bug Fixes - -- ensure bounding box is excluded from js/json outputs ([#13202](https://github.com/Esri/calcite-design-system/issues/13202)) ([5fff30c](https://github.com/Esri/calcite-design-system/commit/5fff30c496b47ad22747ed9aa5dcf242beffc95c)), closes [#13181](https://github.com/Esri/calcite-design-system/issues/13181) - -## [4.4.0-next.5](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.4...@esri/calcite-ui-icons@4.4.0-next.5) (2025-10-27) - -**Note:** Version bump only for package @esri/calcite-ui-icons - -## [4.4.0-next.4](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.3...@esri/calcite-ui-icons@4.4.0-next.4) (2025-10-21) - -### Features - -- add metadata ([#13170](https://github.com/Esri/calcite-design-system/issues/13170)) ([aee53ef](https://github.com/Esri/calcite-design-system/commit/aee53ef54b5cfff65de729736184f0fca9ff04ce)) - -## [4.4.0-next.3](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.2...@esri/calcite-ui-icons@4.4.0-next.3) (2025-10-21) - -### Features - -- add group content and signal health ([#13160](https://github.com/Esri/calcite-design-system/issues/13160)) ([80d8293](https://github.com/Esri/calcite-design-system/commit/80d82935b68492c7e0a6e37acf58a2a912c20026)) - -## [4.4.0-next.2](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.1...@esri/calcite-ui-icons@4.4.0-next.2) (2025-10-17) - -### Bug Fixes - -- fixed inverted font icons ([#13153](https://github.com/Esri/calcite-design-system/issues/13153)) ([48ca926](https://github.com/Esri/calcite-design-system/commit/48ca926cf3bb7d3a3d2fbd903f9e017546e4b09c)) - -## [4.4.0-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.4.0-next.0...@esri/calcite-ui-icons@4.4.0-next.1) (2025-10-03) - -### Features - -- add group template and organize template ([#13021](https://github.com/Esri/calcite-design-system/issues/13021)) ([a2e83ef](https://github.com/Esri/calcite-design-system/commit/a2e83ef113e1d4078820a55027596f86642ad852)) - -## [4.4.0-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.3.1-next.1...@esri/calcite-ui-icons@4.4.0-next.0) (2025-09-25) - -### Features - -- add field groups ([#12955](https://github.com/Esri/calcite-design-system/issues/12955)) ([fc0be28](https://github.com/Esri/calcite-design-system/commit/fc0be282511faa9a0c3e745f1750f63b08b27b27)) - -## [4.3.1-next.1](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.3.1-next.0...@esri/calcite-ui-icons@4.3.1-next.1) (2025-09-24) - -### Bug Fixes - -- replaced domain icon ([#12952](https://github.com/Esri/calcite-design-system/issues/12952)) ([e5f57c0](https://github.com/Esri/calcite-design-system/commit/e5f57c005c6d678b128ce0ce56b641ac531d6ec9)) - -## [4.3.1-next.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.3.0-next.25...@esri/calcite-ui-icons@4.3.1-next.0) (2025-09-19) - -**Note:** Version bump only for package @esri/calcite-ui-icons - -## [4.3.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.3.0-next.24...@esri/calcite-ui-icons@4.3.0-next.25) (2025-09-18) - -### Features - -- add integer set and number set ([#12907](https://github.com/Esri/calcite-design-system/issues/12907)) ([d162bb6](https://github.com/Esri/calcite-design-system/commit/d162bb68dd6b98153bb661a87de60970af7a32d0)) - -## [4.3.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.3.0-next.23...@esri/calcite-ui-icons@4.3.0-next.24) (2025-09-17) - ### Features -- add mission system message ([#12877](https://github.com/Esri/calcite-design-system/issues/12877)) ([fce258b](https://github.com/Esri/calcite-design-system/commit/fce258b9d0eb56a0b6b2889bbab84c4cdac693f6)) +- Add 12.1 studio design icons ([#13709](https://github.com/Esri/calcite-design-system/issues/13709)) ([2f6b116](https://github.com/Esri/calcite-design-system/commit/2f6b116e3f739b46e2101f64ae5587f054518681)) +- Add contingent values retire ([#13403](https://github.com/Esri/calcite-design-system/issues/13403)) ([7e9a9d2](https://github.com/Esri/calcite-design-system/commit/7e9a9d2af2c2bf1b72dd75c4a2450f0e9ada3e39)) +- Add file-esl ([#13457](https://github.com/Esri/calcite-design-system/issues/13457)) ([1527a05](https://github.com/Esri/calcite-design-system/commit/1527a05e1f8adfef344f0e65a07c8a819b921bcb)) +- Add oriented imagery and group template feature icons ([#13821](https://github.com/Esri/calcite-design-system/issues/13821)) ([0478cac](https://github.com/Esri/calcite-design-system/commit/0478cacee7e7d114464e630c538114c9d904bb1b)) +- Add table download and table upload ([#13658](https://github.com/Esri/calcite-design-system/issues/13658)) ([4e7f388](https://github.com/Esri/calcite-design-system/commit/4e7f38832bede0633b2a0439bd2b3947d0081de8)) +- Add update-table ([#13293](https://github.com/Esri/calcite-design-system/issues/13293)) ([fd56824](https://github.com/Esri/calcite-design-system/commit/fd56824a37bccca1dfe2496ff43a9ecd4384e7a9)) +- Add values and sort view icons ([#13290](https://github.com/Esri/calcite-design-system/issues/13290)) ([b42f5ba](https://github.com/Esri/calcite-design-system/commit/b42f5baba9486e6b63638b724b7cba1a85343f7e)) +- Add variable generic ([#13666](https://github.com/Esri/calcite-design-system/issues/13666)) ([6c7c956](https://github.com/Esri/calcite-design-system/commit/6c7c9564c56d0191dd066d401b7e56066ad9ab36)) +- **semantic-tokens:** Update tokens named using xxxl to 3xl (and similar) ([#13392](https://github.com/Esri/calcite-design-system/issues/13392)) ([d08aedc](https://github.com/Esri/calcite-design-system/commit/d08aedcbc7254c07c2e2e0a4a80060ed62473c87)) ## [4.3.0](https://github.com/Esri/calcite-design-system/compare/@esri/calcite-ui-icons@4.2.0...@esri/calcite-ui-icons@4.3.0) (2025-09-16)