Skip to content

Commit a058fcd

Browse files
committed
Merge remote-tracking branch 'origin/dev' into benelan/9255-add-icons-to-monorepo
* origin/dev: ci: fix env var case in workflows (#9877) docs(action): deprecates the compact property (#9847) fix(tab-title): Adjust hover styling for `bordered` Tab Title (#9867) chore(themed): add token CSS variable test helper (#9860) chore: avoid deleting untracked, non-generated files on npm run clean (#9866) chore(pick-list, pick-list-item, value-list-item): fix runtime deprecation messages (#9870) refactor: create a common resource to store debounce consts (#9829) test(tree): stabilize tests (#9853) chore(value-list-item): add runtime deprecation warning (#9863) chore: release next build(deps): update dependency composed-offset-position to v0.0.6 (#9834) feat(dialog): adds new dialog component and deprecates the modal component (#9751) chore: release next fix(panel, flow-item): prevent footer slots from conflicting with each other (#9856)
2 parents e26232e + 07076f6 commit a058fcd

File tree

101 files changed

+4476
-185
lines changed

Some content is hidden

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

101 files changed

+4476
-185
lines changed

.github/workflows/issue-notifications.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
if: github.event.label.name == 'spike complete'
2626
uses: actions/github-script@v7
2727
env:
28-
managers: ${{secrets.CALCITE_MANAGERS}}
28+
MANAGERS: ${{secrets.CALCITE_MANAGERS}}
2929
with:
3030
script: |
3131
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenSpikeComplete.js')
@@ -35,7 +35,7 @@ jobs:
3535
if: github.event.label.name == 'ready for dev'
3636
uses: actions/github-script@v7
3737
env:
38-
managers: ${{secrets.CALCITE_MANAGERS}}
38+
MANAGERS: ${{secrets.CALCITE_MANAGERS}}
3939
with:
4040
script: |
4141
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenReadyForDev.js')
@@ -45,7 +45,7 @@ jobs:
4545
if: github.event.label.name == 'new component'
4646
uses: actions/github-script@v7
4747
env:
48-
designers: ${{secrets.CALCITE_DESIGNERS}}
48+
DESIGNERS: ${{secrets.CALCITE_DESIGNERS}}
4949
with:
5050
script: |
5151
const action = require('${{ github.workspace }}/.github/scripts/notifyAboutNewComponent.js')

package-lock.json

Lines changed: 20 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"postinstall": "patch-package",
1111
"build": "turbo run build --log-order=stream",
12-
"clean": "turbo run clean --log-order=stream && git clean -fdx",
12+
"clean": "turbo run clean --log-order=stream && git clean -fd",
1313
"lint": "concurrently \"npm:lint:*\" \"turbo run lint --log-order=stream\"",
1414
"lint:md": "prettier --write \"**/*.md\" >/dev/null && markdownlint \"{,documentation}/*.md\" --fix --dot --ignore-path .gitignore",
1515
"lint:yml": "prettier --write \".github/**/*.yml\" >/dev/null",

packages/calcite-components-angular/projects/component-library/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.11.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-26)
7+
8+
**Note:** Version bump only for package @esri/calcite-components-angular
9+
10+
## [2.11.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-25)
11+
12+
**Note:** Version bump only for package @esri/calcite-components-angular
13+
614
## [2.11.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-25)
715

816
**Note:** Version bump only for package @esri/calcite-components-angular

packages/calcite-components-angular/projects/component-library/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esri/calcite-components-angular",
3-
"version": "2.11.0-next.23",
3+
"version": "2.11.0-next.25",
44
"description": "A set of Angular components that wrap Esri's Calcite Components.",
55
"homepage": "https://developers.arcgis.com/calcite-design-system/",
66
"bugs": {
@@ -17,7 +17,7 @@
1717
},
1818
"sideEffects": false,
1919
"dependencies": {
20-
"@esri/calcite-components": "^2.11.0-next.23",
20+
"@esri/calcite-components": "^2.11.0-next.25",
2121
"tslib": "2.6.3"
2222
},
2323
"peerDependencies": {

packages/calcite-components-react/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.11.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-26)
7+
8+
**Note:** Version bump only for package @esri/calcite-components-react
9+
10+
## [2.11.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-25)
11+
12+
**Note:** Version bump only for package @esri/calcite-components-react
13+
614
## [2.11.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-25)
715

816
**Note:** Version bump only for package @esri/calcite-components-react

