@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/umd/index.js CHANGED
@@ -1,10 +1,14 @@
1
1
  (function(global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@carbon/colors'), require('color'), require('@carbon/type'), require('@carbon/layout')) :
3
- typeof define === 'function' && define.amd ? define(['exports', '@carbon/colors', 'color', '@carbon/type', '@carbon/layout'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.CarbonThemes = {}), global.CarbonColors,global.Color,global.CarbonType,global.CarbonLayout));
2
+ typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("@carbon/colors"), require("color"), require("@carbon/type"), require("@carbon/layout")) : typeof define === "function" && define.amd ? define([
3
+ "exports",
4
+ "@carbon/colors",
5
+ "color",
6
+ "@carbon/type",
7
+ "@carbon/layout"
8
+ ], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, factory(global.CarbonThemes = {}, global.CarbonColors, global.Color, global.CarbonType, global.CarbonLayout));
5
9
  })(this, function(exports, _carbon_colors, color, _carbon_type, _carbon_layout) {
6
- Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
7
- //#region \0rolldown/runtime.js
10
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
11
+ //#region \0rolldown/runtime.js
8
12
  var __create = Object.create;
9
13
  var __defProp = Object.defineProperty;
10
14
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -13,28 +17,20 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
13
17
  var __hasOwnProp = Object.prototype.hasOwnProperty;
14
18
  var __exportAll = (all, no_symbols) => {
15
19
  let target = {};
16
- for (var name in all) {
17
- __defProp(target, name, {
18
- get: all[name],
19
- enumerable: true
20
- });
21
- }
22
- if (!no_symbols) {
23
- __defProp(target, Symbol.toStringTag, { value: "Module" });
24
- }
20
+ for (var name in all) __defProp(target, name, {
21
+ get: all[name],
22
+ enumerable: true
23
+ });
24
+ if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
25
25
  return target;
26
26
  };
27
27
  var __copyProps = (to, from, except, desc) => {
28
- if (from && typeof from === "object" || typeof from === "function") {
29
- for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
30
- key = keys[i];
31
- if (!__hasOwnProp.call(to, key) && key !== except) {
32
- __defProp(to, key, {
33
- get: ((k) => from[k]).bind(null, key),
34
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
35
- });
36
- }
37
- }
28
+ if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
29
+ key = keys[i];
30
+ if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
31
+ get: ((k) => from[k]).bind(null, key),
32
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
33
+ });
38
34
  }
39
35
  return to;
40
36
  };
@@ -42,12 +38,10 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
42
38
  value: mod,
43
39
  enumerable: true
44
40
  }) : target, mod));
