@carbon/themes 11.71.0 → 11.72.0
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/es/index.js +205 -235
- package/lib/index.js +619 -651
- package/package.json +6 -6
- package/scss/generated/_themes.scss +8 -0
- package/scss/generated/_tokens.scss +6 -0
- package/src/g10.js +4 -0
- package/src/g100.js +4 -0
- package/src/g90.js +5 -1
- package/src/tokens/v11TokenGroup.js +2 -0
- package/src/white.js +4 -0
- package/umd/index.js +1023 -1051
package/es/index.js
CHANGED
|
@@ -2,23 +2,17 @@ import { black, blue10, blue100, blue20, blue20Hover, blue30, blue40, blue50, bl
|
|
|
2
2
|
import Color from "color";
|
|
3
3
|
import { body01, body02, bodyCompact01, bodyCompact02, bodyLong01, bodyLong01 as bodyLong01$1, bodyLong02, bodyLong02 as bodyLong02$1, bodyShort01, bodyShort01 as bodyShort01$1, bodyShort02, bodyShort02 as bodyShort02$1, caption01, caption01 as caption01$1, caption02, caption02 as caption02$1, code01, code01 as code01$1, code02, code02 as code02$1, display01, display01 as display01$1, display02, display02 as display02$1, display03, display03 as display03$1, display04, display04 as display04$1, expressiveHeading01, expressiveHeading01 as expressiveHeading01$1, expressiveHeading02, expressiveHeading02 as expressiveHeading02$1, expressiveHeading03, expressiveHeading03 as expressiveHeading03$1, expressiveHeading04, expressiveHeading04 as expressiveHeading04$1, expressiveHeading05, expressiveHeading05 as expressiveHeading05$1, expressiveHeading06, expressiveHeading06 as expressiveHeading06$1, expressiveParagraph01, expressiveParagraph01 as expressiveParagraph01$1, fluidDisplay01, fluidDisplay02, fluidDisplay03, fluidDisplay04, fluidHeading03, fluidHeading04, fluidHeading05, fluidHeading06, fluidParagraph01, fluidQuotation01, fluidQuotation02, heading01, heading01 as heading01$1, heading02, heading02 as heading02$1, heading03, heading04, heading05, heading06, heading07, headingCompact01, headingCompact02, helperText01, helperText01 as helperText01$1, helperText02, helperText02 as helperText02$1, label01, label01 as label01$1, label02, label02 as label02$1, legal01, legal02, productiveHeading01, productiveHeading01 as productiveHeading01$1, productiveHeading02, productiveHeading02 as productiveHeading02$1, productiveHeading03, productiveHeading03 as productiveHeading03$1, productiveHeading04, productiveHeading04 as productiveHeading04$1, productiveHeading05, productiveHeading05 as productiveHeading05$1, productiveHeading06, productiveHeading06 as productiveHeading06$1, productiveHeading07, productiveHeading07 as productiveHeading07$1, quotation01, quotation01 as quotation01$1, quotation02, quotation02 as quotation02$1, unstable_tokens } from "@carbon/type";
|
|
4
4
|
import { container01, container01 as container01$1, container02, container02 as container02$1, container03, container03 as container03$1, container04, container04 as container04$1, container05, container05 as container05$1, fluidSpacing01, fluidSpacing01 as fluidSpacing01$1, fluidSpacing02, fluidSpacing02 as fluidSpacing02$1, fluidSpacing03, fluidSpacing03 as fluidSpacing03$1, fluidSpacing04, fluidSpacing04 as fluidSpacing04$1, iconSize01, iconSize01 as iconSize01$1, iconSize02, iconSize02 as iconSize02$1, layout01, layout01 as layout01$1, layout02, layout02 as layout02$1, layout03, layout03 as layout03$1, layout04, layout04 as layout04$1, layout05, layout05 as layout05$1, layout06, layout06 as layout06$1, layout07, layout07 as layout07$1, size2XLarge, size2XLarge as size2XLarge$1, sizeLarge, sizeLarge as sizeLarge$1, sizeMedium, sizeMedium as sizeMedium$1, sizeSmall, sizeSmall as sizeSmall$1, sizeXLarge, sizeXLarge as sizeXLarge$1, sizeXSmall, sizeXSmall as sizeXSmall$1, spacing01, spacing01 as spacing01$1, spacing02, spacing02 as spacing02$1, spacing03, spacing03 as spacing03$1, spacing04, spacing04 as spacing04$1, spacing05, spacing05 as spacing05$1, spacing06, spacing06 as spacing06$1, spacing07, spacing07 as spacing07$1, spacing08, spacing08 as spacing08$1, spacing09, spacing09 as spacing09$1, spacing10, spacing10 as spacing10$1, spacing11, spacing11 as spacing11$1, spacing12, spacing12 as spacing12$1, spacing13, spacing13 as spacing13$1, unstable_tokens as unstable_tokens$1 } from "@carbon/layout";
|
|
5
|
-
|
|
6
5
|
//#region \0rolldown/runtime.js
|
|
7
6
|
var __defProp = Object.defineProperty;
|
|
8
7
|
var __exportAll = (all, no_symbols) => {
|
|
9
8
|
let target = {};
|
|
10
|
-
for (var name in all) {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
if (!no_symbols) {
|
|
17
|
-
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
18
|
-
}
|
|
9
|
+
for (var name in all) __defProp(target, name, {
|
|
10
|
+
get: all[name],
|
|
11
|
+
enumerable: true
|
|
12
|
+
});
|
|
13
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
19
14
|
return target;
|
|
20
15
|
};
|
|
21
|
-
|
|
22
16
|
//#endregion
|
|
23
17
|
//#region src/tools.js
|
|
24
18
|
/**
|
|
@@ -90,7 +84,6 @@ function formatTokenName(token) {
|
|
|
90
84
|
}
|
|
91
85
|
return string;
|
|
92
86
|
}
|
|
93
|
-
|
|
94
87
|
//#endregion
|
|
95
88
|
//#region src/white.js
|
|
96
89
|
/**
|
|
@@ -333,6 +326,7 @@ var white_exports = /* @__PURE__ */ __exportAll({
|
|
|
333
326
|
syntaxDefinition: () => syntaxDefinition,
|
|
334
327
|
syntaxDefinitionKeyword: () => syntaxDefinitionKeyword,
|
|
335
328
|
syntaxDefinitionOperator: () => syntaxDefinitionOperator,
|
|
329
|
+
syntaxDeleted: () => syntaxDeleted,
|
|
336
330
|
syntaxDerefOperator: () => syntaxDerefOperator,
|
|
337
331
|
syntaxDocComment: () => syntaxDocComment,
|
|
338
332
|
syntaxDocString: () => syntaxDocString,
|
|
@@ -348,6 +342,7 @@ var white_exports = /* @__PURE__ */ __exportAll({
|
|
|
348
342
|
syntaxHeading4: () => syntaxHeading4,
|
|
349
343
|
syntaxHeading5: () => syntaxHeading5,
|
|
350
344
|
syntaxHeading6: () => syntaxHeading6,
|
|
345
|
+
syntaxInserted: () => syntaxInserted,
|
|
351
346
|
syntaxInteger: () => syntaxInteger,
|
|
352
347
|
syntaxInvalid: () => syntaxInvalid,
|
|
353
348
|
syntaxKeyword: () => syntaxKeyword,
|
|
@@ -596,6 +591,8 @@ const syntaxFunction = yellow60;
|
|
|
596
591
|
const syntaxStandard = blue60;
|
|
597
592
|
const syntaxLocal = blue60;
|
|
598
593
|
const syntaxSpecial = blue60;
|
|
594
|
+
const syntaxInserted = green20;
|
|
595
|
+
const syntaxDeleted = red20;
|
|
599
596
|
const aiInnerShadow = rgba(blue50, .1);
|
|
600
597
|
const aiAuraStartSm = rgba(blue50, .16);
|
|
601
598
|
const aiAuraStart = rgba(blue50, .1);
|
|
@@ -638,7 +635,6 @@ const chatButtonTextHover = linkPrimaryHover;
|
|
|
638
635
|
const chatButtonActive = backgroundActive;
|
|
639
636
|
const chatButtonSelected = backgroundSelected;
|
|
640
637
|
const chatButtonTextSelected = textSecondary;
|
|
641
|
-
|
|
642
638
|
//#endregion
|
|
643
639
|
//#region src/g10.js
|
|
644
640
|
/**
|
|
@@ -881,6 +877,7 @@ var g10_exports = /* @__PURE__ */ __exportAll({
|
|
|
881
877
|
syntaxDefinition: () => syntaxDefinition$3,
|
|
882
878
|
syntaxDefinitionKeyword: () => syntaxDefinitionKeyword$3,
|
|
883
879
|
syntaxDefinitionOperator: () => syntaxDefinitionOperator$3,
|
|
880
|
+
syntaxDeleted: () => syntaxDeleted$3,
|
|
884
881
|
syntaxDerefOperator: () => syntaxDerefOperator$3,
|
|
885
882
|
syntaxDocComment: () => syntaxDocComment$3,
|
|
886
883
|
syntaxDocString: () => syntaxDocString$3,
|
|
@@ -896,6 +893,7 @@ var g10_exports = /* @__PURE__ */ __exportAll({
|
|
|
896
893
|
syntaxHeading4: () => syntaxHeading4$3,
|
|
897
894
|
syntaxHeading5: () => syntaxHeading5$3,
|
|
898
895
|
syntaxHeading6: () => syntaxHeading6$3,
|
|
896
|
+
syntaxInserted: () => syntaxInserted$3,
|
|
899
897
|
syntaxInteger: () => syntaxInteger$3,
|
|
900
898
|
syntaxInvalid: () => syntaxInvalid$3,
|
|
901
899
|
syntaxKeyword: () => syntaxKeyword$3,
|
|
@@ -1144,6 +1142,8 @@ const syntaxFunction$3 = yellow60;
|
|
|
1144
1142
|
const syntaxStandard$3 = blue60;
|
|
1145
1143
|
const syntaxLocal$3 = blue60;
|
|
1146
1144
|
const syntaxSpecial$3 = blue60;
|
|
1145
|
+
const syntaxInserted$3 = green20;
|
|
1146
|
+
const syntaxDeleted$3 = red20;
|
|
1147
1147
|
const aiInnerShadow$3 = rgba(blue50, .1);
|
|
1148
1148
|
const aiAuraStartSm$3 = rgba(blue50, .16);
|
|
1149
1149
|
const aiAuraStart$3 = rgba(blue50, .1);
|
|
@@ -1186,7 +1186,6 @@ const chatButtonTextHover$3 = linkPrimaryHover$7;
|
|
|
1186
1186
|
const chatButtonActive$3 = backgroundActive$7;
|
|
1187
1187
|
const chatButtonSelected$3 = backgroundSelected$7;
|
|
1188
1188
|
const chatButtonTextSelected$3 = textSecondary$7;
|
|
1189
|
-
|
|
1190
1189
|
//#endregion
|
|
1191
1190
|
//#region src/g90.js
|
|
1192
1191
|
/**
|
|
@@ -1429,6 +1428,7 @@ var g90_exports = /* @__PURE__ */ __exportAll({
|
|
|
1429
1428
|
syntaxDefinition: () => syntaxDefinition$2,
|
|
1430
1429
|
syntaxDefinitionKeyword: () => syntaxDefinitionKeyword$2,
|
|
1431
1430
|
syntaxDefinitionOperator: () => syntaxDefinitionOperator$2,
|
|
1431
|
+
syntaxDeleted: () => syntaxDeleted$2,
|
|
1432
1432
|
syntaxDerefOperator: () => syntaxDerefOperator$2,
|
|
1433
1433
|
syntaxDocComment: () => syntaxDocComment$2,
|
|
1434
1434
|
syntaxDocString: () => syntaxDocString$2,
|
|
@@ -1444,6 +1444,7 @@ var g90_exports = /* @__PURE__ */ __exportAll({
|
|
|
1444
1444
|
syntaxHeading4: () => syntaxHeading4$2,
|
|
1445
1445
|
syntaxHeading5: () => syntaxHeading5$2,
|
|
1446
1446
|
syntaxHeading6: () => syntaxHeading6$2,
|
|
1447
|
+
syntaxInserted: () => syntaxInserted$2,
|
|
1447
1448
|
syntaxInteger: () => syntaxInteger$2,
|
|
1448
1449
|
syntaxInvalid: () => syntaxInvalid$2,
|
|
1449
1450
|
syntaxKeyword: () => syntaxKeyword$2,
|
|
@@ -1692,6 +1693,8 @@ const syntaxFunction$2 = yellow30;
|
|
|
1692
1693
|
const syntaxStandard$2 = blue50;
|
|
1693
1694
|
const syntaxLocal$2 = blue30;
|
|
1694
1695
|
const syntaxSpecial$2 = blue50;
|
|
1696
|
+
const syntaxInserted$2 = green60;
|
|
1697
|
+
const syntaxDeleted$2 = red70;
|
|
1695
1698
|
const aiInnerShadow$2 = rgba(blue50, .16);
|
|
1696
1699
|
const aiAuraStartSm$2 = rgba(blue50, .16);
|
|
1697
1700
|
const aiAuraStart$2 = rgba(blue50, .1);
|
|
@@ -1734,7 +1737,6 @@ const chatButtonTextHover$2 = linkPrimaryHover$6;
|
|
|
1734
1737
|
const chatButtonActive$2 = backgroundActive$6;
|
|
1735
1738
|
const chatButtonSelected$2 = backgroundSelected$6;
|
|
1736
1739
|
const chatButtonTextSelected$2 = textSecondary$6;
|
|
1737
|
-
|
|
1738
1740
|
//#endregion
|
|
1739
1741
|
//#region src/g100.js
|
|
1740
1742
|
/**
|
|
@@ -1977,6 +1979,7 @@ var g100_exports = /* @__PURE__ */ __exportAll({
|
|
|
1977
1979
|
syntaxDefinition: () => syntaxDefinition$1,
|
|
1978
1980
|
syntaxDefinitionKeyword: () => syntaxDefinitionKeyword$1,
|
|
1979
1981
|
syntaxDefinitionOperator: () => syntaxDefinitionOperator$1,
|
|
1982
|
+
syntaxDeleted: () => syntaxDeleted$1,
|
|
1980
1983
|
syntaxDerefOperator: () => syntaxDerefOperator$1,
|
|
1981
1984
|
syntaxDocComment: () => syntaxDocComment$1,
|
|
1982
1985
|
syntaxDocString: () => syntaxDocString$1,
|
|
@@ -1992,6 +1995,7 @@ var g100_exports = /* @__PURE__ */ __exportAll({
|
|
|
1992
1995
|
syntaxHeading4: () => syntaxHeading4$1,
|
|
1993
1996
|
syntaxHeading5: () => syntaxHeading5$1,
|
|
1994
1997
|
syntaxHeading6: () => syntaxHeading6$1,
|
|
1998
|
+
syntaxInserted: () => syntaxInserted$1,
|
|
1995
1999
|
syntaxInteger: () => syntaxInteger$1,
|
|
1996
2000
|
syntaxInvalid: () => syntaxInvalid$1,
|
|
1997
2001
|
syntaxKeyword: () => syntaxKeyword$1,
|
|
@@ -2240,6 +2244,8 @@ const syntaxFunction$1 = yellow30;
|
|
|
2240
2244
|
const syntaxStandard$1 = blue50;
|
|
2241
2245
|
const syntaxLocal$1 = blue30;
|
|
2242
2246
|
const syntaxSpecial$1 = blue50;
|
|
2247
|
+
const syntaxInserted$1 = green60;
|
|
2248
|
+
const syntaxDeleted$1 = red70;
|
|
2243
2249
|
const aiInnerShadow$1 = rgba(blue50, .16);
|
|
2244
2250
|
const aiAuraStartSm$1 = rgba(blue50, .16);
|
|
2245
2251
|
const aiAuraStart$1 = rgba(blue50, .1);
|
|
@@ -2282,7 +2288,6 @@ const chatButtonTextHover$1 = linkPrimaryHover$5;
|
|
|
2282
2288
|
const chatButtonActive$1 = backgroundActive$5;
|
|
2283
2289
|
const chatButtonSelected$1 = backgroundSelected$5;
|
|
2284
2290
|
const chatButtonTextSelected$1 = textSecondary$5;
|
|
2285
|
-
|
|
2286
2291
|
//#endregion
|
|
2287
2292
|
//#region src/v10/white.js
|
|
2288
2293
|
/**
|
|
@@ -2682,7 +2687,6 @@ const brand03$3 = interactive03$3;
|
|
|
2682
2687
|
const active01$3 = activeUI$3;
|
|
2683
2688
|
const hoverField$3 = hoverUI$3;
|
|
2684
2689
|
const danger$3 = danger01$3;
|
|
2685
|
-
|
|
2686
2690
|
//#endregion
|
|
2687
2691
|
//#region src/v10/g10.js
|
|
2688
2692
|
/**
|
|
@@ -3082,7 +3086,6 @@ const brand03$2 = interactive03$2;
|
|
|
3082
3086
|
const active01$2 = activeUI$2;
|
|
3083
3087
|
const hoverField$2 = hoverUI$2;
|
|
3084
3088
|
const danger$2 = danger01$2;
|
|
3085
|
-
|
|
3086
3089
|
//#endregion
|
|
3087
3090
|
//#region src/v10/g90.js
|
|
3088
3091
|
/**
|
|
@@ -3482,7 +3485,6 @@ const brand03$1 = interactive03$1;
|
|
|
3482
3485
|
const active01$1 = activeUI$1;
|
|
3483
3486
|
const hoverField$1 = hoverUI$1;
|
|
3484
3487
|
const danger$1 = danger01$1;
|
|
3485
|
-
|
|
3486
3488
|
//#endregion
|
|
3487
3489
|
//#region src/v10/g100.js
|
|
3488
3490
|
/**
|
|
@@ -3882,170 +3884,159 @@ const brand03 = interactive03;
|
|
|
3882
3884
|
const active01 = activeUI;
|
|
3883
3885
|
const hoverField = hoverUI;
|
|
3884
3886
|
const danger = danger01;
|
|
3885
|
-
|
|
3886
|
-
//#endregion
|
|
3887
|
-
//#region src/v10/tokens.js
|
|
3888
|
-
/**
|
|
3889
|
-
* Copyright IBM Corp. 2018, 2023
|
|
3890
|
-
*
|
|
3891
|
-
* This source code is licensed under the Apache-2.0 license found in the
|
|
3892
|
-
* LICENSE file in the root directory of this source tree.
|
|
3893
|
-
*/
|
|
3894
|
-
const colors = [
|
|
3895
|
-
"interactive01",
|
|
3896
|
-
"interactive02",
|
|
3897
|
-
"interactive03",
|
|
3898
|
-
"interactive04",
|
|
3899
|
-
"uiBackground",
|
|
3900
|
-
"ui01",
|
|
3901
|
-
"ui02",
|
|
3902
|
-
"ui03",
|
|
3903
|
-
"ui04",
|
|
3904
|
-
"ui05",
|
|
3905
|
-
"text01",
|
|
3906
|
-
"text02",
|
|
3907
|
-
"text03",
|
|
3908
|
-
"text04",
|
|
3909
|
-
"text05",
|
|
3910
|
-
"textError",
|
|
3911
|
-
"icon01",
|
|
3912
|
-
"icon02",
|
|
3913
|
-
"icon03",
|
|
3914
|
-
"link01",
|
|
3915
|
-
"link02",
|
|
3916
|
-
"inverseLink",
|
|
3917
|
-
"field01",
|
|
3918
|
-
"field02",
|
|
3919
|
-
"inverse01",
|
|
3920
|
-
"inverse02",
|
|
3921
|
-
"support01",
|
|
3922
|
-
"support02",
|
|
3923
|
-
"support03",
|
|
3924
|
-
"support04",
|
|
3925
|
-
"inverseSupport01",
|
|
3926
|
-
"inverseSupport02",
|
|
3927
|
-
"inverseSupport03",
|
|
3928
|
-
"inverseSupport04",
|
|
3929
|
-
"overlay01",
|
|
3930
|
-
"danger01",
|
|
3931
|
-
"danger02",
|
|
3932
|
-
"focus",
|
|
3933
|
-
"inverseFocusUi",
|
|
3934
|
-
"hoverPrimary",
|
|
3935
|
-
"activePrimary",
|
|
3936
|
-
"hoverPrimaryText",
|
|
3937
|
-
"hoverSecondary",
|
|
3938
|
-
"activeSecondary",
|
|
3939
|
-
"hoverTertiary",
|
|
3940
|
-
"activeTertiary",
|
|
3941
|
-
"hoverUI",
|
|
3942
|
-
"hoverLightUI",
|
|
3943
|
-
"hoverSelectedUI",
|
|
3944
|
-
"activeUI",
|
|
3945
|
-
"activeLightUI",
|
|
3946
|
-
"selectedUI",
|
|
3947
|
-
"selectedLightUI",
|
|
3948
|
-
"inverseHoverUI",
|
|
3949
|
-
"hoverDanger",
|
|
3950
|
-
"activeDanger",
|
|
3951
|
-
"hoverRow",
|
|
3952
|
-
"visitedLink",
|
|
3953
|
-
"disabled01",
|
|
3954
|
-
"disabled02",
|
|
3955
|
-
"disabled03",
|
|
3956
|
-
"highlight",
|
|
3957
|
-
"decorative01",
|
|
3958
|
-
"buttonSeparator",
|
|
3959
|
-
"skeleton01",
|
|
3960
|
-
"skeleton02",
|
|
3961
|
-
"background",
|
|
3962
|
-
"layer",
|
|
3963
|
-
"layerAccent",
|
|
3964
|
-
"layerAccentHover",
|
|
3965
|
-
"layerAccentActive",
|
|
3966
|
-
"field",
|
|
3967
|
-
"backgroundInverse",
|
|
3968
|
-
"backgroundBrand",
|
|
3969
|
-
"interactive",
|
|
3970
|
-
"borderSubtle",
|
|
3971
|
-
"borderStrong",
|
|
3972
|
-
"borderInverse",
|
|
3973
|
-
"borderInteractive",
|
|
3974
|
-
"textPrimary",
|
|
3975
|
-
"textSecondary",
|
|
3976
|
-
"textPlaceholder",
|
|
3977
|
-
"textHelper",
|
|
3978
|
-
"textOnColor",
|
|
3979
|
-
"textInverse",
|
|
3980
|
-
"linkPrimary",
|
|
3981
|
-
"linkSecondary",
|
|
3982
|
-
"linkVisited",
|
|
3983
|
-
"linkInverse",
|
|
3984
|
-
"iconPrimary",
|
|
3985
|
-
"iconSecondary",
|
|
3986
|
-
"iconOnColor",
|
|
3987
|
-
"iconInverse",
|
|
3988
|
-
"supportError",
|
|
3989
|
-
"supportSuccess",
|
|
3990
|
-
"supportWarning",
|
|
3991
|
-
"supportInfo",
|
|
3992
|
-
"supportErrorInverse",
|
|
3993
|
-
"supportSuccessInverse",
|
|
3994
|
-
"supportWarningInverse",
|
|
3995
|
-
"supportInfoInverse",
|
|
3996
|
-
"overlay",
|
|
3997
|
-
"toggleOff",
|
|
3998
|
-
"shadow",
|
|
3999
|
-
"buttonPrimary",
|
|
4000
|
-
"buttonSecondary",
|
|
4001
|
-
"buttonTertiary",
|
|
4002
|
-
"buttonDangerPrimary",
|
|
4003
|
-
"buttonDangerSecondary",
|
|
4004
|
-
"backgroundActive",
|
|
4005
|
-
"layerActive",
|
|
4006
|
-
"buttonDangerActive",
|
|
4007
|
-
"buttonPrimaryActive",
|
|
4008
|
-
"buttonSecondaryActive",
|
|
4009
|
-
"buttonTertiaryActive",
|
|
4010
|
-
"focusInset",
|
|
4011
|
-
"focusInverse",
|
|
4012
|
-
"backgroundHover",
|
|
4013
|
-
"layerHover",
|
|
4014
|
-
"fieldHover",
|
|
4015
|
-
"backgroundInverseHover",
|
|
4016
|
-
"linkPrimaryHover",
|
|
4017
|
-
"buttonDangerHover",
|
|
4018
|
-
"buttonPrimaryHover",
|
|
4019
|
-
"buttonSecondaryHover",
|
|
4020
|
-
"buttonTertiaryHover",
|
|
4021
|
-
"backgroundSelected",
|
|
4022
|
-
"backgroundSelectedHover",
|
|
4023
|
-
"layerSelected",
|
|
4024
|
-
"layerSelectedHover",
|
|
4025
|
-
"layerSelectedInverse",
|
|
4026
|
-
"borderSubtleSelected",
|
|
4027
|
-
"borderDisabled",
|
|
4028
|
-
"textDisabled",
|
|
4029
|
-
"buttonDisabled",
|
|
4030
|
-
"iconDisabled",
|
|
4031
|
-
"textOnColorDisabled",
|
|
4032
|
-
"iconOnColorDisabled",
|
|
4033
|
-
"layerSelectedDisabled",
|
|
4034
|
-
"skeletonBackground",
|
|
4035
|
-
"skeletonElement",
|
|
4036
|
-
"brand01",
|
|
4037
|
-
"brand02",
|
|
4038
|
-
"brand03",
|
|
4039
|
-
"active01",
|
|
4040
|
-
"hoverField",
|
|
4041
|
-
"danger"
|
|
4042
|
-
];
|
|
4043
3887
|
const tokens = {
|
|
4044
|
-
colors
|
|
3888
|
+
colors: [
|
|
3889
|
+
"interactive01",
|
|
3890
|
+
"interactive02",
|
|
3891
|
+
"interactive03",
|
|
3892
|
+
"interactive04",
|
|
3893
|
+
"uiBackground",
|
|
3894
|
+
"ui01",
|
|
3895
|
+
"ui02",
|
|
3896
|
+
"ui03",
|
|
3897
|
+
"ui04",
|
|
3898
|
+
"ui05",
|
|
3899
|
+
"text01",
|
|
3900
|
+
"text02",
|
|
3901
|
+
"text03",
|
|
3902
|
+
"text04",
|
|
3903
|
+
"text05",
|
|
3904
|
+
"textError",
|
|
3905
|
+
"icon01",
|
|
3906
|
+
"icon02",
|
|
3907
|
+
"icon03",
|
|
3908
|
+
"link01",
|
|
3909
|
+
"link02",
|
|
3910
|
+
"inverseLink",
|
|
3911
|
+
"field01",
|
|
3912
|
+
"field02",
|
|
3913
|
+
"inverse01",
|
|
3914
|
+
"inverse02",
|
|
3915
|
+
"support01",
|
|
3916
|
+
"support02",
|
|
3917
|
+
"support03",
|
|
3918
|
+
"support04",
|
|
3919
|
+
"inverseSupport01",
|
|
3920
|
+
"inverseSupport02",
|
|
3921
|
+
"inverseSupport03",
|
|
3922
|
+
"inverseSupport04",
|
|
3923
|
+
"overlay01",
|
|
3924
|
+
"danger01",
|
|
3925
|
+
"danger02",
|
|
3926
|
+
"focus",
|
|
3927
|
+
"inverseFocusUi",
|
|
3928
|
+
"hoverPrimary",
|
|
3929
|
+
"activePrimary",
|
|
3930
|
+
"hoverPrimaryText",
|
|
3931
|
+
"hoverSecondary",
|
|
3932
|
+
"activeSecondary",
|
|
3933
|
+
"hoverTertiary",
|
|
3934
|
+
"activeTertiary",
|
|
3935
|
+
"hoverUI",
|
|
3936
|
+
"hoverLightUI",
|
|
3937
|
+
"hoverSelectedUI",
|
|
3938
|
+
"activeUI",
|
|
3939
|
+
"activeLightUI",
|
|
3940
|
+
"selectedUI",
|
|
3941
|
+
"selectedLightUI",
|
|
3942
|
+
"inverseHoverUI",
|
|
3943
|
+
"hoverDanger",
|
|
3944
|
+
"activeDanger",
|
|
3945
|
+
"hoverRow",
|
|
3946
|
+
"visitedLink",
|
|
3947
|
+
"disabled01",
|
|
3948
|
+
"disabled02",
|
|
3949
|
+
"disabled03",
|
|
3950
|
+
"highlight",
|
|
3951
|
+
"decorative01",
|
|
3952
|
+
"buttonSeparator",
|
|
3953
|
+
"skeleton01",
|
|
3954
|
+
"skeleton02",
|
|
3955
|
+
"background",
|
|
3956
|
+
"layer",
|
|
3957
|
+
"layerAccent",
|
|
3958
|
+
"layerAccentHover",
|
|
3959
|
+
"layerAccentActive",
|
|
3960
|
+
"field",
|
|
3961
|
+
"backgroundInverse",
|
|
3962
|
+
"backgroundBrand",
|
|
3963
|
+
"interactive",
|
|
3964
|
+
"borderSubtle",
|
|
3965
|
+
"borderStrong",
|
|
3966
|
+
"borderInverse",
|
|
3967
|
+
"borderInteractive",
|
|
3968
|
+
"textPrimary",
|
|
3969
|
+
"textSecondary",
|
|
3970
|
+
"textPlaceholder",
|
|
3971
|
+
"textHelper",
|
|
3972
|
+
"textOnColor",
|
|
3973
|
+
"textInverse",
|
|
3974
|
+
"linkPrimary",
|
|
3975
|
+
"linkSecondary",
|
|
3976
|
+
"linkVisited",
|
|
3977
|
+
"linkInverse",
|
|
3978
|
+
"iconPrimary",
|
|
3979
|
+
"iconSecondary",
|
|
3980
|
+
"iconOnColor",
|
|
3981
|
+
"iconInverse",
|
|
3982
|
+
"supportError",
|
|
3983
|
+
"supportSuccess",
|
|
3984
|
+
"supportWarning",
|
|
3985
|
+
"supportInfo",
|
|
3986
|
+
"supportErrorInverse",
|
|
3987
|
+
"supportSuccessInverse",
|
|
3988
|
+
"supportWarningInverse",
|
|
3989
|
+
"supportInfoInverse",
|
|
3990
|
+
"overlay",
|
|
3991
|
+
"toggleOff",
|
|
3992
|
+
"shadow",
|
|
3993
|
+
"buttonPrimary",
|
|
3994
|
+
"buttonSecondary",
|
|
3995
|
+
"buttonTertiary",
|
|
3996
|
+
"buttonDangerPrimary",
|
|
3997
|
+
"buttonDangerSecondary",
|
|
3998
|
+
"backgroundActive",
|
|
3999
|
+
"layerActive",
|
|
4000
|
+
"buttonDangerActive",
|
|
4001
|
+
"buttonPrimaryActive",
|
|
4002
|
+
"buttonSecondaryActive",
|
|
4003
|
+
"buttonTertiaryActive",
|
|
4004
|
+
"focusInset",
|
|
4005
|
+
"focusInverse",
|
|
4006
|
+
"backgroundHover",
|
|
4007
|
+
"layerHover",
|
|
4008
|
+
"fieldHover",
|
|
4009
|
+
"backgroundInverseHover",
|
|
4010
|
+
"linkPrimaryHover",
|
|
4011
|
+
"buttonDangerHover",
|
|
4012
|
+
"buttonPrimaryHover",
|
|
4013
|
+
"buttonSecondaryHover",
|
|
4014
|
+
"buttonTertiaryHover",
|
|
4015
|
+
"backgroundSelected",
|
|
4016
|
+
"backgroundSelectedHover",
|
|
4017
|
+
"layerSelected",
|
|
4018
|
+
"layerSelectedHover",
|
|
4019
|
+
"layerSelectedInverse",
|
|
4020
|
+
"borderSubtleSelected",
|
|
4021
|
+
"borderDisabled",
|
|
4022
|
+
"textDisabled",
|
|
4023
|
+
"buttonDisabled",
|
|
4024
|
+
"iconDisabled",
|
|
4025
|
+
"textOnColorDisabled",
|
|
4026
|
+
"iconOnColorDisabled",
|
|
4027
|
+
"layerSelectedDisabled",
|
|
4028
|
+
"skeletonBackground",
|
|
4029
|
+
"skeletonElement",
|
|
4030
|
+
"brand01",
|
|
4031
|
+
"brand02",
|
|
4032
|
+
"brand03",
|
|
4033
|
+
"active01",
|
|
4034
|
+
"hoverField",
|
|
4035
|
+
"danger"
|
|
4036
|
+
],
|
|
4045
4037
|
type: unstable_tokens,
|
|
4046
4038
|
layout: unstable_tokens$1
|
|
4047
4039
|
};
|
|
4048
|
-
|
|
4049
4040
|
//#endregion
|
|
4050
4041
|
//#region src/v10/index.js
|
|
4051
4042
|
/**
|
|
@@ -4310,7 +4301,6 @@ const themes$1 = {
|
|
|
4310
4301
|
g90: g90_exports$1,
|
|
4311
4302
|
g100: g100_exports$1
|
|
4312
4303
|
};
|
|
4313
|
-
|
|
4314
4304
|
//#endregion
|
|
4315
4305
|
//#region src/component-tokens/button/tokens.js
|
|
4316
4306
|
var tokens_exports$4 = /* @__PURE__ */ __exportAll({
|
|
@@ -4427,11 +4417,9 @@ const buttonDisabled = {
|
|
|
4427
4417
|
g90: "rgb(141 141 141 / 30%)",
|
|
4428
4418
|
g100: "rgb(141 141 141 / 30%)"
|
|
4429
4419
|
};
|
|
4430
|
-
|
|
4431
4420
|
//#endregion
|
|
4432
4421
|
//#region src/component-tokens/button/index.js
|
|
4433
4422
|
var button_exports = /* @__PURE__ */ __exportAll({ buttonTokens: () => tokens_exports$4 });
|
|
4434
|
-
|
|
4435
4423
|
//#endregion
|
|
4436
4424
|
//#region src/component-tokens/tag/tokens.js
|
|
4437
4425
|
/**
|
|
@@ -4722,11 +4710,9 @@ const tagBorderWarmGray = {
|
|
|
4722
4710
|
g90: warmGray50,
|
|
4723
4711
|
g100: warmGray50
|
|
4724
4712
|
};
|
|
4725
|
-
|
|
4726
4713
|
//#endregion
|
|
4727
4714
|
//#region src/component-tokens/tag/index.js
|
|
4728
4715
|
var tag_exports = /* @__PURE__ */ __exportAll({ tagTokens: () => tokens_exports$3 });
|
|
4729
|
-
|
|
4730
4716
|
//#endregion
|
|
4731
4717
|
//#region src/component-tokens/notification/tokens.js
|
|
4732
4718
|
/**
|
|
@@ -4805,11 +4791,9 @@ const notificationActionTertiaryInverseTextOnColorDisabled = {
|
|
|
4805
4791
|
g90: textOnColorDisabled$7,
|
|
4806
4792
|
g100: textOnColorDisabled
|
|
4807
4793
|
};
|
|
4808
|
-
|
|
4809
4794
|
//#endregion
|
|
4810
4795
|
//#region src/component-tokens/notification/index.js
|
|
4811
4796
|
var notification_exports = /* @__PURE__ */ __exportAll({ notificationTokens: () => tokens_exports$2 });
|
|
4812
|
-
|
|
4813
4797
|
//#endregion
|
|
4814
4798
|
//#region src/component-tokens/status/tokens.js
|
|
4815
4799
|
/**
|
|
@@ -4886,11 +4870,9 @@ const statusAccessibilityBackground = {
|
|
|
4886
4870
|
g90: gray100,
|
|
4887
4871
|
g100: gray100
|
|
4888
4872
|
};
|
|
4889
|
-
|
|
4890
4873
|
//#endregion
|
|
4891
4874
|
//#region src/component-tokens/status/index.js
|
|
4892
4875
|
var status_exports = /* @__PURE__ */ __exportAll({ statusTokens: () => tokens_exports$1 });
|
|
4893
|
-
|
|
4894
4876
|
//#endregion
|
|
4895
4877
|
//#region src/component-tokens/content-switcher/tokens.js
|
|
4896
4878
|
/**
|
|
@@ -4923,11 +4905,9 @@ const contentSwitcherBackgroundHover = {
|
|
|
4923
4905
|
g90: rgba(gray50, .12),
|
|
4924
4906
|
g100: rgba(gray50, .12)
|
|
4925
4907
|
};
|
|
4926
|
-
|
|
4927
4908
|
//#endregion
|
|
4928
4909
|
//#region src/component-tokens/content-switcher/index.js
|
|
4929
4910
|
var content_switcher_exports = /* @__PURE__ */ __exportAll({ contentSwitcherTokens: () => tokens_exports });
|
|
4930
|
-
|
|
4931
4911
|
//#endregion
|
|
4932
4912
|
//#region src/tokens/Token.js
|
|
4933
4913
|
/**
|
|
@@ -4953,7 +4933,6 @@ var Token = class Token {
|
|
|
4953
4933
|
if (state) this.state = state;
|
|
4954
4934
|
}
|
|
4955
4935
|
};
|
|
4956
|
-
|
|
4957
4936
|
//#endregion
|
|
4958
4937
|
//#region src/tokens/TokenGroup.js
|
|
4959
4938
|
/**
|
|
@@ -5065,7 +5044,6 @@ var TokenGroup = class TokenGroup {
|
|
|
5065
5044
|
return Array.from(set);
|
|
5066
5045
|
}
|
|
5067
5046
|
};
|
|
5068
|
-
|
|
5069
5047
|
//#endregion
|
|
5070
5048
|
//#region src/tokens/v11TokenGroup.js
|
|
5071
5049
|
/**
|
|
@@ -5458,7 +5436,9 @@ const syntaxHighlight = TokenGroup.create({
|
|
|
5458
5436
|
"syntax-function",
|
|
5459
5437
|
"syntax-standard",
|
|
5460
5438
|
"syntax-local",
|
|
5461
|
-
"syntax-special"
|
|
5439
|
+
"syntax-special",
|
|
5440
|
+
"syntax-inserted",
|
|
5441
|
+
"syntax-deleted"
|
|
5462
5442
|
]
|
|
5463
5443
|
});
|
|
5464
5444
|
const ai = TokenGroup.create({
|
|
@@ -5541,7 +5521,6 @@ const group = TokenGroup.create({
|
|
|
5541
5521
|
skeleton
|
|
5542
5522
|
]
|
|
5543
5523
|
});
|
|
5544
|
-
|
|
5545
5524
|
//#endregion
|
|
5546
5525
|
//#region src/tokens/components.js
|
|
5547
5526
|
/**
|
|
@@ -5664,7 +5643,6 @@ const contentSwitcher = TokenGroup.create({
|
|
|
5664
5643
|
"content-switcher-background-hover"
|
|
5665
5644
|
]
|
|
5666
5645
|
});
|
|
5667
|
-
|
|
5668
5646
|
//#endregion
|
|
5669
5647
|
//#region src/tokens/type.js
|
|
5670
5648
|
/**
|
|
@@ -5713,7 +5691,6 @@ const type$1 = TokenGroup.create({
|
|
|
5713
5691
|
"display-04"
|
|
5714
5692
|
]
|
|
5715
5693
|
});
|
|
5716
|
-
|
|
5717
5694
|
//#endregion
|
|
5718
5695
|
//#region src/tokens/layout.js
|
|
5719
5696
|
/**
|
|
@@ -5752,7 +5729,6 @@ const layout$1 = TokenGroup.create({
|
|
|
5752
5729
|
"icon-size-02"
|
|
5753
5730
|
]
|
|
5754
5731
|
});
|
|
5755
|
-
|
|
5756
5732
|
//#endregion
|
|
5757
5733
|
//#region src/tokens/v10.js
|
|
5758
5734
|
/**
|
|
@@ -5936,48 +5912,43 @@ const v10 = [
|
|
|
5936
5912
|
};
|
|
5937
5913
|
})
|
|
5938
5914
|
];
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
|
|
5942
|
-
const v11 = [
|
|
5943
|
-
...group.getTokens().map((token) => {
|
|
5944
|
-
return {
|
|
5945
|
-
name: token.name,
|
|
5946
|
-
type: "color"
|
|
5947
|
-
};
|
|
5948
|
-
}),
|
|
5949
|
-
...contextual.getTokens().map((token) => {
|
|
5950
|
-
return {
|
|
5951
|
-
name: token.name,
|
|
5952
|
-
type: "color"
|
|
5953
|
-
};
|
|
5954
|
-
}),
|
|
5955
|
-
...Object.values(components_exports).flatMap((group) => {
|
|
5956
|
-
return group.getTokens().map((token) => {
|
|
5915
|
+
const unstable_metadata = {
|
|
5916
|
+
v11: [
|
|
5917
|
+
...group.getTokens().map((token) => {
|
|
5957
5918
|
return {
|
|
5958
5919
|
name: token.name,
|
|
5959
5920
|
type: "color"
|
|
5960
5921
|
};
|
|
5961
|
-
})
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
}
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5922
|
+
}),
|
|
5923
|
+
...contextual.getTokens().map((token) => {
|
|
5924
|
+
return {
|
|
5925
|
+
name: token.name,
|
|
5926
|
+
type: "color"
|
|
5927
|
+
};
|
|
5928
|
+
}),
|
|
5929
|
+
...Object.values(components_exports).flatMap((group) => {
|
|
5930
|
+
return group.getTokens().map((token) => {
|
|
5931
|
+
return {
|
|
5932
|
+
name: token.name,
|
|
5933
|
+
type: "color"
|
|
5934
|
+
};
|
|
5935
|
+
});
|
|
5936
|
+
}),
|
|
5937
|
+
...type$1.getTokens().map((token) => {
|
|
5938
|
+
return {
|
|
5939
|
+
name: token.name,
|
|
5940
|
+
type: "type"
|
|
5941
|
+
};
|
|
5942
|
+
}),
|
|
5943
|
+
...layout$1.getTokens().map((token) => {
|
|
5944
|
+
return {
|
|
5945
|
+
name: token.name,
|
|
5946
|
+
type: "layout"
|
|
5947
|
+
};
|
|
5948
|
+
})
|
|
5949
|
+
],
|
|
5978
5950
|
v10
|
|
5979
5951
|
};
|
|
5980
|
-
|
|
5981
5952
|
//#endregion
|
|
5982
5953
|
//#region src/index.js
|
|
5983
5954
|
/**
|
|
@@ -5992,6 +5963,5 @@ const themes = {
|
|
|
5992
5963
|
g90: g90_exports,
|
|
5993
5964
|
g100: g100_exports
|
|
5994
5965
|
};
|
|
5995
|
-
|
|
5996
5966
|
//#endregion
|
|
5997
|
-
export { aiAuraEnd, aiAuraHoverBackground, aiAuraHoverEnd, aiAuraHoverStart, aiAuraStart, aiAuraStartSm, aiBorderEnd, aiBorderStart, aiBorderStrong, aiDropShadow, aiInnerShadow, aiOverlay, aiPopoverBackground, aiPopoverCaretBottom, aiPopoverCaretBottomBackground, aiPopoverCaretBottomBackgroundActions, aiPopoverCaretCenter, aiPopoverShadowOuter01, aiPopoverShadowOuter02, aiSkeletonBackground, aiSkeletonElementBackground, background, backgroundActive, backgroundBrand, backgroundHover, backgroundInverse, backgroundInverseHover, backgroundSelected, backgroundSelectedHover, bodyLong01, bodyLong02, bodyShort01, bodyShort02, borderDisabled, borderInteractive, borderInverse, borderStrong01, borderStrong02, borderStrong03, borderSubtle00, borderSubtle01, borderSubtle02, borderSubtle03, borderSubtleSelected01, borderSubtleSelected02, borderSubtleSelected03, borderTile01, borderTile02, borderTile03, button_exports as buttonTokens, caption01, caption02, chatAvatarAgent, chatAvatarBot, chatAvatarUser, chatBubbleAgent, chatBubbleAgentText, chatBubbleBorder, chatBubbleUser, chatBubbleUserText, chatButton, chatButtonActive, chatButtonHover, chatButtonSelected, chatButtonTextHover, chatButtonTextSelected, chatHeaderBackground, chatHeaderText, chatPromptBackground, chatPromptBorderEnd, chatPromptBorderStart, chatPromptText, chatShellBackground, code01, code02, colorScheme, container01, container02, container03, container04, container05, content_switcher_exports as contentSwitcherTokens, display01, display02, display03, display04, expressiveHeading01, expressiveHeading02, expressiveHeading03, expressiveHeading04, expressiveHeading05, expressiveHeading06, expressiveParagraph01, field01, field02, field03, fieldHover01, fieldHover02, fieldHover03, fluidSpacing01, fluidSpacing02, fluidSpacing03, fluidSpacing04, focus, focusInset, focusInverse, formatTokenName, g10_exports as g10, g100_exports as g100, g90_exports as g90, heading01, heading02, helperText01, helperText02, highlight, iconDisabled, iconInteractive, iconInverse, iconOnColor, iconOnColorDisabled, iconPrimary, iconSecondary, iconSize01, iconSize02, interactive, label01, label02, layer01, layer02, layer03, layerAccent01, layerAccent02, layerAccent03, layerAccentActive01, layerAccentActive02, layerAccentActive03, layerAccentHover01, layerAccentHover02, layerAccentHover03, layerActive01, layerActive02, layerActive03, layerBackground01, layerBackground02, layerBackground03, layerHover01, layerHover02, layerHover03, layerSelected01, layerSelected02, layerSelected03, layerSelectedDisabled, layerSelectedHover01, layerSelectedHover02, layerSelectedHover03, layerSelectedInverse, layout01, layout02, layout03, layout04, layout05, layout06, layout07, linkInverse, linkInverseActive, linkInverseHover, linkInverseVisited, linkPrimary, linkPrimaryHover, linkSecondary, linkVisited, notification_exports as notificationTokens, overlay, productiveHeading01, productiveHeading02, productiveHeading03, productiveHeading04, productiveHeading05, productiveHeading06, productiveHeading07, quotation01, quotation02, shadow, size2XLarge, sizeLarge, sizeMedium, sizeSmall, sizeXLarge, sizeXSmall, skeletonBackground, skeletonElement, spacing01, spacing02, spacing03, spacing04, spacing05, spacing06, spacing07, spacing08, spacing09, spacing10, spacing11, spacing12, spacing13, status_exports as statusTokens, supportCautionMajor, supportCautionMinor, supportCautionUndefined, supportError, supportErrorInverse, supportInfo, supportInfoInverse, supportSuccess, supportSuccessInverse, supportWarning, supportWarningInverse, syntaxAngleBracket, syntaxAnnotation, syntaxArithmeticOperator, syntaxAtom, syntaxAttribute, syntaxAttributeName, syntaxAttributeValue, syntaxBitwiseOperator, syntaxBlockComment, syntaxBool, syntaxBrace, syntaxBracket, syntaxCharacter, syntaxClassName, syntaxColor, syntaxComment, syntaxCompareOperator, syntaxConstant, syntaxContent, syntaxContentSeparator, syntaxControlKeyword, syntaxControlOperator, syntaxDefinition, syntaxDefinitionKeyword, syntaxDefinitionOperator, syntaxDerefOperator, syntaxDocComment, syntaxDocString, syntaxDocumentMeta, syntaxEmphasis, syntaxEscape, syntaxFloat, syntaxFunction, syntaxHeading, syntaxHeading1, syntaxHeading2, syntaxHeading3, syntaxHeading4, syntaxHeading5, syntaxHeading6, syntaxInteger, syntaxInvalid, syntaxKeyword, syntaxLabelName, syntaxLineComment, syntaxLink, syntaxList, syntaxLiteral, syntaxLocal, syntaxLogicOperator, syntaxMacroName, syntaxMeta, syntaxModifier, syntaxModuleKeyword, syntaxMonospace, syntaxName, syntaxNamespace, syntaxNull, syntaxNumber, syntaxOperator, syntaxOperatorKeyword, syntaxParen, syntaxProcessingInstruction, syntaxPropertyName, syntaxPunctuation, syntaxQuote, syntaxRegexp, syntaxSelf, syntaxSeparator, syntaxSpecial, syntaxSpecialString, syntaxSquareBracket, syntaxStandard, syntaxStrikethrough, syntaxString, syntaxStrong, syntaxTag, syntaxTagName, syntaxType, syntaxTypeName, syntaxTypeOperator, syntaxUnit, syntaxUpdateOperator, syntaxUrl, syntaxVariable, syntaxVariableName, tag_exports as tagTokens, textDisabled, textError, textHelper, textInverse, textOnColor, textOnColorDisabled, textPlaceholder, textPrimary, textSecondary, themes, toggleOff, unstable_metadata, v10_exports as v10, white_exports as white };
|
|
5967
|
+
export { aiAuraEnd, aiAuraHoverBackground, aiAuraHoverEnd, aiAuraHoverStart, aiAuraStart, aiAuraStartSm, aiBorderEnd, aiBorderStart, aiBorderStrong, aiDropShadow, aiInnerShadow, aiOverlay, aiPopoverBackground, aiPopoverCaretBottom, aiPopoverCaretBottomBackground, aiPopoverCaretBottomBackgroundActions, aiPopoverCaretCenter, aiPopoverShadowOuter01, aiPopoverShadowOuter02, aiSkeletonBackground, aiSkeletonElementBackground, background, backgroundActive, backgroundBrand, backgroundHover, backgroundInverse, backgroundInverseHover, backgroundSelected, backgroundSelectedHover, bodyLong01, bodyLong02, bodyShort01, bodyShort02, borderDisabled, borderInteractive, borderInverse, borderStrong01, borderStrong02, borderStrong03, borderSubtle00, borderSubtle01, borderSubtle02, borderSubtle03, borderSubtleSelected01, borderSubtleSelected02, borderSubtleSelected03, borderTile01, borderTile02, borderTile03, button_exports as buttonTokens, caption01, caption02, chatAvatarAgent, chatAvatarBot, chatAvatarUser, chatBubbleAgent, chatBubbleAgentText, chatBubbleBorder, chatBubbleUser, chatBubbleUserText, chatButton, chatButtonActive, chatButtonHover, chatButtonSelected, chatButtonTextHover, chatButtonTextSelected, chatHeaderBackground, chatHeaderText, chatPromptBackground, chatPromptBorderEnd, chatPromptBorderStart, chatPromptText, chatShellBackground, code01, code02, colorScheme, container01, container02, container03, container04, container05, content_switcher_exports as contentSwitcherTokens, display01, display02, display03, display04, expressiveHeading01, expressiveHeading02, expressiveHeading03, expressiveHeading04, expressiveHeading05, expressiveHeading06, expressiveParagraph01, field01, field02, field03, fieldHover01, fieldHover02, fieldHover03, fluidSpacing01, fluidSpacing02, fluidSpacing03, fluidSpacing04, focus, focusInset, focusInverse, formatTokenName, g10_exports as g10, g100_exports as g100, g90_exports as g90, heading01, heading02, helperText01, helperText02, highlight, iconDisabled, iconInteractive, iconInverse, iconOnColor, iconOnColorDisabled, iconPrimary, iconSecondary, iconSize01, iconSize02, interactive, label01, label02, layer01, layer02, layer03, layerAccent01, layerAccent02, layerAccent03, layerAccentActive01, layerAccentActive02, layerAccentActive03, layerAccentHover01, layerAccentHover02, layerAccentHover03, layerActive01, layerActive02, layerActive03, layerBackground01, layerBackground02, layerBackground03, layerHover01, layerHover02, layerHover03, layerSelected01, layerSelected02, layerSelected03, layerSelectedDisabled, layerSelectedHover01, layerSelectedHover02, layerSelectedHover03, layerSelectedInverse, layout01, layout02, layout03, layout04, layout05, layout06, layout07, linkInverse, linkInverseActive, linkInverseHover, linkInverseVisited, linkPrimary, linkPrimaryHover, linkSecondary, linkVisited, notification_exports as notificationTokens, overlay, productiveHeading01, productiveHeading02, productiveHeading03, productiveHeading04, productiveHeading05, productiveHeading06, productiveHeading07, quotation01, quotation02, shadow, size2XLarge, sizeLarge, sizeMedium, sizeSmall, sizeXLarge, sizeXSmall, skeletonBackground, skeletonElement, spacing01, spacing02, spacing03, spacing04, spacing05, spacing06, spacing07, spacing08, spacing09, spacing10, spacing11, spacing12, spacing13, status_exports as statusTokens, supportCautionMajor, supportCautionMinor, supportCautionUndefined, supportError, supportErrorInverse, supportInfo, supportInfoInverse, supportSuccess, supportSuccessInverse, supportWarning, supportWarningInverse, syntaxAngleBracket, syntaxAnnotation, syntaxArithmeticOperator, syntaxAtom, syntaxAttribute, syntaxAttributeName, syntaxAttributeValue, syntaxBitwiseOperator, syntaxBlockComment, syntaxBool, syntaxBrace, syntaxBracket, syntaxCharacter, syntaxClassName, syntaxColor, syntaxComment, syntaxCompareOperator, syntaxConstant, syntaxContent, syntaxContentSeparator, syntaxControlKeyword, syntaxControlOperator, syntaxDefinition, syntaxDefinitionKeyword, syntaxDefinitionOperator, syntaxDeleted, syntaxDerefOperator, syntaxDocComment, syntaxDocString, syntaxDocumentMeta, syntaxEmphasis, syntaxEscape, syntaxFloat, syntaxFunction, syntaxHeading, syntaxHeading1, syntaxHeading2, syntaxHeading3, syntaxHeading4, syntaxHeading5, syntaxHeading6, syntaxInserted, syntaxInteger, syntaxInvalid, syntaxKeyword, syntaxLabelName, syntaxLineComment, syntaxLink, syntaxList, syntaxLiteral, syntaxLocal, syntaxLogicOperator, syntaxMacroName, syntaxMeta, syntaxModifier, syntaxModuleKeyword, syntaxMonospace, syntaxName, syntaxNamespace, syntaxNull, syntaxNumber, syntaxOperator, syntaxOperatorKeyword, syntaxParen, syntaxProcessingInstruction, syntaxPropertyName, syntaxPunctuation, syntaxQuote, syntaxRegexp, syntaxSelf, syntaxSeparator, syntaxSpecial, syntaxSpecialString, syntaxSquareBracket, syntaxStandard, syntaxStrikethrough, syntaxString, syntaxStrong, syntaxTag, syntaxTagName, syntaxType, syntaxTypeName, syntaxTypeOperator, syntaxUnit, syntaxUpdateOperator, syntaxUrl, syntaxVariable, syntaxVariableName, tag_exports as tagTokens, textDisabled, textError, textHelper, textInverse, textOnColor, textOnColorDisabled, textPlaceholder, textPrimary, textSecondary, themes, toggleOff, unstable_metadata, v10_exports as v10, white_exports as white };
|