packages/calcite-components-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esri/calcite-components-react",
3-
"version": "2.11.0-next.23",
3+
"version": "2.11.0-next.25",
44
"description": "A set of React components that wrap calcite components",
55
"homepage": "https://developers.arcgis.com/calcite-design-system/",
66
"repository": {
@@ -28,7 +28,7 @@
2828
"tsc": "tsc"
2929
},
3030
"dependencies": {
31-
"@esri/calcite-components": "^2.11.0-next.23"
31+
"@esri/calcite-components": "^2.11.0-next.25"
3232
},
3333
"peerDependencies": {
3434
"react": ">=16.7",

packages/calcite-components/.storybook/resources.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import { TextType } from "../src/components/input/interfaces.ts";
2525
import { TimeZoneMode } from "../src/components/input-time-zone/interfaces.ts";
2626
import { DisplayMode } from "../src/components/sheet/interfaces.ts";
2727
import { ShellDisplayMode } from "../src/components/shell/interfaces.ts";
28+
import { OverlayPositioning } from "../src/components";
2829

2930
interface AttributeMetadata<T> {
3031
values: T[];
@@ -58,6 +59,7 @@ interface CommonAttributes {
5859
mode: AttributeMetadata<TimeZoneMode>;
5960
selectionAppearance: AttributeMetadata<SelectionAppearance>;
6061
shellDisplayMode: AttributeMetadata<ShellDisplayMode>;
62+
overlayPositioning: AttributeMetadata<OverlayPositioning>;
6163
}
6264

6365
const logicalFlowPositionOptions: LogicalFlowPosition[] = ["inline-start", "inline-end", "block-start", "block-end"];
@@ -114,6 +116,7 @@ const textTypeOptions: TextType[] = [
114116
];
115117
const modeOptions: TimeZoneMode[] = ["offset", "name"];
116118
const selectionAppearanceOptions: SelectionAppearance[] = ["icon", "border"];
119+
const overlayPositioningOptions: OverlayPositioning[] = ["absolute", "fixed"];
117120
const shellDisplayModeOptions: ShellDisplayMode[] = ["dock", "float", "overlay"];
118121

119122
export const ATTRIBUTES: CommonAttributes = {
@@ -213,6 +216,10 @@ export const ATTRIBUTES: CommonAttributes = {
213216
values: modeOptions,
214217
defaultValue: modeOptions[0],
215218
},
219+
overlayPositioning: {
220+
values: overlayPositioningOptions,
221+
defaultValue: overlayPositioningOptions[0],
222+
},
216223
selectionAppearance: {
217224
values: selectionAppearanceOptions,
218225
defaultValue: selectionAppearanceOptions[0],

packages/calcite-components/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.11.0-next.25](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-26)
7+
8+
### Features
9+
10+
- **dialog:** adds new dialog component and deprecates the modal component ([#9751](https://github.com/Esri/calcite-design-system/issues/9751)) ([0cdd327](https://github.com/Esri/calcite-design-system/commit/0cdd327438f43248b33a5244a2fb18c31b92d582)), closes [#7886](https://github.com/Esri/calcite-design-system/issues/7886)
11+
12+
## [2.11.0-next.24](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-25)
13+
14+
### Bug Fixes
15+
16+
- **panel, flow-item:** prevent footer slots from conflicting with each other ([#9856](https://github.com/Esri/calcite-design-system/issues/9856)) ([f3a26b6](https://github.com/Esri/calcite-design-system/commit/f3a26b6074f702cfc3c2638302cf4454a2a99a3d)), closes [#9855](https://github.com/Esri/calcite-design-system/issues/9855)
17+
618
## [2.11.0-next.23](https://github.com/Esri/calcite-design-system/compare/@esri/[email protected]...@esri/[email protected]) (2024-07-25)
719

820
### Bug Fixes

packages/calcite-components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esri/calcite-components",
3-
"version": "2.11.0-next.23",
3+
"version": "2.11.0-next.25",
44
"homepage": "https://developers.arcgis.com/calcite-design-system/",
55
"description": "Web Components for Esri's Calcite Design System.",
66
"main": "dist/index.cjs.js",
@@ -69,7 +69,7 @@
6969
"@types/color": "3.0.6",
7070
"@types/sortablejs": "1.15.7",
7171
"color": "4.2.3",
72-
"composed-offset-position": "0.0.4",
72+
"composed-offset-position": "0.0.6",
7373
"dayjs": "1.11.12",
7474
"focus-trap": "7.5.4",
7575
"lodash-es": "4.17.21",

packages/calcite-components/src/assets/styles/global.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "~@esri/calcite-base/dist/_index";
1+
@import "~@esri/calcite-base/dist/index";
22
@import "~@esri/calcite-design-tokens/dist/scss/index";
33
@import "~@esri/calcite-design-tokens/dist/scss/core";
44

packages/calcite-components/src/assets/styles/includes.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import "~@esri/calcite-colors/dist/colors";
2-
@import "~@esri/calcite-base/dist/_index";
2+
@import "~@esri/calcite-base/dist/index";
33
@import "~@esri/calcite-design-tokens/dist/scss/index";
44
@import "~@esri/calcite-design-tokens/dist/scss/core";
55

0 commit comments

Comments
 (0)