45
-
46
- //#endregion
47
- color = __toESM(color);
48
-
49
- //#region src/tools.js
50
- /**
41
+ //#endregion
42
+ color = __toESM(color);
43
+ //#region src/tools.js
44
+ /**
51
45
  * Copyright IBM Corp. 2016, 2023
52
46
  *
53
47
  * This source code is licensed under the Apache-2.0 license found in the
@@ -116,10 +110,9 @@ color = __toESM(color);
116
110
  }
117
111
  return string;
118
112
  }
119
-
120
- //#endregion
121
- //#region src/white.js
122
- /**
113
+ //#endregion
114
+ //#region src/white.js
115
+ /**
123
116
  * Copyright IBM Corp. 2018, 2023
124
117
  *
125
118
  * This source code is licensed under the Apache-2.0 license found in the
@@ -359,6 +352,7 @@ color = __toESM(color);
359
352
  syntaxDefinition: () => syntaxDefinition,
360
353
  syntaxDefinitionKeyword: () => syntaxDefinitionKeyword,
361
354
  syntaxDefinitionOperator: () => syntaxDefinitionOperator,
355
+ syntaxDeleted: () => syntaxDeleted,
362
356
  syntaxDerefOperator: () => syntaxDerefOperator,
363
357
  syntaxDocComment: () => syntaxDocComment,
364
358
  syntaxDocString: () => syntaxDocString,
@@ -374,6 +368,7 @@ color = __toESM(color);
374
368
  syntaxHeading4: () => syntaxHeading4,
375
369
  syntaxHeading5: () => syntaxHeading5,
376
370
  syntaxHeading6: () => syntaxHeading6,
371
+ syntaxInserted: () => syntaxInserted,
377
372
  syntaxInteger: () => syntaxInteger,
378
373
  syntaxInvalid: () => syntaxInvalid,
379
374
  syntaxKeyword: () => syntaxKeyword,
@@ -622,6 +617,8 @@ color = __toESM(color);
622
617
  const syntaxStandard = _carbon_colors.blue60;
623
618
  const syntaxLocal = _carbon_colors.blue60;
624
619
  const syntaxSpecial = _carbon_colors.blue60;
620
+ const syntaxInserted = _carbon_colors.green20;
621
+ const syntaxDeleted = _carbon_colors.red20;
625
622
  const aiInnerShadow = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
626
623
  const aiAuraStartSm = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
627
624
  const aiAuraStart = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
@@ -664,10 +661,9 @@ color = __toESM(color);
664
661
  const chatButtonActive = backgroundActive;
665
662
  const chatButtonSelected = backgroundSelected;
666
663
  const chatButtonTextSelected = textSecondary;
667
-
668
- //#endregion
669
- //#region src/g10.js
670
- /**
664
+ //#endregion
665
+ //#region src/g10.js
666
+ /**
671
667
  * Copyright IBM Corp. 2018, 2023
672
668
  *
673
669
  * This source code is licensed under the Apache-2.0 license found in the
@@ -907,6 +903,7 @@ color = __toESM(color);
907
903
  syntaxDefinition: () => syntaxDefinition$3,
908
904
  syntaxDefinitionKeyword: () => syntaxDefinitionKeyword$3,
909
905
  syntaxDefinitionOperator: () => syntaxDefinitionOperator$3,
906
+ syntaxDeleted: () => syntaxDeleted$3,
910
907
  syntaxDerefOperator: () => syntaxDerefOperator$3,
911
908
  syntaxDocComment: () => syntaxDocComment$3,
912
909
  syntaxDocString: () => syntaxDocString$3,
@@ -922,6 +919,7 @@ color = __toESM(color);
922
919
  syntaxHeading4: () => syntaxHeading4$3,
923
920
  syntaxHeading5: () => syntaxHeading5$3,
924
921
  syntaxHeading6: () => syntaxHeading6$3,
922
+ syntaxInserted: () => syntaxInserted$3,
925
923
  syntaxInteger: () => syntaxInteger$3,
926
924
  syntaxInvalid: () => syntaxInvalid$3,
927
925
  syntaxKeyword: () => syntaxKeyword$3,
@@ -1170,6 +1168,8 @@ color = __toESM(color);
1170
1168
  const syntaxStandard$3 = _carbon_colors.blue60;
1171
1169
  const syntaxLocal$3 = _carbon_colors.blue60;
1172
1170
  const syntaxSpecial$3 = _carbon_colors.blue60;
1171
+ const syntaxInserted$3 = _carbon_colors.green20;
1172
+ const syntaxDeleted$3 = _carbon_colors.red20;
1173
1173
  const aiInnerShadow$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
1174
1174
  const aiAuraStartSm$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
1175
1175
  const aiAuraStart$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
@@ -1212,10 +1212,9 @@ color = __toESM(color);
1212
1212
  const chatButtonActive$3 = backgroundActive$7;
1213
1213
  const chatButtonSelected$3 = backgroundSelected$7;
1214
1214
  const chatButtonTextSelected$3 = textSecondary$7;
1215
-
1216
- //#endregion
1217
- //#region src/g90.js
1218
- /**
1215
+ //#endregion
1216
+ //#region src/g90.js
1217
+ /**
1219
1218
  * Copyright IBM Corp. 2018, 2023
1220
1219
  *
1221
1220
  * This source code is licensed under the Apache-2.0 license found in the
@@ -1455,6 +1454,7 @@ color = __toESM(color);
1455
1454
  syntaxDefinition: () => syntaxDefinition$2,
1456
1455
  syntaxDefinitionKeyword: () => syntaxDefinitionKeyword$2,
1457
1456
  syntaxDefinitionOperator: () => syntaxDefinitionOperator$2,
1457
+ syntaxDeleted: () => syntaxDeleted$2,
1458
1458
  syntaxDerefOperator: () => syntaxDerefOperator$2,
1459
1459
  syntaxDocComment: () => syntaxDocComment$2,
1460
1460
  syntaxDocString: () => syntaxDocString$2,
@@ -1470,6 +1470,7 @@ color = __toESM(color);
1470
1470
  syntaxHeading4: () => syntaxHeading4$2,
1471
1471
  syntaxHeading5: () => syntaxHeading5$2,
1472
1472
  syntaxHeading6: () => syntaxHeading6$2,
1473
+ syntaxInserted: () => syntaxInserted$2,
1473
1474
  syntaxInteger: () => syntaxInteger$2,
1474
1475
  syntaxInvalid: () => syntaxInvalid$2,
1475
1476
  syntaxKeyword: () => syntaxKeyword$2,
@@ -1718,6 +1719,8 @@ color = __toESM(color);
1718
1719
  const syntaxStandard$2 = _carbon_colors.blue50;
1719
1720
  const syntaxLocal$2 = _carbon_colors.blue30;
1720
1721
  const syntaxSpecial$2 = _carbon_colors.blue50;
1722
+ const syntaxInserted$2 = _carbon_colors.green60;
1723
+ const syntaxDeleted$2 = _carbon_colors.red70;
1721
1724
  const aiInnerShadow$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
1722
1725
  const aiAuraStartSm$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
1723
1726
  const aiAuraStart$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
@@ -1760,10 +1763,9 @@ color = __toESM(color);
1760
1763
  const chatButtonActive$2 = backgroundActive$6;
1761
1764
  const chatButtonSelected$2 = backgroundSelected$6;
1762
1765
  const chatButtonTextSelected$2 = textSecondary$6;
1763
-
1764
- //#endregion
1765
- //#region src/g100.js
1766
- /**
1766
+ //#endregion
1767
+ //#region src/g100.js
1768
+ /**
1767
1769
  * Copyright IBM Corp. 2018, 2023
1768
1770
  *
1769
1771
  * This source code is licensed under the Apache-2.0 license found in the
@@ -2003,6 +2005,7 @@ color = __toESM(color);
2003
2005
  syntaxDefinition: () => syntaxDefinition$1,
2004
2006
  syntaxDefinitionKeyword: () => syntaxDefinitionKeyword$1,
2005
2007
  syntaxDefinitionOperator: () => syntaxDefinitionOperator$1,
2008
+ syntaxDeleted: () => syntaxDeleted$1,
2006
2009
  syntaxDerefOperator: () => syntaxDerefOperator$1,
2007
2010
  syntaxDocComment: () => syntaxDocComment$1,
2008
2011
  syntaxDocString: () => syntaxDocString$1,
@@ -2018,6 +2021,7 @@ color = __toESM(color);
2018
2021
  syntaxHeading4: () => syntaxHeading4$1,
2019
2022
  syntaxHeading5: () => syntaxHeading5$1,
2020
2023
  syntaxHeading6: () => syntaxHeading6$1,
2024
+ syntaxInserted: () => syntaxInserted$1,
2021
2025
  syntaxInteger: () => syntaxInteger$1,
2022
2026
  syntaxInvalid: () => syntaxInvalid$1,
2023
2027
  syntaxKeyword: () => syntaxKeyword$1,
@@ -2266,6 +2270,8 @@ color = __toESM(color);
2266
2270
  const syntaxStandard$1 = _carbon_colors.blue50;
2267
2271
  const syntaxLocal$1 = _carbon_colors.blue30;
2268
2272
  const syntaxSpecial$1 = _carbon_colors.blue50;
2273
+ const syntaxInserted$1 = _carbon_colors.green60;
2274
+ const syntaxDeleted$1 = _carbon_colors.red70;
2269
2275
  const aiInnerShadow$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
2270
2276
  const aiAuraStartSm$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
2271
2277
  const aiAuraStart$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
@@ -2308,10 +2314,9 @@ color = __toESM(color);
2308
2314
  const chatButtonActive$1 = backgroundActive$5;
2309
2315
  const chatButtonSelected$1 = backgroundSelected$5;
2310
2316
  const chatButtonTextSelected$1 = textSecondary$5;
2311
-
2312
- //#endregion
2313
- //#region src/v10/white.js
2314
- /**
2317
+ //#endregion
2318
+ //#region src/v10/white.js
2319
+ /**
2315
2320
  * Copyright IBM Corp. 2018, 2023
2316
2321
  *
2317
2322
  * This source code is licensed under the Apache-2.0 license found in the
@@ -2708,10 +2713,9 @@ color = __toESM(color);
2708
2713
  const active01$3 = activeUI$3;
2709
2714
  const hoverField$3 = hoverUI$3;
2710
2715
  const danger$3 = danger01$3;
2711
-
2712
- //#endregion
2713
- //#region src/v10/g10.js
2714
- /**
2716
+ //#endregion
2717
+ //#region src/v10/g10.js
2718
+ /**
2715
2719
  * Copyright IBM Corp. 2018, 2023
2716
2720
  *
2717
2721
  * This source code is licensed under the Apache-2.0 license found in the
@@ -3108,10 +3112,9 @@ color = __toESM(color);
3108
3112
  const active01$2 = activeUI$2;
3109
3113
  const hoverField$2 = hoverUI$2;
3110
3114
  const danger$2 = danger01$2;
3111
-
3112
- //#endregion
3113
- //#region src/v10/g90.js
3114
- /**
3115
+ //#endregion
3116
+ //#region src/v10/g90.js
3117
+ /**
3115
3118
  * Copyright IBM Corp. 2018, 2023
3116
3119
  *
3117
3120
  * This source code is licensed under the Apache-2.0 license found in the
@@ -3508,10 +3511,9 @@ color = __toESM(color);
3508
3511
  const active01$1 = activeUI$1;
3509
3512
  const hoverField$1 = hoverUI$1;
3510
3513
  const danger$1 = danger01$1;
3511
-
3512
- //#endregion
3513
- //#region src/v10/g100.js
3514
- /**
3514
+ //#endregion
3515
+ //#region src/v10/g100.js
3516
+ /**
3515
3517
  * Copyright IBM Corp. 2018, 2023
3516
3518
  *
3517
3519
  * This source code is licensed under the Apache-2.0 license found in the
@@ -3908,173 +3910,162 @@ color = __toESM(color);
3908
3910
  const active01 = activeUI;
3909
3911
  const hoverField = hoverUI;
3910
3912
  const danger = danger01;
3911
-
3912
- //#endregion
3913
- //#region src/v10/tokens.js
3914
- /**
3915
- * Copyright IBM Corp. 2018, 2023
3916
- *
3917
- * This source code is licensed under the Apache-2.0 license found in the
3918
- * LICENSE file in the root directory of this source tree.
3919
- */
3920
- const colors = [
3921
- "interactive01",
3922
- "interactive02",
3923
- "interactive03",
3924
- "interactive04",
3925
- "uiBackground",
3926
- "ui01",
3927
- "ui02",
3928
- "ui03",
3929
- "ui04",
3930
- "ui05",
3931
- "text01",
3932
- "text02",
3933
- "text03",
3934
- "text04",
3935
- "text05",
3936
- "textError",
3937
- "icon01",
3938
- "icon02",
3939
- "icon03",
3940
- "link01",
3941
- "link02",
3942
- "inverseLink",
3943
- "field01",
3944
- "field02",
3945
- "inverse01",
3946
- "inverse02",
3947
- "support01",
3948
- "support02",
3949
- "support03",
3950
- "support04",
3951
- "inverseSupport01",
3952
- "inverseSupport02",
3953
- "inverseSupport03",
3954
- "inverseSupport04",
3955
- "overlay01",
3956
- "danger01",
3957
- "danger02",
3958
- "focus",
3959
- "inverseFocusUi",
3960
- "hoverPrimary",
3961
- "activePrimary",
3962
- "hoverPrimaryText",
3963
- "hoverSecondary",
3964
- "activeSecondary",
3965
- "hoverTertiary",
3966
- "activeTertiary",
3967
- "hoverUI",
3968
- "hoverLightUI",
3969
- "hoverSelectedUI",
3970
- "activeUI",
3971
- "activeLightUI",
3972
- "selectedUI",
3973
- "selectedLightUI",
3974
- "inverseHoverUI",
3975
- "hoverDanger",
3976
- "activeDanger",
3977
- "hoverRow",
3978
- "visitedLink",
3979
- "disabled01",
3980
- "disabled02",
3981
- "disabled03",
3982
- "highlight",
3983
- "decorative01",
3984
- "buttonSeparator",
3985
- "skeleton01",
3986
- "skeleton02",
3987
- "background",
3988
- "layer",
3989
- "layerAccent",
3990
- "layerAccentHover",
3991
- "layerAccentActive",
3992
- "field",
3993
- "backgroundInverse",
3994
- "backgroundBrand",
3995
- "interactive",
3996
- "borderSubtle",
3997
- "borderStrong",
3998
- "borderInverse",
3999
- "borderInteractive",
4000
- "textPrimary",
4001
- "textSecondary",
4002
- "textPlaceholder",
4003
- "textHelper",
4004
- "textOnColor",
4005
- "textInverse",
4006
- "linkPrimary",
4007
- "linkSecondary",
4008
- "linkVisited",
4009
- "linkInverse",
4010
- "iconPrimary",
4011
- "iconSecondary",
4012
- "iconOnColor",
4013
- "iconInverse",
4014
- "supportError",
4015
- "supportSuccess",
4016
- "supportWarning",
4017
- "supportInfo",
4018
- "supportErrorInverse",
4019
- "supportSuccessInverse",
4020
- "supportWarningInverse",
4021
- "supportInfoInverse",
4022
- "overlay",
4023
- "toggleOff",
4024
- "shadow",
4025
- "buttonPrimary",
4026
- "buttonSecondary",
4027
- "buttonTertiary",
4028
- "buttonDangerPrimary",
4029
- "buttonDangerSecondary",
4030
- "backgroundActive",
4031
- "layerActive",
4032
- "buttonDangerActive",
4033
- "buttonPrimaryActive",
4034
- "buttonSecondaryActive",
4035
- "buttonTertiaryActive",
4036
- "focusInset",
4037
- "focusInverse",
4038
- "backgroundHover",
4039
- "layerHover",
4040
- "fieldHover",
4041
- "backgroundInverseHover",
4042
- "linkPrimaryHover",
4043
- "buttonDangerHover",
4044
- "buttonPrimaryHover",
4045
- "buttonSecondaryHover",
4046
- "buttonTertiaryHover",
4047
- "backgroundSelected",
4048
- "backgroundSelectedHover",
4049
- "layerSelected",
4050
- "layerSelectedHover",
4051
- "layerSelectedInverse",
4052
- "borderSubtleSelected",
4053
- "borderDisabled",
4054
- "textDisabled",
4055
- "buttonDisabled",
4056
- "iconDisabled",
4057
- "textOnColorDisabled",
4058
- "iconOnColorDisabled",
4059
- "layerSelectedDisabled",
4060
- "skeletonBackground",
4061
- "skeletonElement",
4062
- "brand01",
4063
- "brand02",
4064
- "brand03",
4065
- "active01",
4066
- "hoverField",
4067
- "danger"
4068
- ];
4069
3913
  const tokens = {
4070
- colors,
3914
+ colors: [
3915
+ "interactive01",
3916
+ "interactive02",
3917
+ "interactive03",
3918
+ "interactive04",
3919
+ "uiBackground",
3920
+ "ui01",
3921
+ "ui02",
3922
+ "ui03",
3923
+ "ui04",
3924
+ "ui05",
3925
+ "text01",
3926
+ "text02",
3927
+ "text03",
3928
+ "text04",
3929
+ "text05",
3930
+ "textError",
3931
+ "icon01",
3932
+ "icon02",
3933
+ "icon03",
3934
+ "link01",
3935
+ "link02",
3936
+ "inverseLink",
3937
+ "field01",
3938
+ "field02",
3939
+ "inverse01",
3940
+ "inverse02",
3941
+ "support01",
3942
+ "support02",
3943
+ "support03",
3944
+ "support04",
3945
+ "inverseSupport01",
3946
+ "inverseSupport02",
3947
+ "inverseSupport03",
3948
+ "inverseSupport04",
3949
+ "overlay01",
3950
+ "danger01",
3951
+ "danger02",
3952
+ "focus",
3953
+ "inverseFocusUi",
3954
+ "hoverPrimary",
3955
+ "activePrimary",
3956
+ "hoverPrimaryText",
3957
+ "hoverSecondary",
3958
+ "activeSecondary",
3959
+ "hoverTertiary",
3960
+ "activeTertiary",
3961
+ "hoverUI",
3962
+ "hoverLightUI",
3963
+ "hoverSelectedUI",
3964
+ "activeUI",
3965
+ "activeLightUI",
3966
+ "selectedUI",
3967
+ "selectedLightUI",
3968
+ "inverseHoverUI",
3969
+ "hoverDanger",
3970
+ "activeDanger",
3971
+ "hoverRow",
3972
+ "visitedLink",
3973
+ "disabled01",
3974
+ "disabled02",
3975
+ "disabled03",
3976
+ "highlight",
3977
+ "decorative01",
3978
+ "buttonSeparator",
3979
+ "skeleton01",
3980
+ "skeleton02",
3981
+ "background",
3982
+ "layer",
3983
+ "layerAccent",
3984
+ "layerAccentHover",
3985
+ "layerAccentActive",
3986
+ "field",
3987
+ "backgroundInverse",
3988
+ "backgroundBrand",
3989
+ "interactive",
3990
+ "borderSubtle",
3991
+ "borderStrong",
3992
+ "borderInverse",
3993
+ "borderInteractive",
3994
+ "textPrimary",
3995
+ "textSecondary",
3996
+ "textPlaceholder",
3997
+ "textHelper",
3998
+ "textOnColor",
3999
+ "textInverse",
4000
+ "linkPrimary",
4001
+ "linkSecondary",
4002
+ "linkVisited",
4003
+ "linkInverse",
4004
+ "iconPrimary",
4005
+ "iconSecondary",
4006
+ "iconOnColor",
4007
+ "iconInverse",
4008
+ "supportError",
4009
+ "supportSuccess",
4010
+ "supportWarning",
4011
+ "supportInfo",
4012
+ "supportErrorInverse",
4013
+ "supportSuccessInverse",
4014
+ "supportWarningInverse",
4015
+ "supportInfoInverse",
4016
+ "overlay",
4017
+ "toggleOff",
4018
+ "shadow",
4019
+ "buttonPrimary",
4020
+ "buttonSecondary",
4021
+ "buttonTertiary",
4022
+ "buttonDangerPrimary",
4023
+ "buttonDangerSecondary",
4024
+ "backgroundActive",
4025
+ "layerActive",
4026
+ "buttonDangerActive",
4027
+ "buttonPrimaryActive",
4028
+ "buttonSecondaryActive",
4029
+ "buttonTertiaryActive",
4030
+ "focusInset",
4031
+ "focusInverse",
4032
+ "backgroundHover",
4033
+ "layerHover",
4034
+ "fieldHover",
4035
+ "backgroundInverseHover",
4036
+ "linkPrimaryHover",
4037
+ "buttonDangerHover",
4038
+ "buttonPrimaryHover",
4039
+ "buttonSecondaryHover",
4040
+ "buttonTertiaryHover",
4041
+ "backgroundSelected",
4042
+ "backgroundSelectedHover",
4043
+ "layerSelected",
4044
+ "layerSelectedHover",
4045
+ "layerSelectedInverse",
4046
+ "borderSubtleSelected",
4047
+ "borderDisabled",
4048
+ "textDisabled",
4049
+ "buttonDisabled",
4050
+ "iconDisabled",
4051
+ "textOnColorDisabled",
4052
+ "iconOnColorDisabled",
4053
+ "layerSelectedDisabled",
4054
+ "skeletonBackground",
4055
+ "skeletonElement",
4056
+ "brand01",
4057
+ "brand02",
4058
+ "brand03",
4059
+ "active01",
4060
+ "hoverField",
4061
+ "danger"
4062
+ ],
4071
4063
  type: _carbon_type.unstable_tokens,
4072
4064
  layout: _carbon_layout.unstable_tokens
4073
4065
  };
