@cloudscape-design/components 3.0.939 → 3.0.940
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app-layout/drawer/overflow-menu.d.ts.map +1 -1
- package/app-layout/drawer/overflow-menu.js +5 -4
- package/app-layout/drawer/overflow-menu.js.map +1 -1
- package/internal/base-component/styles.scoped.css +13 -0
- package/internal/environment.js +1 -1
- package/internal/environment.json +1 -1
- package/internal/generated/styles/tokens.d.ts +5 -0
- package/internal/generated/styles/tokens.js +5 -0
- package/internal/generated/theming/index.cjs +82 -1
- package/internal/generated/theming/index.cjs.d.ts +40 -0
- package/internal/generated/theming/index.d.ts +40 -0
- package/internal/generated/theming/index.js +82 -1
- package/internal/manifest.json +1 -1
- package/package.json +1 -1
- package/prompt-input/interfaces.d.ts +1 -0
- package/prompt-input/interfaces.d.ts.map +1 -1
- package/prompt-input/interfaces.js.map +1 -1
- package/prompt-input/internal.d.ts.map +1 -1
- package/prompt-input/internal.js +11 -3
- package/prompt-input/internal.js.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overflow-menu.d.ts","sourceRoot":"","sources":["../../../../src/app-layout/drawer/overflow-menu.tsx"],"names":[],"mappings":";AAIA,OAAO,EACL,mBAAmB,EACnB,2BAA2B,EAE5B,MAAM,kCAAkC,CAAC;AAE1C,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAI/C,KAAK,MAAM,GAAG,cAAc,CAAC,MAAM,GAAG;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;AAE3D,UAAU,iBAAiB;IACzB,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACrB,WAAW,EAAE,sBAAsB,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;IAC1E,oBAAoB,CAAC,EAAE,2BAA2B,CAAC,sBAAsB,CAAC,CAAC;IAC3E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC;AAYD,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACnC,KAAK,EAAE,OAAO,EACd,WAAW,EACX,oBAAoB,EACpB,SAAS,EACT,uBAAuB,GACxB,EAAE,iBAAiB,
|
|
1
|
+
{"version":3,"file":"overflow-menu.d.ts","sourceRoot":"","sources":["../../../../src/app-layout/drawer/overflow-menu.tsx"],"names":[],"mappings":";AAIA,OAAO,EACL,mBAAmB,EACnB,2BAA2B,EAE5B,MAAM,kCAAkC,CAAC;AAE1C,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAI/C,KAAK,MAAM,GAAG,cAAc,CAAC,MAAM,GAAG;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;AAE3D,UAAU,iBAAiB;IACzB,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACrB,WAAW,EAAE,sBAAsB,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;IAC1E,oBAAoB,CAAC,EAAE,2BAA2B,CAAC,sBAAsB,CAAC,CAAC;IAC3E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC;AAYD,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACnC,KAAK,EAAE,OAAO,EACd,WAAW,EACX,oBAAoB,EACpB,SAAS,EACT,uBAAuB,GACxB,EAAE,iBAAiB,eA0BnB"}
|
|
@@ -3,19 +3,20 @@
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import InternalButtonDropdown from '../../button-dropdown/internal';
|
|
5
5
|
import testutilStyles from '../test-classes/styles.css.js';
|
|
6
|
-
const mapDrawerToItem = (drawer) => ({
|
|
6
|
+
const mapDrawerToItem = (drawer, isTypeCheckbox) => ({
|
|
7
7
|
id: drawer.id,
|
|
8
8
|
text: drawer.ariaLabels.drawerName,
|
|
9
9
|
iconName: drawer.trigger.iconName,
|
|
10
10
|
iconSvg: drawer.trigger.iconSvg,
|
|
11
11
|
badge: drawer.badge,
|
|
12
|
-
itemType: 'checkbox',
|
|
12
|
+
itemType: isTypeCheckbox ? 'checkbox' : undefined,
|
|
13
13
|
checked: drawer.active,
|
|
14
14
|
});
|
|
15
15
|
export default function OverflowMenu({ items: drawers, onItemClick, customTriggerBuilder, ariaLabel, globalDrawersStartIndex, }) {
|
|
16
|
-
const
|
|
16
|
+
const hasGlobalDrawers = globalDrawersStartIndex !== undefined;
|
|
17
|
+
const itemsFlatList = drawers.map((item, index) => mapDrawerToItem(item, hasGlobalDrawers && index >= globalDrawersStartIndex));
|
|
17
18
|
let items;
|
|
18
|
-
if (
|
|
19
|
+
if (hasGlobalDrawers) {
|
|
19
20
|
items = [
|
|
20
21
|
{ items: itemsFlatList.slice(0, globalDrawersStartIndex) },
|
|
21
22
|
{ items: itemsFlatList.slice(globalDrawersStartIndex) },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overflow-menu.js","sourceRoot":"","sources":["../../../../src/app-layout/drawer/overflow-menu.tsx"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,sBAAsB,MAAM,gCAAgC,CAAC;AAIpE,OAAO,cAAc,MAAM,+BAA+B,CAAC;AAY3D,MAAM,eAAe,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"overflow-menu.js","sourceRoot":"","sources":["../../../../src/app-layout/drawer/overflow-menu.tsx"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,sBAAsB,MAAM,gCAAgC,CAAC;AAIpE,OAAO,cAAc,MAAM,+BAA+B,CAAC;AAY3D,MAAM,eAAe,GAAG,CAAC,MAAc,EAAE,cAAuB,EAAE,EAAE,CAAC,CAAC;IACpE,EAAE,EAAE,MAAM,CAAC,EAAE;IACb,IAAI,EAAE,MAAM,CAAC,UAAU,CAAC,UAAU;IAClC,QAAQ,EAAE,MAAM,CAAC,OAAQ,CAAC,QAAQ;IAClC,OAAO,EAAE,MAAM,CAAC,OAAQ,CAAC,OAAO;IAChC,KAAK,EAAE,MAAM,CAAC,KAAK;IACnB,QAAQ,EAAE,cAAc,CAAC,CAAC,CAAE,UAA2C,CAAC,CAAC,CAAC,SAAS;IACnF,OAAO,EAAE,MAAM,CAAC,MAAM;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACnC,KAAK,EAAE,OAAO,EACd,WAAW,EACX,oBAAoB,EACpB,SAAS,EACT,uBAAuB,GACL;IAClB,MAAM,gBAAgB,GAAG,uBAAuB,KAAK,SAAS,CAAC;IAC/D,MAAM,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,CAChD,eAAe,CAAC,IAAI,EAAE,gBAAgB,IAAI,KAAK,IAAI,uBAAuB,CAAC,CAC5E,CAAC;IACF,IAAI,KAAyC,CAAC;IAC9C,IAAI,gBAAgB,EAAE;QACpB,KAAK,GAAG;YACN,EAAE,KAAK,EAAE,aAAa,CAAC,KAAK,CAAC,CAAC,EAAE,uBAAuB,CAAC,EAAE;YAC1D,EAAE,KAAK,EAAE,aAAa,CAAC,KAAK,CAAC,uBAAuB,CAAC,EAAE;SACxD,CAAC;KACH;SAAM;QACL,KAAK,GAAG,aAAa,CAAC;KACvB;IAED,OAAO,CACL,oBAAC,sBAAsB,IACrB,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,cAAc,CAAC,eAAe,CAAC,EAC1C,WAAW,EAAE,WAAW,EACxB,SAAS,EAAE,SAAS,EACpB,OAAO,EAAC,MAAM,EACd,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,IAAI,GACtB,CACH,CAAC;AACJ,CAAC","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React from 'react';\n\nimport {\n ButtonDropdownProps,\n InternalButtonDropdownProps,\n InternalItemOrGroup,\n} from '../../button-dropdown/interfaces';\nimport InternalButtonDropdown from '../../button-dropdown/internal';\nimport { CancelableEventHandler } from '../../internal/events';\nimport { AppLayoutProps } from '../interfaces';\n\nimport testutilStyles from '../test-classes/styles.css.js';\n\ntype Drawer = AppLayoutProps.Drawer & { active?: boolean };\n\ninterface OverflowMenuProps {\n items: Array<Drawer>;\n onItemClick: CancelableEventHandler<ButtonDropdownProps.ItemClickDetails>;\n customTriggerBuilder?: InternalButtonDropdownProps['customTriggerBuilder'];\n ariaLabel?: string;\n globalDrawersStartIndex?: number;\n}\n\nconst mapDrawerToItem = (drawer: Drawer, isTypeCheckbox: boolean) => ({\n id: drawer.id,\n text: drawer.ariaLabels.drawerName,\n iconName: drawer.trigger!.iconName,\n iconSvg: drawer.trigger!.iconSvg,\n badge: drawer.badge,\n itemType: isTypeCheckbox ? ('checkbox' as ButtonDropdownProps.ItemType) : undefined,\n checked: drawer.active,\n});\n\nexport default function OverflowMenu({\n items: drawers,\n onItemClick,\n customTriggerBuilder,\n ariaLabel,\n globalDrawersStartIndex,\n}: OverflowMenuProps) {\n const hasGlobalDrawers = globalDrawersStartIndex !== undefined;\n const itemsFlatList = drawers.map((item, index) =>\n mapDrawerToItem(item, hasGlobalDrawers && index >= globalDrawersStartIndex)\n );\n let items: ReadonlyArray<InternalItemOrGroup>;\n if (hasGlobalDrawers) {\n items = [\n { items: itemsFlatList.slice(0, globalDrawersStartIndex) },\n { items: itemsFlatList.slice(globalDrawersStartIndex) },\n ];\n } else {\n items = itemsFlatList;\n }\n\n return (\n <InternalButtonDropdown\n items={items}\n className={testutilStyles['overflow-menu']}\n onItemClick={onItemClick}\n ariaLabel={ariaLabel}\n variant=\"icon\"\n customTriggerBuilder={customTriggerBuilder}\n expandToViewport={true}\n />\n );\n}\n"]}
|
|
@@ -248,6 +248,7 @@
|
|
|
248
248
|
--color-background-slider-warning-pressed-pg5aih:#855900;
|
|
249
249
|
--color-background-status-error-5fz45j:#fff5f5;
|
|
250
250
|
--color-background-status-info-gflgo4:#f0fbff;
|
|
251
|
+
--color-background-dialog-wtz1wl:#f0fbff;
|
|
251
252
|
--color-background-status-success-ua29ej:#effff1;
|
|
252
253
|
--color-background-status-warning-03nxlw:#fffef0;
|
|
253
254
|
--color-background-table-header-inc72b:#ffffff;
|
|
@@ -313,6 +314,7 @@
|
|
|
313
314
|
--color-border-status-info-z6pwqy:#006ce0;
|
|
314
315
|
--color-border-status-success-4x6srk:#00802f;
|
|
315
316
|
--color-border-status-warning-3feumr:#855900;
|
|
317
|
+
--color-border-dialog-u915ow:#006ce0;
|
|
316
318
|
--color-border-divider-interactive-default-0c10au:#8c8c94;
|
|
317
319
|
--color-border-tabs-divider-djfdfj:#c6c6cd;
|
|
318
320
|
--color-border-tabs-shadow-enjrr2:rgba(15, 20, 26, 0.12);
|
|
@@ -510,8 +512,11 @@
|
|
|
510
512
|
--border-link-focus-ring-outline-kkfop6:0;
|
|
511
513
|
--border-link-focus-ring-shadow-spread-v8hkrl:2px;
|
|
512
514
|
--border-width-alert-t0f3yn:2px;
|
|
515
|
+
--border-width-button-ru6lbi:2px;
|
|
516
|
+
--border-width-dropdown-hh98qt:2px;
|
|
513
517
|
--border-width-field-h1g7tw:2px;
|
|
514
518
|
--border-width-popover-h2a419:2px;
|
|
519
|
+
--border-width-token-zo28pf:2px;
|
|
515
520
|
--motion-duration-extra-slow-ngjb9g:270ms;
|
|
516
521
|
--motion-duration-fast-sbm3r7:90ms;
|
|
517
522
|
--motion-duration-moderate-5k1phv:135ms;
|
|
@@ -886,6 +891,7 @@
|
|
|
886
891
|
--color-background-slider-warning-pressed-pg5aih:#fbd332;
|
|
887
892
|
--color-background-status-error-5fz45j:#1f0000;
|
|
888
893
|
--color-background-status-info-gflgo4:#001129;
|
|
894
|
+
--color-background-dialog-wtz1wl:#001129;
|
|
889
895
|
--color-background-status-success-ua29ej:#001401;
|
|
890
896
|
--color-background-status-warning-03nxlw:#191100;
|
|
891
897
|
--color-background-table-header-inc72b:#161d26;
|
|
@@ -935,6 +941,7 @@
|
|
|
935
941
|
--color-border-status-info-z6pwqy:#42b4ff;
|
|
936
942
|
--color-border-status-success-4x6srk:#2bb534;
|
|
937
943
|
--color-border-status-warning-3feumr:#fbd332;
|
|
944
|
+
--color-border-dialog-u915ow:#42b4ff;
|
|
938
945
|
--color-border-divider-interactive-default-0c10au:#dedee3;
|
|
939
946
|
--color-border-tabs-divider-djfdfj:#424650;
|
|
940
947
|
--color-border-tabs-shadow-enjrr2:rgba(15, 20, 26, 1);
|
|
@@ -1198,6 +1205,7 @@
|
|
|
1198
1205
|
--color-background-slider-warning-pressed-pg5aih:#fbd332;
|
|
1199
1206
|
--color-background-status-error-5fz45j:#1f0000;
|
|
1200
1207
|
--color-background-status-info-gflgo4:#001129;
|
|
1208
|
+
--color-background-dialog-wtz1wl:#001129;
|
|
1201
1209
|
--color-background-status-success-ua29ej:#001401;
|
|
1202
1210
|
--color-background-status-warning-03nxlw:#191100;
|
|
1203
1211
|
--color-background-table-header-inc72b:#161d26;
|
|
@@ -1247,6 +1255,7 @@
|
|
|
1247
1255
|
--color-border-status-info-z6pwqy:#42b4ff;
|
|
1248
1256
|
--color-border-status-success-4x6srk:#2bb534;
|
|
1249
1257
|
--color-border-status-warning-3feumr:#fbd332;
|
|
1258
|
+
--color-border-dialog-u915ow:#42b4ff;
|
|
1250
1259
|
--color-border-divider-interactive-default-0c10au:#dedee3;
|
|
1251
1260
|
--color-border-tabs-divider-djfdfj:#424650;
|
|
1252
1261
|
--color-border-tabs-shadow-enjrr2:rgba(15, 20, 26, 1);
|
|
@@ -1405,6 +1414,7 @@
|
|
|
1405
1414
|
--color-background-slider-warning-pressed-pg5aih:#fbd332;
|
|
1406
1415
|
--color-background-status-error-5fz45j:#1f0000;
|
|
1407
1416
|
--color-background-status-info-gflgo4:#001129;
|
|
1417
|
+
--color-background-dialog-wtz1wl:#001129;
|
|
1408
1418
|
--color-background-status-success-ua29ej:#001401;
|
|
1409
1419
|
--color-background-status-warning-03nxlw:#191100;
|
|
1410
1420
|
--color-background-table-header-inc72b:#0f141a;
|
|
@@ -1454,6 +1464,7 @@
|
|
|
1454
1464
|
--color-border-status-info-z6pwqy:#42b4ff;
|
|
1455
1465
|
--color-border-status-success-4x6srk:#2bb534;
|
|
1456
1466
|
--color-border-status-warning-3feumr:#fbd332;
|
|
1467
|
+
--color-border-dialog-u915ow:#42b4ff;
|
|
1457
1468
|
--color-border-divider-interactive-default-0c10au:#dedee3;
|
|
1458
1469
|
--color-border-tabs-divider-djfdfj:#424650;
|
|
1459
1470
|
--color-border-tabs-shadow-enjrr2:rgba(15, 20, 26, 1);
|
|
@@ -1717,6 +1728,7 @@
|
|
|
1717
1728
|
--color-background-slider-warning-pressed-pg5aih:#fbd332;
|
|
1718
1729
|
--color-background-status-error-5fz45j:#1f0000;
|
|
1719
1730
|
--color-background-status-info-gflgo4:#001129;
|
|
1731
|
+
--color-background-dialog-wtz1wl:#001129;
|
|
1720
1732
|
--color-background-status-success-ua29ej:#001401;
|
|
1721
1733
|
--color-background-status-warning-03nxlw:#191100;
|
|
1722
1734
|
--color-background-table-header-inc72b:#161d26;
|
|
@@ -1766,6 +1778,7 @@
|
|
|
1766
1778
|
--color-border-status-info-z6pwqy:#42b4ff;
|
|
1767
1779
|
--color-border-status-success-4x6srk:#2bb534;
|
|
1768
1780
|
--color-border-status-warning-3feumr:#fbd332;
|
|
1781
|
+
--color-border-dialog-u915ow:#42b4ff;
|
|
1769
1782
|
--color-border-divider-interactive-default-0c10au:#dedee3;
|
|
1770
1783
|
--color-border-tabs-divider-djfdfj:#424650;
|
|
1771
1784
|
--color-border-tabs-shadow-enjrr2:rgba(15, 20, 26, 1);
|
package/internal/environment.js
CHANGED
|
@@ -307,6 +307,7 @@ export const colorBackgroundSliderErrorPressed: string;
|
|
|
307
307
|
export const colorBackgroundSliderWarningPressed: string;
|
|
308
308
|
export const colorBackgroundStatusError: string;
|
|
309
309
|
export const colorBackgroundStatusInfo: string;
|
|
310
|
+
export const colorBackgroundDialog: string;
|
|
310
311
|
export const colorBackgroundStatusSuccess: string;
|
|
311
312
|
export const colorBackgroundStatusWarning: string;
|
|
312
313
|
export const colorBackgroundTableHeader: string;
|
|
@@ -372,6 +373,7 @@ export const colorBorderStatusError: string;
|
|
|
372
373
|
export const colorBorderStatusInfo: string;
|
|
373
374
|
export const colorBorderStatusSuccess: string;
|
|
374
375
|
export const colorBorderStatusWarning: string;
|
|
376
|
+
export const colorBorderDialog: string;
|
|
375
377
|
export const colorBorderDividerInteractiveDefault: string;
|
|
376
378
|
export const colorBorderTabsDivider: string;
|
|
377
379
|
export const colorBorderTabsShadow: string;
|
|
@@ -576,8 +578,11 @@ export const borderTableStickyWidth: string;
|
|
|
576
578
|
export const borderLinkFocusRingOutline: string;
|
|
577
579
|
export const borderLinkFocusRingShadowSpread: string;
|
|
578
580
|
export const borderWidthAlert: string;
|
|
581
|
+
export const borderWidthButton: string;
|
|
582
|
+
export const borderWidthDropdown: string;
|
|
579
583
|
export const borderWidthField: string;
|
|
580
584
|
export const borderWidthPopover: string;
|
|
585
|
+
export const borderWidthToken: string;
|
|
581
586
|
export const motionDurationExtraFast: string;
|
|
582
587
|
export const motionDurationExtraSlow: string;
|
|
583
588
|
export const motionDurationFast: string;
|
|
@@ -307,6 +307,7 @@ export var colorBackgroundSliderErrorPressed = "var(--color-background-slider-er
|
|
|
307
307
|
export var colorBackgroundSliderWarningPressed = "var(--color-background-slider-warning-pressed-pg5aih, #855900)";
|
|
308
308
|
export var colorBackgroundStatusError = "var(--color-background-status-error-5fz45j, #fff5f5)";
|
|
309
309
|
export var colorBackgroundStatusInfo = "var(--color-background-status-info-gflgo4, #f0fbff)";
|
|
310
|
+
export var colorBackgroundDialog = "var(--color-background-dialog-wtz1wl, #f0fbff)";
|
|
310
311
|
export var colorBackgroundStatusSuccess = "var(--color-background-status-success-ua29ej, #effff1)";
|
|
311
312
|
export var colorBackgroundStatusWarning = "var(--color-background-status-warning-03nxlw, #fffef0)";
|
|
312
313
|
export var colorBackgroundTableHeader = "var(--color-background-table-header-inc72b, #ffffff)";
|
|
@@ -372,6 +373,7 @@ export var colorBorderStatusError = "var(--color-border-status-error-adxa56, #db
|
|
|
372
373
|
export var colorBorderStatusInfo = "var(--color-border-status-info-z6pwqy, #006ce0)";
|
|
373
374
|
export var colorBorderStatusSuccess = "var(--color-border-status-success-4x6srk, #00802f)";
|
|
374
375
|
export var colorBorderStatusWarning = "var(--color-border-status-warning-3feumr, #855900)";
|
|
376
|
+
export var colorBorderDialog = "var(--color-border-dialog-u915ow, #006ce0)";
|
|
375
377
|
export var colorBorderDividerInteractiveDefault = "var(--color-border-divider-interactive-default-0c10au, #8c8c94)";
|
|
376
378
|
export var colorBorderTabsDivider = "var(--color-border-tabs-divider-djfdfj, #c6c6cd)";
|
|
377
379
|
export var colorBorderTabsShadow = "var(--color-border-tabs-shadow-enjrr2, rgba(15, 20, 26, 0.12))";
|
|
@@ -576,8 +578,11 @@ export var borderTableStickyWidth = "var(--border-table-sticky-width-87kf12, 1px
|
|
|
576
578
|
export var borderLinkFocusRingOutline = "var(--border-link-focus-ring-outline-kkfop6, 0)";
|
|
577
579
|
export var borderLinkFocusRingShadowSpread = "var(--border-link-focus-ring-shadow-spread-v8hkrl, 2px)";
|
|
578
580
|
export var borderWidthAlert = "var(--border-width-alert-t0f3yn, 2px)";
|
|
581
|
+
export var borderWidthButton = "var(--border-width-button-ru6lbi, 2px)";
|
|
582
|
+
export var borderWidthDropdown = "var(--border-width-dropdown-hh98qt, 2px)";
|
|
579
583
|
export var borderWidthField = "var(--border-width-field-h1g7tw, 2px)";
|
|
580
584
|
export var borderWidthPopover = "var(--border-width-popover-h2a419, 2px)";
|
|
585
|
+
export var borderWidthToken = "var(--border-width-token-zo28pf, 2px)";
|
|
581
586
|
export var motionDurationExtraFast = "var(--motion-duration-extra-fast-3huyux, 45ms)";
|
|
582
587
|
export var motionDurationExtraSlow = "var(--motion-duration-extra-slow-ngjb9g, 270ms)";
|
|
583
588
|
export var motionDurationFast = "var(--motion-duration-fast-sbm3r7, 90ms)";
|
|
@@ -1113,6 +1113,10 @@ module.exports.preset = {
|
|
|
1113
1113
|
"light": "{colorBlue100}",
|
|
1114
1114
|
"dark": "{colorBlue900}"
|
|
1115
1115
|
},
|
|
1116
|
+
"colorBackgroundDialog": {
|
|
1117
|
+
"light": "{colorBackgroundStatusInfo}",
|
|
1118
|
+
"dark": "{colorBackgroundStatusInfo}"
|
|
1119
|
+
},
|
|
1116
1120
|
"colorBackgroundStatusSuccess": {
|
|
1117
1121
|
"light": "{colorGreen100}",
|
|
1118
1122
|
"dark": "{colorGreen900}"
|
|
@@ -1373,6 +1377,10 @@ module.exports.preset = {
|
|
|
1373
1377
|
"light": "{colorYellow800}",
|
|
1374
1378
|
"dark": "{colorYellow700}"
|
|
1375
1379
|
},
|
|
1380
|
+
"colorBorderDialog": {
|
|
1381
|
+
"light": "{colorBorderStatusInfo}",
|
|
1382
|
+
"dark": "{colorBorderStatusInfo}"
|
|
1383
|
+
},
|
|
1376
1384
|
"colorBorderDividerInteractiveDefault": {
|
|
1377
1385
|
"light": "{colorGrey500}",
|
|
1378
1386
|
"dark": "{colorGrey300}"
|
|
@@ -1928,8 +1936,11 @@ module.exports.preset = {
|
|
|
1928
1936
|
"borderLinkFocusRingOutline": "0",
|
|
1929
1937
|
"borderLinkFocusRingShadowSpread": "2px",
|
|
1930
1938
|
"borderWidthAlert": "2px",
|
|
1939
|
+
"borderWidthButton": "2px",
|
|
1940
|
+
"borderWidthDropdown": "2px",
|
|
1931
1941
|
"borderWidthField": "2px",
|
|
1932
1942
|
"borderWidthPopover": "2px",
|
|
1943
|
+
"borderWidthToken": "2px",
|
|
1933
1944
|
"motionDurationExtraFast": {
|
|
1934
1945
|
"default": "45ms",
|
|
1935
1946
|
"disabled": "0ms"
|
|
@@ -3358,6 +3369,10 @@ module.exports.preset = {
|
|
|
3358
3369
|
"light": "{colorBlue900}",
|
|
3359
3370
|
"dark": "{colorBlue900}"
|
|
3360
3371
|
},
|
|
3372
|
+
"colorBackgroundDialog": {
|
|
3373
|
+
"light": "{colorBackgroundStatusInfo}",
|
|
3374
|
+
"dark": "{colorBackgroundStatusInfo}"
|
|
3375
|
+
},
|
|
3361
3376
|
"colorBackgroundStatusSuccess": {
|
|
3362
3377
|
"light": "{colorGreen900}",
|
|
3363
3378
|
"dark": "{colorGreen900}"
|
|
@@ -3618,6 +3633,10 @@ module.exports.preset = {
|
|
|
3618
3633
|
"light": "{colorYellow700}",
|
|
3619
3634
|
"dark": "{colorYellow700}"
|
|
3620
3635
|
},
|
|
3636
|
+
"colorBorderDialog": {
|
|
3637
|
+
"light": "{colorBorderStatusInfo}",
|
|
3638
|
+
"dark": "{colorBorderStatusInfo}"
|
|
3639
|
+
},
|
|
3621
3640
|
"colorBorderDividerInteractiveDefault": {
|
|
3622
3641
|
"light": "{colorGrey300}",
|
|
3623
3642
|
"dark": "{colorGrey300}"
|
|
@@ -4504,6 +4523,10 @@ module.exports.preset = {
|
|
|
4504
4523
|
"light": "{colorBlue900}",
|
|
4505
4524
|
"dark": "{colorBlue900}"
|
|
4506
4525
|
},
|
|
4526
|
+
"colorBackgroundDialog": {
|
|
4527
|
+
"light": "{colorBackgroundStatusInfo}",
|
|
4528
|
+
"dark": "{colorBackgroundStatusInfo}"
|
|
4529
|
+
},
|
|
4507
4530
|
"colorBackgroundStatusSuccess": {
|
|
4508
4531
|
"light": "{colorGreen900}",
|
|
4509
4532
|
"dark": "{colorGreen900}"
|
|
@@ -4764,6 +4787,10 @@ module.exports.preset = {
|
|
|
4764
4787
|
"light": "{colorYellow700}",
|
|
4765
4788
|
"dark": "{colorYellow700}"
|
|
4766
4789
|
},
|
|
4790
|
+
"colorBorderDialog": {
|
|
4791
|
+
"light": "{colorBorderStatusInfo}",
|
|
4792
|
+
"dark": "{colorBorderStatusInfo}"
|
|
4793
|
+
},
|
|
4767
4794
|
"colorBorderDividerInteractiveDefault": {
|
|
4768
4795
|
"light": "{colorGrey300}",
|
|
4769
4796
|
"dark": "{colorGrey300}"
|
|
@@ -5582,6 +5609,10 @@ module.exports.preset = {
|
|
|
5582
5609
|
"light": "{colorBlue100}",
|
|
5583
5610
|
"dark": "{colorBlue900}"
|
|
5584
5611
|
},
|
|
5612
|
+
"colorBackgroundDialog": {
|
|
5613
|
+
"light": "{colorBackgroundStatusInfo}",
|
|
5614
|
+
"dark": "{colorBackgroundStatusInfo}"
|
|
5615
|
+
},
|
|
5585
5616
|
"colorBackgroundStatusSuccess": {
|
|
5586
5617
|
"light": "{colorGreen100}",
|
|
5587
5618
|
"dark": "{colorGreen900}"
|
|
@@ -5842,6 +5873,10 @@ module.exports.preset = {
|
|
|
5842
5873
|
"light": "{colorYellow800}",
|
|
5843
5874
|
"dark": "{colorYellow700}"
|
|
5844
5875
|
},
|
|
5876
|
+
"colorBorderDialog": {
|
|
5877
|
+
"light": "{colorBorderStatusInfo}",
|
|
5878
|
+
"dark": "{colorBorderStatusInfo}"
|
|
5879
|
+
},
|
|
5845
5880
|
"colorBorderDividerInteractiveDefault": {
|
|
5846
5881
|
"light": "{colorGrey500}",
|
|
5847
5882
|
"dark": "{colorGrey300}"
|
|
@@ -6660,6 +6695,10 @@ module.exports.preset = {
|
|
|
6660
6695
|
"light": "{colorBlue100}",
|
|
6661
6696
|
"dark": "{colorBlue900}"
|
|
6662
6697
|
},
|
|
6698
|
+
"colorBackgroundDialog": {
|
|
6699
|
+
"light": "{colorBackgroundStatusInfo}",
|
|
6700
|
+
"dark": "{colorBackgroundStatusInfo}"
|
|
6701
|
+
},
|
|
6663
6702
|
"colorBackgroundStatusSuccess": {
|
|
6664
6703
|
"light": "{colorGreen100}",
|
|
6665
6704
|
"dark": "{colorGreen900}"
|
|
@@ -6920,6 +6959,10 @@ module.exports.preset = {
|
|
|
6920
6959
|
"light": "{colorYellow800}",
|
|
6921
6960
|
"dark": "{colorYellow700}"
|
|
6922
6961
|
},
|
|
6962
|
+
"colorBorderDialog": {
|
|
6963
|
+
"light": "{colorBorderStatusInfo}",
|
|
6964
|
+
"dark": "{colorBorderStatusInfo}"
|
|
6965
|
+
},
|
|
6923
6966
|
"colorBorderDividerInteractiveDefault": {
|
|
6924
6967
|
"light": "{colorGrey500}",
|
|
6925
6968
|
"dark": "{colorGrey300}"
|
|
@@ -7738,6 +7781,10 @@ module.exports.preset = {
|
|
|
7738
7781
|
"light": "{colorBlue100}",
|
|
7739
7782
|
"dark": "{colorBlue900}"
|
|
7740
7783
|
},
|
|
7784
|
+
"colorBackgroundDialog": {
|
|
7785
|
+
"light": "{colorBackgroundStatusInfo}",
|
|
7786
|
+
"dark": "{colorBackgroundStatusInfo}"
|
|
7787
|
+
},
|
|
7741
7788
|
"colorBackgroundStatusSuccess": {
|
|
7742
7789
|
"light": "{colorGreen100}",
|
|
7743
7790
|
"dark": "{colorGreen900}"
|
|
@@ -7998,6 +8045,10 @@ module.exports.preset = {
|
|
|
7998
8045
|
"light": "{colorYellow800}",
|
|
7999
8046
|
"dark": "{colorYellow700}"
|
|
8000
8047
|
},
|
|
8048
|
+
"colorBorderDialog": {
|
|
8049
|
+
"light": "{colorBorderStatusInfo}",
|
|
8050
|
+
"dark": "{colorBorderStatusInfo}"
|
|
8051
|
+
},
|
|
8001
8052
|
"colorBorderDividerInteractiveDefault": {
|
|
8002
8053
|
"light": "{colorGrey500}",
|
|
8003
8054
|
"dark": "{colorGrey300}"
|
|
@@ -8818,6 +8869,10 @@ module.exports.preset = {
|
|
|
8818
8869
|
"light": "{colorBlue900}",
|
|
8819
8870
|
"dark": "{colorBlue900}"
|
|
8820
8871
|
},
|
|
8872
|
+
"colorBackgroundDialog": {
|
|
8873
|
+
"light": "{colorBackgroundStatusInfo}",
|
|
8874
|
+
"dark": "{colorBackgroundStatusInfo}"
|
|
8875
|
+
},
|
|
8821
8876
|
"colorBackgroundStatusSuccess": {
|
|
8822
8877
|
"light": "{colorGreen900}",
|
|
8823
8878
|
"dark": "{colorGreen900}"
|
|
@@ -9078,6 +9133,10 @@ module.exports.preset = {
|
|
|
9078
9133
|
"light": "{colorYellow700}",
|
|
9079
9134
|
"dark": "{colorYellow700}"
|
|
9080
9135
|
},
|
|
9136
|
+
"colorBorderDialog": {
|
|
9137
|
+
"light": "{colorBorderStatusInfo}",
|
|
9138
|
+
"dark": "{colorBorderStatusInfo}"
|
|
9139
|
+
},
|
|
9081
9140
|
"colorBorderDividerInteractiveDefault": {
|
|
9082
9141
|
"light": "{colorGrey300}",
|
|
9083
9142
|
"dark": "{colorGrey300}"
|
|
@@ -9805,6 +9864,7 @@ module.exports.preset = {
|
|
|
9805
9864
|
"colorBackgroundSliderWarningPressed": "color",
|
|
9806
9865
|
"colorBackgroundStatusError": "color",
|
|
9807
9866
|
"colorBackgroundStatusInfo": "color",
|
|
9867
|
+
"colorBackgroundDialog": "color",
|
|
9808
9868
|
"colorBackgroundStatusSuccess": "color",
|
|
9809
9869
|
"colorBackgroundStatusWarning": "color",
|
|
9810
9870
|
"colorBackgroundTableHeader": "color",
|
|
@@ -9870,6 +9930,7 @@ module.exports.preset = {
|
|
|
9870
9930
|
"colorBorderStatusInfo": "color",
|
|
9871
9931
|
"colorBorderStatusSuccess": "color",
|
|
9872
9932
|
"colorBorderStatusWarning": "color",
|
|
9933
|
+
"colorBorderDialog": "color",
|
|
9873
9934
|
"colorBorderDividerInteractiveDefault": "color",
|
|
9874
9935
|
"colorBorderTabsDivider": "color",
|
|
9875
9936
|
"colorBorderTabsShadow": "color",
|
|
@@ -10270,6 +10331,7 @@ module.exports.preset = {
|
|
|
10270
10331
|
"colorBackgroundSegmentHover",
|
|
10271
10332
|
"colorBackgroundStatusError",
|
|
10272
10333
|
"colorBackgroundStatusInfo",
|
|
10334
|
+
"colorBackgroundDialog",
|
|
10273
10335
|
"colorBackgroundStatusSuccess",
|
|
10274
10336
|
"colorBackgroundStatusWarning",
|
|
10275
10337
|
"colorBackgroundToggleCheckedDisabled",
|
|
@@ -10303,6 +10365,7 @@ module.exports.preset = {
|
|
|
10303
10365
|
"colorBorderStatusInfo",
|
|
10304
10366
|
"colorBorderStatusSuccess",
|
|
10305
10367
|
"colorBorderStatusWarning",
|
|
10368
|
+
"colorBorderDialog",
|
|
10306
10369
|
"colorForegroundControlDefault",
|
|
10307
10370
|
"colorForegroundControlDisabled",
|
|
10308
10371
|
"colorForegroundControlReadOnly",
|
|
@@ -10401,8 +10464,11 @@ module.exports.preset = {
|
|
|
10401
10464
|
"borderRadiusToken",
|
|
10402
10465
|
"borderRadiusTutorialPanelItem",
|
|
10403
10466
|
"borderWidthAlert",
|
|
10467
|
+
"borderWidthButton",
|
|
10468
|
+
"borderWidthDropdown",
|
|
10404
10469
|
"borderWidthField",
|
|
10405
|
-
"borderWidthPopover"
|
|
10470
|
+
"borderWidthPopover",
|
|
10471
|
+
"borderWidthToken"
|
|
10406
10472
|
],
|
|
10407
10473
|
"exposed": [
|
|
10408
10474
|
"colorChartsRed300",
|
|
@@ -10610,6 +10676,7 @@ module.exports.preset = {
|
|
|
10610
10676
|
"colorBackgroundSegmentHover",
|
|
10611
10677
|
"colorBackgroundStatusError",
|
|
10612
10678
|
"colorBackgroundStatusInfo",
|
|
10679
|
+
"colorBackgroundDialog",
|
|
10613
10680
|
"colorBackgroundStatusSuccess",
|
|
10614
10681
|
"colorBackgroundStatusWarning",
|
|
10615
10682
|
"colorBackgroundToggleCheckedDisabled",
|
|
@@ -10647,6 +10714,7 @@ module.exports.preset = {
|
|
|
10647
10714
|
"colorBorderStatusInfo",
|
|
10648
10715
|
"colorBorderStatusSuccess",
|
|
10649
10716
|
"colorBorderStatusWarning",
|
|
10717
|
+
"colorBorderDialog",
|
|
10650
10718
|
"colorForegroundControlDefault",
|
|
10651
10719
|
"colorForegroundControlDisabled",
|
|
10652
10720
|
"colorForegroundControlReadOnly",
|
|
@@ -10748,8 +10816,11 @@ module.exports.preset = {
|
|
|
10748
10816
|
"borderRadiusChatBubble",
|
|
10749
10817
|
"borderRadiusTutorialPanelItem",
|
|
10750
10818
|
"borderWidthAlert",
|
|
10819
|
+
"borderWidthButton",
|
|
10820
|
+
"borderWidthDropdown",
|
|
10751
10821
|
"borderWidthField",
|
|
10752
10822
|
"borderWidthPopover",
|
|
10823
|
+
"borderWidthToken",
|
|
10753
10824
|
"motionDurationAvatarGenAiGradient",
|
|
10754
10825
|
"motionDurationAvatarLoadingDots",
|
|
10755
10826
|
"motionEasingAvatarGenAiGradient",
|
|
@@ -11095,6 +11166,7 @@ module.exports.preset = {
|
|
|
11095
11166
|
"colorBackgroundSliderWarningPressed": "color-background-slider-warning-pressed",
|
|
11096
11167
|
"colorBackgroundStatusError": "color-background-status-error",
|
|
11097
11168
|
"colorBackgroundStatusInfo": "color-background-status-info",
|
|
11169
|
+
"colorBackgroundDialog": "color-background-dialog",
|
|
11098
11170
|
"colorBackgroundStatusSuccess": "color-background-status-success",
|
|
11099
11171
|
"colorBackgroundStatusWarning": "color-background-status-warning",
|
|
11100
11172
|
"colorBackgroundTableHeader": "color-background-table-header",
|
|
@@ -11160,6 +11232,7 @@ module.exports.preset = {
|
|
|
11160
11232
|
"colorBorderStatusInfo": "color-border-status-info",
|
|
11161
11233
|
"colorBorderStatusSuccess": "color-border-status-success",
|
|
11162
11234
|
"colorBorderStatusWarning": "color-border-status-warning",
|
|
11235
|
+
"colorBorderDialog": "color-border-dialog",
|
|
11163
11236
|
"colorBorderDividerInteractiveDefault": "color-border-divider-interactive-default",
|
|
11164
11237
|
"colorBorderTabsDivider": "color-border-tabs-divider",
|
|
11165
11238
|
"colorBorderTabsShadow": "color-border-tabs-shadow",
|
|
@@ -11364,8 +11437,11 @@ module.exports.preset = {
|
|
|
11364
11437
|
"borderLinkFocusRingOutline": "border-link-focus-ring-outline",
|
|
11365
11438
|
"borderLinkFocusRingShadowSpread": "border-link-focus-ring-shadow-spread",
|
|
11366
11439
|
"borderWidthAlert": "border-width-alert",
|
|
11440
|
+
"borderWidthButton": "border-width-button",
|
|
11441
|
+
"borderWidthDropdown": "border-width-dropdown",
|
|
11367
11442
|
"borderWidthField": "border-width-field",
|
|
11368
11443
|
"borderWidthPopover": "border-width-popover",
|
|
11444
|
+
"borderWidthToken": "border-width-token",
|
|
11369
11445
|
"motionDurationExtraFast": "motion-duration-extra-fast",
|
|
11370
11446
|
"motionDurationExtraSlow": "motion-duration-extra-slow",
|
|
11371
11447
|
"motionDurationFast": "motion-duration-fast",
|
|
@@ -11844,6 +11920,7 @@ module.exports.preset = {
|
|
|
11844
11920
|
"colorBackgroundSliderWarningPressed": "--color-background-slider-warning-pressed-pg5aih",
|
|
11845
11921
|
"colorBackgroundStatusError": "--color-background-status-error-5fz45j",
|
|
11846
11922
|
"colorBackgroundStatusInfo": "--color-background-status-info-gflgo4",
|
|
11923
|
+
"colorBackgroundDialog": "--color-background-dialog-wtz1wl",
|
|
11847
11924
|
"colorBackgroundStatusSuccess": "--color-background-status-success-ua29ej",
|
|
11848
11925
|
"colorBackgroundStatusWarning": "--color-background-status-warning-03nxlw",
|
|
11849
11926
|
"colorBackgroundTableHeader": "--color-background-table-header-inc72b",
|
|
@@ -11909,6 +11986,7 @@ module.exports.preset = {
|
|
|
11909
11986
|
"colorBorderStatusInfo": "--color-border-status-info-z6pwqy",
|
|
11910
11987
|
"colorBorderStatusSuccess": "--color-border-status-success-4x6srk",
|
|
11911
11988
|
"colorBorderStatusWarning": "--color-border-status-warning-3feumr",
|
|
11989
|
+
"colorBorderDialog": "--color-border-dialog-u915ow",
|
|
11912
11990
|
"colorBorderDividerInteractiveDefault": "--color-border-divider-interactive-default-0c10au",
|
|
11913
11991
|
"colorBorderTabsDivider": "--color-border-tabs-divider-djfdfj",
|
|
11914
11992
|
"colorBorderTabsShadow": "--color-border-tabs-shadow-enjrr2",
|
|
@@ -12113,8 +12191,11 @@ module.exports.preset = {
|
|
|
12113
12191
|
"borderLinkFocusRingOutline": "--border-link-focus-ring-outline-kkfop6",
|
|
12114
12192
|
"borderLinkFocusRingShadowSpread": "--border-link-focus-ring-shadow-spread-v8hkrl",
|
|
12115
12193
|
"borderWidthAlert": "--border-width-alert-t0f3yn",
|
|
12194
|
+
"borderWidthButton": "--border-width-button-ru6lbi",
|
|
12195
|
+
"borderWidthDropdown": "--border-width-dropdown-hh98qt",
|
|
12116
12196
|
"borderWidthField": "--border-width-field-h1g7tw",
|
|
12117
12197
|
"borderWidthPopover": "--border-width-popover-h2a419",
|
|
12198
|
+
"borderWidthToken": "--border-width-token-zo28pf",
|
|
12118
12199
|
"motionDurationExtraFast": "--motion-duration-extra-fast-3huyux",
|
|
12119
12200
|
"motionDurationExtraSlow": "--motion-duration-extra-slow-ngjb9g",
|
|
12120
12201
|
"motionDurationFast": "--motion-duration-fast-sbm3r7",
|