@cloudscape-design/components 3.0.1313 → 3.0.1315
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/file-token-group/file-token.d.ts.map +1 -1
- package/file-token-group/file-token.js +33 -27
- package/file-token-group/file-token.js.map +1 -1
- package/internal/base-component/styles.scoped.css +10 -1
- package/internal/breakpoints.d.ts +1 -1
- package/internal/breakpoints.d.ts.map +1 -1
- package/internal/breakpoints.js +25 -3
- package/internal/breakpoints.js.map +1 -1
- package/internal/environment.js +2 -2
- package/internal/environment.json +2 -2
- package/internal/generated/styles/tokens.d.ts +5 -0
- package/internal/generated/styles/tokens.js +5 -0
- package/internal/generated/theming/index.cjs +99 -0
- package/internal/generated/theming/index.cjs.d.ts +36 -0
- package/internal/generated/theming/index.d.ts +36 -0
- package/internal/generated/theming/index.js +99 -0
- package/internal/hooks/container-queries/use-container-breakpoints.d.ts.map +1 -1
- package/internal/hooks/container-queries/use-container-breakpoints.js +2 -1
- package/internal/hooks/container-queries/use-container-breakpoints.js.map +1 -1
- package/internal/manifest.json +1 -1
- package/link/internal.js +1 -1
- package/link/internal.js.map +1 -1
- package/link/styles.css.js +21 -21
- package/link/styles.scoped.css +118 -72
- package/link/styles.selectors.js +21 -21
- package/manifest.json +2 -2
- package/package.json +1 -1
- package/prompt-input/index.d.ts.map +1 -1
- package/prompt-input/index.js +3 -1
- package/prompt-input/index.js.map +1 -1
- package/side-navigation/implementation.d.ts +1 -0
- package/side-navigation/implementation.d.ts.map +1 -1
- package/side-navigation/implementation.js +4 -4
- package/side-navigation/implementation.js.map +1 -1
- package/side-navigation/index.d.ts +1 -0
- package/side-navigation/index.d.ts.map +1 -1
- package/side-navigation/index.js +5 -3
- package/side-navigation/index.js.map +1 -1
- package/side-navigation/interfaces.d.ts +20 -1
- package/side-navigation/interfaces.d.ts.map +1 -1
- package/side-navigation/interfaces.js.map +1 -1
- package/side-navigation/parts.d.ts +5 -2
- package/side-navigation/parts.d.ts.map +1 -1
- package/side-navigation/parts.js +147 -37
- package/side-navigation/parts.js.map +1 -1
- package/side-navigation/styles.css.js +46 -30
- package/side-navigation/styles.scoped.css +223 -74
- package/side-navigation/styles.selectors.js +46 -30
- package/side-navigation/test-classes/styles.css.js +2 -1
- package/side-navigation/test-classes/styles.scoped.css +5 -1
- package/side-navigation/test-classes/styles.selectors.js +2 -1
- package/test-utils/dom/top-navigation/index.d.ts +2 -1
- package/test-utils/dom/top-navigation/index.js +4 -0
- package/test-utils/dom/top-navigation/index.js.map +1 -1
- package/test-utils/selectors/top-navigation/index.d.ts +1 -0
- package/test-utils/selectors/top-navigation/index.js +4 -0
- package/test-utils/selectors/top-navigation/index.js.map +1 -1
- package/token/internal.d.ts +19 -1
- package/token/internal.d.ts.map +1 -1
- package/token/internal.js +20 -9
- package/token/internal.js.map +1 -1
- package/top-navigation/index.d.ts +1 -0
- package/top-navigation/index.d.ts.map +1 -1
- package/top-navigation/index.js +2 -2
- package/top-navigation/index.js.map +1 -1
- package/top-navigation/interfaces.d.ts +14 -1
- package/top-navigation/interfaces.d.ts.map +1 -1
- package/top-navigation/interfaces.js.map +1 -1
- package/top-navigation/internal.d.ts +3 -5
- package/top-navigation/internal.d.ts.map +1 -1
- package/top-navigation/internal.js +42 -21
- package/top-navigation/internal.js.map +1 -1
- package/top-navigation/test-classes/styles.css.js +6 -0
- package/top-navigation/test-classes/styles.scoped.css +7 -0
- package/top-navigation/test-classes/styles.selectors.js +7 -0
- package/top-navigation/use-top-navigation.d.ts +5 -0
- package/top-navigation/use-top-navigation.d.ts.map +1 -1
- package/top-navigation/use-top-navigation.js +12 -5
- package/top-navigation/use-top-navigation.js.map +1 -1
|
@@ -115,6 +115,7 @@ export declare interface TypedOverride {
|
|
|
115
115
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
116
116
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
117
117
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
118
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
118
119
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
119
120
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
120
121
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -175,6 +176,7 @@ export declare interface TypedOverride {
|
|
|
175
176
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
176
177
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
177
178
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
179
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
178
180
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
179
181
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
180
182
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -404,6 +406,7 @@ export declare interface TypedOverride {
|
|
|
404
406
|
borderWidthPopover?: GlobalValue;
|
|
405
407
|
borderWidthToken?: GlobalValue;
|
|
406
408
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
409
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
407
410
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
408
411
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
409
412
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -414,6 +417,7 @@ export declare interface TypedOverride {
|
|
|
414
417
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
415
418
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
416
419
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
420
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
417
421
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
418
422
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
419
423
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -537,6 +541,7 @@ export declare interface TypedOverride {
|
|
|
537
541
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
538
542
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
539
543
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
544
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
540
545
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
541
546
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
542
547
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -597,6 +602,7 @@ export declare interface TypedOverride {
|
|
|
597
602
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
598
603
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
599
604
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
605
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
600
606
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
601
607
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
602
608
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -826,6 +832,7 @@ export declare interface TypedOverride {
|
|
|
826
832
|
borderWidthPopover?: GlobalValue;
|
|
827
833
|
borderWidthToken?: GlobalValue;
|
|
828
834
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
835
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
829
836
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
830
837
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
831
838
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -836,6 +843,7 @@ export declare interface TypedOverride {
|
|
|
836
843
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
837
844
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
838
845
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
846
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
839
847
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
840
848
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
841
849
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -959,6 +967,7 @@ export declare interface TypedOverride {
|
|
|
959
967
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
960
968
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
961
969
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
970
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
962
971
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
963
972
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
964
973
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1019,6 +1028,7 @@ export declare interface TypedOverride {
|
|
|
1019
1028
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1020
1029
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1021
1030
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1031
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1022
1032
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1023
1033
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1024
1034
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1248,6 +1258,7 @@ export declare interface TypedOverride {
|
|
|
1248
1258
|
borderWidthPopover?: GlobalValue;
|
|
1249
1259
|
borderWidthToken?: GlobalValue;
|
|
1250
1260
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1261
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1251
1262
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1252
1263
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1253
1264
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -1258,6 +1269,7 @@ export declare interface TypedOverride {
|
|
|
1258
1269
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1259
1270
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1260
1271
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1272
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1261
1273
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1262
1274
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1263
1275
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -1381,6 +1393,7 @@ export declare interface TypedOverride {
|
|
|
1381
1393
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1382
1394
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1383
1395
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1396
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1384
1397
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1385
1398
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1386
1399
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1441,6 +1454,7 @@ export declare interface TypedOverride {
|
|
|
1441
1454
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1442
1455
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1443
1456
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1457
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1444
1458
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1445
1459
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1446
1460
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1670,6 +1684,7 @@ export declare interface TypedOverride {
|
|
|
1670
1684
|
borderWidthPopover?: GlobalValue;
|
|
1671
1685
|
borderWidthToken?: GlobalValue;
|
|
1672
1686
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1687
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1673
1688
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1674
1689
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1675
1690
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -1680,6 +1695,7 @@ export declare interface TypedOverride {
|
|
|
1680
1695
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1681
1696
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1682
1697
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1698
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1683
1699
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1684
1700
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
1685
1701
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -1803,6 +1819,7 @@ export declare interface TypedOverride {
|
|
|
1803
1819
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1804
1820
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1805
1821
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1822
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1806
1823
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1807
1824
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1808
1825
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -1863,6 +1880,7 @@ export declare interface TypedOverride {
|
|
|
1863
1880
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1864
1881
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1865
1882
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1883
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1866
1884
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1867
1885
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
1868
1886
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -2092,6 +2110,7 @@ export declare interface TypedOverride {
|
|
|
2092
2110
|
borderWidthPopover?: GlobalValue;
|
|
2093
2111
|
borderWidthToken?: GlobalValue;
|
|
2094
2112
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2113
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2095
2114
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2096
2115
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2097
2116
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -2102,6 +2121,7 @@ export declare interface TypedOverride {
|
|
|
2102
2121
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2103
2122
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2104
2123
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2124
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2105
2125
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2106
2126
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2107
2127
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -2225,6 +2245,7 @@ export declare interface TypedOverride {
|
|
|
2225
2245
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2226
2246
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2227
2247
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2248
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2228
2249
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2229
2250
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2230
2251
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -2285,6 +2306,7 @@ export declare interface TypedOverride {
|
|
|
2285
2306
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2286
2307
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2287
2308
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2309
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2288
2310
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2289
2311
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2290
2312
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -2514,6 +2536,7 @@ export declare interface TypedOverride {
|
|
|
2514
2536
|
borderWidthPopover?: GlobalValue;
|
|
2515
2537
|
borderWidthToken?: GlobalValue;
|
|
2516
2538
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2539
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2517
2540
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2518
2541
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2519
2542
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -2524,6 +2547,7 @@ export declare interface TypedOverride {
|
|
|
2524
2547
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2525
2548
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2526
2549
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2550
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2527
2551
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2528
2552
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2529
2553
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -2647,6 +2671,7 @@ export declare interface TypedOverride {
|
|
|
2647
2671
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2648
2672
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2649
2673
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2674
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2650
2675
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2651
2676
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2652
2677
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -2707,6 +2732,7 @@ export declare interface TypedOverride {
|
|
|
2707
2732
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2708
2733
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2709
2734
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2735
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2710
2736
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2711
2737
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
2712
2738
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -2936,6 +2962,7 @@ export declare interface TypedOverride {
|
|
|
2936
2962
|
borderWidthPopover?: GlobalValue;
|
|
2937
2963
|
borderWidthToken?: GlobalValue;
|
|
2938
2964
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2965
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2939
2966
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2940
2967
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2941
2968
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -2946,6 +2973,7 @@ export declare interface TypedOverride {
|
|
|
2946
2973
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2947
2974
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2948
2975
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2976
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2949
2977
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2950
2978
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
2951
2979
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -3069,6 +3097,7 @@ export declare interface TypedOverride {
|
|
|
3069
3097
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3070
3098
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3071
3099
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3100
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3072
3101
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3073
3102
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3074
3103
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -3129,6 +3158,7 @@ export declare interface TypedOverride {
|
|
|
3129
3158
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3130
3159
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3131
3160
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3161
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3132
3162
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3133
3163
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3134
3164
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -3358,6 +3388,7 @@ export declare interface TypedOverride {
|
|
|
3358
3388
|
borderWidthPopover?: GlobalValue;
|
|
3359
3389
|
borderWidthToken?: GlobalValue;
|
|
3360
3390
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3391
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3361
3392
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3362
3393
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3363
3394
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -3368,6 +3399,7 @@ export declare interface TypedOverride {
|
|
|
3368
3399
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3369
3400
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3370
3401
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3402
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3371
3403
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3372
3404
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3373
3405
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -3491,6 +3523,7 @@ export declare interface TypedOverride {
|
|
|
3491
3523
|
colorBackgroundInputDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3492
3524
|
colorBackgroundInputDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3493
3525
|
colorBackgroundItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3526
|
+
colorBackgroundSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3494
3527
|
colorBackgroundLayoutMain?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3495
3528
|
colorBackgroundLayoutPanel?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3496
3529
|
colorBackgroundLayoutToolbar?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -3551,6 +3584,7 @@ export declare interface TypedOverride {
|
|
|
3551
3584
|
colorBorderButtonPrimaryHover?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3552
3585
|
colorTextButtonPrimaryDisabled?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3553
3586
|
colorItemSelected?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3587
|
+
colorTextSideNavigationItemActive?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3554
3588
|
colorBorderCard?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3555
3589
|
colorBorderContainerTop?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
3556
3590
|
colorBorderControlDefault?: GlobalValue | TypedModeValueOverride<'light' | 'dark'>;
|
|
@@ -3780,6 +3814,7 @@ export declare interface TypedOverride {
|
|
|
3780
3814
|
borderWidthPopover?: GlobalValue;
|
|
3781
3815
|
borderWidthToken?: GlobalValue;
|
|
3782
3816
|
sizeVerticalInput?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3817
|
+
sizeSideNavigationItemHeight?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3783
3818
|
spaceAlertVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3784
3819
|
spaceButtonHorizontal?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3785
3820
|
spaceButtonVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -3790,6 +3825,7 @@ export declare interface TypedOverride {
|
|
|
3790
3825
|
spaceCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3791
3826
|
spaceCardVerticalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3792
3827
|
spaceTabsVertical?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3828
|
+
spaceSideNavigationItemGap?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3793
3829
|
spaceActionCardHorizontalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3794
3830
|
spaceActionCardHorizontalEmbedded?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
3795
3831
|
spaceActionCardVerticalDefault?: GlobalValue | TypedModeValueOverride<'comfortable' | 'compact'>;
|
|
@@ -1391,6 +1391,10 @@ export var preset = {
|
|
|
1391
1391
|
"light": "{colorPrimary50}",
|
|
1392
1392
|
"dark": "{colorPrimary1000}"
|
|
1393
1393
|
},
|
|
1394
|
+
"colorBackgroundSideNavigationItemActive": {
|
|
1395
|
+
"light": "transparent",
|
|
1396
|
+
"dark": "transparent"
|
|
1397
|
+
},
|
|
1394
1398
|
"colorBackgroundLayoutMain": {
|
|
1395
1399
|
"light": "{colorWhite}",
|
|
1396
1400
|
"dark": "{colorNeutral850}"
|
|
@@ -1723,6 +1727,10 @@ export var preset = {
|
|
|
1723
1727
|
"light": "{colorPrimary600}",
|
|
1724
1728
|
"dark": "{colorPrimary400}"
|
|
1725
1729
|
},
|
|
1730
|
+
"colorTextSideNavigationItemActive": {
|
|
1731
|
+
"light": "{colorTextAccent}",
|
|
1732
|
+
"dark": "{colorTextAccent}"
|
|
1733
|
+
},
|
|
1726
1734
|
"colorBorderCalendarGrid": {
|
|
1727
1735
|
"light": "transparent",
|
|
1728
1736
|
"dark": "transparent"
|
|
@@ -2900,6 +2908,10 @@ export var preset = {
|
|
|
2900
2908
|
"comfortable": "15px",
|
|
2901
2909
|
"compact": "13px"
|
|
2902
2910
|
},
|
|
2911
|
+
"sizeSideNavigationItemHeight": {
|
|
2912
|
+
"comfortable": "28px",
|
|
2913
|
+
"compact": "24px"
|
|
2914
|
+
},
|
|
2903
2915
|
"spaceAlertActionLeft": {
|
|
2904
2916
|
"comfortable": "{spaceS}",
|
|
2905
2917
|
"compact": "{spaceS}"
|
|
@@ -3180,6 +3192,14 @@ export var preset = {
|
|
|
3180
3192
|
"comfortable": "{spaceXl}",
|
|
3181
3193
|
"compact": "{spaceXl}"
|
|
3182
3194
|
},
|
|
3195
|
+
"spaceSideNavigationItemGap": {
|
|
3196
|
+
"comfortable": "0px",
|
|
3197
|
+
"compact": "0px"
|
|
3198
|
+
},
|
|
3199
|
+
"spaceSideNavigationItemCollapsedGap": {
|
|
3200
|
+
"comfortable": "{spaceXs}",
|
|
3201
|
+
"compact": "{spaceXs}"
|
|
3202
|
+
},
|
|
3183
3203
|
"spaceTileGutter": {
|
|
3184
3204
|
"comfortable": "{spaceXl}",
|
|
3185
3205
|
"compact": "{spaceM}"
|
|
@@ -3734,6 +3754,14 @@ export var preset = {
|
|
|
3734
3754
|
"comfortable": "{spaceXl}",
|
|
3735
3755
|
"compact": "{spaceXl}"
|
|
3736
3756
|
},
|
|
3757
|
+
"spaceSideNavigationItemGap": {
|
|
3758
|
+
"comfortable": "0px",
|
|
3759
|
+
"compact": "0px"
|
|
3760
|
+
},
|
|
3761
|
+
"spaceSideNavigationItemCollapsedGap": {
|
|
3762
|
+
"comfortable": "{spaceXs}",
|
|
3763
|
+
"compact": "{spaceXs}"
|
|
3764
|
+
},
|
|
3737
3765
|
"spaceTileGutter": {
|
|
3738
3766
|
"comfortable": "{spaceXl}",
|
|
3739
3767
|
"compact": "{spaceM}"
|
|
@@ -4168,6 +4196,10 @@ export var preset = {
|
|
|
4168
4196
|
"light": "{colorPrimary1000}",
|
|
4169
4197
|
"dark": "{colorPrimary1000}"
|
|
4170
4198
|
},
|
|
4199
|
+
"colorBackgroundSideNavigationItemActive": {
|
|
4200
|
+
"light": "transparent",
|
|
4201
|
+
"dark": "transparent"
|
|
4202
|
+
},
|
|
4171
4203
|
"colorBackgroundLayoutMain": {
|
|
4172
4204
|
"light": "{colorNeutral850}",
|
|
4173
4205
|
"dark": "{colorNeutral850}"
|
|
@@ -4500,6 +4532,10 @@ export var preset = {
|
|
|
4500
4532
|
"light": "{colorPrimary400}",
|
|
4501
4533
|
"dark": "{colorPrimary400}"
|
|
4502
4534
|
},
|
|
4535
|
+
"colorTextSideNavigationItemActive": {
|
|
4536
|
+
"light": "{colorTextAccent}",
|
|
4537
|
+
"dark": "{colorTextAccent}"
|
|
4538
|
+
},
|
|
4503
4539
|
"colorBorderCalendarGrid": {
|
|
4504
4540
|
"light": "transparent",
|
|
4505
4541
|
"dark": "transparent"
|
|
@@ -5777,6 +5813,10 @@ export var preset = {
|
|
|
5777
5813
|
"light": "{colorPrimary1000}",
|
|
5778
5814
|
"dark": "{colorPrimary1000}"
|
|
5779
5815
|
},
|
|
5816
|
+
"colorBackgroundSideNavigationItemActive": {
|
|
5817
|
+
"light": "transparent",
|
|
5818
|
+
"dark": "transparent"
|
|
5819
|
+
},
|
|
5780
5820
|
"colorBackgroundLayoutMain": {
|
|
5781
5821
|
"light": "{colorNeutral950}",
|
|
5782
5822
|
"dark": "{colorNeutral950}"
|
|
@@ -6109,6 +6149,10 @@ export var preset = {
|
|
|
6109
6149
|
"light": "{colorPrimary400}",
|
|
6110
6150
|
"dark": "{colorPrimary400}"
|
|
6111
6151
|
},
|
|
6152
|
+
"colorTextSideNavigationItemActive": {
|
|
6153
|
+
"light": "{colorTextAccent}",
|
|
6154
|
+
"dark": "{colorTextAccent}"
|
|
6155
|
+
},
|
|
6112
6156
|
"colorBorderCalendarGrid": {
|
|
6113
6157
|
"light": "transparent",
|
|
6114
6158
|
"dark": "transparent"
|
|
@@ -7314,6 +7358,10 @@ export var preset = {
|
|
|
7314
7358
|
"light": "{colorPrimary50}",
|
|
7315
7359
|
"dark": "{colorPrimary1000}"
|
|
7316
7360
|
},
|
|
7361
|
+
"colorBackgroundSideNavigationItemActive": {
|
|
7362
|
+
"light": "transparent",
|
|
7363
|
+
"dark": "transparent"
|
|
7364
|
+
},
|
|
7317
7365
|
"colorBackgroundLayoutMain": {
|
|
7318
7366
|
"light": "{colorWhite}",
|
|
7319
7367
|
"dark": "{colorNeutral850}"
|
|
@@ -7646,6 +7694,10 @@ export var preset = {
|
|
|
7646
7694
|
"light": "{colorPrimary600}",
|
|
7647
7695
|
"dark": "{colorPrimary400}"
|
|
7648
7696
|
},
|
|
7697
|
+
"colorTextSideNavigationItemActive": {
|
|
7698
|
+
"light": "{colorTextAccent}",
|
|
7699
|
+
"dark": "{colorTextAccent}"
|
|
7700
|
+
},
|
|
7649
7701
|
"colorBorderCalendarGrid": {
|
|
7650
7702
|
"light": "transparent",
|
|
7651
7703
|
"dark": "transparent"
|
|
@@ -8716,6 +8768,10 @@ export var preset = {
|
|
|
8716
8768
|
"light": "{colorPrimary50}",
|
|
8717
8769
|
"dark": "{colorPrimary1000}"
|
|
8718
8770
|
},
|
|
8771
|
+
"colorBackgroundSideNavigationItemActive": {
|
|
8772
|
+
"light": "transparent",
|
|
8773
|
+
"dark": "transparent"
|
|
8774
|
+
},
|
|
8719
8775
|
"colorBackgroundLayoutMain": {
|
|
8720
8776
|
"light": "{colorWhite}",
|
|
8721
8777
|
"dark": "{colorNeutral850}"
|
|
@@ -9048,6 +9104,10 @@ export var preset = {
|
|
|
9048
9104
|
"light": "{colorPrimary600}",
|
|
9049
9105
|
"dark": "{colorPrimary400}"
|
|
9050
9106
|
},
|
|
9107
|
+
"colorTextSideNavigationItemActive": {
|
|
9108
|
+
"light": "{colorTextAccent}",
|
|
9109
|
+
"dark": "{colorTextAccent}"
|
|
9110
|
+
},
|
|
9051
9111
|
"colorBorderCalendarGrid": {
|
|
9052
9112
|
"light": "transparent",
|
|
9053
9113
|
"dark": "transparent"
|
|
@@ -10118,6 +10178,10 @@ export var preset = {
|
|
|
10118
10178
|
"light": "{colorPrimary50}",
|
|
10119
10179
|
"dark": "{colorPrimary1000}"
|
|
10120
10180
|
},
|
|
10181
|
+
"colorBackgroundSideNavigationItemActive": {
|
|
10182
|
+
"light": "transparent",
|
|
10183
|
+
"dark": "transparent"
|
|
10184
|
+
},
|
|
10121
10185
|
"colorBackgroundLayoutMain": {
|
|
10122
10186
|
"light": "{colorWhite}",
|
|
10123
10187
|
"dark": "{colorNeutral850}"
|
|
@@ -10450,6 +10514,10 @@ export var preset = {
|
|
|
10450
10514
|
"light": "{colorPrimary600}",
|
|
10451
10515
|
"dark": "{colorPrimary400}"
|
|
10452
10516
|
},
|
|
10517
|
+
"colorTextSideNavigationItemActive": {
|
|
10518
|
+
"light": "{colorTextAccent}",
|
|
10519
|
+
"dark": "{colorTextAccent}"
|
|
10520
|
+
},
|
|
10453
10521
|
"colorBorderCalendarGrid": {
|
|
10454
10522
|
"light": "transparent",
|
|
10455
10523
|
"dark": "transparent"
|
|
@@ -11522,6 +11590,10 @@ export var preset = {
|
|
|
11522
11590
|
"light": "{colorPrimary1000}",
|
|
11523
11591
|
"dark": "{colorPrimary1000}"
|
|
11524
11592
|
},
|
|
11593
|
+
"colorBackgroundSideNavigationItemActive": {
|
|
11594
|
+
"light": "transparent",
|
|
11595
|
+
"dark": "transparent"
|
|
11596
|
+
},
|
|
11525
11597
|
"colorBackgroundLayoutMain": {
|
|
11526
11598
|
"light": "{colorNeutral850}",
|
|
11527
11599
|
"dark": "{colorNeutral850}"
|
|
@@ -11854,6 +11926,10 @@ export var preset = {
|
|
|
11854
11926
|
"light": "{colorPrimary400}",
|
|
11855
11927
|
"dark": "{colorPrimary400}"
|
|
11856
11928
|
},
|
|
11929
|
+
"colorTextSideNavigationItemActive": {
|
|
11930
|
+
"light": "{colorTextAccent}",
|
|
11931
|
+
"dark": "{colorTextAccent}"
|
|
11932
|
+
},
|
|
11857
11933
|
"colorBorderCalendarGrid": {
|
|
11858
11934
|
"light": "transparent",
|
|
11859
11935
|
"dark": "transparent"
|
|
@@ -13042,6 +13118,7 @@ export var preset = {
|
|
|
13042
13118
|
"colorBackgroundInputDefault": "color",
|
|
13043
13119
|
"colorBackgroundInputDisabled": "color",
|
|
13044
13120
|
"colorBackgroundItemSelected": "color",
|
|
13121
|
+
"colorBackgroundSideNavigationItemActive": "color",
|
|
13045
13122
|
"colorBackgroundLayoutMain": "color",
|
|
13046
13123
|
"colorBackgroundDrawer": "color",
|
|
13047
13124
|
"colorBackgroundDrawerBackdrop": "color",
|
|
@@ -13125,6 +13202,7 @@ export var preset = {
|
|
|
13125
13202
|
"colorBorderButtonPrimaryHover": "color",
|
|
13126
13203
|
"colorTextButtonPrimaryDisabled": "color",
|
|
13127
13204
|
"colorItemSelected": "color",
|
|
13205
|
+
"colorTextSideNavigationItemActive": "color",
|
|
13128
13206
|
"colorBorderCalendarGrid": "color",
|
|
13129
13207
|
"colorBorderCalendarGridSelectedFocusRing": "color",
|
|
13130
13208
|
"colorBorderCellShaded": "color",
|
|
@@ -13384,6 +13462,7 @@ export var preset = {
|
|
|
13384
13462
|
"sizeTableSelectionHorizontal": "density",
|
|
13385
13463
|
"sizeVerticalInput": "density",
|
|
13386
13464
|
"sizeVerticalPanelIconOffset": "density",
|
|
13465
|
+
"sizeSideNavigationItemHeight": "density",
|
|
13387
13466
|
"spaceAlertActionLeft": "density",
|
|
13388
13467
|
"spaceAlertHorizontal": "density",
|
|
13389
13468
|
"spaceAlertMessageRight": "density",
|
|
@@ -13454,6 +13533,8 @@ export var preset = {
|
|
|
13454
13533
|
"spaceTableHeaderToolsFullPageBottom": "density",
|
|
13455
13534
|
"spaceTableHorizontal": "density",
|
|
13456
13535
|
"spaceTreeViewIndentation": "density",
|
|
13536
|
+
"spaceSideNavigationItemGap": "density",
|
|
13537
|
+
"spaceSideNavigationItemCollapsedGap": "density",
|
|
13457
13538
|
"spaceTileGutter": "density",
|
|
13458
13539
|
"spaceActionCardHorizontalDefault": "density",
|
|
13459
13540
|
"spaceActionCardHorizontalEmbedded": "density",
|
|
@@ -13854,6 +13935,7 @@ export var preset = {
|
|
|
13854
13935
|
"colorBackgroundInputDefault",
|
|
13855
13936
|
"colorBackgroundInputDisabled",
|
|
13856
13937
|
"colorBackgroundItemSelected",
|
|
13938
|
+
"colorBackgroundSideNavigationItemActive",
|
|
13857
13939
|
"colorBackgroundLayoutMain",
|
|
13858
13940
|
"colorBackgroundLayoutPanel",
|
|
13859
13941
|
"colorBackgroundLayoutToolbar",
|
|
@@ -13914,6 +13996,7 @@ export var preset = {
|
|
|
13914
13996
|
"colorBorderButtonPrimaryHover",
|
|
13915
13997
|
"colorTextButtonPrimaryDisabled",
|
|
13916
13998
|
"colorItemSelected",
|
|
13999
|
+
"colorTextSideNavigationItemActive",
|
|
13917
14000
|
"colorBorderCard",
|
|
13918
14001
|
"colorBorderContainerTop",
|
|
13919
14002
|
"colorBorderControlDefault",
|
|
@@ -14143,6 +14226,7 @@ export var preset = {
|
|
|
14143
14226
|
"borderWidthPopover",
|
|
14144
14227
|
"borderWidthToken",
|
|
14145
14228
|
"sizeVerticalInput",
|
|
14229
|
+
"sizeSideNavigationItemHeight",
|
|
14146
14230
|
"spaceAlertVertical",
|
|
14147
14231
|
"spaceButtonHorizontal",
|
|
14148
14232
|
"spaceButtonVertical",
|
|
@@ -14153,6 +14237,7 @@ export var preset = {
|
|
|
14153
14237
|
"spaceCardVerticalDefault",
|
|
14154
14238
|
"spaceCardVerticalEmbedded",
|
|
14155
14239
|
"spaceTabsVertical",
|
|
14240
|
+
"spaceSideNavigationItemGap",
|
|
14156
14241
|
"spaceActionCardHorizontalDefault",
|
|
14157
14242
|
"spaceActionCardHorizontalEmbedded",
|
|
14158
14243
|
"spaceActionCardVerticalDefault",
|
|
@@ -14367,6 +14452,7 @@ export var preset = {
|
|
|
14367
14452
|
"colorBackgroundInputDefault",
|
|
14368
14453
|
"colorBackgroundInputDisabled",
|
|
14369
14454
|
"colorBackgroundItemSelected",
|
|
14455
|
+
"colorBackgroundSideNavigationItemActive",
|
|
14370
14456
|
"colorBackgroundLayoutMain",
|
|
14371
14457
|
"colorBackgroundLayoutPanel",
|
|
14372
14458
|
"colorBackgroundLayoutToolbar",
|
|
@@ -14426,6 +14512,7 @@ export var preset = {
|
|
|
14426
14512
|
"colorBorderButtonPrimaryHover",
|
|
14427
14513
|
"colorTextButtonPrimaryDisabled",
|
|
14428
14514
|
"colorItemSelected",
|
|
14515
|
+
"colorTextSideNavigationItemActive",
|
|
14429
14516
|
"colorBorderCard",
|
|
14430
14517
|
"colorBorderContainerTop",
|
|
14431
14518
|
"colorBorderControlDefault",
|
|
@@ -14653,6 +14740,7 @@ export var preset = {
|
|
|
14653
14740
|
"motionKeyframesStatusIconError",
|
|
14654
14741
|
"motionKeyframesScalePopup",
|
|
14655
14742
|
"sizeVerticalInput",
|
|
14743
|
+
"sizeSideNavigationItemHeight",
|
|
14656
14744
|
"spaceAlertVertical",
|
|
14657
14745
|
"spaceButtonHorizontal",
|
|
14658
14746
|
"spaceButtonVertical",
|
|
@@ -14666,6 +14754,7 @@ export var preset = {
|
|
|
14666
14754
|
"spaceFieldHorizontal",
|
|
14667
14755
|
"spaceTabsVertical",
|
|
14668
14756
|
"spaceTreeViewIndentation",
|
|
14757
|
+
"spaceSideNavigationItemGap",
|
|
14669
14758
|
"spaceActionCardHorizontalDefault",
|
|
14670
14759
|
"spaceActionCardHorizontalEmbedded",
|
|
14671
14760
|
"spaceActionCardVerticalDefault",
|
|
@@ -15032,6 +15121,7 @@ export var preset = {
|
|
|
15032
15121
|
"colorBackgroundInputDefault": "color-background-input-default",
|
|
15033
15122
|
"colorBackgroundInputDisabled": "color-background-input-disabled",
|
|
15034
15123
|
"colorBackgroundItemSelected": "color-background-item-selected",
|
|
15124
|
+
"colorBackgroundSideNavigationItemActive": "color-background-side-navigation-item-active",
|
|
15035
15125
|
"colorBackgroundLayoutMain": "color-background-layout-main",
|
|
15036
15126
|
"colorBackgroundDrawer": "color-background-drawer",
|
|
15037
15127
|
"colorBackgroundDrawerBackdrop": "color-background-drawer-backdrop",
|
|
@@ -15115,6 +15205,7 @@ export var preset = {
|
|
|
15115
15205
|
"colorBorderButtonPrimaryHover": "color-border-button-primary-hover",
|
|
15116
15206
|
"colorTextButtonPrimaryDisabled": "color-text-button-primary-disabled",
|
|
15117
15207
|
"colorItemSelected": "color-item-selected",
|
|
15208
|
+
"colorTextSideNavigationItemActive": "color-text-side-navigation-item-active",
|
|
15118
15209
|
"colorBorderCalendarGrid": "color-border-calendar-grid",
|
|
15119
15210
|
"colorBorderCalendarGridSelectedFocusRing": "color-border-calendar-grid-selected-focus-ring",
|
|
15120
15211
|
"colorBorderCellShaded": "color-border-cell-shaded",
|
|
@@ -15515,6 +15606,7 @@ export var preset = {
|
|
|
15515
15606
|
"sizeTableSelectionHorizontal": "size-table-selection-horizontal",
|
|
15516
15607
|
"sizeVerticalInput": "size-vertical-input",
|
|
15517
15608
|
"sizeVerticalPanelIconOffset": "size-vertical-panel-icon-offset",
|
|
15609
|
+
"sizeSideNavigationItemHeight": "size-side-navigation-item-height",
|
|
15518
15610
|
"spaceAlertActionLeft": "space-alert-action-left",
|
|
15519
15611
|
"spaceAlertHorizontal": "space-alert-horizontal",
|
|
15520
15612
|
"spaceAlertMessageRight": "space-alert-message-right",
|
|
@@ -15585,6 +15677,8 @@ export var preset = {
|
|
|
15585
15677
|
"spaceTableHeaderToolsFullPageBottom": "space-table-header-tools-full-page-bottom",
|
|
15586
15678
|
"spaceTableHorizontal": "space-table-horizontal",
|
|
15587
15679
|
"spaceTreeViewIndentation": "space-tree-view-indentation",
|
|
15680
|
+
"spaceSideNavigationItemGap": "space-side-navigation-item-gap",
|
|
15681
|
+
"spaceSideNavigationItemCollapsedGap": "space-side-navigation-item-collapsed-gap",
|
|
15588
15682
|
"spaceTileGutter": "space-tile-gutter",
|
|
15589
15683
|
"spaceActionCardHorizontalDefault": "space-action-card-horizontal-default",
|
|
15590
15684
|
"spaceActionCardHorizontalEmbedded": "space-action-card-horizontal-embedded",
|
|
@@ -15992,6 +16086,7 @@ export var preset = {
|
|
|
15992
16086
|
"colorBackgroundInputDefault": "--color-background-input-default-ifz5bb",
|
|
15993
16087
|
"colorBackgroundInputDisabled": "--color-background-input-disabled-dihaja",
|
|
15994
16088
|
"colorBackgroundItemSelected": "--color-background-item-selected-9gppru",
|
|
16089
|
+
"colorBackgroundSideNavigationItemActive": "--color-background-side-navigation-item-active-adfprg",
|
|
15995
16090
|
"colorBackgroundLayoutMain": "--color-background-layout-main-5ilwcb",
|
|
15996
16091
|
"colorBackgroundDrawer": "--color-background-drawer-5hs0eh",
|
|
15997
16092
|
"colorBackgroundDrawerBackdrop": "--color-background-drawer-backdrop-ducxi3",
|
|
@@ -16075,6 +16170,7 @@ export var preset = {
|
|
|
16075
16170
|
"colorBorderButtonPrimaryHover": "--color-border-button-primary-hover-rktx0f",
|
|
16076
16171
|
"colorTextButtonPrimaryDisabled": "--color-text-button-primary-disabled-q79gms",
|
|
16077
16172
|
"colorItemSelected": "--color-item-selected-72rnwy",
|
|
16173
|
+
"colorTextSideNavigationItemActive": "--color-text-side-navigation-item-active-w3c4dj",
|
|
16078
16174
|
"colorBorderCalendarGrid": "--color-border-calendar-grid-67r4w4",
|
|
16079
16175
|
"colorBorderCalendarGridSelectedFocusRing": "--color-border-calendar-grid-selected-focus-ring-jk1fb0",
|
|
16080
16176
|
"colorBorderCellShaded": "--color-border-cell-shaded-0ipazf",
|
|
@@ -16475,6 +16571,7 @@ export var preset = {
|
|
|
16475
16571
|
"sizeTableSelectionHorizontal": "--size-table-selection-horizontal-qqiajd",
|
|
16476
16572
|
"sizeVerticalInput": "--size-vertical-input-p1d7xx",
|
|
16477
16573
|
"sizeVerticalPanelIconOffset": "--size-vertical-panel-icon-offset-z959cw",
|
|
16574
|
+
"sizeSideNavigationItemHeight": "--size-side-navigation-item-height-lokap3",
|
|
16478
16575
|
"spaceAlertActionLeft": "--space-alert-action-left-4s8zo5",
|
|
16479
16576
|
"spaceAlertHorizontal": "--space-alert-horizontal-ul364s",
|
|
16480
16577
|
"spaceAlertMessageRight": "--space-alert-message-right-mrjbnn",
|
|
@@ -16545,6 +16642,8 @@ export var preset = {
|
|
|
16545
16642
|
"spaceTableHeaderToolsFullPageBottom": "--space-table-header-tools-full-page-bottom-9m47g6",
|
|
16546
16643
|
"spaceTableHorizontal": "--space-table-horizontal-suurzj",
|
|
16547
16644
|
"spaceTreeViewIndentation": "--space-tree-view-indentation-xh9kis",
|
|
16645
|
+
"spaceSideNavigationItemGap": "--space-side-navigation-item-gap-5vlwdw",
|
|
16646
|
+
"spaceSideNavigationItemCollapsedGap": "--space-side-navigation-item-collapsed-gap-d9lti2",
|
|
16548
16647
|
"spaceTileGutter": "--space-tile-gutter-bi2bdv",
|
|
16549
16648
|
"spaceActionCardHorizontalDefault": "--space-action-card-horizontal-default-su1e86",
|
|
16550
16649
|
"spaceActionCardHorizontalEmbedded": "--space-action-card-horizontal-embedded-pb8pj4",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-container-breakpoints.d.ts","sourceRoot":"","sources":["../../../../../src/internal/hooks/container-queries/use-container-breakpoints.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,UAAU,EAAyB,MAAM,mBAAmB,CAAC;AAEtE;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CAAC,CAAC,SAAS,SAAS,UAAU,EAAE,EAAE,CAAC,SAAS,OAAO,GAAG,GAAG,EAAE,QAAQ,CAAC,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"use-container-breakpoints.d.ts","sourceRoot":"","sources":["../../../../../src/internal/hooks/container-queries/use-container-breakpoints.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,UAAU,EAAyB,MAAM,mBAAmB,CAAC;AAEtE;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CAAC,CAAC,SAAS,SAAS,UAAU,EAAE,EAAE,CAAC,SAAS,OAAO,GAAG,GAAG,EAAE,QAAQ,CAAC,EAAE,CAAC,GAOvG,CAAC,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAClD"}
|