4074
-
4075
- //#endregion
4076
- //#region src/v10/index.js
4077
- /**
4066
+ //#endregion
4067
+ //#region src/v10/index.js
4068
+ /**
4078
4069
  * Copyright IBM Corp. 2018, 2023
4079
4070
  *
4080
4071
  * This source code is licensed under the Apache-2.0 license found in the
@@ -4336,9 +4327,8 @@ color = __toESM(color);
4336
4327
  g90: g90_exports$1,
4337
4328
  g100: g100_exports$1
4338
4329
  };
4339
-
4340
- //#endregion
4341
- //#region src/component-tokens/button/tokens.js
4330
+ //#endregion
4331
+ //#region src/component-tokens/button/tokens.js
4342
4332
  var tokens_exports$4 = /* @__PURE__ */ __exportAll({
4343
4333
  buttonDangerActive: () => buttonDangerActive,
4344
4334
  buttonDangerHover: () => buttonDangerHover,
@@ -4453,14 +4443,12 @@ color = __toESM(color);
4453
4443
  g90: "rgb(141 141 141 / 30%)",
4454
4444
  g100: "rgb(141 141 141 / 30%)"
4455
4445
  };
4456
-
4457
- //#endregion
4458
- //#region src/component-tokens/button/index.js
4446
+ //#endregion
4447
+ //#region src/component-tokens/button/index.js
4459
4448
  var button_exports = /* @__PURE__ */ __exportAll({ buttonTokens: () => tokens_exports$4 });
4460
-
4461
- //#endregion
4462
- //#region src/component-tokens/tag/tokens.js
4463
- /**
4449
+ //#endregion
4450
+ //#region src/component-tokens/tag/tokens.js
4451
+ /**
4464
4452
  * Copyright IBM Corp. 2022, 2024
4465
4453
  *
4466
4454
  * This source code is licensed under the Apache-2.0 license found in the
@@ -4748,14 +4736,12 @@ color = __toESM(color);
4748
4736
  g90: _carbon_colors.warmGray50,
4749
4737
  g100: _carbon_colors.warmGray50
4750
4738
  };
4751
-
4752
- //#endregion
4753
- //#region src/component-tokens/tag/index.js
4739
+ //#endregion
4740
+ //#region src/component-tokens/tag/index.js
4754
4741
  var tag_exports = /* @__PURE__ */ __exportAll({ tagTokens: () => tokens_exports$3 });
4755
-
4756
- //#endregion
4757
- //#region src/component-tokens/notification/tokens.js
4758
- /**
4742
+ //#endregion
4743
+ //#region src/component-tokens/notification/tokens.js
4744
+ /**
4759
4745
  * Copyright IBM Corp. 2022, 2024
4760
4746
  *
4761
4747
  * This source code is licensed under the Apache-2.0 license found in the
@@ -4831,14 +4817,12 @@ color = __toESM(color);
4831
4817
  g90: textOnColorDisabled$7,
4832
4818
  g100: textOnColorDisabled
4833
4819
  };
4834
-
4835
- //#endregion
4836
- //#region src/component-tokens/notification/index.js
4820
+ //#endregion
4821
+ //#region src/component-tokens/notification/index.js
4837
4822
  var notification_exports = /* @__PURE__ */ __exportAll({ notificationTokens: () => tokens_exports$2 });
4838
-
4839
- //#endregion
4840
- //#region src/component-tokens/status/tokens.js
4841
- /**
4823
+ //#endregion
4824
+ //#region src/component-tokens/status/tokens.js
4825
+ /**
4842
4826
  * Copyright IBM Corp. 2025
4843
4827
  *
4844
4828
  * This source code is licensed under the Apache-2.0 license found in the
@@ -4912,14 +4896,12 @@ color = __toESM(color);
4912
4896
  g90: _carbon_colors.gray100,
4913
4897
  g100: _carbon_colors.gray100
4914
4898
  };
4915
-
4916
- //#endregion
4917
- //#region src/component-tokens/status/index.js
4899
+ //#endregion
4900
+ //#region src/component-tokens/status/index.js
4918
4901
  var status_exports = /* @__PURE__ */ __exportAll({ statusTokens: () => tokens_exports$1 });
4919
-
4920
- //#endregion
4921
- //#region src/component-tokens/content-switcher/tokens.js
4922
- /**
4902
+ //#endregion
4903
+ //#region src/component-tokens/content-switcher/tokens.js
4904
+ /**
4923
4905
  * Copyright IBM Corp. 2025
4924
4906
  *
4925
4907
  * This source code is licensed under the Apache-2.0 license found in the
@@ -4949,14 +4931,12 @@ color = __toESM(color);
4949
4931
  g90: (0, _carbon_colors.rgba)(_carbon_colors.gray50, .12),
4950
4932
  g100: (0, _carbon_colors.rgba)(_carbon_colors.gray50, .12)
4951
4933
  };
4952
-
4953
- //#endregion
4954
- //#region src/component-tokens/content-switcher/index.js
4934
+ //#endregion
4935
+ //#region src/component-tokens/content-switcher/index.js
4955
4936
  var content_switcher_exports = /* @__PURE__ */ __exportAll({ contentSwitcherTokens: () => tokens_exports });
4956
-
4957
- //#endregion
4958
- //#region src/tokens/Token.js
4959
- /**
4937
+ //#endregion
4938
+ //#region src/tokens/Token.js
4939
+ /**
4960
4940
  * Copyright IBM Corp. 2018, 2025
4961
4941
  *
4962
4942
  * This source code is licensed under the Apache-2.0 license found in the
@@ -4979,10 +4959,9 @@ color = __toESM(color);
4979
4959
  if (state) this.state = state;
4980
4960
  }
4981
4961
  };
4982
-
4983
- //#endregion
4984
- //#region src/tokens/TokenGroup.js
4985
- /**
4962
+ //#endregion
4963
+ //#region src/tokens/TokenGroup.js
4964
+ /**
4986
4965
  * Copyright IBM Corp. 2018, 2023
4987
4966
  *
4988
4967
  * This source code is licensed under the Apache-2.0 license found in the
@@ -5091,10 +5070,9 @@ color = __toESM(color);
5091
5070
  return Array.from(set);
5092
5071
  }
5093
5072
  };
5094
-
5095
- //#endregion
5096
- //#region src/tokens/v11TokenGroup.js
5097
- /**
5073
+ //#endregion
5074
+ //#region src/tokens/v11TokenGroup.js
5075
+ /**
5098
5076
  * Copyright IBM Corp. 2018, 2023
5099
5077
  *
5100
5078
  * This source code is licensed under the Apache-2.0 license found in the
@@ -5484,7 +5462,9 @@ color = __toESM(color);
5484
5462
  "syntax-function",
5485
5463
  "syntax-standard",
5486
5464
  "syntax-local",
5487
- "syntax-special"
5465
+ "syntax-special",
5466
+ "syntax-inserted",
5467
+ "syntax-deleted"
5488
5468
  ]
5489
5469
  });
5490
5470
  const ai = TokenGroup.create({
@@ -5567,10 +5547,9 @@ color = __toESM(color);
5567
5547
  skeleton
5568
5548
  ]
5569
5549
  });
5570
-
5571
- //#endregion
5572
- //#region src/tokens/components.js
5573
- /**
5550
+ //#endregion
5551
+ //#region src/tokens/components.js
5552
+ /**
5574
5553
  * Copyright IBM Corp. 2018, 2023
5575
5554
  *
5576
5555
  * This source code is licensed under the Apache-2.0 license found in the
@@ -5690,10 +5669,9 @@ color = __toESM(color);
5690
5669
  "content-switcher-background-hover"
5691
5670
  ]
5692
5671
  });
5693
-
5694
- //#endregion
5695
- //#region src/tokens/type.js
5696
- /**
5672
+ //#endregion
5673
+ //#region src/tokens/type.js
5674
+ /**
5697
5675
  * Copyright IBM Corp. 2018, 2023
5698
5676
  *
5699
5677
  * This source code is licensed under the Apache-2.0 license found in the
@@ -5739,10 +5717,9 @@ color = __toESM(color);
5739
5717
  "display-04"
5740
5718
  ]
5741
5719
  });
5742
-
5743
- //#endregion
5744
- //#region src/tokens/layout.js
5745
- /**
5720
+ //#endregion
5721
+ //#region src/tokens/layout.js
5722
+ /**
5746
5723
  * Copyright IBM Corp. 2018, 2023
5747
5724
  *
5748
5725
  * This source code is licensed under the Apache-2.0 license found in the
@@ -5778,10 +5755,9 @@ color = __toESM(color);
5778
5755
  "icon-size-02"
5779
5756
  ]
5780
5757
  });
5781
-
5782
- //#endregion
5783
- //#region src/tokens/v10.js
5784
- /**
5758
+ //#endregion
5759
+ //#region src/tokens/v10.js
5760
+ /**
5785
5761
  * Copyright IBM Corp. 2018, 2023
5786
5762
  *
5787
5763
  * This source code is licensed under the Apache-2.0 license found in the
@@ -5962,51 +5938,46 @@ color = __toESM(color);
5962
5938
  };
5963
5939
  })
5964
5940
  ];
5965
-
5966
- //#endregion
5967
- //#region src/tokens/index.js
5968
- const v11 = [
5969
- ...group.getTokens().map((token) => {
5970
- return {
5971
- name: token.name,
5972
- type: "color"
5973
- };
5974
- }),
5975
- ...contextual.getTokens().map((token) => {
5976
- return {
5977
- name: token.name,
5978
- type: "color"
5979
- };
5980
- }),
5981
- ...Object.values(components_exports).flatMap((group) => {
5982
- return group.getTokens().map((token) => {
5941
+ const unstable_metadata = {
5942
+ v11: [
5943
+ ...group.getTokens().map((token) => {
5983
5944
  return {
5984
5945
  name: token.name,
5985
5946
  type: "color"
5986
5947
  };
5987
- });
5988
- }),
5989
- ...type$1.getTokens().map((token) => {
5990
- return {
5991
- name: token.name,
5992
- type: "type"
5993
- };
5994
- }),
5995
- ...layout$1.getTokens().map((token) => {
5996
- return {
5997
- name: token.name,
5998
- type: "layout"
5999
- };
6000
- })
6001
- ];
6002
- const unstable_metadata = {
6003
- v11,
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) => {
5957
+ return {
5958
+ name: token.name,
5959
+ type: "color"
5960
+ };
5961
+ });
5962
+ }),
5963
+ ...type$1.getTokens().map((token) => {
5964
+ return {
5965
+ name: token.name,
5966
+ type: "type"
5967
+ };
5968
+ }),
5969
+ ...layout$1.getTokens().map((token) => {
5970
+ return {
5971
+ name: token.name,
5972
+ type: "layout"
5973
+ };
5974
+ })
5975
+ ],
6004
5976
  v10
6005
5977
  };
6006
-
6007
- //#endregion
6008
- //#region src/index.js
6009
- /**
5978
+ //#endregion
5979
+ //#region src/index.js
5980
+ /**
6010
5981
  * Copyright IBM Corp. 2018, 2023
6011
5982
  *
6012
5983
  * This source code is licensed under the Apache-2.0 license found in the
@@ -6018,728 +5989,729 @@ color = __toESM(color);
6018
5989
  g90: g90_exports,
6019
5990
  g100: g100_exports
6020
5991
  };
6021
-
6022
- //#endregion
6023
- exports.aiAuraEnd = aiAuraEnd;
6024
- exports.aiAuraHoverBackground = aiAuraHoverBackground;
6025
- exports.aiAuraHoverEnd = aiAuraHoverEnd;
6026
- exports.aiAuraHoverStart = aiAuraHoverStart;
6027
- exports.aiAuraStart = aiAuraStart;
6028
- exports.aiAuraStartSm = aiAuraStartSm;
6029
- exports.aiBorderEnd = aiBorderEnd;
6030
- exports.aiBorderStart = aiBorderStart;
6031
- exports.aiBorderStrong = aiBorderStrong;
6032
- exports.aiDropShadow = aiDropShadow;
6033
- exports.aiInnerShadow = aiInnerShadow;
6034
- exports.aiOverlay = aiOverlay;
6035
- exports.aiPopoverBackground = aiPopoverBackground;
6036
- exports.aiPopoverCaretBottom = aiPopoverCaretBottom;
6037
- exports.aiPopoverCaretBottomBackground = aiPopoverCaretBottomBackground;
6038
- exports.aiPopoverCaretBottomBackgroundActions = aiPopoverCaretBottomBackgroundActions;
6039
- exports.aiPopoverCaretCenter = aiPopoverCaretCenter;
6040
- exports.aiPopoverShadowOuter01 = aiPopoverShadowOuter01;
6041
- exports.aiPopoverShadowOuter02 = aiPopoverShadowOuter02;
6042
- exports.aiSkeletonBackground = aiSkeletonBackground;
6043
- exports.aiSkeletonElementBackground = aiSkeletonElementBackground;
6044
- exports.background = background;
6045
- exports.backgroundActive = backgroundActive;
6046
- exports.backgroundBrand = backgroundBrand;
6047
- exports.backgroundHover = backgroundHover;
6048
- exports.backgroundInverse = backgroundInverse;
6049
- exports.backgroundInverseHover = backgroundInverseHover;
6050
- exports.backgroundSelected = backgroundSelected;
6051
- exports.backgroundSelectedHover = backgroundSelectedHover;
6052
- Object.defineProperty(exports, 'bodyLong01', {
6053
- enumerable: true,
6054
- get: function () {
6055
- return _carbon_type.bodyLong01;
6056
- }
6057
- });
6058
- Object.defineProperty(exports, 'bodyLong02', {
6059
- enumerable: true,
6060
- get: function () {
6061
- return _carbon_type.bodyLong02;
6062
- }
6063
- });
6064
- Object.defineProperty(exports, 'bodyShort01', {
6065
- enumerable: true,
6066
- get: function () {
6067
- return _carbon_type.bodyShort01;
6068
- }
6069
- });
6070
- Object.defineProperty(exports, 'bodyShort02', {
6071
- enumerable: true,
6072
- get: function () {
6073
- return _carbon_type.bodyShort02;
6074
- }
6075
- });
6076
- exports.borderDisabled = borderDisabled;
6077
- exports.borderInteractive = borderInteractive;
6078
- exports.borderInverse = borderInverse;
6079
- exports.borderStrong01 = borderStrong01;
6080
- exports.borderStrong02 = borderStrong02;
6081
- exports.borderStrong03 = borderStrong03;
6082
- exports.borderSubtle00 = borderSubtle00;
6083
- exports.borderSubtle01 = borderSubtle01;
6084
- exports.borderSubtle02 = borderSubtle02;
6085
- exports.borderSubtle03 = borderSubtle03;
6086
- exports.borderSubtleSelected01 = borderSubtleSelected01;
6087
- exports.borderSubtleSelected02 = borderSubtleSelected02;
6088
- exports.borderSubtleSelected03 = borderSubtleSelected03;
6089
- exports.borderTile01 = borderTile01;
6090
- exports.borderTile02 = borderTile02;
6091
- exports.borderTile03 = borderTile03;
6092
- Object.defineProperty(exports, 'buttonTokens', {
6093
- enumerable: true,
6094
- get: function () {
6095
- return button_exports;
6096
- }
6097
- });
6098
- Object.defineProperty(exports, 'caption01', {
6099
- enumerable: true,
6100
- get: function () {
6101
- return _carbon_type.caption01;
6102
- }
6103
- });
6104
- Object.defineProperty(exports, 'caption02', {
6105
- enumerable: true,
6106
- get: function () {
6107
- return _carbon_type.caption02;
6108
- }
6109
- });
6110
- exports.chatAvatarAgent = chatAvatarAgent;
6111
- exports.chatAvatarBot = chatAvatarBot;
6112
- exports.chatAvatarUser = chatAvatarUser;
6113
- exports.chatBubbleAgent = chatBubbleAgent;
6114
- exports.chatBubbleAgentText = chatBubbleAgentText;
6115
- exports.chatBubbleBorder = chatBubbleBorder;
6116
- exports.chatBubbleUser = chatBubbleUser;
6117
- exports.chatBubbleUserText = chatBubbleUserText;
6118
- exports.chatButton = chatButton;
6119
- exports.chatButtonActive = chatButtonActive;
6120
- exports.chatButtonHover = chatButtonHover;
6121
- exports.chatButtonSelected = chatButtonSelected;
6122
- exports.chatButtonTextHover = chatButtonTextHover;
6123
- exports.chatButtonTextSelected = chatButtonTextSelected;
6124
- exports.chatHeaderBackground = chatHeaderBackground;
6125
- exports.chatHeaderText = chatHeaderText;
6126
- exports.chatPromptBackground = chatPromptBackground;
6127
- exports.chatPromptBorderEnd = chatPromptBorderEnd;
6128
- exports.chatPromptBorderStart = chatPromptBorderStart;
6129
- exports.chatPromptText = chatPromptText;
6130
- exports.chatShellBackground = chatShellBackground;
6131
- Object.defineProperty(exports, 'code01', {
6132
- enumerable: true,
6133
- get: function () {
6134
- return _carbon_type.code01;
6135
- }
6136
- });
6137
- Object.defineProperty(exports, 'code02', {
6138
- enumerable: true,
6139
- get: function () {
6140
- return _carbon_type.code02;
6141
- }
6142
- });
6143
- exports.colorScheme = colorScheme;
6144
- Object.defineProperty(exports, 'container01', {
6145
- enumerable: true,
6146
- get: function () {
6147
- return _carbon_layout.container01;
6148
- }
6149
- });
6150
- Object.defineProperty(exports, 'container02', {
6151
- enumerable: true,
6152
- get: function () {
6153
- return _carbon_layout.container02;
6154
- }
6155
- });
6156
- Object.defineProperty(exports, 'container03', {
6157
- enumerable: true,
6158
- get: function () {
6159
- return _carbon_layout.container03;
6160
- }
6161
- });
6162
- Object.defineProperty(exports, 'container04', {
6163
- enumerable: true,
6164
- get: function () {
6165
- return _carbon_layout.container04;
6166
- }
6167
- });
6168
- Object.defineProperty(exports, 'container05', {
6169
- enumerable: true,
6170
- get: function () {
6171
- return _carbon_layout.container05;
6172
- }
6173
- });
6174
- Object.defineProperty(exports, 'contentSwitcherTokens', {
6175
- enumerable: true,
6176
- get: function () {
6177
- return content_switcher_exports;
6178
- }
6179
- });
6180
- Object.defineProperty(exports, 'display01', {
6181
- enumerable: true,
6182
- get: function () {
6183
- return _carbon_type.display01;
6184
- }
6185
- });
6186
- Object.defineProperty(exports, 'display02', {
6187
- enumerable: true,
6188
- get: function () {
6189
- return _carbon_type.display02;
6190
- }
6191
- });
6192
- Object.defineProperty(exports, 'display03', {
6193
- enumerable: true,
6194
- get: function () {
6195
- return _carbon_type.display03;
6196
- }
6197
- });
6198
- Object.defineProperty(exports, 'display04', {
6199
- enumerable: true,
6200
- get: function () {
6201
- return _carbon_type.display04;
6202
- }
6203
- });
6204
- Object.defineProperty(exports, 'expressiveHeading01', {
6205
- enumerable: true,
6206
- get: function () {
6207
- return _carbon_type.expressiveHeading01;
6208
- }
6209
- });
6210
- Object.defineProperty(exports, 'expressiveHeading02', {
6211
- enumerable: true,
6212
- get: function () {
6213
- return _carbon_type.expressiveHeading02;
6214
- }
6215
- });
6216
- Object.defineProperty(exports, 'expressiveHeading03', {
6217
- enumerable: true,
6218
- get: function () {
6219
- return _carbon_type.expressiveHeading03;
6220
- }
6221
- });
6222
- Object.defineProperty(exports, 'expressiveHeading04', {
6223
- enumerable: true,
6224
- get: function () {
6225
- return _carbon_type.expressiveHeading04;
6226
- }
6227
- });
6228
- Object.defineProperty(exports, 'expressiveHeading05', {
6229
- enumerable: true,
6230
- get: function () {
6231
- return _carbon_type.expressiveHeading05;
6232
- }
6233
- });
6234
- Object.defineProperty(exports, 'expressiveHeading06', {
6235
- enumerable: true,
6236
- get: function () {
6237
- return _carbon_type.expressiveHeading06;
6238
- }
6239
- });
6240
- Object.defineProperty(exports, 'expressiveParagraph01', {
6241
- enumerable: true,
6242
- get: function () {
6243
- return _carbon_type.expressiveParagraph01;
6244
- }
6245
- });
6246
- exports.field01 = field01;
6247
- exports.field02 = field02;
6248
- exports.field03 = field03;
6249
- exports.fieldHover01 = fieldHover01;
6250
- exports.fieldHover02 = fieldHover02;
6251
- exports.fieldHover03 = fieldHover03;
6252
- Object.defineProperty(exports, 'fluidSpacing01', {
6253
- enumerable: true,
6254
- get: function () {
6255
- return _carbon_layout.fluidSpacing01;
6256
- }
6257
- });
6258
- Object.defineProperty(exports, 'fluidSpacing02', {
6259
- enumerable: true,
6260
- get: function () {
6261
- return _carbon_layout.fluidSpacing02;
6262
- }
6263
- });
6264
- Object.defineProperty(exports, 'fluidSpacing03', {
6265
- enumerable: true,
6266
- get: function () {
6267
- return _carbon_layout.fluidSpacing03;
6268
- }
6269
- });
6270
- Object.defineProperty(exports, 'fluidSpacing04', {
6271
- enumerable: true,
6272
- get: function () {
6273
- return _carbon_layout.fluidSpacing04;
6274
- }
6275
- });
6276
- exports.focus = focus;
6277
- exports.focusInset = focusInset;
6278
- exports.focusInverse = focusInverse;
6279
- exports.formatTokenName = formatTokenName;
6280
- Object.defineProperty(exports, 'g10', {
6281
- enumerable: true,
6282
- get: function () {
6283
- return g10_exports;
6284
- }
6285
- });
6286
- Object.defineProperty(exports, 'g100', {
6287
- enumerable: true,
6288
- get: function () {
6289
- return g100_exports;
6290
- }
6291
- });
6292
- Object.defineProperty(exports, 'g90', {
6293
- enumerable: true,
6294
- get: function () {
6295
- return g90_exports;
6296
- }
6297
- });
6298
- Object.defineProperty(exports, 'heading01', {
6299
- enumerable: true,
6300
- get: function () {
6301
- return _carbon_type.heading01;
6302
- }
6303
- });
6304
- Object.defineProperty(exports, 'heading02', {
6305
- enumerable: true,
6306
- get: function () {
6307
- return _carbon_type.heading02;
6308
- }
6309
- });
6310
- Object.defineProperty(exports, 'helperText01', {
6311
- enumerable: true,
6312
- get: function () {
6313
- return _carbon_type.helperText01;
6314
- }
6315
- });
6316
- Object.defineProperty(exports, 'helperText02', {
6317
- enumerable: true,
6318
- get: function () {
6319
- return _carbon_type.helperText02;
6320
- }
6321
- });
6322
- exports.highlight = highlight;
6323
- exports.iconDisabled = iconDisabled;
6324
- exports.iconInteractive = iconInteractive;
6325
- exports.iconInverse = iconInverse;
6326
- exports.iconOnColor = iconOnColor;
6327
- exports.iconOnColorDisabled = iconOnColorDisabled;
6328
- exports.iconPrimary = iconPrimary;
6329
- exports.iconSecondary = iconSecondary;
6330
- Object.defineProperty(exports, 'iconSize01', {
6331
- enumerable: true,
6332
- get: function () {
6333
- return _carbon_layout.iconSize01;
6334
- }
6335
- });
6336
- Object.defineProperty(exports, 'iconSize02', {
6337
- enumerable: true,
6338
- get: function () {
6339
- return _carbon_layout.iconSize02;
6340
- }
6341
- });
6342
- exports.interactive = interactive;
6343
- Object.defineProperty(exports, 'label01', {
6344
- enumerable: true,
6345
- get: function () {
6346
- return _carbon_type.label01;
6347
- }
6348
- });
6349
- Object.defineProperty(exports, 'label02', {
6350
- enumerable: true,
6351
- get: function () {
6352
- return _carbon_type.label02;
6353
- }
6354
- });
6355
- exports.layer01 = layer01;
6356
- exports.layer02 = layer02;
6357
- exports.layer03 = layer03;
6358
- exports.layerAccent01 = layerAccent01;
6359
- exports.layerAccent02 = layerAccent02;
6360
- exports.layerAccent03 = layerAccent03;
6361
- exports.layerAccentActive01 = layerAccentActive01;
6362
- exports.layerAccentActive02 = layerAccentActive02;
6363
- exports.layerAccentActive03 = layerAccentActive03;
6364
- exports.layerAccentHover01 = layerAccentHover01;
6365
- exports.layerAccentHover02 = layerAccentHover02;
6366
- exports.layerAccentHover03 = layerAccentHover03;
6367
- exports.layerActive01 = layerActive01;
6368
- exports.layerActive02 = layerActive02;
6369
- exports.layerActive03 = layerActive03;
6370
- exports.layerBackground01 = layerBackground01;
6371
- exports.layerBackground02 = layerBackground02;
6372
- exports.layerBackground03 = layerBackground03;
6373
- exports.layerHover01 = layerHover01;
6374
- exports.layerHover02 = layerHover02;
6375
- exports.layerHover03 = layerHover03;
6376
- exports.layerSelected01 = layerSelected01;
6377
- exports.layerSelected02 = layerSelected02;
6378
- exports.layerSelected03 = layerSelected03;
6379
- exports.layerSelectedDisabled = layerSelectedDisabled;
6380
- exports.layerSelectedHover01 = layerSelectedHover01;
6381
- exports.layerSelectedHover02 = layerSelectedHover02;
6382
- exports.layerSelectedHover03 = layerSelectedHover03;
6383
- exports.layerSelectedInverse = layerSelectedInverse;
6384
- Object.defineProperty(exports, 'layout01', {
6385
- enumerable: true,
6386
- get: function () {
6387
- return _carbon_layout.layout01;
6388
- }
6389
- });
6390
- Object.defineProperty(exports, 'layout02', {
6391
- enumerable: true,
6392
- get: function () {
6393
- return _carbon_layout.layout02;
6394
- }
6395
- });
6396
- Object.defineProperty(exports, 'layout03', {
6397
- enumerable: true,
6398
- get: function () {
6399
- return _carbon_layout.layout03;
6400
- }
6401
- });
6402
- Object.defineProperty(exports, 'layout04', {
6403
- enumerable: true,
6404
- get: function () {
6405
- return _carbon_layout.layout04;
6406
- }
6407
- });
6408
- Object.defineProperty(exports, 'layout05', {
6409
- enumerable: true,
6410
- get: function () {
6411
- return _carbon_layout.layout05;
6412
- }
6413
- });
6414
- Object.defineProperty(exports, 'layout06', {
6415
- enumerable: true,
6416
- get: function () {
6417
- return _carbon_layout.layout06;
6418
- }
6419
- });
6420
- Object.defineProperty(exports, 'layout07', {
6421
- enumerable: true,
6422
- get: function () {
6423
- return _carbon_layout.layout07;
6424
- }
6425
- });
6426
- exports.linkInverse = linkInverse;
6427
- exports.linkInverseActive = linkInverseActive;
6428
- exports.linkInverseHover = linkInverseHover;
6429
- exports.linkInverseVisited = linkInverseVisited;
6430
- exports.linkPrimary = linkPrimary;
6431
- exports.linkPrimaryHover = linkPrimaryHover;
6432
- exports.linkSecondary = linkSecondary;
6433
- exports.linkVisited = linkVisited;
6434
- Object.defineProperty(exports, 'notificationTokens', {
6435
- enumerable: true,
6436
- get: function () {
6437
- return notification_exports;
6438
- }
6439
- });
6440
- exports.overlay = overlay;
6441
- Object.defineProperty(exports, 'productiveHeading01', {
6442
- enumerable: true,
6443
- get: function () {
6444
- return _carbon_type.productiveHeading01;
6445
- }
6446
- });
6447
- Object.defineProperty(exports, 'productiveHeading02', {
6448
- enumerable: true,
6449
- get: function () {
6450
- return _carbon_type.productiveHeading02;
6451
- }
6452
- });
6453
- Object.defineProperty(exports, 'productiveHeading03', {
6454
- enumerable: true,
6455
- get: function () {
6456
- return _carbon_type.productiveHeading03;
6457
- }
6458
- });
6459
- Object.defineProperty(exports, 'productiveHeading04', {
6460
- enumerable: true,
6461
- get: function () {
6462
- return _carbon_type.productiveHeading04;
6463
- }
6464
- });
6465
- Object.defineProperty(exports, 'productiveHeading05', {
6466
- enumerable: true,
6467
- get: function () {
6468
- return _carbon_type.productiveHeading05;
6469
- }
6470
- });
6471
- Object.defineProperty(exports, 'productiveHeading06', {
6472
- enumerable: true,
6473
- get: function () {
6474
- return _carbon_type.productiveHeading06;
6475
- }
6476
- });
6477
- Object.defineProperty(exports, 'productiveHeading07', {
6478
- enumerable: true,
6479
- get: function () {
6480
- return _carbon_type.productiveHeading07;
6481
- }
6482
- });
6483
- Object.defineProperty(exports, 'quotation01', {
6484
- enumerable: true,
6485
- get: function () {
6486
- return _carbon_type.quotation01;
6487
- }
6488
- });
6489
- Object.defineProperty(exports, 'quotation02', {
6490
- enumerable: true,
6491
- get: function () {
6492
- return _carbon_type.quotation02;
6493
- }
6494
- });
6495
- exports.shadow = shadow;
6496
- Object.defineProperty(exports, 'size2XLarge', {
6497
- enumerable: true,
6498
- get: function () {
6499
- return _carbon_layout.size2XLarge;
6500
- }
6501
- });
6502
- Object.defineProperty(exports, 'sizeLarge', {
6503
- enumerable: true,
6504
- get: function () {
6505
- return _carbon_layout.sizeLarge;
6506
- }
6507
- });
6508
- Object.defineProperty(exports, 'sizeMedium', {
6509
- enumerable: true,
6510
- get: function () {
6511
- return _carbon_layout.sizeMedium;
6512
- }
6513
- });
6514
- Object.defineProperty(exports, 'sizeSmall', {
6515
- enumerable: true,
6516
- get: function () {
6517
- return _carbon_layout.sizeSmall;
6518
- }
6519
- });
6520
- Object.defineProperty(exports, 'sizeXLarge', {
6521
- enumerable: true,
6522
- get: function () {
6523
- return _carbon_layout.sizeXLarge;
6524
- }
6525
- });
6526
- Object.defineProperty(exports, 'sizeXSmall', {
6527
- enumerable: true,
6528
- get: function () {
6529
- return _carbon_layout.sizeXSmall;
6530
- }
6531
- });
6532
- exports.skeletonBackground = skeletonBackground;
6533
- exports.skeletonElement = skeletonElement;
6534
- Object.defineProperty(exports, 'spacing01', {
6535
- enumerable: true,
6536
- get: function () {
6537
- return _carbon_layout.spacing01;
6538
- }
6539
- });
6540
- Object.defineProperty(exports, 'spacing02', {
6541
- enumerable: true,
6542
- get: function () {
6543
- return _carbon_layout.spacing02;
6544
- }
6545
- });
6546
- Object.defineProperty(exports, 'spacing03', {
6547
- enumerable: true,
6548
- get: function () {
6549
- return _carbon_layout.spacing03;
6550
- }
6551
- });
6552
- Object.defineProperty(exports, 'spacing04', {
6553
- enumerable: true,
6554
- get: function () {
6555
- return _carbon_layout.spacing04;
6556
- }
6557
- });
6558
- Object.defineProperty(exports, 'spacing05', {
6559
- enumerable: true,
6560
- get: function () {
6561
- return _carbon_layout.spacing05;
6562
- }
6563
- });
6564
- Object.defineProperty(exports, 'spacing06', {
6565
- enumerable: true,
6566
- get: function () {
6567
- return _carbon_layout.spacing06;
6568
- }
6569
- });
6570
- Object.defineProperty(exports, 'spacing07', {
6571
- enumerable: true,
6572
- get: function () {
6573
- return _carbon_layout.spacing07;
6574
- }
6575
- });
6576
- Object.defineProperty(exports, 'spacing08', {
6577
- enumerable: true,
6578
- get: function () {
6579
- return _carbon_layout.spacing08;
6580
- }
6581
- });
6582
- Object.defineProperty(exports, 'spacing09', {
6583
- enumerable: true,
6584
- get: function () {
6585
- return _carbon_layout.spacing09;
6586
- }
6587
- });
6588
- Object.defineProperty(exports, 'spacing10', {
6589
- enumerable: true,
6590
- get: function () {
6591
- return _carbon_layout.spacing10;
6592
- }
6593
- });
6594
- Object.defineProperty(exports, 'spacing11', {
6595
- enumerable: true,
6596
- get: function () {
6597
- return _carbon_layout.spacing11;
6598
- }
6599
- });
6600
- Object.defineProperty(exports, 'spacing12', {
6601
- enumerable: true,
6602
- get: function () {
6603
- return _carbon_layout.spacing12;
6604
- }
6605
- });
6606
- Object.defineProperty(exports, 'spacing13', {
6607
- enumerable: true,
6608
- get: function () {
6609
- return _carbon_layout.spacing13;
6610
- }
6611
- });
6612
- Object.defineProperty(exports, 'statusTokens', {
6613
- enumerable: true,
6614
- get: function () {
6615
- return status_exports;
6616
- }
6617
- });
6618
- exports.supportCautionMajor = supportCautionMajor;
6619
- exports.supportCautionMinor = supportCautionMinor;
6620
- exports.supportCautionUndefined = supportCautionUndefined;
6621
- exports.supportError = supportError;
6622
- exports.supportErrorInverse = supportErrorInverse;
6623
- exports.supportInfo = supportInfo;
6624
- exports.supportInfoInverse = supportInfoInverse;
6625
- exports.supportSuccess = supportSuccess;
6626
- exports.supportSuccessInverse = supportSuccessInverse;
6627
- exports.supportWarning = supportWarning;
6628
- exports.supportWarningInverse = supportWarningInverse;
6629
- exports.syntaxAngleBracket = syntaxAngleBracket;
6630
- exports.syntaxAnnotation = syntaxAnnotation;
6631
- exports.syntaxArithmeticOperator = syntaxArithmeticOperator;
6632
- exports.syntaxAtom = syntaxAtom;
6633
- exports.syntaxAttribute = syntaxAttribute;
6634
- exports.syntaxAttributeName = syntaxAttributeName;
6635
- exports.syntaxAttributeValue = syntaxAttributeValue;
6636
- exports.syntaxBitwiseOperator = syntaxBitwiseOperator;
6637
- exports.syntaxBlockComment = syntaxBlockComment;
6638
- exports.syntaxBool = syntaxBool;
6639
- exports.syntaxBrace = syntaxBrace;
6640
- exports.syntaxBracket = syntaxBracket;
6641
- exports.syntaxCharacter = syntaxCharacter;
6642
- exports.syntaxClassName = syntaxClassName;
6643
- exports.syntaxColor = syntaxColor;
6644
- exports.syntaxComment = syntaxComment;
6645
- exports.syntaxCompareOperator = syntaxCompareOperator;
6646
- exports.syntaxConstant = syntaxConstant;
6647
- exports.syntaxContent = syntaxContent;
6648
- exports.syntaxContentSeparator = syntaxContentSeparator;
6649
- exports.syntaxControlKeyword = syntaxControlKeyword;
6650
- exports.syntaxControlOperator = syntaxControlOperator;
6651
- exports.syntaxDefinition = syntaxDefinition;
6652
- exports.syntaxDefinitionKeyword = syntaxDefinitionKeyword;
6653
- exports.syntaxDefinitionOperator = syntaxDefinitionOperator;
6654
- exports.syntaxDerefOperator = syntaxDerefOperator;
6655
- exports.syntaxDocComment = syntaxDocComment;
6656
- exports.syntaxDocString = syntaxDocString;
6657
- exports.syntaxDocumentMeta = syntaxDocumentMeta;
6658
- exports.syntaxEmphasis = syntaxEmphasis;
6659
- exports.syntaxEscape = syntaxEscape;
6660
- exports.syntaxFloat = syntaxFloat;
6661
- exports.syntaxFunction = syntaxFunction;
6662
- exports.syntaxHeading = syntaxHeading;
6663
- exports.syntaxHeading1 = syntaxHeading1;
6664
- exports.syntaxHeading2 = syntaxHeading2;
6665
- exports.syntaxHeading3 = syntaxHeading3;
6666
- exports.syntaxHeading4 = syntaxHeading4;
6667
- exports.syntaxHeading5 = syntaxHeading5;
6668
- exports.syntaxHeading6 = syntaxHeading6;
6669
- exports.syntaxInteger = syntaxInteger;
6670
- exports.syntaxInvalid = syntaxInvalid;
6671
- exports.syntaxKeyword = syntaxKeyword;
6672
- exports.syntaxLabelName = syntaxLabelName;
6673
- exports.syntaxLineComment = syntaxLineComment;
6674
- exports.syntaxLink = syntaxLink;
6675
- exports.syntaxList = syntaxList;
6676
- exports.syntaxLiteral = syntaxLiteral;
6677
- exports.syntaxLocal = syntaxLocal;
6678
- exports.syntaxLogicOperator = syntaxLogicOperator;
6679
- exports.syntaxMacroName = syntaxMacroName;
6680
- exports.syntaxMeta = syntaxMeta;
6681
- exports.syntaxModifier = syntaxModifier;
6682
- exports.syntaxModuleKeyword = syntaxModuleKeyword;
6683
- exports.syntaxMonospace = syntaxMonospace;
6684
- exports.syntaxName = syntaxName;
6685
- exports.syntaxNamespace = syntaxNamespace;
6686
- exports.syntaxNull = syntaxNull;
6687
- exports.syntaxNumber = syntaxNumber;
6688
- exports.syntaxOperator = syntaxOperator;
6689
- exports.syntaxOperatorKeyword = syntaxOperatorKeyword;
6690
- exports.syntaxParen = syntaxParen;
6691
- exports.syntaxProcessingInstruction = syntaxProcessingInstruction;
6692
- exports.syntaxPropertyName = syntaxPropertyName;
6693
- exports.syntaxPunctuation = syntaxPunctuation;
6694
- exports.syntaxQuote = syntaxQuote;
6695
- exports.syntaxRegexp = syntaxRegexp;
6696
- exports.syntaxSelf = syntaxSelf;
6697
- exports.syntaxSeparator = syntaxSeparator;
6698
- exports.syntaxSpecial = syntaxSpecial;
6699
- exports.syntaxSpecialString = syntaxSpecialString;
6700
- exports.syntaxSquareBracket = syntaxSquareBracket;
6701
- exports.syntaxStandard = syntaxStandard;
6702
- exports.syntaxStrikethrough = syntaxStrikethrough;
6703
- exports.syntaxString = syntaxString;
6704
- exports.syntaxStrong = syntaxStrong;
6705
- exports.syntaxTag = syntaxTag;
6706
- exports.syntaxTagName = syntaxTagName;
6707
- exports.syntaxType = syntaxType;
6708
- exports.syntaxTypeName = syntaxTypeName;
6709
- exports.syntaxTypeOperator = syntaxTypeOperator;
6710
- exports.syntaxUnit = syntaxUnit;
6711
- exports.syntaxUpdateOperator = syntaxUpdateOperator;
6712
- exports.syntaxUrl = syntaxUrl;
6713
- exports.syntaxVariable = syntaxVariable;
6714
- exports.syntaxVariableName = syntaxVariableName;
6715
- Object.defineProperty(exports, 'tagTokens', {
6716
- enumerable: true,
6717
- get: function () {
6718
- return tag_exports;
6719
- }
6720
- });
6721
- exports.textDisabled = textDisabled;
6722
- exports.textError = textError;
6723
- exports.textHelper = textHelper;
6724
- exports.textInverse = textInverse;
6725
- exports.textOnColor = textOnColor;
6726
- exports.textOnColorDisabled = textOnColorDisabled;
6727
- exports.textPlaceholder = textPlaceholder;
6728
- exports.textPrimary = textPrimary;
6729
- exports.textSecondary = textSecondary;
6730
- exports.themes = themes;
6731
- exports.toggleOff = toggleOff;
6732
- exports.unstable_metadata = unstable_metadata;
6733
- Object.defineProperty(exports, 'v10', {
6734
- enumerable: true,
6735
- get: function () {
6736
- return v10_exports;
6737
- }
6738
- });
6739
- Object.defineProperty(exports, 'white', {
6740
- enumerable: true,
6741
- get: function () {
6742
- return white_exports;
6743
- }
5992
+ //#endregion
5993
+ exports.aiAuraEnd = aiAuraEnd;
5994
+ exports.aiAuraHoverBackground = aiAuraHoverBackground;
5995
+ exports.aiAuraHoverEnd = aiAuraHoverEnd;
5996
+ exports.aiAuraHoverStart = aiAuraHoverStart;
5997
+ exports.aiAuraStart = aiAuraStart;
5998
+ exports.aiAuraStartSm = aiAuraStartSm;
5999
+ exports.aiBorderEnd = aiBorderEnd;
6000
+ exports.aiBorderStart = aiBorderStart;
6001
+ exports.aiBorderStrong = aiBorderStrong;
6002
+ exports.aiDropShadow = aiDropShadow;
6003
+ exports.aiInnerShadow = aiInnerShadow;
6004
+ exports.aiOverlay = aiOverlay;
6005
+ exports.aiPopoverBackground = aiPopoverBackground;
6006
+ exports.aiPopoverCaretBottom = aiPopoverCaretBottom;
6007
+ exports.aiPopoverCaretBottomBackground = aiPopoverCaretBottomBackground;
6008
+ exports.aiPopoverCaretBottomBackgroundActions = aiPopoverCaretBottomBackgroundActions;
6009
+ exports.aiPopoverCaretCenter = aiPopoverCaretCenter;
6010
+ exports.aiPopoverShadowOuter01 = aiPopoverShadowOuter01;
6011
+ exports.aiPopoverShadowOuter02 = aiPopoverShadowOuter02;
6012
+ exports.aiSkeletonBackground = aiSkeletonBackground;
6013
+ exports.aiSkeletonElementBackground = aiSkeletonElementBackground;
6014
+ exports.background = background;
6015
+ exports.backgroundActive = backgroundActive;
6016
+ exports.backgroundBrand = backgroundBrand;
6017
+ exports.backgroundHover = backgroundHover;
6018
+ exports.backgroundInverse = backgroundInverse;
6019
+ exports.backgroundInverseHover = backgroundInverseHover;
6020
+ exports.backgroundSelected = backgroundSelected;
6021
+ exports.backgroundSelectedHover = backgroundSelectedHover;
6022
+ Object.defineProperty(exports, "bodyLong01", {
6023
+ enumerable: true,
6024
+ get: function() {
6025
+ return _carbon_type.bodyLong01;
6026
+ }
6027
+ });
6028
+ Object.defineProperty(exports, "bodyLong02", {
6029
+ enumerable: true,
6030
+ get: function() {
6031
+ return _carbon_type.bodyLong02;
6032
+ }
6033
+ });
6034
+ Object.defineProperty(exports, "bodyShort01", {
6035
+ enumerable: true,
6036
+ get: function() {
6037
+ return _carbon_type.bodyShort01;
6038
+ }
6039
+ });
6040
+ Object.defineProperty(exports, "bodyShort02", {
6041
+ enumerable: true,
6042
+ get: function() {
6043
+ return _carbon_type.bodyShort02;
6044
+ }
6045
+ });
6046
+ exports.borderDisabled = borderDisabled;
6047
+ exports.borderInteractive = borderInteractive;
6048
+ exports.borderInverse = borderInverse;
6049
+ exports.borderStrong01 = borderStrong01;
6050
+ exports.borderStrong02 = borderStrong02;
6051
+ exports.borderStrong03 = borderStrong03;
6052
+ exports.borderSubtle00 = borderSubtle00;
6053
+ exports.borderSubtle01 = borderSubtle01;
6054
+ exports.borderSubtle02 = borderSubtle02;
6055
+ exports.borderSubtle03 = borderSubtle03;
6056
+ exports.borderSubtleSelected01 = borderSubtleSelected01;
6057
+ exports.borderSubtleSelected02 = borderSubtleSelected02;
6058
+ exports.borderSubtleSelected03 = borderSubtleSelected03;
6059
+ exports.borderTile01 = borderTile01;
6060
+ exports.borderTile02 = borderTile02;
6061
+ exports.borderTile03 = borderTile03;
6062
+ Object.defineProperty(exports, "buttonTokens", {
6063
+ enumerable: true,
6064
+ get: function() {
6065
+ return button_exports;
6066
+ }
6067
+ });
6068
+ Object.defineProperty(exports, "caption01", {
6069
+ enumerable: true,
6070
+ get: function() {
6071
+ return _carbon_type.caption01;
6072
+ }
6073
+ });
6074
+ Object.defineProperty(exports, "caption02", {
6075
+ enumerable: true,
6076
+ get: function() {
6077
+ return _carbon_type.caption02;
6078
+ }
6079
+ });
6080
+ exports.chatAvatarAgent = chatAvatarAgent;
6081
+ exports.chatAvatarBot = chatAvatarBot;
6082
+ exports.chatAvatarUser = chatAvatarUser;
6083
+ exports.chatBubbleAgent = chatBubbleAgent;
6084
+ exports.chatBubbleAgentText = chatBubbleAgentText;
6085
+ exports.chatBubbleBorder = chatBubbleBorder;
6086
+ exports.chatBubbleUser = chatBubbleUser;
6087
+ exports.chatBubbleUserText = chatBubbleUserText;
6088
+ exports.chatButton = chatButton;
6089
+ exports.chatButtonActive = chatButtonActive;
6090
+ exports.chatButtonHover = chatButtonHover;
6091
+ exports.chatButtonSelected = chatButtonSelected;
6092
+ exports.chatButtonTextHover = chatButtonTextHover;
6093
+ exports.chatButtonTextSelected = chatButtonTextSelected;
6094
+ exports.chatHeaderBackground = chatHeaderBackground;
6095
+ exports.chatHeaderText = chatHeaderText;
6096
+ exports.chatPromptBackground = chatPromptBackground;
6097
+ exports.chatPromptBorderEnd = chatPromptBorderEnd;
6098
+ exports.chatPromptBorderStart = chatPromptBorderStart;
6099
+ exports.chatPromptText = chatPromptText;
6100
+ exports.chatShellBackground = chatShellBackground;
6101
+ Object.defineProperty(exports, "code01", {
6102
+ enumerable: true,
6103
+ get: function() {
6104
+ return _carbon_type.code01;
6105
+ }
6106
+ });
6107
+ Object.defineProperty(exports, "code02", {
6108
+ enumerable: true,
6109
+ get: function() {
6110
+ return _carbon_type.code02;
6111
+ }
6112
+ });
6113
+ exports.colorScheme = colorScheme;
6114
+ Object.defineProperty(exports, "container01", {
6115
+ enumerable: true,
6116
+ get: function() {
6117
+ return _carbon_layout.container01;
6118
+ }
6119
+ });
6120
+ Object.defineProperty(exports, "container02", {
6121
+ enumerable: true,
6122
+ get: function() {
6123
+ return _carbon_layout.container02;
6124
+ }
6125
+ });
6126
+ Object.defineProperty(exports, "container03", {
6127
+ enumerable: true,
6128
+ get: function() {
6129
+ return _carbon_layout.container03;
6130
+ }
6131
+ });
6132
+ Object.defineProperty(exports, "container04", {
6133
+ enumerable: true,
6134
+ get: function() {
6135
+ return _carbon_layout.container04;
6136
+ }
6137
+ });
6138
+ Object.defineProperty(exports, "container05", {
6139
+ enumerable: true,
6140
+ get: function() {
6141
+ return _carbon_layout.container05;
6142
+ }
6143
+ });
6144
+ Object.defineProperty(exports, "contentSwitcherTokens", {
6145
+ enumerable: true,
6146
+ get: function() {
6147
+ return content_switcher_exports;
6148
+ }
6149
+ });
6150
+ Object.defineProperty(exports, "display01", {
6151
+ enumerable: true,
6152
+ get: function() {
6153
+ return _carbon_type.display01;
6154
+ }
6155
+ });
6156
+ Object.defineProperty(exports, "display02", {
6157
+ enumerable: true,
6158
+ get: function() {
6159
+ return _carbon_type.display02;
6160
+ }
6161
+ });
6162
+ Object.defineProperty(exports, "display03", {
6163
+ enumerable: true,
6164
+ get: function() {
6165
+ return _carbon_type.display03;
6166
+ }
6167
+ });
6168
+ Object.defineProperty(exports, "display04", {
6169
+ enumerable: true,
6170
+ get: function() {
6171
+ return _carbon_type.display04;
6172
+ }
6173
+ });
6174
+ Object.defineProperty(exports, "expressiveHeading01", {
6175
+ enumerable: true,
6176
+ get: function() {
6177
+ return _carbon_type.expressiveHeading01;
6178
+ }
6179
+ });
6180
+ Object.defineProperty(exports, "expressiveHeading02", {
6181
+ enumerable: true,
6182
+ get: function() {
6183
+ return _carbon_type.expressiveHeading02;
6184
+ }
6185
+ });
6186
+ Object.defineProperty(exports, "expressiveHeading03", {
6187
+ enumerable: true,
6188
+ get: function() {
6189
+ return _carbon_type.expressiveHeading03;
6190
+ }
6191
+ });
6192
+ Object.defineProperty(exports, "expressiveHeading04", {
6193
+ enumerable: true,
6194
+ get: function() {
6195
+ return _carbon_type.expressiveHeading04;
6196
+ }
6197
+ });
6198
+ Object.defineProperty(exports, "expressiveHeading05", {
6199
+ enumerable: true,
6200
+ get: function() {
6201
+ return _carbon_type.expressiveHeading05;
6202
+ }
6203
+ });
6204
+ Object.defineProperty(exports, "expressiveHeading06", {
6205
+ enumerable: true,
6206
+ get: function() {
6207
+ return _carbon_type.expressiveHeading06;
6208
+ }
6209
+ });
6210
+ Object.defineProperty(exports, "expressiveParagraph01", {
6211
+ enumerable: true,
6212
+ get: function() {
6213
+ return _carbon_type.expressiveParagraph01;
6214
+ }
6215
+ });
6216
+ exports.field01 = field01;
6217
+ exports.field02 = field02;
6218
+ exports.field03 = field03;
6219
+ exports.fieldHover01 = fieldHover01;
6220
+ exports.fieldHover02 = fieldHover02;
6221
+ exports.fieldHover03 = fieldHover03;
6222
+ Object.defineProperty(exports, "fluidSpacing01", {
6223
+ enumerable: true,
6224
+ get: function() {
6225
+ return _carbon_layout.fluidSpacing01;
6226
+ }
6227
+ });
6228
+ Object.defineProperty(exports, "fluidSpacing02", {
6229
+ enumerable: true,
6230
+ get: function() {
6231
+ return _carbon_layout.fluidSpacing02;
6232
+ }
6233
+ });
6234
+ Object.defineProperty(exports, "fluidSpacing03", {
6235
+ enumerable: true,
6236
+ get: function() {
6237
+ return _carbon_layout.fluidSpacing03;
6238
+ }
6239
+ });
6240
+ Object.defineProperty(exports, "fluidSpacing04", {
6241
+ enumerable: true,
6242
+ get: function() {
6243
+ return _carbon_layout.fluidSpacing04;
6244
+ }
6245
+ });
6246
+ exports.focus = focus;
6247
+ exports.focusInset = focusInset;
6248
+ exports.focusInverse = focusInverse;
6249
+ exports.formatTokenName = formatTokenName;
6250
+ Object.defineProperty(exports, "g10", {
6251
+ enumerable: true,
6252
+ get: function() {
6253
+ return g10_exports;
6254
+ }
6255
+ });
6256
+ Object.defineProperty(exports, "g100", {
6257
+ enumerable: true,
6258
+ get: function() {
6259
+ return g100_exports;
6260
+ }
6261
+ });
6262
+ Object.defineProperty(exports, "g90", {
6263
+ enumerable: true,
6264
+ get: function() {
6265
+ return g90_exports;
6266
+ }
6267
+ });
6268
+ Object.defineProperty(exports, "heading01", {
6269
+ enumerable: true,
6270
+ get: function() {
6271
+ return _carbon_type.heading01;
6272
+ }
6273
+ });
6274
+ Object.defineProperty(exports, "heading02", {
6275
+ enumerable: true,
6276
+ get: function() {
6277
+ return _carbon_type.heading02;
6278
+ }
6279
+ });
6280
+ Object.defineProperty(exports, "helperText01", {
6281
+ enumerable: true,
6282
+ get: function() {
6283
+ return _carbon_type.helperText01;
6284
+ }
6285
+ });
6286
+ Object.defineProperty(exports, "helperText02", {
6287
+ enumerable: true,
6288
+ get: function() {
6289
+ return _carbon_type.helperText02;
6290
+ }
6291
+ });
6292
+ exports.highlight = highlight;
6293
+ exports.iconDisabled = iconDisabled;
6294
+ exports.iconInteractive = iconInteractive;
6295
+ exports.iconInverse = iconInverse;
6296
+ exports.iconOnColor = iconOnColor;
6297
+ exports.iconOnColorDisabled = iconOnColorDisabled;
6298
+ exports.iconPrimary = iconPrimary;
6299
+ exports.iconSecondary = iconSecondary;
6300
+ Object.defineProperty(exports, "iconSize01", {
6301
+ enumerable: true,
6302
+ get: function() {
6303
+ return _carbon_layout.iconSize01;
6304
+ }
6305
+ });
6306
+ Object.defineProperty(exports, "iconSize02", {
6307
+ enumerable: true,
6308
+ get: function() {
6309
+ return _carbon_layout.iconSize02;
6310
+ }
6311
+ });
6312
+ exports.interactive = interactive;
6313
+ Object.defineProperty(exports, "label01", {
6314
+ enumerable: true,
6315
+ get: function() {
6316
+ return _carbon_type.label01;
6317
+ }
6318
+ });
6319
+ Object.defineProperty(exports, "label02", {
6320
+ enumerable: true,
6321
+ get: function() {
6322
+ return _carbon_type.label02;
6323
+ }
6324
+ });
6325
+ exports.layer01 = layer01;
6326
+ exports.layer02 = layer02;
6327
+ exports.layer03 = layer03;
6328
+ exports.layerAccent01 = layerAccent01;
6329
+ exports.layerAccent02 = layerAccent02;
6330
+ exports.layerAccent03 = layerAccent03;
6331
+ exports.layerAccentActive01 = layerAccentActive01;
6332
+ exports.layerAccentActive02 = layerAccentActive02;
6333
+ exports.layerAccentActive03 = layerAccentActive03;
6334
+ exports.layerAccentHover01 = layerAccentHover01;
6335
+ exports.layerAccentHover02 = layerAccentHover02;
6336
+ exports.layerAccentHover03 = layerAccentHover03;
6337
+ exports.layerActive01 = layerActive01;
6338
+ exports.layerActive02 = layerActive02;
6339
+ exports.layerActive03 = layerActive03;
6340
+ exports.layerBackground01 = layerBackground01;
6341
+ exports.layerBackground02 = layerBackground02;
6342
+ exports.layerBackground03 = layerBackground03;
6343
+ exports.layerHover01 = layerHover01;
6344
+ exports.layerHover02 = layerHover02;
6345
+ exports.layerHover03 = layerHover03;
6346
+ exports.layerSelected01 = layerSelected01;
6347
+ exports.layerSelected02 = layerSelected02;
6348
+ exports.layerSelected03 = layerSelected03;
6349
+ exports.layerSelectedDisabled = layerSelectedDisabled;
6350
+ exports.layerSelectedHover01 = layerSelectedHover01;
6351
+ exports.layerSelectedHover02 = layerSelectedHover02;
6352
+ exports.layerSelectedHover03 = layerSelectedHover03;
6353
+ exports.layerSelectedInverse = layerSelectedInverse;
6354
+ Object.defineProperty(exports, "layout01", {
6355
+ enumerable: true,
6356
+ get: function() {
6357
+ return _carbon_layout.layout01;
6358
+ }
6359
+ });
6360
+ Object.defineProperty(exports, "layout02", {
6361
+ enumerable: true,
6362
+ get: function() {
6363
+ return _carbon_layout.layout02;
6364
+ }
6365
+ });
6366
+ Object.defineProperty(exports, "layout03", {
6367
+ enumerable: true,
6368
+ get: function() {
6369
+ return _carbon_layout.layout03;
6370
+ }
6371
+ });
6372
+ Object.defineProperty(exports, "layout04", {
6373
+ enumerable: true,
6374
+ get: function() {
6375
+ return _carbon_layout.layout04;
6376
+ }
6377
+ });
6378
+ Object.defineProperty(exports, "layout05", {
6379
+ enumerable: true,
6380
+ get: function() {
6381
+ return _carbon_layout.layout05;
6382
+ }
6383
+ });
6384
+ Object.defineProperty(exports, "layout06", {
6385
+ enumerable: true,
6386
+ get: function() {
6387
+ return _carbon_layout.layout06;
6388
+ }
6389
+ });
6390
+ Object.defineProperty(exports, "layout07", {
6391
+ enumerable: true,
6392
+ get: function() {
6393
+ return _carbon_layout.layout07;
6394
+ }
6395
+ });
6396
+ exports.linkInverse = linkInverse;
6397
+ exports.linkInverseActive = linkInverseActive;
6398
+ exports.linkInverseHover = linkInverseHover;
6399
+ exports.linkInverseVisited = linkInverseVisited;
6400
+ exports.linkPrimary = linkPrimary;
6401
+ exports.linkPrimaryHover = linkPrimaryHover;
6402
+ exports.linkSecondary = linkSecondary;
6403
+ exports.linkVisited = linkVisited;
6404
+ Object.defineProperty(exports, "notificationTokens", {
6405
+ enumerable: true,
6406
+ get: function() {
6407
+ return notification_exports;
6408
+ }
6409
+ });
6410
+ exports.overlay = overlay;
6411
+ Object.defineProperty(exports, "productiveHeading01", {
6412
+ enumerable: true,
6413
+ get: function() {
6414
+ return _carbon_type.productiveHeading01;
6415
+ }
6416
+ });
6417
+ Object.defineProperty(exports, "productiveHeading02", {
6418
+ enumerable: true,
6419
+ get: function() {
6420
+ return _carbon_type.productiveHeading02;
6421
+ }
6422
+ });
6423
+ Object.defineProperty(exports, "productiveHeading03", {
6424
+ enumerable: true,
6425
+ get: function() {
6426
+ return _carbon_type.productiveHeading03;
6427
+ }
6428
+ });
6429
+ Object.defineProperty(exports, "productiveHeading04", {
6430
+ enumerable: true,
6431
+ get: function() {
6432
+ return _carbon_type.productiveHeading04;
6433
+ }
6434
+ });
6435
+ Object.defineProperty(exports, "productiveHeading05", {
6436
+ enumerable: true,
6437
+ get: function() {
6438
+ return _carbon_type.productiveHeading05;
6439
+ }
6440
+ });
6441
+ Object.defineProperty(exports, "productiveHeading06", {
6442
+ enumerable: true,
6443
+ get: function() {
6444
+ return _carbon_type.productiveHeading06;
6445
+ }
6446
+ });
6447
+ Object.defineProperty(exports, "productiveHeading07", {
6448
+ enumerable: true,
6449
+ get: function() {
6450
+ return _carbon_type.productiveHeading07;
6451
+ }
6452
+ });
6453
+ Object.defineProperty(exports, "quotation01", {
6454
+ enumerable: true,
6455
+ get: function() {
6456
+ return _carbon_type.quotation01;
6457
+ }
6458
+ });
6459
+ Object.defineProperty(exports, "quotation02", {
6460
+ enumerable: true,
6461
+ get: function() {
6462
+ return _carbon_type.quotation02;
6463
+ }
6464
+ });
6465
+ exports.shadow = shadow;
6466
+ Object.defineProperty(exports, "size2XLarge", {
6467
+ enumerable: true,
6468
+ get: function() {
6469
+ return _carbon_layout.size2XLarge;
6470
+ }
6471
+ });
6472
+ Object.defineProperty(exports, "sizeLarge", {
6473
+ enumerable: true,
6474
+ get: function() {
6475
+ return _carbon_layout.sizeLarge;
6476
+ }
6477
+ });
6478
+ Object.defineProperty(exports, "sizeMedium", {
6479
+ enumerable: true,
6480
+ get: function() {
6481
+ return _carbon_layout.sizeMedium;
6482
+ }
6483
+ });
6484
+ Object.defineProperty(exports, "sizeSmall", {
6485
+ enumerable: true,
6486
+ get: function() {
6487
+ return _carbon_layout.sizeSmall;
6488
+ }
6489
+ });
6490
+ Object.defineProperty(exports, "sizeXLarge", {
6491
+ enumerable: true,
6492
+ get: function() {
6493
+ return _carbon_layout.sizeXLarge;
6494
+ }
6495
+ });
6496
+ Object.defineProperty(exports, "sizeXSmall", {
6497
+ enumerable: true,
6498
+ get: function() {
6499
+ return _carbon_layout.sizeXSmall;
6500
+ }
6501
+ });
6502
+ exports.skeletonBackground = skeletonBackground;
6503
+ exports.skeletonElement = skeletonElement;
6504
+ Object.defineProperty(exports, "spacing01", {
6505
+ enumerable: true,
6506
+ get: function() {
6507
+ return _carbon_layout.spacing01;
6508
+ }
6509
+ });
6510
+ Object.defineProperty(exports, "spacing02", {
6511
+ enumerable: true,
6512
+ get: function() {
6513
+ return _carbon_layout.spacing02;
6514
+ }
6515
+ });
6516
+ Object.defineProperty(exports, "spacing03", {
6517
+ enumerable: true,
6518
+ get: function() {
6519
+ return _carbon_layout.spacing03;
6520
+ }
6521
+ });
6522
+ Object.defineProperty(exports, "spacing04", {
6523
+ enumerable: true,
6524
+ get: function() {
6525
+ return _carbon_layout.spacing04;
6526
+ }
6527
+ });
6528
+ Object.defineProperty(exports, "spacing05", {
6529
+ enumerable: true,
6530
+ get: function() {
6531
+ return _carbon_layout.spacing05;
6532
+ }
6533
+ });
6534
+ Object.defineProperty(exports, "spacing06", {
6535
+ enumerable: true,
6536
+ get: function() {
6537
+ return _carbon_layout.spacing06;
6538
+ }
6539
+ });
6540
+ Object.defineProperty(exports, "spacing07", {
6541
+ enumerable: true,
6542
+ get: function() {
6543
+ return _carbon_layout.spacing07;
6544
+ }
6545
+ });
6546
+ Object.defineProperty(exports, "spacing08", {
6547
+ enumerable: true,
6548
+ get: function() {
6549
+ return _carbon_layout.spacing08;
6550
+ }
6551
+ });
6552
+ Object.defineProperty(exports, "spacing09", {
6553
+ enumerable: true,
6554
+ get: function() {
6555
+ return _carbon_layout.spacing09;
6556
+ }
6557
+ });
6558
+ Object.defineProperty(exports, "spacing10", {
6559
+ enumerable: true,
6560
+ get: function() {
6561
+ return _carbon_layout.spacing10;
6562
+ }
6563
+ });
6564
+ Object.defineProperty(exports, "spacing11", {
6565
+ enumerable: true,
6566
+ get: function() {
6567
+ return _carbon_layout.spacing11;
6568
+ }
6569
+ });
6570
+ Object.defineProperty(exports, "spacing12", {
6571
+ enumerable: true,
6572
+ get: function() {
6573
+ return _carbon_layout.spacing12;
6574
+ }
6575
+ });
6576
+ Object.defineProperty(exports, "spacing13", {
6577
+ enumerable: true,
6578
+ get: function() {
6579
+ return _carbon_layout.spacing13;
6580
+ }
6581
+ });
6582
+ Object.defineProperty(exports, "statusTokens", {
6583
+ enumerable: true,
6584
+ get: function() {
6585
+ return status_exports;
6586
+ }
6587
+ });
6588
+ exports.supportCautionMajor = supportCautionMajor;
6589
+ exports.supportCautionMinor = supportCautionMinor;
6590
+ exports.supportCautionUndefined = supportCautionUndefined;
6591
+ exports.supportError = supportError;
6592
+ exports.supportErrorInverse = supportErrorInverse;
6593
+ exports.supportInfo = supportInfo;
6594
+ exports.supportInfoInverse = supportInfoInverse;
6595
+ exports.supportSuccess = supportSuccess;
6596
+ exports.supportSuccessInverse = supportSuccessInverse;
6597
+ exports.supportWarning = supportWarning;
6598
+ exports.supportWarningInverse = supportWarningInverse;
6599
+ exports.syntaxAngleBracket = syntaxAngleBracket;
6600
+ exports.syntaxAnnotation = syntaxAnnotation;
6601
+ exports.syntaxArithmeticOperator = syntaxArithmeticOperator;
6602
+ exports.syntaxAtom = syntaxAtom;
6603
+ exports.syntaxAttribute = syntaxAttribute;
6604
+ exports.syntaxAttributeName = syntaxAttributeName;
6605
+ exports.syntaxAttributeValue = syntaxAttributeValue;
6606
+ exports.syntaxBitwiseOperator = syntaxBitwiseOperator;
6607
+ exports.syntaxBlockComment = syntaxBlockComment;
6608
+ exports.syntaxBool = syntaxBool;
6609
+ exports.syntaxBrace = syntaxBrace;
6610
+ exports.syntaxBracket = syntaxBracket;
6611
+ exports.syntaxCharacter = syntaxCharacter;
6612
+ exports.syntaxClassName = syntaxClassName;
6613
+ exports.syntaxColor = syntaxColor;
6614
+ exports.syntaxComment = syntaxComment;
6615
+ exports.syntaxCompareOperator = syntaxCompareOperator;
6616
+ exports.syntaxConstant = syntaxConstant;
6617
+ exports.syntaxContent = syntaxContent;
6618
+ exports.syntaxContentSeparator = syntaxContentSeparator;
6619
+ exports.syntaxControlKeyword = syntaxControlKeyword;
6620
+ exports.syntaxControlOperator = syntaxControlOperator;
6621
+ exports.syntaxDefinition = syntaxDefinition;
6622
+ exports.syntaxDefinitionKeyword = syntaxDefinitionKeyword;
6623
+ exports.syntaxDefinitionOperator = syntaxDefinitionOperator;
6624
+ exports.syntaxDeleted = syntaxDeleted;
6625
+ exports.syntaxDerefOperator = syntaxDerefOperator;
6626
+ exports.syntaxDocComment = syntaxDocComment;
6627
+ exports.syntaxDocString = syntaxDocString;
6628
+ exports.syntaxDocumentMeta = syntaxDocumentMeta;
6629
+ exports.syntaxEmphasis = syntaxEmphasis;
6630
+ exports.syntaxEscape = syntaxEscape;
6631
+ exports.syntaxFloat = syntaxFloat;
6632
+ exports.syntaxFunction = syntaxFunction;
6633
+ exports.syntaxHeading = syntaxHeading;
6634
+ exports.syntaxHeading1 = syntaxHeading1;
6635
+ exports.syntaxHeading2 = syntaxHeading2;
6636
+ exports.syntaxHeading3 = syntaxHeading3;
6637
+ exports.syntaxHeading4 = syntaxHeading4;
6638
+ exports.syntaxHeading5 = syntaxHeading5;
6639
+ exports.syntaxHeading6 = syntaxHeading6;
6640
+ exports.syntaxInserted = syntaxInserted;
6641
+ exports.syntaxInteger = syntaxInteger;
6642
+ exports.syntaxInvalid = syntaxInvalid;
6643
+ exports.syntaxKeyword = syntaxKeyword;
6644
+ exports.syntaxLabelName = syntaxLabelName;
6645
+ exports.syntaxLineComment = syntaxLineComment;
6646
+ exports.syntaxLink = syntaxLink;
6647
+ exports.syntaxList = syntaxList;
6648
+ exports.syntaxLiteral = syntaxLiteral;
6649
+ exports.syntaxLocal = syntaxLocal;
6650
+ exports.syntaxLogicOperator = syntaxLogicOperator;
6651
+ exports.syntaxMacroName = syntaxMacroName;
6652
+ exports.syntaxMeta = syntaxMeta;
6653
+ exports.syntaxModifier = syntaxModifier;
6654
+ exports.syntaxModuleKeyword = syntaxModuleKeyword;
6655
+ exports.syntaxMonospace = syntaxMonospace;
6656
+ exports.syntaxName = syntaxName;
6657
+ exports.syntaxNamespace = syntaxNamespace;
6658
+ exports.syntaxNull = syntaxNull;
6659
+ exports.syntaxNumber = syntaxNumber;
6660
+ exports.syntaxOperator = syntaxOperator;
6661
+ exports.syntaxOperatorKeyword = syntaxOperatorKeyword;
6662
+ exports.syntaxParen = syntaxParen;
6663
+ exports.syntaxProcessingInstruction = syntaxProcessingInstruction;
6664
+ exports.syntaxPropertyName = syntaxPropertyName;
6665
+ exports.syntaxPunctuation = syntaxPunctuation;
6666
+ exports.syntaxQuote = syntaxQuote;
6667
+ exports.syntaxRegexp = syntaxRegexp;
6668
+ exports.syntaxSelf = syntaxSelf;
6669
+ exports.syntaxSeparator = syntaxSeparator;
6670
+ exports.syntaxSpecial = syntaxSpecial;
6671
+ exports.syntaxSpecialString = syntaxSpecialString;
6672
+ exports.syntaxSquareBracket = syntaxSquareBracket;
6673
+ exports.syntaxStandard = syntaxStandard;
6674
+ exports.syntaxStrikethrough = syntaxStrikethrough;
6675
+ exports.syntaxString = syntaxString;
6676
+ exports.syntaxStrong = syntaxStrong;
6677
+ exports.syntaxTag = syntaxTag;
6678
+ exports.syntaxTagName = syntaxTagName;
6679
+ exports.syntaxType = syntaxType;
6680
+ exports.syntaxTypeName = syntaxTypeName;
6681
+ exports.syntaxTypeOperator = syntaxTypeOperator;
6682
+ exports.syntaxUnit = syntaxUnit;
6683
+ exports.syntaxUpdateOperator = syntaxUpdateOperator;
6684
+ exports.syntaxUrl = syntaxUrl;
6685
+ exports.syntaxVariable = syntaxVariable;
6686
+ exports.syntaxVariableName = syntaxVariableName;
6687
+ Object.defineProperty(exports, "tagTokens", {
6688
+ enumerable: true,
6689
+ get: function() {
6690
+ return tag_exports;
6691
+ }
6692
+ });
6693
+ exports.textDisabled = textDisabled;
6694
+ exports.textError = textError;
6695
+ exports.textHelper = textHelper;
6696
+ exports.textInverse = textInverse;
6697
+ exports.textOnColor = textOnColor;
6698
+ exports.textOnColorDisabled = textOnColorDisabled;
6699
+ exports.textPlaceholder = textPlaceholder;
6700
+ exports.textPrimary = textPrimary;
6701
+ exports.textSecondary = textSecondary;
6702
+ exports.themes = themes;
6703
+ exports.toggleOff = toggleOff;
6704
+ exports.unstable_metadata = unstable_metadata;
6705
+ Object.defineProperty(exports, "v10", {
6706
+ enumerable: true,
6707
+ get: function() {
6708
+ return v10_exports;
6709
+ }
6710
+ });
6711
+ Object.defineProperty(exports, "white", {
6712
+ enumerable: true,
6713
+ get: function() {
6714
+ return white_exports;
6715
+ }
6716
+ });
6744
6717
  });
6745
- });