@carbon/themes 11.71.0 → 11.72.0-rc.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/umd/index.js
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
(function(global, factory) {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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:
|
|
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
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
-
|
|
47
|
-
|
|
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
|
-
//#
|
|
121
|
-
|
|
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
|
-
//#
|
|
669
|
-
|
|
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
|
-
//#
|
|
1217
|
-
|
|
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
|
-
//#
|
|
1765
|
-
|
|
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
|
-
//#
|
|
2313
|
-
|
|
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
|
-
//#
|
|
2713
|
-
|
|
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
|
-
//#
|
|
3113
|
-
|
|
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
|
-
//#
|
|
3513
|
-
|
|
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
|
-
//#
|
|
4076
|
-
|
|
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
|
-
//#
|
|
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
|
-
//#
|
|
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
|
-
//#
|
|
4462
|
-
|
|
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
|
-
//#
|
|
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
|
-
//#
|
|
4757
|
-
|
|
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
|
-
//#
|
|
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
|
-
//#
|
|
4840
|
-
|
|
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
|
-
//#
|
|
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
|
-
//#
|
|
4921
|
-
|
|
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
|
-
//#
|
|
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
|
-
//#
|
|
4958
|
-
|
|
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
|
-
//#
|
|
4984
|
-
|
|
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
|
-
//#
|
|
5096
|
-
|
|
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
|
-
//#
|
|
5572
|
-
|
|
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
|
-
//#
|
|
5695
|
-
|
|
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
|
-
//#
|
|
5744
|
-
|
|
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
|
-
//#
|
|
5783
|
-
|
|
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
|
-
|
|
5967
|
-
|
|
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
|
-
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
}
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
|
|
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
|
-
//#
|
|
6008
|
-
|
|
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
|
-
|
|
6023
|
-
exports.
|
|
6024
|
-
exports.
|
|
6025
|
-
exports.
|
|
6026
|
-
exports.
|
|
6027
|
-
exports.
|
|
6028
|
-
exports.
|
|
6029
|
-
exports.
|
|
6030
|
-
exports.
|
|
6031
|
-
exports.
|
|
6032
|
-
exports.
|
|
6033
|
-
exports.
|
|
6034
|
-
exports.
|
|
6035
|
-
exports.
|
|
6036
|
-
exports.
|
|
6037
|
-
exports.
|
|
6038
|
-
exports.
|
|
6039
|
-
exports.
|
|
6040
|
-
exports.
|
|
6041
|
-
exports.
|
|
6042
|
-
exports.
|
|
6043
|
-
exports.
|
|
6044
|
-
exports.
|
|
6045
|
-
exports.
|
|
6046
|
-
exports.
|
|
6047
|
-
exports.
|
|
6048
|
-
exports.
|
|
6049
|
-
exports.
|
|
6050
|
-
exports.
|
|
6051
|
-
exports
|
|
6052
|
-
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
|
|
6061
|
-
|
|
6062
|
-
|
|
6063
|
-
|
|
6064
|
-
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
exports.
|
|
6077
|
-
exports.
|
|
6078
|
-
exports.
|
|
6079
|
-
exports.
|
|
6080
|
-
exports.
|
|
6081
|
-
exports.
|
|
6082
|
-
exports.
|
|
6083
|
-
exports.
|
|
6084
|
-
exports.
|
|
6085
|
-
exports.
|
|
6086
|
-
exports.
|
|
6087
|
-
exports.
|
|
6088
|
-
exports.
|
|
6089
|
-
exports.
|
|
6090
|
-
exports.
|
|
6091
|
-
exports
|
|
6092
|
-
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
exports.
|
|
6111
|
-
exports.
|
|
6112
|
-
exports.
|
|
6113
|
-
exports.
|
|
6114
|
-
exports.
|
|
6115
|
-
exports.
|
|
6116
|
-
exports.
|
|
6117
|
-
exports.
|
|
6118
|
-
exports.
|
|
6119
|
-
exports.
|
|
6120
|
-
exports.
|
|
6121
|
-
exports.
|
|
6122
|
-
exports.
|
|
6123
|
-
exports.
|
|
6124
|
-
exports.
|
|
6125
|
-
exports.
|
|
6126
|
-
exports.
|
|
6127
|
-
exports.
|
|
6128
|
-
exports.
|
|
6129
|
-
exports.
|
|
6130
|
-
exports
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
|
|
6142
|
-
|
|
6143
|
-
exports
|
|
6144
|
-
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
-
|
|
6148
|
-
|
|
6149
|
-
|
|
6150
|
-
|
|
6151
|
-
|
|
6152
|
-
|
|
6153
|
-
|
|
6154
|
-
|
|
6155
|
-
|
|
6156
|
-
|
|
6157
|
-
|
|
6158
|
-
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
|
|
6163
|
-
|
|
6164
|
-
|
|
6165
|
-
|
|
6166
|
-
|
|
6167
|
-
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
6203
|
-
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
6208
|
-
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6239
|
-
|
|
6240
|
-
|
|
6241
|
-
|
|
6242
|
-
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
exports.
|
|
6247
|
-
exports.
|
|
6248
|
-
exports.
|
|
6249
|
-
exports.
|
|
6250
|
-
exports.
|
|
6251
|
-
exports
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6255
|
-
|
|
6256
|
-
|
|
6257
|
-
|
|
6258
|
-
|
|
6259
|
-
|
|
6260
|
-
|
|
6261
|
-
|
|
6262
|
-
|
|
6263
|
-
|
|
6264
|
-
|
|
6265
|
-
|
|
6266
|
-
|
|
6267
|
-
|
|
6268
|
-
|
|
6269
|
-
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
|
-
|
|
6275
|
-
|
|
6276
|
-
exports.
|
|
6277
|
-
exports.
|
|
6278
|
-
exports.
|
|
6279
|
-
exports
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
|
|
6285
|
-
|
|
6286
|
-
|
|
6287
|
-
|
|
6288
|
-
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
|
|
6294
|
-
|
|
6295
|
-
|
|
6296
|
-
|
|
6297
|
-
|
|
6298
|
-
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
6302
|
-
|
|
6303
|
-
|
|
6304
|
-
|
|
6305
|
-
|
|
6306
|
-
|
|
6307
|
-
|
|
6308
|
-
|
|
6309
|
-
|
|
6310
|
-
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
|
|
6317
|
-
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
|
|
6322
|
-
exports.
|
|
6323
|
-
exports.
|
|
6324
|
-
exports.
|
|
6325
|
-
exports.
|
|
6326
|
-
exports.
|
|
6327
|
-
exports.
|
|
6328
|
-
exports.
|
|
6329
|
-
exports
|
|
6330
|
-
|
|
6331
|
-
|
|
6332
|
-
|
|
6333
|
-
|
|
6334
|
-
|
|
6335
|
-
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6342
|
-
exports
|
|
6343
|
-
|
|
6344
|
-
|
|
6345
|
-
|
|
6346
|
-
|
|
6347
|
-
|
|
6348
|
-
|
|
6349
|
-
|
|
6350
|
-
|
|
6351
|
-
|
|
6352
|
-
|
|
6353
|
-
|
|
6354
|
-
|
|
6355
|
-
exports.
|
|
6356
|
-
exports.
|
|
6357
|
-
exports.
|
|
6358
|
-
exports.
|
|
6359
|
-
exports.
|
|
6360
|
-
exports.
|
|
6361
|
-
exports.
|
|
6362
|
-
exports.
|
|
6363
|
-
exports.
|
|
6364
|
-
exports.
|
|
6365
|
-
exports.
|
|
6366
|
-
exports.
|
|
6367
|
-
exports.
|
|
6368
|
-
exports.
|
|
6369
|
-
exports.
|
|
6370
|
-
exports.
|
|
6371
|
-
exports.
|
|
6372
|
-
exports.
|
|
6373
|
-
exports.
|
|
6374
|
-
exports.
|
|
6375
|
-
exports.
|
|
6376
|
-
exports.
|
|
6377
|
-
exports.
|
|
6378
|
-
exports.
|
|
6379
|
-
exports.
|
|
6380
|
-
exports.
|
|
6381
|
-
exports.
|
|
6382
|
-
exports.
|
|
6383
|
-
exports
|
|
6384
|
-
|
|
6385
|
-
|
|
6386
|
-
|
|
6387
|
-
|
|
6388
|
-
|
|
6389
|
-
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
6398
|
-
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
|
|
6404
|
-
|
|
6405
|
-
|
|
6406
|
-
|
|
6407
|
-
|
|
6408
|
-
|
|
6409
|
-
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6413
|
-
|
|
6414
|
-
|
|
6415
|
-
|
|
6416
|
-
|
|
6417
|
-
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
-
|
|
6421
|
-
|
|
6422
|
-
|
|
6423
|
-
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
exports.
|
|
6427
|
-
exports.
|
|
6428
|
-
exports.
|
|
6429
|
-
exports.
|
|
6430
|
-
exports.
|
|
6431
|
-
exports.
|
|
6432
|
-
exports.
|
|
6433
|
-
exports
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
exports
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
|
|
6444
|
-
|
|
6445
|
-
|
|
6446
|
-
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6470
|
-
|
|
6471
|
-
|
|
6472
|
-
|
|
6473
|
-
|
|
6474
|
-
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
exports
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6500
|
-
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
|
|
6504
|
-
|
|
6505
|
-
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
|
|
6525
|
-
|
|
6526
|
-
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
exports.
|
|
6533
|
-
exports
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
|
|
6538
|
-
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
|
|
6549
|
-
|
|
6550
|
-
|
|
6551
|
-
|
|
6552
|
-
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
|
|
6559
|
-
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6573
|
-
|
|
6574
|
-
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
|
|
6584
|
-
|
|
6585
|
-
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6592
|
-
|
|
6593
|
-
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
exports.
|
|
6619
|
-
exports.
|
|
6620
|
-
exports.
|
|
6621
|
-
exports.
|
|
6622
|
-
exports.
|
|
6623
|
-
exports.
|
|
6624
|
-
exports.
|
|
6625
|
-
exports.
|
|
6626
|
-
exports.
|
|
6627
|
-
exports.
|
|
6628
|
-
exports.
|
|
6629
|
-
exports.
|
|
6630
|
-
exports.
|
|
6631
|
-
exports.
|
|
6632
|
-
exports.
|
|
6633
|
-
exports.
|
|
6634
|
-
exports.
|
|
6635
|
-
exports.
|
|
6636
|
-
exports.
|
|
6637
|
-
exports.
|
|
6638
|
-
exports.
|
|
6639
|
-
exports.
|
|
6640
|
-
exports.
|
|
6641
|
-
exports.
|
|
6642
|
-
exports.
|
|
6643
|
-
exports.
|
|
6644
|
-
exports.
|
|
6645
|
-
exports.
|
|
6646
|
-
exports.
|
|
6647
|
-
exports.
|
|
6648
|
-
exports.
|
|
6649
|
-
exports.
|
|
6650
|
-
exports.
|
|
6651
|
-
exports.
|
|
6652
|
-
exports.
|
|
6653
|
-
exports.
|
|
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.
|
|
6670
|
-
exports.
|
|
6671
|
-
exports.
|
|
6672
|
-
exports.
|
|
6673
|
-
exports.
|
|
6674
|
-
exports.
|
|
6675
|
-
exports.
|
|
6676
|
-
exports.
|
|
6677
|
-
exports.
|
|
6678
|
-
exports.
|
|
6679
|
-
exports.
|
|
6680
|
-
exports.
|
|
6681
|
-
exports.
|
|
6682
|
-
exports.
|
|
6683
|
-
exports.
|
|
6684
|
-
exports.
|
|
6685
|
-
exports.
|
|
6686
|
-
exports.
|
|
6687
|
-
exports.
|
|
6688
|
-
exports.
|
|
6689
|
-
exports.
|
|
6690
|
-
exports.
|
|
6691
|
-
exports.
|
|
6692
|
-
exports.
|
|
6693
|
-
exports.
|
|
6694
|
-
exports.
|
|
6695
|
-
exports.
|
|
6696
|
-
exports.
|
|
6697
|
-
exports.
|
|
6698
|
-
exports.
|
|
6699
|
-
exports.
|
|
6700
|
-
exports.
|
|
6701
|
-
exports.
|
|
6702
|
-
exports.
|
|
6703
|
-
exports.
|
|
6704
|
-
exports.
|
|
6705
|
-
exports.
|
|
6706
|
-
exports.
|
|
6707
|
-
exports.
|
|
6708
|
-
exports.
|
|
6709
|
-
exports.
|
|
6710
|
-
exports.
|
|
6711
|
-
exports.
|
|
6712
|
-
exports.
|
|
6713
|
-
exports.
|
|
6714
|
-
exports.
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
}
|
|
6721
|
-
|
|
6722
|
-
exports.
|
|
6723
|
-
exports.
|
|
6724
|
-
exports.
|
|
6725
|
-
exports.
|
|
6726
|
-
exports.
|
|
6727
|
-
exports.
|
|
6728
|
-
exports.
|
|
6729
|
-
exports.
|
|
6730
|
-
exports.
|
|
6731
|
-
exports.
|
|
6732
|
-
exports.
|
|
6733
|
-
|
|
6734
|
-
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
}
|
|
6739
|
-
|
|
6740
|
-
|
|
6741
|
-
|
|
6742
|
-
|
|
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
|
-
});
|