@octaviaflow/themes 1.0.1 → 1.1.3
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/CHANGELOG.md +62 -0
- package/es/index.js +4981 -0
- package/lib/index.js +2404 -2618
- package/package.json +7 -8
- package/scss/generated/_button-tokens.scss +115 -0
- package/scss/generated/_content-switcher-tokens.scss +30 -0
- package/scss/generated/_notification-tokens.scss +77 -0
- package/scss/generated/_status-tokens.scss +75 -0
- package/scss/generated/_tag-tokens.scss +289 -0
- package/scss/generated/_themes.scss +604 -0
- package/scss/generated/_tokens.scss +443 -0
- package/src/__tests__/themes-test.js +26 -0
- package/src/__tests__/themes.test.js +26 -0
- package/src/__tests__/tools-test.js +34 -0
- package/src/__tests__/tools.test.js +34 -0
- package/src/component-tokens/content-switcher/index.js +8 -0
- package/src/component-tokens/content-switcher/tokens.js +31 -0
- package/src/component-tokens/status/index.js +8 -0
- package/src/component-tokens/status/tokens.js +91 -0
- package/src/tokens/__tests__/Token-test.js +50 -0
- package/src/tokens/__tests__/TokenFormat-test.js +32 -0
- package/src/tokens/__tests__/TokenGroup-test.js +166 -0
- package/src/tokens/__tests__/TokenSet-test.js +111 -0
- package/src/tokens/__tests__/__snapshots__/v11-test.js.snap +291 -0
- package/src/tokens/__tests__/metadata-test.js +1674 -0
- package/src/tokens/__tests__/v11-test.js +36 -0
- package/src/v10/__tests__/themes-test.js +32 -0
- package/src/v10/__tests__/tokens-test.js +23 -0
- package/telemetry.yml +12 -8
- package/umd/index.js +5421 -0
package/es/index.js
ADDED
|
@@ -0,0 +1,4981 @@
|
|
|
1
|
+
import { rgba, blue50, white as white$2, blue30, blue60, blue70, black, blue100, gray10, gray80, gray50, gray80Hover, gray30, gray10Hover, gray20, gray20Hover, whiteHover, gray100, gray40, gray70, gray60, red60, blue40, purple60, purple40, green50, yellow30, red50, green40, orange40, blue20, blue10, gray90, gray70Hover, gray60Hover, gray50Hover, red30, red40, purple50, gray90Hover, blue80, blue90, green60, red80, red20, red70, red20Hover, red70Hover, magenta20, magenta70, magenta20Hover, magenta70Hover, purple20, purple70, purple20Hover, purple70Hover, blue20Hover, blue70Hover, cyan20, cyan70, cyan20Hover, cyan70Hover, teal20, teal70, teal20Hover, teal70Hover, green20, green70, green20Hover, green70Hover, coolGray20, coolGray70, coolGray100, coolGray10, coolGray20Hover, coolGray70Hover, warmGray20, warmGray70, warmGray100, warmGray10, warmGray20Hover, warmGray70Hover, cyan40, cyan50, teal40, teal50, magenta40, magenta50, coolGray40, coolGray50, warmGray40, warmGray50, red10, green10, yellow10, white0 } from '@octaviaflow/colors';
|
|
2
|
+
import Color from 'color';
|
|
3
|
+
import { caption01, caption02, label01, label02, helperText01, helperText02, bodyShort01, bodyLong01, bodyShort02, bodyLong02, code01, code02, heading01, productiveHeading01, heading02, productiveHeading02, productiveHeading03, productiveHeading04, productiveHeading05, productiveHeading06, productiveHeading07, expressiveHeading01, expressiveHeading02, expressiveHeading03, expressiveHeading04, expressiveHeading05, expressiveHeading06, expressiveParagraph01, quotation01, quotation02, display01, display02, display03, display04, legal01, legal02, bodyCompact01, bodyCompact02, body01, body02, headingCompact01, headingCompact02, heading03, heading04, heading05, heading06, heading07, fluidHeading03, fluidHeading04, fluidHeading05, fluidHeading06, fluidParagraph01, fluidQuotation01, fluidQuotation02, fluidDisplay01, fluidDisplay02, fluidDisplay03, fluidDisplay04, unstable_tokens } from '@octaviaflow/type';
|
|
4
|
+
export { bodyLong01, bodyLong02, bodyShort01, bodyShort02, caption01, caption02, code01, code02, display01, display02, display03, display04, expressiveHeading01, expressiveHeading02, expressiveHeading03, expressiveHeading04, expressiveHeading05, expressiveHeading06, expressiveParagraph01, heading01, heading02, helperText01, helperText02, label01, label02, productiveHeading01, productiveHeading02, productiveHeading03, productiveHeading04, productiveHeading05, productiveHeading06, productiveHeading07, quotation01, quotation02 } from '@octaviaflow/type';
|
|
5
|
+
import { spacing01, spacing02, spacing03, spacing04, spacing05, spacing06, spacing07, spacing08, spacing09, spacing10, spacing11, spacing12, spacing13, fluidSpacing01, fluidSpacing02, fluidSpacing03, fluidSpacing04, container01, container02, container03, container04, container05, sizeXSmall, sizeSmall, sizeMedium, sizeLarge, sizeXLarge, size2XLarge, iconSize01, iconSize02, layout01, layout02, layout03, layout04, layout05, layout06, layout07, unstable_tokens as unstable_tokens$1 } from '@octaviaflow/layout';
|
|
6
|
+
export { container01, container02, container03, container04, container05, fluidSpacing01, fluidSpacing02, fluidSpacing03, fluidSpacing04, iconSize01, iconSize02, layout01, layout02, layout03, layout04, layout05, layout06, layout07, size2XLarge, sizeLarge, sizeMedium, sizeSmall, sizeXLarge, sizeXSmall, spacing01, spacing02, spacing03, spacing04, spacing05, spacing06, spacing07, spacing08, spacing09, spacing10, spacing11, spacing12, spacing13 } from '@octaviaflow/layout';
|
|
7
|
+
|
|
8
|
+
function adjustLightness(token, shift) {
|
|
9
|
+
const original = Color(token).hsl().object();
|
|
10
|
+
return Color({ ...original, l: original.l += shift }).round().hex().toLowerCase();
|
|
11
|
+
}
|
|
12
|
+
function adjustAlpha(token, alpha) {
|
|
13
|
+
return Color(token).rgb().alpha(alpha).string();
|
|
14
|
+
}
|
|
15
|
+
const numbers = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
|
|
16
|
+
function formatTokenName(token) {
|
|
17
|
+
let string = "";
|
|
18
|
+
for (let i = 0; i < token.length; i++) {
|
|
19
|
+
if (numbers.indexOf(token[i]) !== -1) {
|
|
20
|
+
string += "-" + token.slice(i);
|
|
21
|
+
break;
|
|
22
|
+
}
|
|
23
|
+
if (token[i] === token[i].toUpperCase()) {
|
|
24
|
+
if (token[i - 1] && token[i - 1] === token[i - 1].toUpperCase()) {
|
|
25
|
+
string += token[i].toLowerCase();
|
|
26
|
+
continue;
|
|
27
|
+
}
|
|
28
|
+
string += "-" + token[i].toLowerCase();
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
31
|
+
string += token[i];
|
|
32
|
+
}
|
|
33
|
+
return string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const background$8 = white$2;
|
|
37
|
+
const backgroundInverse$7 = gray80;
|
|
38
|
+
const backgroundBrand$7 = blue60;
|
|
39
|
+
const backgroundActive$7 = adjustAlpha(gray50, 0.5);
|
|
40
|
+
const backgroundHover$7 = adjustAlpha(gray50, 0.12);
|
|
41
|
+
const backgroundInverseHover$7 = gray80Hover;
|
|
42
|
+
const backgroundSelected$7 = adjustAlpha(gray50, 0.2);
|
|
43
|
+
const backgroundSelectedHover$7 = adjustAlpha(gray50, 0.32);
|
|
44
|
+
const layer01$3 = gray10;
|
|
45
|
+
const layerActive01$3 = gray30;
|
|
46
|
+
const layerHover01$3 = gray10Hover;
|
|
47
|
+
const layerSelected01$3 = gray20;
|
|
48
|
+
const layerSelectedHover01$3 = gray20Hover;
|
|
49
|
+
const layer02$3 = white$2;
|
|
50
|
+
const layerActive02$3 = gray30;
|
|
51
|
+
const layerHover02$3 = whiteHover;
|
|
52
|
+
const layerSelected02$3 = gray20;
|
|
53
|
+
const layerSelectedHover02$3 = gray20Hover;
|
|
54
|
+
const layer03$3 = gray10;
|
|
55
|
+
const layerActive03$3 = gray30;
|
|
56
|
+
const layerHover03$3 = gray10Hover;
|
|
57
|
+
const layerSelected03$3 = gray20;
|
|
58
|
+
const layerSelectedHover03$3 = gray20Hover;
|
|
59
|
+
const layerSelectedInverse$7 = gray100;
|
|
60
|
+
const layerSelectedDisabled$7 = gray50;
|
|
61
|
+
const layerAccent01$3 = gray20;
|
|
62
|
+
const layerAccentActive01$3 = gray40;
|
|
63
|
+
const layerAccentHover01$3 = gray20Hover;
|
|
64
|
+
const layerAccent02$3 = gray20;
|
|
65
|
+
const layerAccentActive02$3 = gray40;
|
|
66
|
+
const layerAccentHover02$3 = gray20Hover;
|
|
67
|
+
const layerAccent03$3 = gray20;
|
|
68
|
+
const layerAccentActive03$3 = gray40;
|
|
69
|
+
const layerAccentHover03$3 = gray20Hover;
|
|
70
|
+
const field01$7 = gray10;
|
|
71
|
+
const fieldHover01$3 = gray10Hover;
|
|
72
|
+
const field02$7 = white$2;
|
|
73
|
+
const fieldHover02$3 = whiteHover;
|
|
74
|
+
const field03$3 = gray10;
|
|
75
|
+
const fieldHover03$3 = gray10Hover;
|
|
76
|
+
const borderSubtle00$3 = gray20;
|
|
77
|
+
const borderSubtle01$3 = gray30;
|
|
78
|
+
const borderSubtleSelected01$3 = gray30;
|
|
79
|
+
const borderSubtle02$3 = gray20;
|
|
80
|
+
const borderSubtleSelected02$3 = gray30;
|
|
81
|
+
const borderSubtle03$3 = gray30;
|
|
82
|
+
const borderSubtleSelected03$3 = gray30;
|
|
83
|
+
const borderStrong01$3 = gray50;
|
|
84
|
+
const borderStrong02$3 = gray50;
|
|
85
|
+
const borderStrong03$3 = gray50;
|
|
86
|
+
const borderTile01$3 = gray30;
|
|
87
|
+
const borderTile02$3 = gray40;
|
|
88
|
+
const borderTile03$3 = gray30;
|
|
89
|
+
const borderInverse$7 = gray100;
|
|
90
|
+
const borderInteractive$7 = blue60;
|
|
91
|
+
const borderDisabled$7 = gray30;
|
|
92
|
+
const textPrimary$7 = gray100;
|
|
93
|
+
const textSecondary$7 = gray70;
|
|
94
|
+
const textPlaceholder$7 = adjustAlpha(textPrimary$7, 0.4);
|
|
95
|
+
const textHelper$7 = gray60;
|
|
96
|
+
const textError$7 = red60;
|
|
97
|
+
const textInverse$7 = white$2;
|
|
98
|
+
const textOnColor$7 = white$2;
|
|
99
|
+
const textOnColorDisabled$7 = gray50;
|
|
100
|
+
const textDisabled$7 = adjustAlpha(textPrimary$7, 0.25);
|
|
101
|
+
const linkPrimary$7 = blue60;
|
|
102
|
+
const linkPrimaryHover$7 = blue70;
|
|
103
|
+
const linkSecondary$7 = blue70;
|
|
104
|
+
const linkInverse$7 = blue40;
|
|
105
|
+
const linkVisited$7 = purple60;
|
|
106
|
+
const linkInverseVisited$3 = purple40;
|
|
107
|
+
const linkInverseActive$3 = gray10;
|
|
108
|
+
const linkInverseHover$3 = blue30;
|
|
109
|
+
const iconPrimary$7 = gray100;
|
|
110
|
+
const iconSecondary$7 = gray70;
|
|
111
|
+
const iconInverse$7 = white$2;
|
|
112
|
+
const iconOnColor$7 = white$2;
|
|
113
|
+
const iconOnColorDisabled$7 = gray50;
|
|
114
|
+
const iconDisabled$7 = adjustAlpha(iconPrimary$7, 0.25);
|
|
115
|
+
const iconInteractive$3 = blue60;
|
|
116
|
+
const supportError$7 = red60;
|
|
117
|
+
const supportSuccess$7 = green50;
|
|
118
|
+
const supportWarning$7 = yellow30;
|
|
119
|
+
const supportInfo$7 = blue70;
|
|
120
|
+
const supportErrorInverse$7 = red50;
|
|
121
|
+
const supportSuccessInverse$7 = green40;
|
|
122
|
+
const supportWarningInverse$7 = yellow30;
|
|
123
|
+
const supportInfoInverse$7 = blue50;
|
|
124
|
+
const supportCautionMinor$3 = yellow30;
|
|
125
|
+
const supportCautionMajor$3 = orange40;
|
|
126
|
+
const supportCautionUndefined$3 = purple60;
|
|
127
|
+
const focus$8 = blue60;
|
|
128
|
+
const focusInset$7 = white$2;
|
|
129
|
+
const focusInverse$7 = white$2;
|
|
130
|
+
const skeletonBackground$7 = whiteHover;
|
|
131
|
+
const skeletonElement$7 = gray30;
|
|
132
|
+
const interactive$7 = blue60;
|
|
133
|
+
const highlight$7 = blue20;
|
|
134
|
+
const overlay$7 = "rgba(22, 22, 22, 0.5)";
|
|
135
|
+
const toggleOff$7 = gray50;
|
|
136
|
+
const shadow$7 = "rgba(0, 0, 0, 0.3)";
|
|
137
|
+
const aiInnerShadow$3 = rgba(blue50, 0.1);
|
|
138
|
+
const aiAuraStartSm$3 = rgba(blue50, 0.16);
|
|
139
|
+
const aiAuraStart$3 = rgba(blue50, 0.1);
|
|
140
|
+
const aiAuraEnd$3 = rgba(white$2, 0);
|
|
141
|
+
const aiBorderStrong$3 = blue50;
|
|
142
|
+
const aiBorderStart$3 = rgba(blue30, 0.64);
|
|
143
|
+
const aiBorderEnd$3 = blue40;
|
|
144
|
+
const aiDropShadow$3 = rgba(blue60, 0.1);
|
|
145
|
+
const aiAuraHoverBackground$3 = blue10;
|
|
146
|
+
const aiAuraHoverStart$3 = rgba(blue50, 0.32);
|
|
147
|
+
const aiAuraHoverEnd$3 = rgba(white$2, 0);
|
|
148
|
+
const aiPopoverBackground$3 = white$2;
|
|
149
|
+
const aiPopoverShadowOuter01$3 = rgba(blue70, 0.06);
|
|
150
|
+
const aiPopoverShadowOuter02$3 = rgba(black, 0.04);
|
|
151
|
+
const aiSkeletonBackground$3 = blue20;
|
|
152
|
+
const aiSkeletonElementBackground$3 = blue50;
|
|
153
|
+
const aiOverlay$3 = rgba(blue100, 0.5);
|
|
154
|
+
const aiPopoverCaretCenter$3 = "#A0C3FF";
|
|
155
|
+
const aiPopoverCaretBottom$3 = blue40;
|
|
156
|
+
const aiPopoverCaretBottomBackgroundActions$3 = "#E9EFFA";
|
|
157
|
+
const aiPopoverCaretBottomBackground$3 = "#EAF1FF";
|
|
158
|
+
const chatPromptBackground$3 = white$2;
|
|
159
|
+
const chatPromptBorderStart$3 = gray10;
|
|
160
|
+
const chatPromptBorderEnd$3 = rgba(gray10, 0);
|
|
161
|
+
const chatBubbleUser$3 = gray20;
|
|
162
|
+
const chatBubbleAgent$3 = white$2;
|
|
163
|
+
const chatBubbleBorder$3 = gray20;
|
|
164
|
+
const chatAvatarBot$3 = gray60;
|
|
165
|
+
const chatAvatarAgent$3 = gray80;
|
|
166
|
+
const chatAvatarUser$3 = blue60;
|
|
167
|
+
const chatShellBackground$3 = white$2;
|
|
168
|
+
const chatHeaderBackground$3 = white$2;
|
|
169
|
+
const chatButton$3 = linkPrimary$7;
|
|
170
|
+
const chatButtonHover$3 = backgroundHover$7;
|
|
171
|
+
const chatButtonTextHover$3 = linkPrimaryHover$7;
|
|
172
|
+
const chatButtonActive$3 = backgroundActive$7;
|
|
173
|
+
const chatButtonSelected$3 = backgroundSelected$7;
|
|
174
|
+
const chatButtonTextSelected$3 = textSecondary$7;
|
|
175
|
+
|
|
176
|
+
var white$1 = /*#__PURE__*/Object.freeze({
|
|
177
|
+
__proto__: null,
|
|
178
|
+
background: background$8,
|
|
179
|
+
backgroundInverse: backgroundInverse$7,
|
|
180
|
+
backgroundBrand: backgroundBrand$7,
|
|
181
|
+
backgroundActive: backgroundActive$7,
|
|
182
|
+
backgroundHover: backgroundHover$7,
|
|
183
|
+
backgroundInverseHover: backgroundInverseHover$7,
|
|
184
|
+
backgroundSelected: backgroundSelected$7,
|
|
185
|
+
backgroundSelectedHover: backgroundSelectedHover$7,
|
|
186
|
+
layer01: layer01$3,
|
|
187
|
+
layerActive01: layerActive01$3,
|
|
188
|
+
layerHover01: layerHover01$3,
|
|
189
|
+
layerSelected01: layerSelected01$3,
|
|
190
|
+
layerSelectedHover01: layerSelectedHover01$3,
|
|
191
|
+
layer02: layer02$3,
|
|
192
|
+
layerActive02: layerActive02$3,
|
|
193
|
+
layerHover02: layerHover02$3,
|
|
194
|
+
layerSelected02: layerSelected02$3,
|
|
195
|
+
layerSelectedHover02: layerSelectedHover02$3,
|
|
196
|
+
layer03: layer03$3,
|
|
197
|
+
layerActive03: layerActive03$3,
|
|
198
|
+
layerHover03: layerHover03$3,
|
|
199
|
+
layerSelected03: layerSelected03$3,
|
|
200
|
+
layerSelectedHover03: layerSelectedHover03$3,
|
|
201
|
+
layerSelectedInverse: layerSelectedInverse$7,
|
|
202
|
+
layerSelectedDisabled: layerSelectedDisabled$7,
|
|
203
|
+
layerAccent01: layerAccent01$3,
|
|
204
|
+
layerAccentActive01: layerAccentActive01$3,
|
|
205
|
+
layerAccentHover01: layerAccentHover01$3,
|
|
206
|
+
layerAccent02: layerAccent02$3,
|
|
207
|
+
layerAccentActive02: layerAccentActive02$3,
|
|
208
|
+
layerAccentHover02: layerAccentHover02$3,
|
|
209
|
+
layerAccent03: layerAccent03$3,
|
|
210
|
+
layerAccentActive03: layerAccentActive03$3,
|
|
211
|
+
layerAccentHover03: layerAccentHover03$3,
|
|
212
|
+
field01: field01$7,
|
|
213
|
+
fieldHover01: fieldHover01$3,
|
|
214
|
+
field02: field02$7,
|
|
215
|
+
fieldHover02: fieldHover02$3,
|
|
216
|
+
field03: field03$3,
|
|
217
|
+
fieldHover03: fieldHover03$3,
|
|
218
|
+
borderSubtle00: borderSubtle00$3,
|
|
219
|
+
borderSubtle01: borderSubtle01$3,
|
|
220
|
+
borderSubtleSelected01: borderSubtleSelected01$3,
|
|
221
|
+
borderSubtle02: borderSubtle02$3,
|
|
222
|
+
borderSubtleSelected02: borderSubtleSelected02$3,
|
|
223
|
+
borderSubtle03: borderSubtle03$3,
|
|
224
|
+
borderSubtleSelected03: borderSubtleSelected03$3,
|
|
225
|
+
borderStrong01: borderStrong01$3,
|
|
226
|
+
borderStrong02: borderStrong02$3,
|
|
227
|
+
borderStrong03: borderStrong03$3,
|
|
228
|
+
borderTile01: borderTile01$3,
|
|
229
|
+
borderTile02: borderTile02$3,
|
|
230
|
+
borderTile03: borderTile03$3,
|
|
231
|
+
borderInverse: borderInverse$7,
|
|
232
|
+
borderInteractive: borderInteractive$7,
|
|
233
|
+
borderDisabled: borderDisabled$7,
|
|
234
|
+
textPrimary: textPrimary$7,
|
|
235
|
+
textSecondary: textSecondary$7,
|
|
236
|
+
textPlaceholder: textPlaceholder$7,
|
|
237
|
+
textHelper: textHelper$7,
|
|
238
|
+
textError: textError$7,
|
|
239
|
+
textInverse: textInverse$7,
|
|
240
|
+
textOnColor: textOnColor$7,
|
|
241
|
+
textOnColorDisabled: textOnColorDisabled$7,
|
|
242
|
+
textDisabled: textDisabled$7,
|
|
243
|
+
linkPrimary: linkPrimary$7,
|
|
244
|
+
linkPrimaryHover: linkPrimaryHover$7,
|
|
245
|
+
linkSecondary: linkSecondary$7,
|
|
246
|
+
linkInverse: linkInverse$7,
|
|
247
|
+
linkVisited: linkVisited$7,
|
|
248
|
+
linkInverseVisited: linkInverseVisited$3,
|
|
249
|
+
linkInverseActive: linkInverseActive$3,
|
|
250
|
+
linkInverseHover: linkInverseHover$3,
|
|
251
|
+
iconPrimary: iconPrimary$7,
|
|
252
|
+
iconSecondary: iconSecondary$7,
|
|
253
|
+
iconInverse: iconInverse$7,
|
|
254
|
+
iconOnColor: iconOnColor$7,
|
|
255
|
+
iconOnColorDisabled: iconOnColorDisabled$7,
|
|
256
|
+
iconDisabled: iconDisabled$7,
|
|
257
|
+
iconInteractive: iconInteractive$3,
|
|
258
|
+
supportError: supportError$7,
|
|
259
|
+
supportSuccess: supportSuccess$7,
|
|
260
|
+
supportWarning: supportWarning$7,
|
|
261
|
+
supportInfo: supportInfo$7,
|
|
262
|
+
supportErrorInverse: supportErrorInverse$7,
|
|
263
|
+
supportSuccessInverse: supportSuccessInverse$7,
|
|
264
|
+
supportWarningInverse: supportWarningInverse$7,
|
|
265
|
+
supportInfoInverse: supportInfoInverse$7,
|
|
266
|
+
supportCautionMinor: supportCautionMinor$3,
|
|
267
|
+
supportCautionMajor: supportCautionMajor$3,
|
|
268
|
+
supportCautionUndefined: supportCautionUndefined$3,
|
|
269
|
+
focus: focus$8,
|
|
270
|
+
focusInset: focusInset$7,
|
|
271
|
+
focusInverse: focusInverse$7,
|
|
272
|
+
skeletonBackground: skeletonBackground$7,
|
|
273
|
+
skeletonElement: skeletonElement$7,
|
|
274
|
+
interactive: interactive$7,
|
|
275
|
+
highlight: highlight$7,
|
|
276
|
+
overlay: overlay$7,
|
|
277
|
+
toggleOff: toggleOff$7,
|
|
278
|
+
shadow: shadow$7,
|
|
279
|
+
aiInnerShadow: aiInnerShadow$3,
|
|
280
|
+
aiAuraStartSm: aiAuraStartSm$3,
|
|
281
|
+
aiAuraStart: aiAuraStart$3,
|
|
282
|
+
aiAuraEnd: aiAuraEnd$3,
|
|
283
|
+
aiBorderStrong: aiBorderStrong$3,
|
|
284
|
+
aiBorderStart: aiBorderStart$3,
|
|
285
|
+
aiBorderEnd: aiBorderEnd$3,
|
|
286
|
+
aiDropShadow: aiDropShadow$3,
|
|
287
|
+
aiAuraHoverBackground: aiAuraHoverBackground$3,
|
|
288
|
+
aiAuraHoverStart: aiAuraHoverStart$3,
|
|
289
|
+
aiAuraHoverEnd: aiAuraHoverEnd$3,
|
|
290
|
+
aiPopoverBackground: aiPopoverBackground$3,
|
|
291
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01$3,
|
|
292
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02$3,
|
|
293
|
+
aiSkeletonBackground: aiSkeletonBackground$3,
|
|
294
|
+
aiSkeletonElementBackground: aiSkeletonElementBackground$3,
|
|
295
|
+
aiOverlay: aiOverlay$3,
|
|
296
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter$3,
|
|
297
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom$3,
|
|
298
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions$3,
|
|
299
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground$3,
|
|
300
|
+
chatPromptBackground: chatPromptBackground$3,
|
|
301
|
+
chatPromptBorderStart: chatPromptBorderStart$3,
|
|
302
|
+
chatPromptBorderEnd: chatPromptBorderEnd$3,
|
|
303
|
+
chatBubbleUser: chatBubbleUser$3,
|
|
304
|
+
chatBubbleAgent: chatBubbleAgent$3,
|
|
305
|
+
chatBubbleBorder: chatBubbleBorder$3,
|
|
306
|
+
chatAvatarBot: chatAvatarBot$3,
|
|
307
|
+
chatAvatarAgent: chatAvatarAgent$3,
|
|
308
|
+
chatAvatarUser: chatAvatarUser$3,
|
|
309
|
+
chatShellBackground: chatShellBackground$3,
|
|
310
|
+
chatHeaderBackground: chatHeaderBackground$3,
|
|
311
|
+
chatButton: chatButton$3,
|
|
312
|
+
chatButtonHover: chatButtonHover$3,
|
|
313
|
+
chatButtonTextHover: chatButtonTextHover$3,
|
|
314
|
+
chatButtonActive: chatButtonActive$3,
|
|
315
|
+
chatButtonSelected: chatButtonSelected$3,
|
|
316
|
+
chatButtonTextSelected: chatButtonTextSelected$3,
|
|
317
|
+
caption01: caption01,
|
|
318
|
+
caption02: caption02,
|
|
319
|
+
label01: label01,
|
|
320
|
+
label02: label02,
|
|
321
|
+
helperText01: helperText01,
|
|
322
|
+
helperText02: helperText02,
|
|
323
|
+
bodyShort01: bodyShort01,
|
|
324
|
+
bodyLong01: bodyLong01,
|
|
325
|
+
bodyShort02: bodyShort02,
|
|
326
|
+
bodyLong02: bodyLong02,
|
|
327
|
+
code01: code01,
|
|
328
|
+
code02: code02,
|
|
329
|
+
heading01: heading01,
|
|
330
|
+
productiveHeading01: productiveHeading01,
|
|
331
|
+
heading02: heading02,
|
|
332
|
+
productiveHeading02: productiveHeading02,
|
|
333
|
+
productiveHeading03: productiveHeading03,
|
|
334
|
+
productiveHeading04: productiveHeading04,
|
|
335
|
+
productiveHeading05: productiveHeading05,
|
|
336
|
+
productiveHeading06: productiveHeading06,
|
|
337
|
+
productiveHeading07: productiveHeading07,
|
|
338
|
+
expressiveHeading01: expressiveHeading01,
|
|
339
|
+
expressiveHeading02: expressiveHeading02,
|
|
340
|
+
expressiveHeading03: expressiveHeading03,
|
|
341
|
+
expressiveHeading04: expressiveHeading04,
|
|
342
|
+
expressiveHeading05: expressiveHeading05,
|
|
343
|
+
expressiveHeading06: expressiveHeading06,
|
|
344
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
345
|
+
quotation01: quotation01,
|
|
346
|
+
quotation02: quotation02,
|
|
347
|
+
display01: display01,
|
|
348
|
+
display02: display02,
|
|
349
|
+
display03: display03,
|
|
350
|
+
display04: display04,
|
|
351
|
+
spacing01: spacing01,
|
|
352
|
+
spacing02: spacing02,
|
|
353
|
+
spacing03: spacing03,
|
|
354
|
+
spacing04: spacing04,
|
|
355
|
+
spacing05: spacing05,
|
|
356
|
+
spacing06: spacing06,
|
|
357
|
+
spacing07: spacing07,
|
|
358
|
+
spacing08: spacing08,
|
|
359
|
+
spacing09: spacing09,
|
|
360
|
+
spacing10: spacing10,
|
|
361
|
+
spacing11: spacing11,
|
|
362
|
+
spacing12: spacing12,
|
|
363
|
+
spacing13: spacing13,
|
|
364
|
+
fluidSpacing01: fluidSpacing01,
|
|
365
|
+
fluidSpacing02: fluidSpacing02,
|
|
366
|
+
fluidSpacing03: fluidSpacing03,
|
|
367
|
+
fluidSpacing04: fluidSpacing04,
|
|
368
|
+
container01: container01,
|
|
369
|
+
container02: container02,
|
|
370
|
+
container03: container03,
|
|
371
|
+
container04: container04,
|
|
372
|
+
container05: container05,
|
|
373
|
+
sizeXSmall: sizeXSmall,
|
|
374
|
+
sizeSmall: sizeSmall,
|
|
375
|
+
sizeMedium: sizeMedium,
|
|
376
|
+
sizeLarge: sizeLarge,
|
|
377
|
+
sizeXLarge: sizeXLarge,
|
|
378
|
+
size2XLarge: size2XLarge,
|
|
379
|
+
iconSize01: iconSize01,
|
|
380
|
+
iconSize02: iconSize02,
|
|
381
|
+
layout01: layout01,
|
|
382
|
+
layout02: layout02,
|
|
383
|
+
layout03: layout03,
|
|
384
|
+
layout04: layout04,
|
|
385
|
+
layout05: layout05,
|
|
386
|
+
layout06: layout06,
|
|
387
|
+
layout07: layout07
|
|
388
|
+
});
|
|
389
|
+
|
|
390
|
+
const background$7 = gray10;
|
|
391
|
+
const backgroundInverse$6 = gray80;
|
|
392
|
+
const backgroundBrand$6 = blue60;
|
|
393
|
+
const backgroundActive$6 = adjustAlpha(gray50, 0.5);
|
|
394
|
+
const backgroundHover$6 = adjustAlpha(gray50, 0.12);
|
|
395
|
+
const backgroundInverseHover$6 = gray80Hover;
|
|
396
|
+
const backgroundSelected$6 = adjustAlpha(gray50, 0.2);
|
|
397
|
+
const backgroundSelectedHover$6 = adjustAlpha(gray50, 0.32);
|
|
398
|
+
const layer01$2 = white$2;
|
|
399
|
+
const layerActive01$2 = gray30;
|
|
400
|
+
const layerHover01$2 = whiteHover;
|
|
401
|
+
const layerSelected01$2 = gray20;
|
|
402
|
+
const layerSelectedHover01$2 = gray20Hover;
|
|
403
|
+
const layer02$2 = gray10;
|
|
404
|
+
const layerActive02$2 = gray30;
|
|
405
|
+
const layerHover02$2 = gray10Hover;
|
|
406
|
+
const layerSelected02$2 = gray20;
|
|
407
|
+
const layerSelectedHover02$2 = gray20Hover;
|
|
408
|
+
const layer03$2 = white$2;
|
|
409
|
+
const layerActive03$2 = gray30;
|
|
410
|
+
const layerHover03$2 = whiteHover;
|
|
411
|
+
const layerSelected03$2 = gray20;
|
|
412
|
+
const layerSelectedHover03$2 = gray20Hover;
|
|
413
|
+
const layerSelectedInverse$6 = gray100;
|
|
414
|
+
const layerSelectedDisabled$6 = gray50;
|
|
415
|
+
const layerAccent01$2 = gray20;
|
|
416
|
+
const layerAccentActive01$2 = gray40;
|
|
417
|
+
const layerAccentHover01$2 = gray20Hover;
|
|
418
|
+
const layerAccent02$2 = gray20;
|
|
419
|
+
const layerAccentActive02$2 = gray40;
|
|
420
|
+
const layerAccentHover02$2 = gray20Hover;
|
|
421
|
+
const layerAccent03$2 = gray20;
|
|
422
|
+
const layerAccentActive03$2 = gray40;
|
|
423
|
+
const layerAccentHover03$2 = gray20Hover;
|
|
424
|
+
const field01$6 = white$2;
|
|
425
|
+
const fieldHover01$2 = whiteHover;
|
|
426
|
+
const field02$6 = gray10;
|
|
427
|
+
const fieldHover02$2 = gray10Hover;
|
|
428
|
+
const field03$2 = white$2;
|
|
429
|
+
const fieldHover03$2 = whiteHover;
|
|
430
|
+
const borderSubtle00$2 = gray30;
|
|
431
|
+
const borderSubtle01$2 = gray20;
|
|
432
|
+
const borderSubtleSelected01$2 = gray30;
|
|
433
|
+
const borderSubtle02$2 = gray30;
|
|
434
|
+
const borderSubtleSelected02$2 = gray30;
|
|
435
|
+
const borderSubtle03$2 = gray20;
|
|
436
|
+
const borderSubtleSelected03$2 = gray30;
|
|
437
|
+
const borderStrong01$2 = gray50;
|
|
438
|
+
const borderStrong02$2 = gray50;
|
|
439
|
+
const borderStrong03$2 = gray50;
|
|
440
|
+
const borderTile01$2 = gray40;
|
|
441
|
+
const borderTile02$2 = gray30;
|
|
442
|
+
const borderTile03$2 = gray40;
|
|
443
|
+
const borderInverse$6 = gray100;
|
|
444
|
+
const borderInteractive$6 = blue60;
|
|
445
|
+
const borderDisabled$6 = gray30;
|
|
446
|
+
const textPrimary$6 = gray100;
|
|
447
|
+
const textSecondary$6 = gray70;
|
|
448
|
+
const textPlaceholder$6 = adjustAlpha(textPrimary$6, 0.4);
|
|
449
|
+
const textHelper$6 = gray60;
|
|
450
|
+
const textError$6 = red60;
|
|
451
|
+
const textInverse$6 = white$2;
|
|
452
|
+
const textOnColor$6 = white$2;
|
|
453
|
+
const textOnColorDisabled$6 = gray50;
|
|
454
|
+
const textDisabled$6 = adjustAlpha(textPrimary$6, 0.25);
|
|
455
|
+
const linkPrimary$6 = blue60;
|
|
456
|
+
const linkPrimaryHover$6 = blue70;
|
|
457
|
+
const linkSecondary$6 = blue70;
|
|
458
|
+
const linkInverse$6 = blue40;
|
|
459
|
+
const linkVisited$6 = purple60;
|
|
460
|
+
const linkInverseVisited$2 = purple40;
|
|
461
|
+
const linkInverseActive$2 = gray10;
|
|
462
|
+
const linkInverseHover$2 = blue30;
|
|
463
|
+
const iconPrimary$6 = gray100;
|
|
464
|
+
const iconSecondary$6 = gray70;
|
|
465
|
+
const iconInverse$6 = white$2;
|
|
466
|
+
const iconOnColor$6 = white$2;
|
|
467
|
+
const iconOnColorDisabled$6 = gray50;
|
|
468
|
+
const iconDisabled$6 = adjustAlpha(iconPrimary$6, 0.25);
|
|
469
|
+
const iconInteractive$2 = blue60;
|
|
470
|
+
const supportError$6 = red60;
|
|
471
|
+
const supportSuccess$6 = green50;
|
|
472
|
+
const supportWarning$6 = yellow30;
|
|
473
|
+
const supportInfo$6 = blue70;
|
|
474
|
+
const supportErrorInverse$6 = red50;
|
|
475
|
+
const supportSuccessInverse$6 = green40;
|
|
476
|
+
const supportWarningInverse$6 = yellow30;
|
|
477
|
+
const supportInfoInverse$6 = blue50;
|
|
478
|
+
const supportCautionMinor$2 = yellow30;
|
|
479
|
+
const supportCautionMajor$2 = orange40;
|
|
480
|
+
const supportCautionUndefined$2 = purple60;
|
|
481
|
+
const focus$7 = blue60;
|
|
482
|
+
const focusInset$6 = white$2;
|
|
483
|
+
const focusInverse$6 = white$2;
|
|
484
|
+
const skeletonBackground$6 = gray10Hover;
|
|
485
|
+
const skeletonElement$6 = gray30;
|
|
486
|
+
const interactive$6 = blue60;
|
|
487
|
+
const highlight$6 = blue20;
|
|
488
|
+
const overlay$6 = "rgba(22, 22, 22, 0.5)";
|
|
489
|
+
const toggleOff$6 = gray50;
|
|
490
|
+
const shadow$6 = "rgba(0, 0, 0, 0.3)";
|
|
491
|
+
const aiInnerShadow$2 = rgba(blue50, 0.1);
|
|
492
|
+
const aiAuraStartSm$2 = rgba(blue50, 0.16);
|
|
493
|
+
const aiAuraStart$2 = rgba(blue50, 0.1);
|
|
494
|
+
const aiAuraEnd$2 = rgba(white$2, 0);
|
|
495
|
+
const aiBorderStrong$2 = blue50;
|
|
496
|
+
const aiBorderStart$2 = rgba(blue30, 0.64);
|
|
497
|
+
const aiBorderEnd$2 = blue40;
|
|
498
|
+
const aiDropShadow$2 = rgba(blue60, 0.1);
|
|
499
|
+
const aiAuraHoverBackground$2 = blue10;
|
|
500
|
+
const aiAuraHoverStart$2 = rgba(blue50, 0.32);
|
|
501
|
+
const aiAuraHoverEnd$2 = rgba(white$2, 0);
|
|
502
|
+
const aiPopoverBackground$2 = white$2;
|
|
503
|
+
const aiPopoverShadowOuter01$2 = rgba(blue70, 0.06);
|
|
504
|
+
const aiPopoverShadowOuter02$2 = rgba(black, 0.04);
|
|
505
|
+
const aiSkeletonBackground$2 = blue20;
|
|
506
|
+
const aiSkeletonElementBackground$2 = blue50;
|
|
507
|
+
const aiOverlay$2 = rgba(blue100, 0.5);
|
|
508
|
+
const aiPopoverCaretCenter$2 = "#A0C3FF";
|
|
509
|
+
const aiPopoverCaretBottom$2 = blue40;
|
|
510
|
+
const aiPopoverCaretBottomBackgroundActions$2 = "#E9EFFA";
|
|
511
|
+
const aiPopoverCaretBottomBackground$2 = "#EAF1FF";
|
|
512
|
+
const chatPromptBackground$2 = white$2;
|
|
513
|
+
const chatPromptBorderStart$2 = gray10;
|
|
514
|
+
const chatPromptBorderEnd$2 = rgba(gray10, 0);
|
|
515
|
+
const chatBubbleUser$2 = gray20;
|
|
516
|
+
const chatBubbleAgent$2 = white$2;
|
|
517
|
+
const chatBubbleBorder$2 = gray20;
|
|
518
|
+
const chatAvatarBot$2 = gray60;
|
|
519
|
+
const chatAvatarAgent$2 = gray80;
|
|
520
|
+
const chatAvatarUser$2 = blue60;
|
|
521
|
+
const chatShellBackground$2 = white$2;
|
|
522
|
+
const chatHeaderBackground$2 = white$2;
|
|
523
|
+
const chatButton$2 = linkPrimary$6;
|
|
524
|
+
const chatButtonHover$2 = backgroundHover$6;
|
|
525
|
+
const chatButtonTextHover$2 = linkPrimaryHover$6;
|
|
526
|
+
const chatButtonActive$2 = backgroundActive$6;
|
|
527
|
+
const chatButtonSelected$2 = backgroundSelected$6;
|
|
528
|
+
const chatButtonTextSelected$2 = textSecondary$6;
|
|
529
|
+
|
|
530
|
+
var g10$1 = /*#__PURE__*/Object.freeze({
|
|
531
|
+
__proto__: null,
|
|
532
|
+
background: background$7,
|
|
533
|
+
backgroundInverse: backgroundInverse$6,
|
|
534
|
+
backgroundBrand: backgroundBrand$6,
|
|
535
|
+
backgroundActive: backgroundActive$6,
|
|
536
|
+
backgroundHover: backgroundHover$6,
|
|
537
|
+
backgroundInverseHover: backgroundInverseHover$6,
|
|
538
|
+
backgroundSelected: backgroundSelected$6,
|
|
539
|
+
backgroundSelectedHover: backgroundSelectedHover$6,
|
|
540
|
+
layer01: layer01$2,
|
|
541
|
+
layerActive01: layerActive01$2,
|
|
542
|
+
layerHover01: layerHover01$2,
|
|
543
|
+
layerSelected01: layerSelected01$2,
|
|
544
|
+
layerSelectedHover01: layerSelectedHover01$2,
|
|
545
|
+
layer02: layer02$2,
|
|
546
|
+
layerActive02: layerActive02$2,
|
|
547
|
+
layerHover02: layerHover02$2,
|
|
548
|
+
layerSelected02: layerSelected02$2,
|
|
549
|
+
layerSelectedHover02: layerSelectedHover02$2,
|
|
550
|
+
layer03: layer03$2,
|
|
551
|
+
layerActive03: layerActive03$2,
|
|
552
|
+
layerHover03: layerHover03$2,
|
|
553
|
+
layerSelected03: layerSelected03$2,
|
|
554
|
+
layerSelectedHover03: layerSelectedHover03$2,
|
|
555
|
+
layerSelectedInverse: layerSelectedInverse$6,
|
|
556
|
+
layerSelectedDisabled: layerSelectedDisabled$6,
|
|
557
|
+
layerAccent01: layerAccent01$2,
|
|
558
|
+
layerAccentActive01: layerAccentActive01$2,
|
|
559
|
+
layerAccentHover01: layerAccentHover01$2,
|
|
560
|
+
layerAccent02: layerAccent02$2,
|
|
561
|
+
layerAccentActive02: layerAccentActive02$2,
|
|
562
|
+
layerAccentHover02: layerAccentHover02$2,
|
|
563
|
+
layerAccent03: layerAccent03$2,
|
|
564
|
+
layerAccentActive03: layerAccentActive03$2,
|
|
565
|
+
layerAccentHover03: layerAccentHover03$2,
|
|
566
|
+
field01: field01$6,
|
|
567
|
+
fieldHover01: fieldHover01$2,
|
|
568
|
+
field02: field02$6,
|
|
569
|
+
fieldHover02: fieldHover02$2,
|
|
570
|
+
field03: field03$2,
|
|
571
|
+
fieldHover03: fieldHover03$2,
|
|
572
|
+
borderSubtle00: borderSubtle00$2,
|
|
573
|
+
borderSubtle01: borderSubtle01$2,
|
|
574
|
+
borderSubtleSelected01: borderSubtleSelected01$2,
|
|
575
|
+
borderSubtle02: borderSubtle02$2,
|
|
576
|
+
borderSubtleSelected02: borderSubtleSelected02$2,
|
|
577
|
+
borderSubtle03: borderSubtle03$2,
|
|
578
|
+
borderSubtleSelected03: borderSubtleSelected03$2,
|
|
579
|
+
borderStrong01: borderStrong01$2,
|
|
580
|
+
borderStrong02: borderStrong02$2,
|
|
581
|
+
borderStrong03: borderStrong03$2,
|
|
582
|
+
borderTile01: borderTile01$2,
|
|
583
|
+
borderTile02: borderTile02$2,
|
|
584
|
+
borderTile03: borderTile03$2,
|
|
585
|
+
borderInverse: borderInverse$6,
|
|
586
|
+
borderInteractive: borderInteractive$6,
|
|
587
|
+
borderDisabled: borderDisabled$6,
|
|
588
|
+
textPrimary: textPrimary$6,
|
|
589
|
+
textSecondary: textSecondary$6,
|
|
590
|
+
textPlaceholder: textPlaceholder$6,
|
|
591
|
+
textHelper: textHelper$6,
|
|
592
|
+
textError: textError$6,
|
|
593
|
+
textInverse: textInverse$6,
|
|
594
|
+
textOnColor: textOnColor$6,
|
|
595
|
+
textOnColorDisabled: textOnColorDisabled$6,
|
|
596
|
+
textDisabled: textDisabled$6,
|
|
597
|
+
linkPrimary: linkPrimary$6,
|
|
598
|
+
linkPrimaryHover: linkPrimaryHover$6,
|
|
599
|
+
linkSecondary: linkSecondary$6,
|
|
600
|
+
linkInverse: linkInverse$6,
|
|
601
|
+
linkVisited: linkVisited$6,
|
|
602
|
+
linkInverseVisited: linkInverseVisited$2,
|
|
603
|
+
linkInverseActive: linkInverseActive$2,
|
|
604
|
+
linkInverseHover: linkInverseHover$2,
|
|
605
|
+
iconPrimary: iconPrimary$6,
|
|
606
|
+
iconSecondary: iconSecondary$6,
|
|
607
|
+
iconInverse: iconInverse$6,
|
|
608
|
+
iconOnColor: iconOnColor$6,
|
|
609
|
+
iconOnColorDisabled: iconOnColorDisabled$6,
|
|
610
|
+
iconDisabled: iconDisabled$6,
|
|
611
|
+
iconInteractive: iconInteractive$2,
|
|
612
|
+
supportError: supportError$6,
|
|
613
|
+
supportSuccess: supportSuccess$6,
|
|
614
|
+
supportWarning: supportWarning$6,
|
|
615
|
+
supportInfo: supportInfo$6,
|
|
616
|
+
supportErrorInverse: supportErrorInverse$6,
|
|
617
|
+
supportSuccessInverse: supportSuccessInverse$6,
|
|
618
|
+
supportWarningInverse: supportWarningInverse$6,
|
|
619
|
+
supportInfoInverse: supportInfoInverse$6,
|
|
620
|
+
supportCautionMinor: supportCautionMinor$2,
|
|
621
|
+
supportCautionMajor: supportCautionMajor$2,
|
|
622
|
+
supportCautionUndefined: supportCautionUndefined$2,
|
|
623
|
+
focus: focus$7,
|
|
624
|
+
focusInset: focusInset$6,
|
|
625
|
+
focusInverse: focusInverse$6,
|
|
626
|
+
skeletonBackground: skeletonBackground$6,
|
|
627
|
+
skeletonElement: skeletonElement$6,
|
|
628
|
+
interactive: interactive$6,
|
|
629
|
+
highlight: highlight$6,
|
|
630
|
+
overlay: overlay$6,
|
|
631
|
+
toggleOff: toggleOff$6,
|
|
632
|
+
shadow: shadow$6,
|
|
633
|
+
aiInnerShadow: aiInnerShadow$2,
|
|
634
|
+
aiAuraStartSm: aiAuraStartSm$2,
|
|
635
|
+
aiAuraStart: aiAuraStart$2,
|
|
636
|
+
aiAuraEnd: aiAuraEnd$2,
|
|
637
|
+
aiBorderStrong: aiBorderStrong$2,
|
|
638
|
+
aiBorderStart: aiBorderStart$2,
|
|
639
|
+
aiBorderEnd: aiBorderEnd$2,
|
|
640
|
+
aiDropShadow: aiDropShadow$2,
|
|
641
|
+
aiAuraHoverBackground: aiAuraHoverBackground$2,
|
|
642
|
+
aiAuraHoverStart: aiAuraHoverStart$2,
|
|
643
|
+
aiAuraHoverEnd: aiAuraHoverEnd$2,
|
|
644
|
+
aiPopoverBackground: aiPopoverBackground$2,
|
|
645
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01$2,
|
|
646
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02$2,
|
|
647
|
+
aiSkeletonBackground: aiSkeletonBackground$2,
|
|
648
|
+
aiSkeletonElementBackground: aiSkeletonElementBackground$2,
|
|
649
|
+
aiOverlay: aiOverlay$2,
|
|
650
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter$2,
|
|
651
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom$2,
|
|
652
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions$2,
|
|
653
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground$2,
|
|
654
|
+
chatPromptBackground: chatPromptBackground$2,
|
|
655
|
+
chatPromptBorderStart: chatPromptBorderStart$2,
|
|
656
|
+
chatPromptBorderEnd: chatPromptBorderEnd$2,
|
|
657
|
+
chatBubbleUser: chatBubbleUser$2,
|
|
658
|
+
chatBubbleAgent: chatBubbleAgent$2,
|
|
659
|
+
chatBubbleBorder: chatBubbleBorder$2,
|
|
660
|
+
chatAvatarBot: chatAvatarBot$2,
|
|
661
|
+
chatAvatarAgent: chatAvatarAgent$2,
|
|
662
|
+
chatAvatarUser: chatAvatarUser$2,
|
|
663
|
+
chatShellBackground: chatShellBackground$2,
|
|
664
|
+
chatHeaderBackground: chatHeaderBackground$2,
|
|
665
|
+
chatButton: chatButton$2,
|
|
666
|
+
chatButtonHover: chatButtonHover$2,
|
|
667
|
+
chatButtonTextHover: chatButtonTextHover$2,
|
|
668
|
+
chatButtonActive: chatButtonActive$2,
|
|
669
|
+
chatButtonSelected: chatButtonSelected$2,
|
|
670
|
+
chatButtonTextSelected: chatButtonTextSelected$2,
|
|
671
|
+
caption01: caption01,
|
|
672
|
+
caption02: caption02,
|
|
673
|
+
label01: label01,
|
|
674
|
+
label02: label02,
|
|
675
|
+
helperText01: helperText01,
|
|
676
|
+
helperText02: helperText02,
|
|
677
|
+
bodyShort01: bodyShort01,
|
|
678
|
+
bodyLong01: bodyLong01,
|
|
679
|
+
bodyShort02: bodyShort02,
|
|
680
|
+
bodyLong02: bodyLong02,
|
|
681
|
+
code01: code01,
|
|
682
|
+
code02: code02,
|
|
683
|
+
heading01: heading01,
|
|
684
|
+
productiveHeading01: productiveHeading01,
|
|
685
|
+
heading02: heading02,
|
|
686
|
+
productiveHeading02: productiveHeading02,
|
|
687
|
+
productiveHeading03: productiveHeading03,
|
|
688
|
+
productiveHeading04: productiveHeading04,
|
|
689
|
+
productiveHeading05: productiveHeading05,
|
|
690
|
+
productiveHeading06: productiveHeading06,
|
|
691
|
+
productiveHeading07: productiveHeading07,
|
|
692
|
+
expressiveHeading01: expressiveHeading01,
|
|
693
|
+
expressiveHeading02: expressiveHeading02,
|
|
694
|
+
expressiveHeading03: expressiveHeading03,
|
|
695
|
+
expressiveHeading04: expressiveHeading04,
|
|
696
|
+
expressiveHeading05: expressiveHeading05,
|
|
697
|
+
expressiveHeading06: expressiveHeading06,
|
|
698
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
699
|
+
quotation01: quotation01,
|
|
700
|
+
quotation02: quotation02,
|
|
701
|
+
display01: display01,
|
|
702
|
+
display02: display02,
|
|
703
|
+
display03: display03,
|
|
704
|
+
display04: display04,
|
|
705
|
+
spacing01: spacing01,
|
|
706
|
+
spacing02: spacing02,
|
|
707
|
+
spacing03: spacing03,
|
|
708
|
+
spacing04: spacing04,
|
|
709
|
+
spacing05: spacing05,
|
|
710
|
+
spacing06: spacing06,
|
|
711
|
+
spacing07: spacing07,
|
|
712
|
+
spacing08: spacing08,
|
|
713
|
+
spacing09: spacing09,
|
|
714
|
+
spacing10: spacing10,
|
|
715
|
+
spacing11: spacing11,
|
|
716
|
+
spacing12: spacing12,
|
|
717
|
+
spacing13: spacing13,
|
|
718
|
+
fluidSpacing01: fluidSpacing01,
|
|
719
|
+
fluidSpacing02: fluidSpacing02,
|
|
720
|
+
fluidSpacing03: fluidSpacing03,
|
|
721
|
+
fluidSpacing04: fluidSpacing04,
|
|
722
|
+
container01: container01,
|
|
723
|
+
container02: container02,
|
|
724
|
+
container03: container03,
|
|
725
|
+
container04: container04,
|
|
726
|
+
container05: container05,
|
|
727
|
+
sizeXSmall: sizeXSmall,
|
|
728
|
+
sizeSmall: sizeSmall,
|
|
729
|
+
sizeMedium: sizeMedium,
|
|
730
|
+
sizeLarge: sizeLarge,
|
|
731
|
+
sizeXLarge: sizeXLarge,
|
|
732
|
+
size2XLarge: size2XLarge,
|
|
733
|
+
iconSize01: iconSize01,
|
|
734
|
+
iconSize02: iconSize02,
|
|
735
|
+
layout01: layout01,
|
|
736
|
+
layout02: layout02,
|
|
737
|
+
layout03: layout03,
|
|
738
|
+
layout04: layout04,
|
|
739
|
+
layout05: layout05,
|
|
740
|
+
layout06: layout06,
|
|
741
|
+
layout07: layout07
|
|
742
|
+
});
|
|
743
|
+
|
|
744
|
+
const background$6 = gray90;
|
|
745
|
+
const backgroundInverse$5 = gray10;
|
|
746
|
+
const backgroundBrand$5 = blue60;
|
|
747
|
+
const backgroundActive$5 = adjustAlpha(gray50, 0.4);
|
|
748
|
+
const backgroundHover$5 = adjustAlpha(gray50, 0.16);
|
|
749
|
+
const backgroundInverseHover$5 = gray10Hover;
|
|
750
|
+
const backgroundSelected$5 = adjustAlpha(gray50, 0.24);
|
|
751
|
+
const backgroundSelectedHover$5 = adjustAlpha(gray50, 0.32);
|
|
752
|
+
const layer01$1 = gray80;
|
|
753
|
+
const layerActive01$1 = gray60;
|
|
754
|
+
const layerHover01$1 = gray80Hover;
|
|
755
|
+
const layerSelected01$1 = gray70;
|
|
756
|
+
const layerSelectedHover01$1 = gray70Hover;
|
|
757
|
+
const layer02$1 = gray70;
|
|
758
|
+
const layerActive02$1 = gray50;
|
|
759
|
+
const layerHover02$1 = gray70Hover;
|
|
760
|
+
const layerSelected02$1 = gray60;
|
|
761
|
+
const layerSelectedHover02$1 = gray60Hover;
|
|
762
|
+
const layer03$1 = gray60;
|
|
763
|
+
const layerActive03$1 = gray80;
|
|
764
|
+
const layerHover03$1 = gray60Hover;
|
|
765
|
+
const layerSelected03$1 = gray70;
|
|
766
|
+
const layerSelectedHover03$1 = gray70Hover;
|
|
767
|
+
const layerSelectedInverse$5 = gray10;
|
|
768
|
+
const layerSelectedDisabled$5 = gray40;
|
|
769
|
+
const layerAccent01$1 = gray70;
|
|
770
|
+
const layerAccentActive01$1 = gray50;
|
|
771
|
+
const layerAccentHover01$1 = gray70Hover;
|
|
772
|
+
const layerAccent02$1 = gray60;
|
|
773
|
+
const layerAccentActive02$1 = gray80;
|
|
774
|
+
const layerAccentHover02$1 = gray60Hover;
|
|
775
|
+
const layerAccent03$1 = gray50;
|
|
776
|
+
const layerAccentActive03$1 = gray70;
|
|
777
|
+
const layerAccentHover03$1 = gray50Hover;
|
|
778
|
+
const field01$5 = gray80;
|
|
779
|
+
const fieldHover01$1 = gray80Hover;
|
|
780
|
+
const field02$5 = gray70;
|
|
781
|
+
const fieldHover02$1 = gray70Hover;
|
|
782
|
+
const field03$1 = gray60;
|
|
783
|
+
const fieldHover03$1 = gray60Hover;
|
|
784
|
+
const borderSubtle00$1 = gray70;
|
|
785
|
+
const borderSubtle01$1 = gray60;
|
|
786
|
+
const borderSubtleSelected01$1 = gray50;
|
|
787
|
+
const borderSubtle02$1 = gray50;
|
|
788
|
+
const borderSubtleSelected02$1 = gray40;
|
|
789
|
+
const borderSubtle03$1 = gray50;
|
|
790
|
+
const borderSubtleSelected03$1 = gray40;
|
|
791
|
+
const borderStrong01$1 = gray50;
|
|
792
|
+
const borderStrong02$1 = gray40;
|
|
793
|
+
const borderStrong03$1 = gray30;
|
|
794
|
+
const borderTile01$1 = gray60;
|
|
795
|
+
const borderTile02$1 = gray50;
|
|
796
|
+
const borderTile03$1 = gray40;
|
|
797
|
+
const borderInverse$5 = gray10;
|
|
798
|
+
const borderInteractive$5 = blue50;
|
|
799
|
+
const borderDisabled$5 = adjustAlpha(gray50, 0.5);
|
|
800
|
+
const textPrimary$5 = gray10;
|
|
801
|
+
const textSecondary$5 = gray30;
|
|
802
|
+
const textPlaceholder$5 = adjustAlpha(textPrimary$5, 0.4);
|
|
803
|
+
const textHelper$5 = gray30;
|
|
804
|
+
const textError$5 = red30;
|
|
805
|
+
const textInverse$5 = gray100;
|
|
806
|
+
const textOnColor$5 = white$2;
|
|
807
|
+
const textOnColorDisabled$5 = adjustAlpha(textOnColor$5, 0.25);
|
|
808
|
+
const textDisabled$5 = adjustAlpha(textPrimary$5, 0.25);
|
|
809
|
+
const linkPrimary$5 = blue40;
|
|
810
|
+
const linkPrimaryHover$5 = blue30;
|
|
811
|
+
const linkSecondary$5 = blue30;
|
|
812
|
+
const linkInverse$5 = blue60;
|
|
813
|
+
const linkVisited$5 = purple40;
|
|
814
|
+
const linkInverseVisited$1 = purple60;
|
|
815
|
+
const linkInverseActive$1 = gray100;
|
|
816
|
+
const linkInverseHover$1 = blue70;
|
|
817
|
+
const iconPrimary$5 = gray10;
|
|
818
|
+
const iconSecondary$5 = gray30;
|
|
819
|
+
const iconInverse$5 = gray100;
|
|
820
|
+
const iconOnColor$5 = white$2;
|
|
821
|
+
const iconOnColorDisabled$5 = adjustAlpha(iconOnColor$5, 0.25);
|
|
822
|
+
const iconDisabled$5 = adjustAlpha(iconPrimary$5, 0.25);
|
|
823
|
+
const iconInteractive$1 = white$2;
|
|
824
|
+
const supportError$5 = red40;
|
|
825
|
+
const supportSuccess$5 = green40;
|
|
826
|
+
const supportWarning$5 = yellow30;
|
|
827
|
+
const supportInfo$5 = blue50;
|
|
828
|
+
const supportErrorInverse$5 = red60;
|
|
829
|
+
const supportSuccessInverse$5 = green50;
|
|
830
|
+
const supportWarningInverse$5 = yellow30;
|
|
831
|
+
const supportInfoInverse$5 = blue70;
|
|
832
|
+
const supportCautionMinor$1 = yellow30;
|
|
833
|
+
const supportCautionMajor$1 = orange40;
|
|
834
|
+
const supportCautionUndefined$1 = purple50;
|
|
835
|
+
const focus$6 = white$2;
|
|
836
|
+
const focusInset$5 = gray100;
|
|
837
|
+
const focusInverse$5 = blue60;
|
|
838
|
+
const skeletonBackground$5 = gray90Hover;
|
|
839
|
+
const skeletonElement$5 = gray70;
|
|
840
|
+
const interactive$5 = blue50;
|
|
841
|
+
const highlight$5 = blue80;
|
|
842
|
+
const overlay$5 = rgba(black, 0.65);
|
|
843
|
+
const toggleOff$5 = gray50;
|
|
844
|
+
const shadow$5 = rgba(black, 0.8);
|
|
845
|
+
const aiInnerShadow$1 = rgba(blue50, 0.16);
|
|
846
|
+
const aiAuraStartSm$1 = rgba(blue50, 0.16);
|
|
847
|
+
const aiAuraStart$1 = rgba(blue50, 0.1);
|
|
848
|
+
const aiAuraEnd$1 = rgba(black, 0);
|
|
849
|
+
const aiBorderStrong$1 = blue40;
|
|
850
|
+
const aiBorderStart$1 = rgba(blue30, 0.36);
|
|
851
|
+
const aiBorderEnd$1 = blue50;
|
|
852
|
+
const aiDropShadow$1 = rgba(black, 0.28);
|
|
853
|
+
const aiAuraHoverBackground$1 = layerHover01$1;
|
|
854
|
+
const aiAuraHoverStart$1 = rgba(blue50, 0.4);
|
|
855
|
+
const aiAuraHoverEnd$1 = rgba(black, 0);
|
|
856
|
+
const aiPopoverBackground$1 = gray100;
|
|
857
|
+
const aiPopoverShadowOuter01$1 = rgba(black, 0.12);
|
|
858
|
+
const aiPopoverShadowOuter02$1 = rgba(black, 0.08);
|
|
859
|
+
const aiSkeletonBackground$1 = rgba(blue40, 0.5);
|
|
860
|
+
const aiSkeletonElementBackground$1 = rgba(blue40, 0.3);
|
|
861
|
+
const aiOverlay$1 = rgba(black, 0.5);
|
|
862
|
+
const aiPopoverCaretCenter$1 = "#4870B5";
|
|
863
|
+
const aiPopoverCaretBottom$1 = blue50;
|
|
864
|
+
const aiPopoverCaretBottomBackgroundActions$1 = "#1E283A";
|
|
865
|
+
const aiPopoverCaretBottomBackground$1 = "#202D45";
|
|
866
|
+
const chatPromptBackground$1 = gray100;
|
|
867
|
+
const chatPromptBorderStart$1 = gray90;
|
|
868
|
+
const chatPromptBorderEnd$1 = rgba(gray90, 0);
|
|
869
|
+
const chatBubbleUser$1 = gray80;
|
|
870
|
+
const chatBubbleAgent$1 = gray90;
|
|
871
|
+
const chatBubbleBorder$1 = gray70;
|
|
872
|
+
const chatAvatarBot$1 = gray50;
|
|
873
|
+
const chatAvatarAgent$1 = gray30;
|
|
874
|
+
const chatAvatarUser$1 = blue50;
|
|
875
|
+
const chatShellBackground$1 = gray90;
|
|
876
|
+
const chatHeaderBackground$1 = gray90;
|
|
877
|
+
const chatButton$1 = linkPrimary$5;
|
|
878
|
+
const chatButtonHover$1 = backgroundHover$5;
|
|
879
|
+
const chatButtonTextHover$1 = linkPrimaryHover$5;
|
|
880
|
+
const chatButtonActive$1 = backgroundActive$5;
|
|
881
|
+
const chatButtonSelected$1 = backgroundSelected$5;
|
|
882
|
+
const chatButtonTextSelected$1 = textSecondary$5;
|
|
883
|
+
|
|
884
|
+
var g90$1 = /*#__PURE__*/Object.freeze({
|
|
885
|
+
__proto__: null,
|
|
886
|
+
background: background$6,
|
|
887
|
+
backgroundInverse: backgroundInverse$5,
|
|
888
|
+
backgroundBrand: backgroundBrand$5,
|
|
889
|
+
backgroundActive: backgroundActive$5,
|
|
890
|
+
backgroundHover: backgroundHover$5,
|
|
891
|
+
backgroundInverseHover: backgroundInverseHover$5,
|
|
892
|
+
backgroundSelected: backgroundSelected$5,
|
|
893
|
+
backgroundSelectedHover: backgroundSelectedHover$5,
|
|
894
|
+
layer01: layer01$1,
|
|
895
|
+
layerActive01: layerActive01$1,
|
|
896
|
+
layerHover01: layerHover01$1,
|
|
897
|
+
layerSelected01: layerSelected01$1,
|
|
898
|
+
layerSelectedHover01: layerSelectedHover01$1,
|
|
899
|
+
layer02: layer02$1,
|
|
900
|
+
layerActive02: layerActive02$1,
|
|
901
|
+
layerHover02: layerHover02$1,
|
|
902
|
+
layerSelected02: layerSelected02$1,
|
|
903
|
+
layerSelectedHover02: layerSelectedHover02$1,
|
|
904
|
+
layer03: layer03$1,
|
|
905
|
+
layerActive03: layerActive03$1,
|
|
906
|
+
layerHover03: layerHover03$1,
|
|
907
|
+
layerSelected03: layerSelected03$1,
|
|
908
|
+
layerSelectedHover03: layerSelectedHover03$1,
|
|
909
|
+
layerSelectedInverse: layerSelectedInverse$5,
|
|
910
|
+
layerSelectedDisabled: layerSelectedDisabled$5,
|
|
911
|
+
layerAccent01: layerAccent01$1,
|
|
912
|
+
layerAccentActive01: layerAccentActive01$1,
|
|
913
|
+
layerAccentHover01: layerAccentHover01$1,
|
|
914
|
+
layerAccent02: layerAccent02$1,
|
|
915
|
+
layerAccentActive02: layerAccentActive02$1,
|
|
916
|
+
layerAccentHover02: layerAccentHover02$1,
|
|
917
|
+
layerAccent03: layerAccent03$1,
|
|
918
|
+
layerAccentActive03: layerAccentActive03$1,
|
|
919
|
+
layerAccentHover03: layerAccentHover03$1,
|
|
920
|
+
field01: field01$5,
|
|
921
|
+
fieldHover01: fieldHover01$1,
|
|
922
|
+
field02: field02$5,
|
|
923
|
+
fieldHover02: fieldHover02$1,
|
|
924
|
+
field03: field03$1,
|
|
925
|
+
fieldHover03: fieldHover03$1,
|
|
926
|
+
borderSubtle00: borderSubtle00$1,
|
|
927
|
+
borderSubtle01: borderSubtle01$1,
|
|
928
|
+
borderSubtleSelected01: borderSubtleSelected01$1,
|
|
929
|
+
borderSubtle02: borderSubtle02$1,
|
|
930
|
+
borderSubtleSelected02: borderSubtleSelected02$1,
|
|
931
|
+
borderSubtle03: borderSubtle03$1,
|
|
932
|
+
borderSubtleSelected03: borderSubtleSelected03$1,
|
|
933
|
+
borderStrong01: borderStrong01$1,
|
|
934
|
+
borderStrong02: borderStrong02$1,
|
|
935
|
+
borderStrong03: borderStrong03$1,
|
|
936
|
+
borderTile01: borderTile01$1,
|
|
937
|
+
borderTile02: borderTile02$1,
|
|
938
|
+
borderTile03: borderTile03$1,
|
|
939
|
+
borderInverse: borderInverse$5,
|
|
940
|
+
borderInteractive: borderInteractive$5,
|
|
941
|
+
borderDisabled: borderDisabled$5,
|
|
942
|
+
textPrimary: textPrimary$5,
|
|
943
|
+
textSecondary: textSecondary$5,
|
|
944
|
+
textPlaceholder: textPlaceholder$5,
|
|
945
|
+
textHelper: textHelper$5,
|
|
946
|
+
textError: textError$5,
|
|
947
|
+
textInverse: textInverse$5,
|
|
948
|
+
textOnColor: textOnColor$5,
|
|
949
|
+
textOnColorDisabled: textOnColorDisabled$5,
|
|
950
|
+
textDisabled: textDisabled$5,
|
|
951
|
+
linkPrimary: linkPrimary$5,
|
|
952
|
+
linkPrimaryHover: linkPrimaryHover$5,
|
|
953
|
+
linkSecondary: linkSecondary$5,
|
|
954
|
+
linkInverse: linkInverse$5,
|
|
955
|
+
linkVisited: linkVisited$5,
|
|
956
|
+
linkInverseVisited: linkInverseVisited$1,
|
|
957
|
+
linkInverseActive: linkInverseActive$1,
|
|
958
|
+
linkInverseHover: linkInverseHover$1,
|
|
959
|
+
iconPrimary: iconPrimary$5,
|
|
960
|
+
iconSecondary: iconSecondary$5,
|
|
961
|
+
iconInverse: iconInverse$5,
|
|
962
|
+
iconOnColor: iconOnColor$5,
|
|
963
|
+
iconOnColorDisabled: iconOnColorDisabled$5,
|
|
964
|
+
iconDisabled: iconDisabled$5,
|
|
965
|
+
iconInteractive: iconInteractive$1,
|
|
966
|
+
supportError: supportError$5,
|
|
967
|
+
supportSuccess: supportSuccess$5,
|
|
968
|
+
supportWarning: supportWarning$5,
|
|
969
|
+
supportInfo: supportInfo$5,
|
|
970
|
+
supportErrorInverse: supportErrorInverse$5,
|
|
971
|
+
supportSuccessInverse: supportSuccessInverse$5,
|
|
972
|
+
supportWarningInverse: supportWarningInverse$5,
|
|
973
|
+
supportInfoInverse: supportInfoInverse$5,
|
|
974
|
+
supportCautionMinor: supportCautionMinor$1,
|
|
975
|
+
supportCautionMajor: supportCautionMajor$1,
|
|
976
|
+
supportCautionUndefined: supportCautionUndefined$1,
|
|
977
|
+
focus: focus$6,
|
|
978
|
+
focusInset: focusInset$5,
|
|
979
|
+
focusInverse: focusInverse$5,
|
|
980
|
+
skeletonBackground: skeletonBackground$5,
|
|
981
|
+
skeletonElement: skeletonElement$5,
|
|
982
|
+
interactive: interactive$5,
|
|
983
|
+
highlight: highlight$5,
|
|
984
|
+
overlay: overlay$5,
|
|
985
|
+
toggleOff: toggleOff$5,
|
|
986
|
+
shadow: shadow$5,
|
|
987
|
+
aiInnerShadow: aiInnerShadow$1,
|
|
988
|
+
aiAuraStartSm: aiAuraStartSm$1,
|
|
989
|
+
aiAuraStart: aiAuraStart$1,
|
|
990
|
+
aiAuraEnd: aiAuraEnd$1,
|
|
991
|
+
aiBorderStrong: aiBorderStrong$1,
|
|
992
|
+
aiBorderStart: aiBorderStart$1,
|
|
993
|
+
aiBorderEnd: aiBorderEnd$1,
|
|
994
|
+
aiDropShadow: aiDropShadow$1,
|
|
995
|
+
aiAuraHoverBackground: aiAuraHoverBackground$1,
|
|
996
|
+
aiAuraHoverStart: aiAuraHoverStart$1,
|
|
997
|
+
aiAuraHoverEnd: aiAuraHoverEnd$1,
|
|
998
|
+
aiPopoverBackground: aiPopoverBackground$1,
|
|
999
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01$1,
|
|
1000
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02$1,
|
|
1001
|
+
aiSkeletonBackground: aiSkeletonBackground$1,
|
|
1002
|
+
aiSkeletonElementBackground: aiSkeletonElementBackground$1,
|
|
1003
|
+
aiOverlay: aiOverlay$1,
|
|
1004
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter$1,
|
|
1005
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom$1,
|
|
1006
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions$1,
|
|
1007
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground$1,
|
|
1008
|
+
chatPromptBackground: chatPromptBackground$1,
|
|
1009
|
+
chatPromptBorderStart: chatPromptBorderStart$1,
|
|
1010
|
+
chatPromptBorderEnd: chatPromptBorderEnd$1,
|
|
1011
|
+
chatBubbleUser: chatBubbleUser$1,
|
|
1012
|
+
chatBubbleAgent: chatBubbleAgent$1,
|
|
1013
|
+
chatBubbleBorder: chatBubbleBorder$1,
|
|
1014
|
+
chatAvatarBot: chatAvatarBot$1,
|
|
1015
|
+
chatAvatarAgent: chatAvatarAgent$1,
|
|
1016
|
+
chatAvatarUser: chatAvatarUser$1,
|
|
1017
|
+
chatShellBackground: chatShellBackground$1,
|
|
1018
|
+
chatHeaderBackground: chatHeaderBackground$1,
|
|
1019
|
+
chatButton: chatButton$1,
|
|
1020
|
+
chatButtonHover: chatButtonHover$1,
|
|
1021
|
+
chatButtonTextHover: chatButtonTextHover$1,
|
|
1022
|
+
chatButtonActive: chatButtonActive$1,
|
|
1023
|
+
chatButtonSelected: chatButtonSelected$1,
|
|
1024
|
+
chatButtonTextSelected: chatButtonTextSelected$1,
|
|
1025
|
+
caption01: caption01,
|
|
1026
|
+
caption02: caption02,
|
|
1027
|
+
label01: label01,
|
|
1028
|
+
label02: label02,
|
|
1029
|
+
helperText01: helperText01,
|
|
1030
|
+
helperText02: helperText02,
|
|
1031
|
+
bodyShort01: bodyShort01,
|
|
1032
|
+
bodyLong01: bodyLong01,
|
|
1033
|
+
bodyShort02: bodyShort02,
|
|
1034
|
+
bodyLong02: bodyLong02,
|
|
1035
|
+
code01: code01,
|
|
1036
|
+
code02: code02,
|
|
1037
|
+
heading01: heading01,
|
|
1038
|
+
productiveHeading01: productiveHeading01,
|
|
1039
|
+
heading02: heading02,
|
|
1040
|
+
productiveHeading02: productiveHeading02,
|
|
1041
|
+
productiveHeading03: productiveHeading03,
|
|
1042
|
+
productiveHeading04: productiveHeading04,
|
|
1043
|
+
productiveHeading05: productiveHeading05,
|
|
1044
|
+
productiveHeading06: productiveHeading06,
|
|
1045
|
+
productiveHeading07: productiveHeading07,
|
|
1046
|
+
expressiveHeading01: expressiveHeading01,
|
|
1047
|
+
expressiveHeading02: expressiveHeading02,
|
|
1048
|
+
expressiveHeading03: expressiveHeading03,
|
|
1049
|
+
expressiveHeading04: expressiveHeading04,
|
|
1050
|
+
expressiveHeading05: expressiveHeading05,
|
|
1051
|
+
expressiveHeading06: expressiveHeading06,
|
|
1052
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
1053
|
+
quotation01: quotation01,
|
|
1054
|
+
quotation02: quotation02,
|
|
1055
|
+
display01: display01,
|
|
1056
|
+
display02: display02,
|
|
1057
|
+
display03: display03,
|
|
1058
|
+
display04: display04,
|
|
1059
|
+
spacing01: spacing01,
|
|
1060
|
+
spacing02: spacing02,
|
|
1061
|
+
spacing03: spacing03,
|
|
1062
|
+
spacing04: spacing04,
|
|
1063
|
+
spacing05: spacing05,
|
|
1064
|
+
spacing06: spacing06,
|
|
1065
|
+
spacing07: spacing07,
|
|
1066
|
+
spacing08: spacing08,
|
|
1067
|
+
spacing09: spacing09,
|
|
1068
|
+
spacing10: spacing10,
|
|
1069
|
+
spacing11: spacing11,
|
|
1070
|
+
spacing12: spacing12,
|
|
1071
|
+
spacing13: spacing13,
|
|
1072
|
+
fluidSpacing01: fluidSpacing01,
|
|
1073
|
+
fluidSpacing02: fluidSpacing02,
|
|
1074
|
+
fluidSpacing03: fluidSpacing03,
|
|
1075
|
+
fluidSpacing04: fluidSpacing04,
|
|
1076
|
+
container01: container01,
|
|
1077
|
+
container02: container02,
|
|
1078
|
+
container03: container03,
|
|
1079
|
+
container04: container04,
|
|
1080
|
+
container05: container05,
|
|
1081
|
+
sizeXSmall: sizeXSmall,
|
|
1082
|
+
sizeSmall: sizeSmall,
|
|
1083
|
+
sizeMedium: sizeMedium,
|
|
1084
|
+
sizeLarge: sizeLarge,
|
|
1085
|
+
sizeXLarge: sizeXLarge,
|
|
1086
|
+
size2XLarge: size2XLarge,
|
|
1087
|
+
iconSize01: iconSize01,
|
|
1088
|
+
iconSize02: iconSize02,
|
|
1089
|
+
layout01: layout01,
|
|
1090
|
+
layout02: layout02,
|
|
1091
|
+
layout03: layout03,
|
|
1092
|
+
layout04: layout04,
|
|
1093
|
+
layout05: layout05,
|
|
1094
|
+
layout06: layout06,
|
|
1095
|
+
layout07: layout07
|
|
1096
|
+
});
|
|
1097
|
+
|
|
1098
|
+
const background$5 = gray100;
|
|
1099
|
+
const backgroundInverse$4 = gray10;
|
|
1100
|
+
const backgroundBrand$4 = blue60;
|
|
1101
|
+
const backgroundActive$4 = adjustAlpha(gray50, 0.4);
|
|
1102
|
+
const backgroundHover$4 = adjustAlpha(gray50, 0.16);
|
|
1103
|
+
const backgroundInverseHover$4 = gray10Hover;
|
|
1104
|
+
const backgroundSelected$4 = adjustAlpha(gray50, 0.24);
|
|
1105
|
+
const backgroundSelectedHover$4 = adjustAlpha(gray50, 0.32);
|
|
1106
|
+
const layer01 = gray90;
|
|
1107
|
+
const layerActive01 = gray70;
|
|
1108
|
+
const layerHover01 = gray90Hover;
|
|
1109
|
+
const layerSelected01 = gray80;
|
|
1110
|
+
const layerSelectedHover01 = gray80Hover;
|
|
1111
|
+
const layer02 = gray80;
|
|
1112
|
+
const layerActive02 = gray60;
|
|
1113
|
+
const layerHover02 = gray80Hover;
|
|
1114
|
+
const layerSelected02 = gray70;
|
|
1115
|
+
const layerSelectedHover02 = gray70Hover;
|
|
1116
|
+
const layer03 = gray70;
|
|
1117
|
+
const layerActive03 = gray50;
|
|
1118
|
+
const layerHover03 = gray70Hover;
|
|
1119
|
+
const layerSelected03 = gray60;
|
|
1120
|
+
const layerSelectedHover03 = gray60Hover;
|
|
1121
|
+
const layerSelectedInverse$4 = gray10;
|
|
1122
|
+
const layerSelectedDisabled$4 = gray40;
|
|
1123
|
+
const layerAccent01 = gray80;
|
|
1124
|
+
const layerAccentActive01 = gray60;
|
|
1125
|
+
const layerAccentHover01 = gray80Hover;
|
|
1126
|
+
const layerAccent02 = gray70;
|
|
1127
|
+
const layerAccentActive02 = gray50;
|
|
1128
|
+
const layerAccentHover02 = gray70Hover;
|
|
1129
|
+
const layerAccent03 = gray60;
|
|
1130
|
+
const layerAccentActive03 = gray80;
|
|
1131
|
+
const layerAccentHover03 = gray60Hover;
|
|
1132
|
+
const field01$4 = gray90;
|
|
1133
|
+
const fieldHover01 = gray90Hover;
|
|
1134
|
+
const field02$4 = gray80;
|
|
1135
|
+
const fieldHover02 = gray80Hover;
|
|
1136
|
+
const field03 = gray70;
|
|
1137
|
+
const fieldHover03 = gray70Hover;
|
|
1138
|
+
const borderSubtle00 = gray80;
|
|
1139
|
+
const borderSubtle01 = gray70;
|
|
1140
|
+
const borderSubtleSelected01 = gray60;
|
|
1141
|
+
const borderSubtle02 = gray60;
|
|
1142
|
+
const borderSubtleSelected02 = gray50;
|
|
1143
|
+
const borderSubtle03 = gray60;
|
|
1144
|
+
const borderSubtleSelected03 = gray50;
|
|
1145
|
+
const borderStrong01 = gray60;
|
|
1146
|
+
const borderStrong02 = gray50;
|
|
1147
|
+
const borderStrong03 = gray40;
|
|
1148
|
+
const borderTile01 = gray70;
|
|
1149
|
+
const borderTile02 = gray60;
|
|
1150
|
+
const borderTile03 = gray50;
|
|
1151
|
+
const borderInverse$4 = gray10;
|
|
1152
|
+
const borderInteractive$4 = blue50;
|
|
1153
|
+
const borderDisabled$4 = adjustAlpha(gray50, 0.5);
|
|
1154
|
+
const textPrimary$4 = gray10;
|
|
1155
|
+
const textSecondary$4 = gray30;
|
|
1156
|
+
const textPlaceholder$4 = adjustAlpha(textPrimary$4, 0.4);
|
|
1157
|
+
const textHelper$4 = gray40;
|
|
1158
|
+
const textError$4 = red40;
|
|
1159
|
+
const textInverse$4 = gray100;
|
|
1160
|
+
const textOnColor$4 = white$2;
|
|
1161
|
+
const textOnColorDisabled$4 = adjustAlpha(textOnColor$4, 0.25);
|
|
1162
|
+
const textDisabled$4 = adjustAlpha(textPrimary$4, 0.25);
|
|
1163
|
+
const linkPrimary$4 = blue40;
|
|
1164
|
+
const linkPrimaryHover$4 = blue30;
|
|
1165
|
+
const linkSecondary$4 = blue30;
|
|
1166
|
+
const linkInverse$4 = blue60;
|
|
1167
|
+
const linkVisited$4 = purple40;
|
|
1168
|
+
const linkInverseVisited = purple60;
|
|
1169
|
+
const linkInverseActive = gray100;
|
|
1170
|
+
const linkInverseHover = blue70;
|
|
1171
|
+
const iconPrimary$4 = gray10;
|
|
1172
|
+
const iconSecondary$4 = gray30;
|
|
1173
|
+
const iconInverse$4 = gray100;
|
|
1174
|
+
const iconOnColor$4 = white$2;
|
|
1175
|
+
const iconOnColorDisabled$4 = adjustAlpha(iconOnColor$4, 0.25);
|
|
1176
|
+
const iconDisabled$4 = adjustAlpha(iconPrimary$4, 0.25);
|
|
1177
|
+
const iconInteractive = white$2;
|
|
1178
|
+
const supportError$4 = red50;
|
|
1179
|
+
const supportSuccess$4 = green40;
|
|
1180
|
+
const supportWarning$4 = yellow30;
|
|
1181
|
+
const supportInfo$4 = blue50;
|
|
1182
|
+
const supportErrorInverse$4 = red60;
|
|
1183
|
+
const supportSuccessInverse$4 = green50;
|
|
1184
|
+
const supportWarningInverse$4 = yellow30;
|
|
1185
|
+
const supportInfoInverse$4 = blue70;
|
|
1186
|
+
const supportCautionMinor = yellow30;
|
|
1187
|
+
const supportCautionMajor = orange40;
|
|
1188
|
+
const supportCautionUndefined = purple50;
|
|
1189
|
+
const focus$5 = white$2;
|
|
1190
|
+
const focusInset$4 = gray100;
|
|
1191
|
+
const focusInverse$4 = blue60;
|
|
1192
|
+
const skeletonBackground$4 = adjustLightness(background$5, 7);
|
|
1193
|
+
const skeletonElement$4 = gray80;
|
|
1194
|
+
const interactive$4 = blue50;
|
|
1195
|
+
const highlight$4 = blue90;
|
|
1196
|
+
const overlay$4 = rgba(black, 0.65);
|
|
1197
|
+
const toggleOff$4 = gray60;
|
|
1198
|
+
const shadow$4 = rgba(black, 0.8);
|
|
1199
|
+
const aiInnerShadow = rgba(blue50, 0.16);
|
|
1200
|
+
const aiAuraStartSm = rgba(blue50, 0.16);
|
|
1201
|
+
const aiAuraStart = rgba(blue50, 0.1);
|
|
1202
|
+
const aiAuraEnd = rgba(black, 0);
|
|
1203
|
+
const aiBorderStrong = blue40;
|
|
1204
|
+
const aiBorderStart = rgba(blue30, 0.36);
|
|
1205
|
+
const aiBorderEnd = blue50;
|
|
1206
|
+
const aiDropShadow = rgba(black, 0.28);
|
|
1207
|
+
const aiAuraHoverBackground = layerHover01;
|
|
1208
|
+
const aiAuraHoverStart = rgba(blue50, 0.4);
|
|
1209
|
+
const aiAuraHoverEnd = rgba(black, 0);
|
|
1210
|
+
const aiPopoverBackground = gray100;
|
|
1211
|
+
const aiPopoverShadowOuter01 = rgba(black, 0.12);
|
|
1212
|
+
const aiPopoverShadowOuter02 = rgba(black, 0.08);
|
|
1213
|
+
const aiSkeletonBackground = rgba(blue40, 0.5);
|
|
1214
|
+
const aiSkeletonElementBackground = rgba(blue40, 0.3);
|
|
1215
|
+
const aiOverlay = rgba(black, 0.5);
|
|
1216
|
+
const aiPopoverCaretCenter = "#4870B5";
|
|
1217
|
+
const aiPopoverCaretBottom = blue50;
|
|
1218
|
+
const aiPopoverCaretBottomBackgroundActions = "#1E283A";
|
|
1219
|
+
const aiPopoverCaretBottomBackground = "#202D45";
|
|
1220
|
+
const chatPromptBackground = gray100;
|
|
1221
|
+
const chatPromptBorderStart = gray90;
|
|
1222
|
+
const chatPromptBorderEnd = rgba(gray90, 0);
|
|
1223
|
+
const chatBubbleUser = gray80;
|
|
1224
|
+
const chatBubbleAgent = gray90;
|
|
1225
|
+
const chatBubbleBorder = gray70;
|
|
1226
|
+
const chatAvatarBot = gray50;
|
|
1227
|
+
const chatAvatarAgent = gray30;
|
|
1228
|
+
const chatAvatarUser = blue50;
|
|
1229
|
+
const chatShellBackground = gray90;
|
|
1230
|
+
const chatHeaderBackground = gray90;
|
|
1231
|
+
const chatButton = linkPrimary$4;
|
|
1232
|
+
const chatButtonHover = backgroundHover$4;
|
|
1233
|
+
const chatButtonTextHover = linkPrimaryHover$4;
|
|
1234
|
+
const chatButtonActive = backgroundActive$4;
|
|
1235
|
+
const chatButtonSelected = backgroundSelected$4;
|
|
1236
|
+
const chatButtonTextSelected = textSecondary$4;
|
|
1237
|
+
|
|
1238
|
+
var g100$1 = /*#__PURE__*/Object.freeze({
|
|
1239
|
+
__proto__: null,
|
|
1240
|
+
background: background$5,
|
|
1241
|
+
backgroundInverse: backgroundInverse$4,
|
|
1242
|
+
backgroundBrand: backgroundBrand$4,
|
|
1243
|
+
backgroundActive: backgroundActive$4,
|
|
1244
|
+
backgroundHover: backgroundHover$4,
|
|
1245
|
+
backgroundInverseHover: backgroundInverseHover$4,
|
|
1246
|
+
backgroundSelected: backgroundSelected$4,
|
|
1247
|
+
backgroundSelectedHover: backgroundSelectedHover$4,
|
|
1248
|
+
layer01: layer01,
|
|
1249
|
+
layerActive01: layerActive01,
|
|
1250
|
+
layerHover01: layerHover01,
|
|
1251
|
+
layerSelected01: layerSelected01,
|
|
1252
|
+
layerSelectedHover01: layerSelectedHover01,
|
|
1253
|
+
layer02: layer02,
|
|
1254
|
+
layerActive02: layerActive02,
|
|
1255
|
+
layerHover02: layerHover02,
|
|
1256
|
+
layerSelected02: layerSelected02,
|
|
1257
|
+
layerSelectedHover02: layerSelectedHover02,
|
|
1258
|
+
layer03: layer03,
|
|
1259
|
+
layerActive03: layerActive03,
|
|
1260
|
+
layerHover03: layerHover03,
|
|
1261
|
+
layerSelected03: layerSelected03,
|
|
1262
|
+
layerSelectedHover03: layerSelectedHover03,
|
|
1263
|
+
layerSelectedInverse: layerSelectedInverse$4,
|
|
1264
|
+
layerSelectedDisabled: layerSelectedDisabled$4,
|
|
1265
|
+
layerAccent01: layerAccent01,
|
|
1266
|
+
layerAccentActive01: layerAccentActive01,
|
|
1267
|
+
layerAccentHover01: layerAccentHover01,
|
|
1268
|
+
layerAccent02: layerAccent02,
|
|
1269
|
+
layerAccentActive02: layerAccentActive02,
|
|
1270
|
+
layerAccentHover02: layerAccentHover02,
|
|
1271
|
+
layerAccent03: layerAccent03,
|
|
1272
|
+
layerAccentActive03: layerAccentActive03,
|
|
1273
|
+
layerAccentHover03: layerAccentHover03,
|
|
1274
|
+
field01: field01$4,
|
|
1275
|
+
fieldHover01: fieldHover01,
|
|
1276
|
+
field02: field02$4,
|
|
1277
|
+
fieldHover02: fieldHover02,
|
|
1278
|
+
field03: field03,
|
|
1279
|
+
fieldHover03: fieldHover03,
|
|
1280
|
+
borderSubtle00: borderSubtle00,
|
|
1281
|
+
borderSubtle01: borderSubtle01,
|
|
1282
|
+
borderSubtleSelected01: borderSubtleSelected01,
|
|
1283
|
+
borderSubtle02: borderSubtle02,
|
|
1284
|
+
borderSubtleSelected02: borderSubtleSelected02,
|
|
1285
|
+
borderSubtle03: borderSubtle03,
|
|
1286
|
+
borderSubtleSelected03: borderSubtleSelected03,
|
|
1287
|
+
borderStrong01: borderStrong01,
|
|
1288
|
+
borderStrong02: borderStrong02,
|
|
1289
|
+
borderStrong03: borderStrong03,
|
|
1290
|
+
borderTile01: borderTile01,
|
|
1291
|
+
borderTile02: borderTile02,
|
|
1292
|
+
borderTile03: borderTile03,
|
|
1293
|
+
borderInverse: borderInverse$4,
|
|
1294
|
+
borderInteractive: borderInteractive$4,
|
|
1295
|
+
borderDisabled: borderDisabled$4,
|
|
1296
|
+
textPrimary: textPrimary$4,
|
|
1297
|
+
textSecondary: textSecondary$4,
|
|
1298
|
+
textPlaceholder: textPlaceholder$4,
|
|
1299
|
+
textHelper: textHelper$4,
|
|
1300
|
+
textError: textError$4,
|
|
1301
|
+
textInverse: textInverse$4,
|
|
1302
|
+
textOnColor: textOnColor$4,
|
|
1303
|
+
textOnColorDisabled: textOnColorDisabled$4,
|
|
1304
|
+
textDisabled: textDisabled$4,
|
|
1305
|
+
linkPrimary: linkPrimary$4,
|
|
1306
|
+
linkPrimaryHover: linkPrimaryHover$4,
|
|
1307
|
+
linkSecondary: linkSecondary$4,
|
|
1308
|
+
linkInverse: linkInverse$4,
|
|
1309
|
+
linkVisited: linkVisited$4,
|
|
1310
|
+
linkInverseVisited: linkInverseVisited,
|
|
1311
|
+
linkInverseActive: linkInverseActive,
|
|
1312
|
+
linkInverseHover: linkInverseHover,
|
|
1313
|
+
iconPrimary: iconPrimary$4,
|
|
1314
|
+
iconSecondary: iconSecondary$4,
|
|
1315
|
+
iconInverse: iconInverse$4,
|
|
1316
|
+
iconOnColor: iconOnColor$4,
|
|
1317
|
+
iconOnColorDisabled: iconOnColorDisabled$4,
|
|
1318
|
+
iconDisabled: iconDisabled$4,
|
|
1319
|
+
iconInteractive: iconInteractive,
|
|
1320
|
+
supportError: supportError$4,
|
|
1321
|
+
supportSuccess: supportSuccess$4,
|
|
1322
|
+
supportWarning: supportWarning$4,
|
|
1323
|
+
supportInfo: supportInfo$4,
|
|
1324
|
+
supportErrorInverse: supportErrorInverse$4,
|
|
1325
|
+
supportSuccessInverse: supportSuccessInverse$4,
|
|
1326
|
+
supportWarningInverse: supportWarningInverse$4,
|
|
1327
|
+
supportInfoInverse: supportInfoInverse$4,
|
|
1328
|
+
supportCautionMinor: supportCautionMinor,
|
|
1329
|
+
supportCautionMajor: supportCautionMajor,
|
|
1330
|
+
supportCautionUndefined: supportCautionUndefined,
|
|
1331
|
+
focus: focus$5,
|
|
1332
|
+
focusInset: focusInset$4,
|
|
1333
|
+
focusInverse: focusInverse$4,
|
|
1334
|
+
skeletonBackground: skeletonBackground$4,
|
|
1335
|
+
skeletonElement: skeletonElement$4,
|
|
1336
|
+
interactive: interactive$4,
|
|
1337
|
+
highlight: highlight$4,
|
|
1338
|
+
overlay: overlay$4,
|
|
1339
|
+
toggleOff: toggleOff$4,
|
|
1340
|
+
shadow: shadow$4,
|
|
1341
|
+
aiInnerShadow: aiInnerShadow,
|
|
1342
|
+
aiAuraStartSm: aiAuraStartSm,
|
|
1343
|
+
aiAuraStart: aiAuraStart,
|
|
1344
|
+
aiAuraEnd: aiAuraEnd,
|
|
1345
|
+
aiBorderStrong: aiBorderStrong,
|
|
1346
|
+
aiBorderStart: aiBorderStart,
|
|
1347
|
+
aiBorderEnd: aiBorderEnd,
|
|
1348
|
+
aiDropShadow: aiDropShadow,
|
|
1349
|
+
aiAuraHoverBackground: aiAuraHoverBackground,
|
|
1350
|
+
aiAuraHoverStart: aiAuraHoverStart,
|
|
1351
|
+
aiAuraHoverEnd: aiAuraHoverEnd,
|
|
1352
|
+
aiPopoverBackground: aiPopoverBackground,
|
|
1353
|
+
aiPopoverShadowOuter01: aiPopoverShadowOuter01,
|
|
1354
|
+
aiPopoverShadowOuter02: aiPopoverShadowOuter02,
|
|
1355
|
+
aiSkeletonBackground: aiSkeletonBackground,
|
|
1356
|
+
aiSkeletonElementBackground: aiSkeletonElementBackground,
|
|
1357
|
+
aiOverlay: aiOverlay,
|
|
1358
|
+
aiPopoverCaretCenter: aiPopoverCaretCenter,
|
|
1359
|
+
aiPopoverCaretBottom: aiPopoverCaretBottom,
|
|
1360
|
+
aiPopoverCaretBottomBackgroundActions: aiPopoverCaretBottomBackgroundActions,
|
|
1361
|
+
aiPopoverCaretBottomBackground: aiPopoverCaretBottomBackground,
|
|
1362
|
+
chatPromptBackground: chatPromptBackground,
|
|
1363
|
+
chatPromptBorderStart: chatPromptBorderStart,
|
|
1364
|
+
chatPromptBorderEnd: chatPromptBorderEnd,
|
|
1365
|
+
chatBubbleUser: chatBubbleUser,
|
|
1366
|
+
chatBubbleAgent: chatBubbleAgent,
|
|
1367
|
+
chatBubbleBorder: chatBubbleBorder,
|
|
1368
|
+
chatAvatarBot: chatAvatarBot,
|
|
1369
|
+
chatAvatarAgent: chatAvatarAgent,
|
|
1370
|
+
chatAvatarUser: chatAvatarUser,
|
|
1371
|
+
chatShellBackground: chatShellBackground,
|
|
1372
|
+
chatHeaderBackground: chatHeaderBackground,
|
|
1373
|
+
chatButton: chatButton,
|
|
1374
|
+
chatButtonHover: chatButtonHover,
|
|
1375
|
+
chatButtonTextHover: chatButtonTextHover,
|
|
1376
|
+
chatButtonActive: chatButtonActive,
|
|
1377
|
+
chatButtonSelected: chatButtonSelected,
|
|
1378
|
+
chatButtonTextSelected: chatButtonTextSelected,
|
|
1379
|
+
caption01: caption01,
|
|
1380
|
+
caption02: caption02,
|
|
1381
|
+
label01: label01,
|
|
1382
|
+
label02: label02,
|
|
1383
|
+
helperText01: helperText01,
|
|
1384
|
+
helperText02: helperText02,
|
|
1385
|
+
bodyShort01: bodyShort01,
|
|
1386
|
+
bodyLong01: bodyLong01,
|
|
1387
|
+
bodyShort02: bodyShort02,
|
|
1388
|
+
bodyLong02: bodyLong02,
|
|
1389
|
+
code01: code01,
|
|
1390
|
+
code02: code02,
|
|
1391
|
+
heading01: heading01,
|
|
1392
|
+
productiveHeading01: productiveHeading01,
|
|
1393
|
+
heading02: heading02,
|
|
1394
|
+
productiveHeading02: productiveHeading02,
|
|
1395
|
+
productiveHeading03: productiveHeading03,
|
|
1396
|
+
productiveHeading04: productiveHeading04,
|
|
1397
|
+
productiveHeading05: productiveHeading05,
|
|
1398
|
+
productiveHeading06: productiveHeading06,
|
|
1399
|
+
productiveHeading07: productiveHeading07,
|
|
1400
|
+
expressiveHeading01: expressiveHeading01,
|
|
1401
|
+
expressiveHeading02: expressiveHeading02,
|
|
1402
|
+
expressiveHeading03: expressiveHeading03,
|
|
1403
|
+
expressiveHeading04: expressiveHeading04,
|
|
1404
|
+
expressiveHeading05: expressiveHeading05,
|
|
1405
|
+
expressiveHeading06: expressiveHeading06,
|
|
1406
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
1407
|
+
quotation01: quotation01,
|
|
1408
|
+
quotation02: quotation02,
|
|
1409
|
+
display01: display01,
|
|
1410
|
+
display02: display02,
|
|
1411
|
+
display03: display03,
|
|
1412
|
+
display04: display04,
|
|
1413
|
+
spacing01: spacing01,
|
|
1414
|
+
spacing02: spacing02,
|
|
1415
|
+
spacing03: spacing03,
|
|
1416
|
+
spacing04: spacing04,
|
|
1417
|
+
spacing05: spacing05,
|
|
1418
|
+
spacing06: spacing06,
|
|
1419
|
+
spacing07: spacing07,
|
|
1420
|
+
spacing08: spacing08,
|
|
1421
|
+
spacing09: spacing09,
|
|
1422
|
+
spacing10: spacing10,
|
|
1423
|
+
spacing11: spacing11,
|
|
1424
|
+
spacing12: spacing12,
|
|
1425
|
+
spacing13: spacing13,
|
|
1426
|
+
fluidSpacing01: fluidSpacing01,
|
|
1427
|
+
fluidSpacing02: fluidSpacing02,
|
|
1428
|
+
fluidSpacing03: fluidSpacing03,
|
|
1429
|
+
fluidSpacing04: fluidSpacing04,
|
|
1430
|
+
container01: container01,
|
|
1431
|
+
container02: container02,
|
|
1432
|
+
container03: container03,
|
|
1433
|
+
container04: container04,
|
|
1434
|
+
container05: container05,
|
|
1435
|
+
sizeXSmall: sizeXSmall,
|
|
1436
|
+
sizeSmall: sizeSmall,
|
|
1437
|
+
sizeMedium: sizeMedium,
|
|
1438
|
+
sizeLarge: sizeLarge,
|
|
1439
|
+
sizeXLarge: sizeXLarge,
|
|
1440
|
+
size2XLarge: size2XLarge,
|
|
1441
|
+
iconSize01: iconSize01,
|
|
1442
|
+
iconSize02: iconSize02,
|
|
1443
|
+
layout01: layout01,
|
|
1444
|
+
layout02: layout02,
|
|
1445
|
+
layout03: layout03,
|
|
1446
|
+
layout04: layout04,
|
|
1447
|
+
layout05: layout05,
|
|
1448
|
+
layout06: layout06,
|
|
1449
|
+
layout07: layout07
|
|
1450
|
+
});
|
|
1451
|
+
|
|
1452
|
+
const interactive01$3 = blue60;
|
|
1453
|
+
const interactive02$3 = gray80;
|
|
1454
|
+
const interactive03$3 = blue60;
|
|
1455
|
+
const interactive04$3 = blue60;
|
|
1456
|
+
const uiBackground$3 = white$2;
|
|
1457
|
+
const ui01$3 = gray10;
|
|
1458
|
+
const ui02$3 = white$2;
|
|
1459
|
+
const ui03$3 = gray20;
|
|
1460
|
+
const ui04$3 = gray50;
|
|
1461
|
+
const ui05$3 = gray100;
|
|
1462
|
+
const text01$3 = gray100;
|
|
1463
|
+
const text02$3 = gray70;
|
|
1464
|
+
const text03$3 = gray40;
|
|
1465
|
+
const text04$3 = white$2;
|
|
1466
|
+
const text05$3 = gray60;
|
|
1467
|
+
const textError$3 = red60;
|
|
1468
|
+
const icon01$3 = gray100;
|
|
1469
|
+
const icon02$3 = gray70;
|
|
1470
|
+
const icon03$3 = white$2;
|
|
1471
|
+
const link01$3 = blue60;
|
|
1472
|
+
const link02$3 = blue70;
|
|
1473
|
+
const inverseLink$3 = blue40;
|
|
1474
|
+
const field01$3 = gray10;
|
|
1475
|
+
const field02$3 = white$2;
|
|
1476
|
+
const inverse01$3 = white$2;
|
|
1477
|
+
const inverse02$3 = gray80;
|
|
1478
|
+
const support01$3 = red60;
|
|
1479
|
+
const support02$3 = green60;
|
|
1480
|
+
const support03$3 = yellow30;
|
|
1481
|
+
const support04$3 = blue70;
|
|
1482
|
+
const inverseSupport01$3 = red50;
|
|
1483
|
+
const inverseSupport02$3 = green40;
|
|
1484
|
+
const inverseSupport03$3 = yellow30;
|
|
1485
|
+
const inverseSupport04$3 = blue50;
|
|
1486
|
+
const overlay01$3 = rgba(gray100, 0.5);
|
|
1487
|
+
const danger01$3 = red60;
|
|
1488
|
+
const danger02$3 = red60;
|
|
1489
|
+
const focus$4 = blue60;
|
|
1490
|
+
const inverseFocusUi$3 = white$2;
|
|
1491
|
+
const hoverPrimary$3 = "#0353e9";
|
|
1492
|
+
const activePrimary$3 = blue80;
|
|
1493
|
+
const hoverPrimaryText$3 = blue70;
|
|
1494
|
+
const hoverSecondary$3 = "#4c4c4c";
|
|
1495
|
+
const activeSecondary$3 = gray60;
|
|
1496
|
+
const hoverTertiary$3 = "#0353e9";
|
|
1497
|
+
const activeTertiary$3 = blue80;
|
|
1498
|
+
const hoverUI$3 = "#e5e5e5";
|
|
1499
|
+
const hoverLightUI$3 = "#e5e5e5";
|
|
1500
|
+
const activeUI$3 = gray30;
|
|
1501
|
+
const activeLightUI$3 = gray30;
|
|
1502
|
+
const selectedUI$3 = gray20;
|
|
1503
|
+
const selectedLightUI$3 = gray20;
|
|
1504
|
+
const inverseHoverUI$3 = "#4c4c4c";
|
|
1505
|
+
const hoverSelectedUI$3 = "#cacaca";
|
|
1506
|
+
const hoverDanger$3 = adjustLightness(danger01$3, -8);
|
|
1507
|
+
const activeDanger$3 = red80;
|
|
1508
|
+
const hoverRow$3 = "#e5e5e5";
|
|
1509
|
+
const visitedLink$3 = purple60;
|
|
1510
|
+
const disabled01$3 = gray10;
|
|
1511
|
+
const disabled02$3 = gray30;
|
|
1512
|
+
const disabled03$3 = gray50;
|
|
1513
|
+
const highlight$3 = blue20;
|
|
1514
|
+
const decorative01$3 = gray20;
|
|
1515
|
+
const buttonSeparator$4 = "#e0e0e0";
|
|
1516
|
+
const skeleton01$3 = "#e5e5e5";
|
|
1517
|
+
const skeleton02$3 = gray30;
|
|
1518
|
+
const background$4 = uiBackground$3;
|
|
1519
|
+
const layer$4 = ui01$3;
|
|
1520
|
+
const layerAccent$3 = ui03$3;
|
|
1521
|
+
const layerAccentActive$3 = gray40;
|
|
1522
|
+
const layerAccentHover$3 = adjustLightness(layerAccent$3, -6);
|
|
1523
|
+
const field$4 = field01$3;
|
|
1524
|
+
const backgroundInverse$3 = inverse02$3;
|
|
1525
|
+
const backgroundBrand$3 = interactive01$3;
|
|
1526
|
+
const interactive$3 = interactive04$3;
|
|
1527
|
+
const borderSubtle$3 = ui03$3;
|
|
1528
|
+
const borderStrong$3 = ui04$3;
|
|
1529
|
+
const borderInverse$3 = ui05$3;
|
|
1530
|
+
const borderInteractive$3 = interactive04$3;
|
|
1531
|
+
const textPrimary$3 = text01$3;
|
|
1532
|
+
const textSecondary$3 = text02$3;
|
|
1533
|
+
const textPlaceholder$3 = text03$3;
|
|
1534
|
+
const textHelper$3 = text05$3;
|
|
1535
|
+
const textOnColor$3 = text04$3;
|
|
1536
|
+
const textInverse$3 = inverse01$3;
|
|
1537
|
+
const linkPrimary$3 = link01$3;
|
|
1538
|
+
const linkSecondary$3 = link02$3;
|
|
1539
|
+
const linkVisited$3 = visitedLink$3;
|
|
1540
|
+
const linkInverse$3 = inverseLink$3;
|
|
1541
|
+
const iconPrimary$3 = icon01$3;
|
|
1542
|
+
const iconSecondary$3 = icon02$3;
|
|
1543
|
+
const iconOnColor$3 = icon03$3;
|
|
1544
|
+
const iconInverse$3 = inverse01$3;
|
|
1545
|
+
const supportError$3 = support01$3;
|
|
1546
|
+
const supportSuccess$3 = support02$3;
|
|
1547
|
+
const supportWarning$3 = support03$3;
|
|
1548
|
+
const supportInfo$3 = support04$3;
|
|
1549
|
+
const supportErrorInverse$3 = inverseSupport01$3;
|
|
1550
|
+
const supportSuccessInverse$3 = inverseSupport02$3;
|
|
1551
|
+
const supportWarningInverse$3 = inverseSupport03$3;
|
|
1552
|
+
const supportInfoInverse$3 = inverseSupport04$3;
|
|
1553
|
+
const overlay$3 = overlay01$3;
|
|
1554
|
+
const toggleOff$3 = ui04$3;
|
|
1555
|
+
const shadow$3 = rgba(black, 0.3);
|
|
1556
|
+
const buttonPrimary$4 = interactive01$3;
|
|
1557
|
+
const buttonSecondary$4 = interactive02$3;
|
|
1558
|
+
const buttonTertiary$4 = interactive03$3;
|
|
1559
|
+
const buttonDangerPrimary$4 = danger01$3;
|
|
1560
|
+
const buttonDangerSecondary$4 = danger02$3;
|
|
1561
|
+
const backgroundActive$3 = activeUI$3;
|
|
1562
|
+
const layerActive$3 = activeUI$3;
|
|
1563
|
+
const buttonDangerActive$4 = activeDanger$3;
|
|
1564
|
+
const buttonPrimaryActive$4 = activePrimary$3;
|
|
1565
|
+
const buttonSecondaryActive$4 = activeSecondary$3;
|
|
1566
|
+
const buttonTertiaryActive$4 = activeTertiary$3;
|
|
1567
|
+
const focusInset$3 = inverse01$3;
|
|
1568
|
+
const focusInverse$3 = inverseFocusUi$3;
|
|
1569
|
+
const backgroundHover$3 = hoverUI$3;
|
|
1570
|
+
const layerHover$3 = hoverUI$3;
|
|
1571
|
+
const fieldHover$3 = hoverUI$3;
|
|
1572
|
+
const backgroundInverseHover$3 = inverseHoverUI$3;
|
|
1573
|
+
const linkPrimaryHover$3 = hoverPrimaryText$3;
|
|
1574
|
+
const buttonDangerHover$4 = hoverDanger$3;
|
|
1575
|
+
const buttonPrimaryHover$4 = hoverPrimary$3;
|
|
1576
|
+
const buttonSecondaryHover$4 = hoverSecondary$3;
|
|
1577
|
+
const buttonTertiaryHover$4 = hoverTertiary$3;
|
|
1578
|
+
const backgroundSelected$3 = selectedUI$3;
|
|
1579
|
+
const backgroundSelectedHover$3 = hoverSelectedUI$3;
|
|
1580
|
+
const layerSelected$3 = selectedUI$3;
|
|
1581
|
+
const layerSelectedHover$3 = hoverSelectedUI$3;
|
|
1582
|
+
const layerSelectedInverse$3 = ui05$3;
|
|
1583
|
+
const borderSubtleSelected$3 = activeUI$3;
|
|
1584
|
+
const borderDisabled$3 = disabled01$3;
|
|
1585
|
+
const textDisabled$3 = disabled02$3;
|
|
1586
|
+
const buttonDisabled$4 = disabled02$3;
|
|
1587
|
+
const iconDisabled$3 = disabled02$3;
|
|
1588
|
+
const textOnColorDisabled$3 = disabled03$3;
|
|
1589
|
+
const iconOnColorDisabled$3 = disabled03$3;
|
|
1590
|
+
const layerSelectedDisabled$3 = disabled03$3;
|
|
1591
|
+
const skeletonBackground$3 = skeleton01$3;
|
|
1592
|
+
const skeletonElement$3 = skeleton02$3;
|
|
1593
|
+
const brand01$3 = interactive01$3;
|
|
1594
|
+
const brand02$3 = interactive02$3;
|
|
1595
|
+
const brand03$3 = interactive03$3;
|
|
1596
|
+
const active01$3 = activeUI$3;
|
|
1597
|
+
const hoverField$3 = hoverUI$3;
|
|
1598
|
+
const danger$3 = danger01$3;
|
|
1599
|
+
|
|
1600
|
+
var white = /*#__PURE__*/Object.freeze({
|
|
1601
|
+
__proto__: null,
|
|
1602
|
+
interactive01: interactive01$3,
|
|
1603
|
+
interactive02: interactive02$3,
|
|
1604
|
+
interactive03: interactive03$3,
|
|
1605
|
+
interactive04: interactive04$3,
|
|
1606
|
+
uiBackground: uiBackground$3,
|
|
1607
|
+
ui01: ui01$3,
|
|
1608
|
+
ui02: ui02$3,
|
|
1609
|
+
ui03: ui03$3,
|
|
1610
|
+
ui04: ui04$3,
|
|
1611
|
+
ui05: ui05$3,
|
|
1612
|
+
text01: text01$3,
|
|
1613
|
+
text02: text02$3,
|
|
1614
|
+
text03: text03$3,
|
|
1615
|
+
text04: text04$3,
|
|
1616
|
+
text05: text05$3,
|
|
1617
|
+
textError: textError$3,
|
|
1618
|
+
icon01: icon01$3,
|
|
1619
|
+
icon02: icon02$3,
|
|
1620
|
+
icon03: icon03$3,
|
|
1621
|
+
link01: link01$3,
|
|
1622
|
+
link02: link02$3,
|
|
1623
|
+
inverseLink: inverseLink$3,
|
|
1624
|
+
field01: field01$3,
|
|
1625
|
+
field02: field02$3,
|
|
1626
|
+
inverse01: inverse01$3,
|
|
1627
|
+
inverse02: inverse02$3,
|
|
1628
|
+
support01: support01$3,
|
|
1629
|
+
support02: support02$3,
|
|
1630
|
+
support03: support03$3,
|
|
1631
|
+
support04: support04$3,
|
|
1632
|
+
inverseSupport01: inverseSupport01$3,
|
|
1633
|
+
inverseSupport02: inverseSupport02$3,
|
|
1634
|
+
inverseSupport03: inverseSupport03$3,
|
|
1635
|
+
inverseSupport04: inverseSupport04$3,
|
|
1636
|
+
overlay01: overlay01$3,
|
|
1637
|
+
danger01: danger01$3,
|
|
1638
|
+
danger02: danger02$3,
|
|
1639
|
+
focus: focus$4,
|
|
1640
|
+
inverseFocusUi: inverseFocusUi$3,
|
|
1641
|
+
hoverPrimary: hoverPrimary$3,
|
|
1642
|
+
activePrimary: activePrimary$3,
|
|
1643
|
+
hoverPrimaryText: hoverPrimaryText$3,
|
|
1644
|
+
hoverSecondary: hoverSecondary$3,
|
|
1645
|
+
activeSecondary: activeSecondary$3,
|
|
1646
|
+
hoverTertiary: hoverTertiary$3,
|
|
1647
|
+
activeTertiary: activeTertiary$3,
|
|
1648
|
+
hoverUI: hoverUI$3,
|
|
1649
|
+
hoverLightUI: hoverLightUI$3,
|
|
1650
|
+
activeUI: activeUI$3,
|
|
1651
|
+
activeLightUI: activeLightUI$3,
|
|
1652
|
+
selectedUI: selectedUI$3,
|
|
1653
|
+
selectedLightUI: selectedLightUI$3,
|
|
1654
|
+
inverseHoverUI: inverseHoverUI$3,
|
|
1655
|
+
hoverSelectedUI: hoverSelectedUI$3,
|
|
1656
|
+
hoverDanger: hoverDanger$3,
|
|
1657
|
+
activeDanger: activeDanger$3,
|
|
1658
|
+
hoverRow: hoverRow$3,
|
|
1659
|
+
visitedLink: visitedLink$3,
|
|
1660
|
+
disabled01: disabled01$3,
|
|
1661
|
+
disabled02: disabled02$3,
|
|
1662
|
+
disabled03: disabled03$3,
|
|
1663
|
+
highlight: highlight$3,
|
|
1664
|
+
decorative01: decorative01$3,
|
|
1665
|
+
buttonSeparator: buttonSeparator$4,
|
|
1666
|
+
skeleton01: skeleton01$3,
|
|
1667
|
+
skeleton02: skeleton02$3,
|
|
1668
|
+
background: background$4,
|
|
1669
|
+
layer: layer$4,
|
|
1670
|
+
layerAccent: layerAccent$3,
|
|
1671
|
+
layerAccentActive: layerAccentActive$3,
|
|
1672
|
+
layerAccentHover: layerAccentHover$3,
|
|
1673
|
+
field: field$4,
|
|
1674
|
+
backgroundInverse: backgroundInverse$3,
|
|
1675
|
+
backgroundBrand: backgroundBrand$3,
|
|
1676
|
+
interactive: interactive$3,
|
|
1677
|
+
borderSubtle: borderSubtle$3,
|
|
1678
|
+
borderStrong: borderStrong$3,
|
|
1679
|
+
borderInverse: borderInverse$3,
|
|
1680
|
+
borderInteractive: borderInteractive$3,
|
|
1681
|
+
textPrimary: textPrimary$3,
|
|
1682
|
+
textSecondary: textSecondary$3,
|
|
1683
|
+
textPlaceholder: textPlaceholder$3,
|
|
1684
|
+
textHelper: textHelper$3,
|
|
1685
|
+
textOnColor: textOnColor$3,
|
|
1686
|
+
textInverse: textInverse$3,
|
|
1687
|
+
linkPrimary: linkPrimary$3,
|
|
1688
|
+
linkSecondary: linkSecondary$3,
|
|
1689
|
+
linkVisited: linkVisited$3,
|
|
1690
|
+
linkInverse: linkInverse$3,
|
|
1691
|
+
iconPrimary: iconPrimary$3,
|
|
1692
|
+
iconSecondary: iconSecondary$3,
|
|
1693
|
+
iconOnColor: iconOnColor$3,
|
|
1694
|
+
iconInverse: iconInverse$3,
|
|
1695
|
+
supportError: supportError$3,
|
|
1696
|
+
supportSuccess: supportSuccess$3,
|
|
1697
|
+
supportWarning: supportWarning$3,
|
|
1698
|
+
supportInfo: supportInfo$3,
|
|
1699
|
+
supportErrorInverse: supportErrorInverse$3,
|
|
1700
|
+
supportSuccessInverse: supportSuccessInverse$3,
|
|
1701
|
+
supportWarningInverse: supportWarningInverse$3,
|
|
1702
|
+
supportInfoInverse: supportInfoInverse$3,
|
|
1703
|
+
overlay: overlay$3,
|
|
1704
|
+
toggleOff: toggleOff$3,
|
|
1705
|
+
shadow: shadow$3,
|
|
1706
|
+
buttonPrimary: buttonPrimary$4,
|
|
1707
|
+
buttonSecondary: buttonSecondary$4,
|
|
1708
|
+
buttonTertiary: buttonTertiary$4,
|
|
1709
|
+
buttonDangerPrimary: buttonDangerPrimary$4,
|
|
1710
|
+
buttonDangerSecondary: buttonDangerSecondary$4,
|
|
1711
|
+
backgroundActive: backgroundActive$3,
|
|
1712
|
+
layerActive: layerActive$3,
|
|
1713
|
+
buttonDangerActive: buttonDangerActive$4,
|
|
1714
|
+
buttonPrimaryActive: buttonPrimaryActive$4,
|
|
1715
|
+
buttonSecondaryActive: buttonSecondaryActive$4,
|
|
1716
|
+
buttonTertiaryActive: buttonTertiaryActive$4,
|
|
1717
|
+
focusInset: focusInset$3,
|
|
1718
|
+
focusInverse: focusInverse$3,
|
|
1719
|
+
backgroundHover: backgroundHover$3,
|
|
1720
|
+
layerHover: layerHover$3,
|
|
1721
|
+
fieldHover: fieldHover$3,
|
|
1722
|
+
backgroundInverseHover: backgroundInverseHover$3,
|
|
1723
|
+
linkPrimaryHover: linkPrimaryHover$3,
|
|
1724
|
+
buttonDangerHover: buttonDangerHover$4,
|
|
1725
|
+
buttonPrimaryHover: buttonPrimaryHover$4,
|
|
1726
|
+
buttonSecondaryHover: buttonSecondaryHover$4,
|
|
1727
|
+
buttonTertiaryHover: buttonTertiaryHover$4,
|
|
1728
|
+
backgroundSelected: backgroundSelected$3,
|
|
1729
|
+
backgroundSelectedHover: backgroundSelectedHover$3,
|
|
1730
|
+
layerSelected: layerSelected$3,
|
|
1731
|
+
layerSelectedHover: layerSelectedHover$3,
|
|
1732
|
+
layerSelectedInverse: layerSelectedInverse$3,
|
|
1733
|
+
borderSubtleSelected: borderSubtleSelected$3,
|
|
1734
|
+
borderDisabled: borderDisabled$3,
|
|
1735
|
+
textDisabled: textDisabled$3,
|
|
1736
|
+
buttonDisabled: buttonDisabled$4,
|
|
1737
|
+
iconDisabled: iconDisabled$3,
|
|
1738
|
+
textOnColorDisabled: textOnColorDisabled$3,
|
|
1739
|
+
iconOnColorDisabled: iconOnColorDisabled$3,
|
|
1740
|
+
layerSelectedDisabled: layerSelectedDisabled$3,
|
|
1741
|
+
skeletonBackground: skeletonBackground$3,
|
|
1742
|
+
skeletonElement: skeletonElement$3,
|
|
1743
|
+
brand01: brand01$3,
|
|
1744
|
+
brand02: brand02$3,
|
|
1745
|
+
brand03: brand03$3,
|
|
1746
|
+
active01: active01$3,
|
|
1747
|
+
hoverField: hoverField$3,
|
|
1748
|
+
danger: danger$3,
|
|
1749
|
+
caption01: caption01,
|
|
1750
|
+
caption02: caption02,
|
|
1751
|
+
label01: label01,
|
|
1752
|
+
label02: label02,
|
|
1753
|
+
helperText01: helperText01,
|
|
1754
|
+
helperText02: helperText02,
|
|
1755
|
+
bodyShort01: bodyShort01,
|
|
1756
|
+
bodyLong01: bodyLong01,
|
|
1757
|
+
bodyShort02: bodyShort02,
|
|
1758
|
+
bodyLong02: bodyLong02,
|
|
1759
|
+
code01: code01,
|
|
1760
|
+
code02: code02,
|
|
1761
|
+
heading01: heading01,
|
|
1762
|
+
productiveHeading01: productiveHeading01,
|
|
1763
|
+
heading02: heading02,
|
|
1764
|
+
productiveHeading02: productiveHeading02,
|
|
1765
|
+
productiveHeading03: productiveHeading03,
|
|
1766
|
+
productiveHeading04: productiveHeading04,
|
|
1767
|
+
productiveHeading05: productiveHeading05,
|
|
1768
|
+
productiveHeading06: productiveHeading06,
|
|
1769
|
+
productiveHeading07: productiveHeading07,
|
|
1770
|
+
expressiveHeading01: expressiveHeading01,
|
|
1771
|
+
expressiveHeading02: expressiveHeading02,
|
|
1772
|
+
expressiveHeading03: expressiveHeading03,
|
|
1773
|
+
expressiveHeading04: expressiveHeading04,
|
|
1774
|
+
expressiveHeading05: expressiveHeading05,
|
|
1775
|
+
expressiveHeading06: expressiveHeading06,
|
|
1776
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
1777
|
+
quotation01: quotation01,
|
|
1778
|
+
quotation02: quotation02,
|
|
1779
|
+
display01: display01,
|
|
1780
|
+
display02: display02,
|
|
1781
|
+
display03: display03,
|
|
1782
|
+
display04: display04,
|
|
1783
|
+
legal01: legal01,
|
|
1784
|
+
legal02: legal02,
|
|
1785
|
+
bodyCompact01: bodyCompact01,
|
|
1786
|
+
bodyCompact02: bodyCompact02,
|
|
1787
|
+
body01: body01,
|
|
1788
|
+
body02: body02,
|
|
1789
|
+
headingCompact01: headingCompact01,
|
|
1790
|
+
headingCompact02: headingCompact02,
|
|
1791
|
+
heading03: heading03,
|
|
1792
|
+
heading04: heading04,
|
|
1793
|
+
heading05: heading05,
|
|
1794
|
+
heading06: heading06,
|
|
1795
|
+
heading07: heading07,
|
|
1796
|
+
fluidHeading03: fluidHeading03,
|
|
1797
|
+
fluidHeading04: fluidHeading04,
|
|
1798
|
+
fluidHeading05: fluidHeading05,
|
|
1799
|
+
fluidHeading06: fluidHeading06,
|
|
1800
|
+
fluidParagraph01: fluidParagraph01,
|
|
1801
|
+
fluidQuotation01: fluidQuotation01,
|
|
1802
|
+
fluidQuotation02: fluidQuotation02,
|
|
1803
|
+
fluidDisplay01: fluidDisplay01,
|
|
1804
|
+
fluidDisplay02: fluidDisplay02,
|
|
1805
|
+
fluidDisplay03: fluidDisplay03,
|
|
1806
|
+
fluidDisplay04: fluidDisplay04,
|
|
1807
|
+
spacing01: spacing01,
|
|
1808
|
+
spacing02: spacing02,
|
|
1809
|
+
spacing03: spacing03,
|
|
1810
|
+
spacing04: spacing04,
|
|
1811
|
+
spacing05: spacing05,
|
|
1812
|
+
spacing06: spacing06,
|
|
1813
|
+
spacing07: spacing07,
|
|
1814
|
+
spacing08: spacing08,
|
|
1815
|
+
spacing09: spacing09,
|
|
1816
|
+
spacing10: spacing10,
|
|
1817
|
+
spacing11: spacing11,
|
|
1818
|
+
spacing12: spacing12,
|
|
1819
|
+
spacing13: spacing13,
|
|
1820
|
+
fluidSpacing01: fluidSpacing01,
|
|
1821
|
+
fluidSpacing02: fluidSpacing02,
|
|
1822
|
+
fluidSpacing03: fluidSpacing03,
|
|
1823
|
+
fluidSpacing04: fluidSpacing04,
|
|
1824
|
+
container01: container01,
|
|
1825
|
+
container02: container02,
|
|
1826
|
+
container03: container03,
|
|
1827
|
+
container04: container04,
|
|
1828
|
+
container05: container05,
|
|
1829
|
+
sizeXSmall: sizeXSmall,
|
|
1830
|
+
sizeSmall: sizeSmall,
|
|
1831
|
+
sizeMedium: sizeMedium,
|
|
1832
|
+
sizeLarge: sizeLarge,
|
|
1833
|
+
sizeXLarge: sizeXLarge,
|
|
1834
|
+
size2XLarge: size2XLarge,
|
|
1835
|
+
iconSize01: iconSize01,
|
|
1836
|
+
iconSize02: iconSize02,
|
|
1837
|
+
layout01: layout01,
|
|
1838
|
+
layout02: layout02,
|
|
1839
|
+
layout03: layout03,
|
|
1840
|
+
layout04: layout04,
|
|
1841
|
+
layout05: layout05,
|
|
1842
|
+
layout06: layout06,
|
|
1843
|
+
layout07: layout07
|
|
1844
|
+
});
|
|
1845
|
+
|
|
1846
|
+
const interactive01$2 = blue60;
|
|
1847
|
+
const interactive02$2 = gray80;
|
|
1848
|
+
const interactive03$2 = blue60;
|
|
1849
|
+
const interactive04$2 = blue60;
|
|
1850
|
+
const uiBackground$2 = gray10;
|
|
1851
|
+
const ui01$2 = white$2;
|
|
1852
|
+
const ui02$2 = gray10;
|
|
1853
|
+
const ui03$2 = gray20;
|
|
1854
|
+
const ui04$2 = gray50;
|
|
1855
|
+
const ui05$2 = gray100;
|
|
1856
|
+
const text01$2 = gray100;
|
|
1857
|
+
const text02$2 = gray70;
|
|
1858
|
+
const text03$2 = gray40;
|
|
1859
|
+
const text04$2 = white$2;
|
|
1860
|
+
const text05$2 = gray60;
|
|
1861
|
+
const textError$2 = red60;
|
|
1862
|
+
const icon01$2 = gray100;
|
|
1863
|
+
const icon02$2 = gray70;
|
|
1864
|
+
const icon03$2 = white$2;
|
|
1865
|
+
const link01$2 = blue60;
|
|
1866
|
+
const link02$2 = blue70;
|
|
1867
|
+
const inverseLink$2 = blue40;
|
|
1868
|
+
const field01$2 = white$2;
|
|
1869
|
+
const field02$2 = gray10;
|
|
1870
|
+
const inverse01$2 = white$2;
|
|
1871
|
+
const inverse02$2 = gray80;
|
|
1872
|
+
const support01$2 = red60;
|
|
1873
|
+
const support02$2 = green60;
|
|
1874
|
+
const support03$2 = yellow30;
|
|
1875
|
+
const support04$2 = blue70;
|
|
1876
|
+
const inverseSupport01$2 = red50;
|
|
1877
|
+
const inverseSupport02$2 = green40;
|
|
1878
|
+
const inverseSupport03$2 = yellow30;
|
|
1879
|
+
const inverseSupport04$2 = blue50;
|
|
1880
|
+
const overlay01$2 = rgba(gray100, 0.5);
|
|
1881
|
+
const danger01$2 = red60;
|
|
1882
|
+
const danger02$2 = red60;
|
|
1883
|
+
const focus$3 = blue60;
|
|
1884
|
+
const inverseFocusUi$2 = white$2;
|
|
1885
|
+
const hoverPrimary$2 = "#0353e9";
|
|
1886
|
+
const activePrimary$2 = blue80;
|
|
1887
|
+
const hoverPrimaryText$2 = blue70;
|
|
1888
|
+
const hoverSecondary$2 = "#4c4c4c";
|
|
1889
|
+
const activeSecondary$2 = gray60;
|
|
1890
|
+
const hoverTertiary$2 = "#0353e9";
|
|
1891
|
+
const activeTertiary$2 = blue80;
|
|
1892
|
+
const hoverUI$2 = "#e5e5e5";
|
|
1893
|
+
const hoverLightUI$2 = "#e5e5e5";
|
|
1894
|
+
const activeUI$2 = gray30;
|
|
1895
|
+
const activeLightUI$2 = gray30;
|
|
1896
|
+
const selectedUI$2 = gray20;
|
|
1897
|
+
const selectedLightUI$2 = gray20;
|
|
1898
|
+
const inverseHoverUI$2 = "#4c4c4c";
|
|
1899
|
+
const hoverSelectedUI$2 = "#cacaca";
|
|
1900
|
+
const hoverDanger$2 = adjustLightness(danger01$2, -8);
|
|
1901
|
+
const activeDanger$2 = red80;
|
|
1902
|
+
const hoverRow$2 = "#e5e5e5";
|
|
1903
|
+
const visitedLink$2 = purple60;
|
|
1904
|
+
const disabled01$2 = white$2;
|
|
1905
|
+
const disabled02$2 = gray30;
|
|
1906
|
+
const disabled03$2 = gray50;
|
|
1907
|
+
const highlight$2 = blue20;
|
|
1908
|
+
const decorative01$2 = gray20;
|
|
1909
|
+
const buttonSeparator$3 = "#e0e0e0";
|
|
1910
|
+
const skeleton01$2 = "#e5e5e5";
|
|
1911
|
+
const skeleton02$2 = gray30;
|
|
1912
|
+
const background$3 = uiBackground$2;
|
|
1913
|
+
const layer$3 = ui01$2;
|
|
1914
|
+
const layerAccent$2 = ui03$2;
|
|
1915
|
+
const layerAccentActive$2 = gray40;
|
|
1916
|
+
const layerAccentHover$2 = adjustLightness(layerAccent$2, -6);
|
|
1917
|
+
const field$3 = field01$2;
|
|
1918
|
+
const backgroundInverse$2 = inverse02$2;
|
|
1919
|
+
const backgroundBrand$2 = interactive01$2;
|
|
1920
|
+
const interactive$2 = interactive04$2;
|
|
1921
|
+
const borderSubtle$2 = ui03$2;
|
|
1922
|
+
const borderStrong$2 = ui04$2;
|
|
1923
|
+
const borderInverse$2 = ui05$2;
|
|
1924
|
+
const borderInteractive$2 = interactive04$2;
|
|
1925
|
+
const textPrimary$2 = text01$2;
|
|
1926
|
+
const textSecondary$2 = text02$2;
|
|
1927
|
+
const textPlaceholder$2 = text03$2;
|
|
1928
|
+
const textHelper$2 = text05$2;
|
|
1929
|
+
const textOnColor$2 = text04$2;
|
|
1930
|
+
const textInverse$2 = inverse01$2;
|
|
1931
|
+
const linkPrimary$2 = link01$2;
|
|
1932
|
+
const linkSecondary$2 = link02$2;
|
|
1933
|
+
const linkVisited$2 = visitedLink$2;
|
|
1934
|
+
const linkInverse$2 = inverseLink$2;
|
|
1935
|
+
const iconPrimary$2 = icon01$2;
|
|
1936
|
+
const iconSecondary$2 = icon02$2;
|
|
1937
|
+
const iconOnColor$2 = icon03$2;
|
|
1938
|
+
const iconInverse$2 = inverse01$2;
|
|
1939
|
+
const supportError$2 = support01$2;
|
|
1940
|
+
const supportSuccess$2 = support02$2;
|
|
1941
|
+
const supportWarning$2 = support03$2;
|
|
1942
|
+
const supportInfo$2 = support04$2;
|
|
1943
|
+
const supportErrorInverse$2 = inverseSupport01$2;
|
|
1944
|
+
const supportSuccessInverse$2 = inverseSupport02$2;
|
|
1945
|
+
const supportWarningInverse$2 = inverseSupport03$2;
|
|
1946
|
+
const supportInfoInverse$2 = inverseSupport04$2;
|
|
1947
|
+
const overlay$2 = overlay01$2;
|
|
1948
|
+
const toggleOff$2 = ui04$2;
|
|
1949
|
+
const shadow$2 = rgba(black, 0.3);
|
|
1950
|
+
const buttonPrimary$3 = interactive01$2;
|
|
1951
|
+
const buttonSecondary$3 = interactive02$2;
|
|
1952
|
+
const buttonTertiary$3 = interactive03$2;
|
|
1953
|
+
const buttonDangerPrimary$3 = danger01$2;
|
|
1954
|
+
const buttonDangerSecondary$3 = danger02$2;
|
|
1955
|
+
const backgroundActive$2 = activeUI$2;
|
|
1956
|
+
const layerActive$2 = activeUI$2;
|
|
1957
|
+
const buttonDangerActive$3 = activeDanger$2;
|
|
1958
|
+
const buttonPrimaryActive$3 = activePrimary$2;
|
|
1959
|
+
const buttonSecondaryActive$3 = activeSecondary$2;
|
|
1960
|
+
const buttonTertiaryActive$3 = activeTertiary$2;
|
|
1961
|
+
const focusInset$2 = inverse01$2;
|
|
1962
|
+
const focusInverse$2 = inverseFocusUi$2;
|
|
1963
|
+
const backgroundHover$2 = hoverUI$2;
|
|
1964
|
+
const layerHover$2 = hoverUI$2;
|
|
1965
|
+
const fieldHover$2 = hoverUI$2;
|
|
1966
|
+
const backgroundInverseHover$2 = inverseHoverUI$2;
|
|
1967
|
+
const linkPrimaryHover$2 = hoverPrimaryText$2;
|
|
1968
|
+
const buttonDangerHover$3 = hoverDanger$2;
|
|
1969
|
+
const buttonPrimaryHover$3 = hoverPrimary$2;
|
|
1970
|
+
const buttonSecondaryHover$3 = hoverSecondary$2;
|
|
1971
|
+
const buttonTertiaryHover$3 = hoverTertiary$2;
|
|
1972
|
+
const backgroundSelected$2 = selectedUI$2;
|
|
1973
|
+
const backgroundSelectedHover$2 = hoverSelectedUI$2;
|
|
1974
|
+
const layerSelected$2 = selectedUI$2;
|
|
1975
|
+
const layerSelectedHover$2 = hoverSelectedUI$2;
|
|
1976
|
+
const layerSelectedInverse$2 = ui05$2;
|
|
1977
|
+
const borderSubtleSelected$2 = activeUI$2;
|
|
1978
|
+
const borderDisabled$2 = disabled01$2;
|
|
1979
|
+
const textDisabled$2 = disabled02$2;
|
|
1980
|
+
const buttonDisabled$3 = disabled02$2;
|
|
1981
|
+
const iconDisabled$2 = disabled02$2;
|
|
1982
|
+
const textOnColorDisabled$2 = disabled03$2;
|
|
1983
|
+
const iconOnColorDisabled$2 = disabled03$2;
|
|
1984
|
+
const layerSelectedDisabled$2 = disabled03$2;
|
|
1985
|
+
const skeletonBackground$2 = skeleton01$2;
|
|
1986
|
+
const skeletonElement$2 = skeleton02$2;
|
|
1987
|
+
const brand01$2 = interactive01$2;
|
|
1988
|
+
const brand02$2 = interactive02$2;
|
|
1989
|
+
const brand03$2 = interactive03$2;
|
|
1990
|
+
const active01$2 = activeUI$2;
|
|
1991
|
+
const hoverField$2 = hoverUI$2;
|
|
1992
|
+
const danger$2 = danger01$2;
|
|
1993
|
+
|
|
1994
|
+
var g10 = /*#__PURE__*/Object.freeze({
|
|
1995
|
+
__proto__: null,
|
|
1996
|
+
interactive01: interactive01$2,
|
|
1997
|
+
interactive02: interactive02$2,
|
|
1998
|
+
interactive03: interactive03$2,
|
|
1999
|
+
interactive04: interactive04$2,
|
|
2000
|
+
uiBackground: uiBackground$2,
|
|
2001
|
+
ui01: ui01$2,
|
|
2002
|
+
ui02: ui02$2,
|
|
2003
|
+
ui03: ui03$2,
|
|
2004
|
+
ui04: ui04$2,
|
|
2005
|
+
ui05: ui05$2,
|
|
2006
|
+
text01: text01$2,
|
|
2007
|
+
text02: text02$2,
|
|
2008
|
+
text03: text03$2,
|
|
2009
|
+
text04: text04$2,
|
|
2010
|
+
text05: text05$2,
|
|
2011
|
+
textError: textError$2,
|
|
2012
|
+
icon01: icon01$2,
|
|
2013
|
+
icon02: icon02$2,
|
|
2014
|
+
icon03: icon03$2,
|
|
2015
|
+
link01: link01$2,
|
|
2016
|
+
link02: link02$2,
|
|
2017
|
+
inverseLink: inverseLink$2,
|
|
2018
|
+
field01: field01$2,
|
|
2019
|
+
field02: field02$2,
|
|
2020
|
+
inverse01: inverse01$2,
|
|
2021
|
+
inverse02: inverse02$2,
|
|
2022
|
+
support01: support01$2,
|
|
2023
|
+
support02: support02$2,
|
|
2024
|
+
support03: support03$2,
|
|
2025
|
+
support04: support04$2,
|
|
2026
|
+
inverseSupport01: inverseSupport01$2,
|
|
2027
|
+
inverseSupport02: inverseSupport02$2,
|
|
2028
|
+
inverseSupport03: inverseSupport03$2,
|
|
2029
|
+
inverseSupport04: inverseSupport04$2,
|
|
2030
|
+
overlay01: overlay01$2,
|
|
2031
|
+
danger01: danger01$2,
|
|
2032
|
+
danger02: danger02$2,
|
|
2033
|
+
focus: focus$3,
|
|
2034
|
+
inverseFocusUi: inverseFocusUi$2,
|
|
2035
|
+
hoverPrimary: hoverPrimary$2,
|
|
2036
|
+
activePrimary: activePrimary$2,
|
|
2037
|
+
hoverPrimaryText: hoverPrimaryText$2,
|
|
2038
|
+
hoverSecondary: hoverSecondary$2,
|
|
2039
|
+
activeSecondary: activeSecondary$2,
|
|
2040
|
+
hoverTertiary: hoverTertiary$2,
|
|
2041
|
+
activeTertiary: activeTertiary$2,
|
|
2042
|
+
hoverUI: hoverUI$2,
|
|
2043
|
+
hoverLightUI: hoverLightUI$2,
|
|
2044
|
+
activeUI: activeUI$2,
|
|
2045
|
+
activeLightUI: activeLightUI$2,
|
|
2046
|
+
selectedUI: selectedUI$2,
|
|
2047
|
+
selectedLightUI: selectedLightUI$2,
|
|
2048
|
+
inverseHoverUI: inverseHoverUI$2,
|
|
2049
|
+
hoverSelectedUI: hoverSelectedUI$2,
|
|
2050
|
+
hoverDanger: hoverDanger$2,
|
|
2051
|
+
activeDanger: activeDanger$2,
|
|
2052
|
+
hoverRow: hoverRow$2,
|
|
2053
|
+
visitedLink: visitedLink$2,
|
|
2054
|
+
disabled01: disabled01$2,
|
|
2055
|
+
disabled02: disabled02$2,
|
|
2056
|
+
disabled03: disabled03$2,
|
|
2057
|
+
highlight: highlight$2,
|
|
2058
|
+
decorative01: decorative01$2,
|
|
2059
|
+
buttonSeparator: buttonSeparator$3,
|
|
2060
|
+
skeleton01: skeleton01$2,
|
|
2061
|
+
skeleton02: skeleton02$2,
|
|
2062
|
+
background: background$3,
|
|
2063
|
+
layer: layer$3,
|
|
2064
|
+
layerAccent: layerAccent$2,
|
|
2065
|
+
layerAccentActive: layerAccentActive$2,
|
|
2066
|
+
layerAccentHover: layerAccentHover$2,
|
|
2067
|
+
field: field$3,
|
|
2068
|
+
backgroundInverse: backgroundInverse$2,
|
|
2069
|
+
backgroundBrand: backgroundBrand$2,
|
|
2070
|
+
interactive: interactive$2,
|
|
2071
|
+
borderSubtle: borderSubtle$2,
|
|
2072
|
+
borderStrong: borderStrong$2,
|
|
2073
|
+
borderInverse: borderInverse$2,
|
|
2074
|
+
borderInteractive: borderInteractive$2,
|
|
2075
|
+
textPrimary: textPrimary$2,
|
|
2076
|
+
textSecondary: textSecondary$2,
|
|
2077
|
+
textPlaceholder: textPlaceholder$2,
|
|
2078
|
+
textHelper: textHelper$2,
|
|
2079
|
+
textOnColor: textOnColor$2,
|
|
2080
|
+
textInverse: textInverse$2,
|
|
2081
|
+
linkPrimary: linkPrimary$2,
|
|
2082
|
+
linkSecondary: linkSecondary$2,
|
|
2083
|
+
linkVisited: linkVisited$2,
|
|
2084
|
+
linkInverse: linkInverse$2,
|
|
2085
|
+
iconPrimary: iconPrimary$2,
|
|
2086
|
+
iconSecondary: iconSecondary$2,
|
|
2087
|
+
iconOnColor: iconOnColor$2,
|
|
2088
|
+
iconInverse: iconInverse$2,
|
|
2089
|
+
supportError: supportError$2,
|
|
2090
|
+
supportSuccess: supportSuccess$2,
|
|
2091
|
+
supportWarning: supportWarning$2,
|
|
2092
|
+
supportInfo: supportInfo$2,
|
|
2093
|
+
supportErrorInverse: supportErrorInverse$2,
|
|
2094
|
+
supportSuccessInverse: supportSuccessInverse$2,
|
|
2095
|
+
supportWarningInverse: supportWarningInverse$2,
|
|
2096
|
+
supportInfoInverse: supportInfoInverse$2,
|
|
2097
|
+
overlay: overlay$2,
|
|
2098
|
+
toggleOff: toggleOff$2,
|
|
2099
|
+
shadow: shadow$2,
|
|
2100
|
+
buttonPrimary: buttonPrimary$3,
|
|
2101
|
+
buttonSecondary: buttonSecondary$3,
|
|
2102
|
+
buttonTertiary: buttonTertiary$3,
|
|
2103
|
+
buttonDangerPrimary: buttonDangerPrimary$3,
|
|
2104
|
+
buttonDangerSecondary: buttonDangerSecondary$3,
|
|
2105
|
+
backgroundActive: backgroundActive$2,
|
|
2106
|
+
layerActive: layerActive$2,
|
|
2107
|
+
buttonDangerActive: buttonDangerActive$3,
|
|
2108
|
+
buttonPrimaryActive: buttonPrimaryActive$3,
|
|
2109
|
+
buttonSecondaryActive: buttonSecondaryActive$3,
|
|
2110
|
+
buttonTertiaryActive: buttonTertiaryActive$3,
|
|
2111
|
+
focusInset: focusInset$2,
|
|
2112
|
+
focusInverse: focusInverse$2,
|
|
2113
|
+
backgroundHover: backgroundHover$2,
|
|
2114
|
+
layerHover: layerHover$2,
|
|
2115
|
+
fieldHover: fieldHover$2,
|
|
2116
|
+
backgroundInverseHover: backgroundInverseHover$2,
|
|
2117
|
+
linkPrimaryHover: linkPrimaryHover$2,
|
|
2118
|
+
buttonDangerHover: buttonDangerHover$3,
|
|
2119
|
+
buttonPrimaryHover: buttonPrimaryHover$3,
|
|
2120
|
+
buttonSecondaryHover: buttonSecondaryHover$3,
|
|
2121
|
+
buttonTertiaryHover: buttonTertiaryHover$3,
|
|
2122
|
+
backgroundSelected: backgroundSelected$2,
|
|
2123
|
+
backgroundSelectedHover: backgroundSelectedHover$2,
|
|
2124
|
+
layerSelected: layerSelected$2,
|
|
2125
|
+
layerSelectedHover: layerSelectedHover$2,
|
|
2126
|
+
layerSelectedInverse: layerSelectedInverse$2,
|
|
2127
|
+
borderSubtleSelected: borderSubtleSelected$2,
|
|
2128
|
+
borderDisabled: borderDisabled$2,
|
|
2129
|
+
textDisabled: textDisabled$2,
|
|
2130
|
+
buttonDisabled: buttonDisabled$3,
|
|
2131
|
+
iconDisabled: iconDisabled$2,
|
|
2132
|
+
textOnColorDisabled: textOnColorDisabled$2,
|
|
2133
|
+
iconOnColorDisabled: iconOnColorDisabled$2,
|
|
2134
|
+
layerSelectedDisabled: layerSelectedDisabled$2,
|
|
2135
|
+
skeletonBackground: skeletonBackground$2,
|
|
2136
|
+
skeletonElement: skeletonElement$2,
|
|
2137
|
+
brand01: brand01$2,
|
|
2138
|
+
brand02: brand02$2,
|
|
2139
|
+
brand03: brand03$2,
|
|
2140
|
+
active01: active01$2,
|
|
2141
|
+
hoverField: hoverField$2,
|
|
2142
|
+
danger: danger$2,
|
|
2143
|
+
caption01: caption01,
|
|
2144
|
+
caption02: caption02,
|
|
2145
|
+
label01: label01,
|
|
2146
|
+
label02: label02,
|
|
2147
|
+
helperText01: helperText01,
|
|
2148
|
+
helperText02: helperText02,
|
|
2149
|
+
bodyShort01: bodyShort01,
|
|
2150
|
+
bodyLong01: bodyLong01,
|
|
2151
|
+
bodyShort02: bodyShort02,
|
|
2152
|
+
bodyLong02: bodyLong02,
|
|
2153
|
+
code01: code01,
|
|
2154
|
+
code02: code02,
|
|
2155
|
+
heading01: heading01,
|
|
2156
|
+
productiveHeading01: productiveHeading01,
|
|
2157
|
+
heading02: heading02,
|
|
2158
|
+
productiveHeading02: productiveHeading02,
|
|
2159
|
+
productiveHeading03: productiveHeading03,
|
|
2160
|
+
productiveHeading04: productiveHeading04,
|
|
2161
|
+
productiveHeading05: productiveHeading05,
|
|
2162
|
+
productiveHeading06: productiveHeading06,
|
|
2163
|
+
productiveHeading07: productiveHeading07,
|
|
2164
|
+
expressiveHeading01: expressiveHeading01,
|
|
2165
|
+
expressiveHeading02: expressiveHeading02,
|
|
2166
|
+
expressiveHeading03: expressiveHeading03,
|
|
2167
|
+
expressiveHeading04: expressiveHeading04,
|
|
2168
|
+
expressiveHeading05: expressiveHeading05,
|
|
2169
|
+
expressiveHeading06: expressiveHeading06,
|
|
2170
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
2171
|
+
quotation01: quotation01,
|
|
2172
|
+
quotation02: quotation02,
|
|
2173
|
+
display01: display01,
|
|
2174
|
+
display02: display02,
|
|
2175
|
+
display03: display03,
|
|
2176
|
+
display04: display04,
|
|
2177
|
+
legal01: legal01,
|
|
2178
|
+
legal02: legal02,
|
|
2179
|
+
bodyCompact01: bodyCompact01,
|
|
2180
|
+
bodyCompact02: bodyCompact02,
|
|
2181
|
+
body01: body01,
|
|
2182
|
+
body02: body02,
|
|
2183
|
+
headingCompact01: headingCompact01,
|
|
2184
|
+
headingCompact02: headingCompact02,
|
|
2185
|
+
heading03: heading03,
|
|
2186
|
+
heading04: heading04,
|
|
2187
|
+
heading05: heading05,
|
|
2188
|
+
heading06: heading06,
|
|
2189
|
+
heading07: heading07,
|
|
2190
|
+
fluidHeading03: fluidHeading03,
|
|
2191
|
+
fluidHeading04: fluidHeading04,
|
|
2192
|
+
fluidHeading05: fluidHeading05,
|
|
2193
|
+
fluidHeading06: fluidHeading06,
|
|
2194
|
+
fluidParagraph01: fluidParagraph01,
|
|
2195
|
+
fluidQuotation01: fluidQuotation01,
|
|
2196
|
+
fluidQuotation02: fluidQuotation02,
|
|
2197
|
+
fluidDisplay01: fluidDisplay01,
|
|
2198
|
+
fluidDisplay02: fluidDisplay02,
|
|
2199
|
+
fluidDisplay03: fluidDisplay03,
|
|
2200
|
+
fluidDisplay04: fluidDisplay04,
|
|
2201
|
+
spacing01: spacing01,
|
|
2202
|
+
spacing02: spacing02,
|
|
2203
|
+
spacing03: spacing03,
|
|
2204
|
+
spacing04: spacing04,
|
|
2205
|
+
spacing05: spacing05,
|
|
2206
|
+
spacing06: spacing06,
|
|
2207
|
+
spacing07: spacing07,
|
|
2208
|
+
spacing08: spacing08,
|
|
2209
|
+
spacing09: spacing09,
|
|
2210
|
+
spacing10: spacing10,
|
|
2211
|
+
spacing11: spacing11,
|
|
2212
|
+
spacing12: spacing12,
|
|
2213
|
+
spacing13: spacing13,
|
|
2214
|
+
fluidSpacing01: fluidSpacing01,
|
|
2215
|
+
fluidSpacing02: fluidSpacing02,
|
|
2216
|
+
fluidSpacing03: fluidSpacing03,
|
|
2217
|
+
fluidSpacing04: fluidSpacing04,
|
|
2218
|
+
container01: container01,
|
|
2219
|
+
container02: container02,
|
|
2220
|
+
container03: container03,
|
|
2221
|
+
container04: container04,
|
|
2222
|
+
container05: container05,
|
|
2223
|
+
sizeXSmall: sizeXSmall,
|
|
2224
|
+
sizeSmall: sizeSmall,
|
|
2225
|
+
sizeMedium: sizeMedium,
|
|
2226
|
+
sizeLarge: sizeLarge,
|
|
2227
|
+
sizeXLarge: sizeXLarge,
|
|
2228
|
+
size2XLarge: size2XLarge,
|
|
2229
|
+
iconSize01: iconSize01,
|
|
2230
|
+
iconSize02: iconSize02,
|
|
2231
|
+
layout01: layout01,
|
|
2232
|
+
layout02: layout02,
|
|
2233
|
+
layout03: layout03,
|
|
2234
|
+
layout04: layout04,
|
|
2235
|
+
layout05: layout05,
|
|
2236
|
+
layout06: layout06,
|
|
2237
|
+
layout07: layout07
|
|
2238
|
+
});
|
|
2239
|
+
|
|
2240
|
+
const interactive01$1 = blue60;
|
|
2241
|
+
const interactive02$1 = gray60;
|
|
2242
|
+
const interactive03$1 = white$2;
|
|
2243
|
+
const interactive04$1 = blue50;
|
|
2244
|
+
const uiBackground$1 = gray90;
|
|
2245
|
+
const ui01$1 = gray80;
|
|
2246
|
+
const ui02$1 = gray70;
|
|
2247
|
+
const ui03$1 = gray70;
|
|
2248
|
+
const ui04$1 = gray50;
|
|
2249
|
+
const ui05$1 = gray10;
|
|
2250
|
+
const text01$1 = gray10;
|
|
2251
|
+
const text02$1 = gray30;
|
|
2252
|
+
const text03$1 = gray60;
|
|
2253
|
+
const text04$1 = white$2;
|
|
2254
|
+
const text05$1 = gray50;
|
|
2255
|
+
const textError$1 = red30;
|
|
2256
|
+
const icon01$1 = gray10;
|
|
2257
|
+
const icon02$1 = gray30;
|
|
2258
|
+
const icon03$1 = white$2;
|
|
2259
|
+
const link01$1 = blue40;
|
|
2260
|
+
const link02$1 = blue30;
|
|
2261
|
+
const inverseLink$1 = blue60;
|
|
2262
|
+
const field01$1 = gray80;
|
|
2263
|
+
const field02$1 = gray70;
|
|
2264
|
+
const inverse01$1 = gray100;
|
|
2265
|
+
const inverse02$1 = gray10;
|
|
2266
|
+
const support01$1 = red40;
|
|
2267
|
+
const support02$1 = green40;
|
|
2268
|
+
const support03$1 = yellow30;
|
|
2269
|
+
const support04$1 = blue50;
|
|
2270
|
+
const inverseSupport01$1 = red60;
|
|
2271
|
+
const inverseSupport02$1 = green50;
|
|
2272
|
+
const inverseSupport03$1 = yellow30;
|
|
2273
|
+
const inverseSupport04$1 = blue60;
|
|
2274
|
+
const overlay01$1 = rgba(black, 0.65);
|
|
2275
|
+
const danger01$1 = red60;
|
|
2276
|
+
const danger02$1 = red40;
|
|
2277
|
+
const focus$2 = white$2;
|
|
2278
|
+
const inverseFocusUi$1 = blue60;
|
|
2279
|
+
const hoverPrimary$1 = "#0353e9";
|
|
2280
|
+
const activePrimary$1 = blue80;
|
|
2281
|
+
const hoverPrimaryText$1 = blue30;
|
|
2282
|
+
const hoverSecondary$1 = "#606060";
|
|
2283
|
+
const activeSecondary$1 = gray80;
|
|
2284
|
+
const hoverTertiary$1 = gray10;
|
|
2285
|
+
const activeTertiary$1 = gray30;
|
|
2286
|
+
const hoverUI$1 = "#4c4c4c";
|
|
2287
|
+
const hoverLightUI$1 = "#656565";
|
|
2288
|
+
const activeUI$1 = gray60;
|
|
2289
|
+
const activeLightUI$1 = gray50;
|
|
2290
|
+
const selectedUI$1 = gray70;
|
|
2291
|
+
const selectedLightUI$1 = gray60;
|
|
2292
|
+
const inverseHoverUI$1 = "#e5e5e5";
|
|
2293
|
+
const hoverSelectedUI$1 = "#656565";
|
|
2294
|
+
const hoverDanger$1 = adjustLightness(danger01$1, -8);
|
|
2295
|
+
const activeDanger$1 = red80;
|
|
2296
|
+
const hoverRow$1 = "#4c4c4c";
|
|
2297
|
+
const visitedLink$1 = purple40;
|
|
2298
|
+
const disabled01$1 = gray80;
|
|
2299
|
+
const disabled02$1 = gray60;
|
|
2300
|
+
const disabled03$1 = gray40;
|
|
2301
|
+
const highlight$1 = blue70;
|
|
2302
|
+
const decorative01$1 = gray60;
|
|
2303
|
+
const buttonSeparator$2 = "#161616";
|
|
2304
|
+
const skeleton01$1 = "#353535";
|
|
2305
|
+
const skeleton02$1 = gray70;
|
|
2306
|
+
const background$2 = uiBackground$1;
|
|
2307
|
+
const layer$2 = ui01$1;
|
|
2308
|
+
const layerAccent$1 = ui03$1;
|
|
2309
|
+
const layerAccentActive$1 = gray50;
|
|
2310
|
+
const layerAccentHover$1 = adjustLightness(layerAccent$1, 7);
|
|
2311
|
+
const field$2 = field01$1;
|
|
2312
|
+
const backgroundInverse$1 = inverse02$1;
|
|
2313
|
+
const backgroundBrand$1 = interactive01$1;
|
|
2314
|
+
const interactive$1 = interactive04$1;
|
|
2315
|
+
const borderSubtle$1 = ui03$1;
|
|
2316
|
+
const borderStrong$1 = ui04$1;
|
|
2317
|
+
const borderInverse$1 = ui05$1;
|
|
2318
|
+
const borderInteractive$1 = interactive04$1;
|
|
2319
|
+
const textPrimary$1 = text01$1;
|
|
2320
|
+
const textSecondary$1 = text02$1;
|
|
2321
|
+
const textPlaceholder$1 = text03$1;
|
|
2322
|
+
const textHelper$1 = text05$1;
|
|
2323
|
+
const textOnColor$1 = text04$1;
|
|
2324
|
+
const textInverse$1 = inverse01$1;
|
|
2325
|
+
const linkPrimary$1 = link01$1;
|
|
2326
|
+
const linkSecondary$1 = link02$1;
|
|
2327
|
+
const linkVisited$1 = visitedLink$1;
|
|
2328
|
+
const linkInverse$1 = inverseLink$1;
|
|
2329
|
+
const iconPrimary$1 = icon01$1;
|
|
2330
|
+
const iconSecondary$1 = icon02$1;
|
|
2331
|
+
const iconOnColor$1 = icon03$1;
|
|
2332
|
+
const iconInverse$1 = inverse01$1;
|
|
2333
|
+
const supportError$1 = support01$1;
|
|
2334
|
+
const supportSuccess$1 = support02$1;
|
|
2335
|
+
const supportWarning$1 = support03$1;
|
|
2336
|
+
const supportInfo$1 = support04$1;
|
|
2337
|
+
const supportErrorInverse$1 = inverseSupport01$1;
|
|
2338
|
+
const supportSuccessInverse$1 = inverseSupport02$1;
|
|
2339
|
+
const supportWarningInverse$1 = inverseSupport03$1;
|
|
2340
|
+
const supportInfoInverse$1 = inverseSupport04$1;
|
|
2341
|
+
const overlay$1 = overlay01$1;
|
|
2342
|
+
const toggleOff$1 = ui04$1;
|
|
2343
|
+
const shadow$1 = rgba(black, 0.8);
|
|
2344
|
+
const buttonPrimary$2 = interactive01$1;
|
|
2345
|
+
const buttonSecondary$2 = interactive02$1;
|
|
2346
|
+
const buttonTertiary$2 = interactive03$1;
|
|
2347
|
+
const buttonDangerPrimary$2 = danger01$1;
|
|
2348
|
+
const buttonDangerSecondary$2 = danger02$1;
|
|
2349
|
+
const backgroundActive$1 = activeUI$1;
|
|
2350
|
+
const layerActive$1 = activeUI$1;
|
|
2351
|
+
const buttonDangerActive$2 = activeDanger$1;
|
|
2352
|
+
const buttonPrimaryActive$2 = activePrimary$1;
|
|
2353
|
+
const buttonSecondaryActive$2 = activeSecondary$1;
|
|
2354
|
+
const buttonTertiaryActive$2 = activeTertiary$1;
|
|
2355
|
+
const focusInset$1 = inverse01$1;
|
|
2356
|
+
const focusInverse$1 = inverseFocusUi$1;
|
|
2357
|
+
const backgroundHover$1 = hoverUI$1;
|
|
2358
|
+
const layerHover$1 = hoverUI$1;
|
|
2359
|
+
const fieldHover$1 = hoverUI$1;
|
|
2360
|
+
const backgroundInverseHover$1 = inverseHoverUI$1;
|
|
2361
|
+
const linkPrimaryHover$1 = hoverPrimaryText$1;
|
|
2362
|
+
const buttonDangerHover$2 = hoverDanger$1;
|
|
2363
|
+
const buttonPrimaryHover$2 = hoverPrimary$1;
|
|
2364
|
+
const buttonSecondaryHover$2 = hoverSecondary$1;
|
|
2365
|
+
const buttonTertiaryHover$2 = hoverTertiary$1;
|
|
2366
|
+
const backgroundSelected$1 = selectedUI$1;
|
|
2367
|
+
const backgroundSelectedHover$1 = hoverSelectedUI$1;
|
|
2368
|
+
const layerSelected$1 = selectedUI$1;
|
|
2369
|
+
const layerSelectedHover$1 = hoverSelectedUI$1;
|
|
2370
|
+
const layerSelectedInverse$1 = ui05$1;
|
|
2371
|
+
const borderSubtleSelected$1 = activeUI$1;
|
|
2372
|
+
const borderDisabled$1 = disabled01$1;
|
|
2373
|
+
const textDisabled$1 = disabled02$1;
|
|
2374
|
+
const buttonDisabled$2 = disabled02$1;
|
|
2375
|
+
const iconDisabled$1 = disabled02$1;
|
|
2376
|
+
const textOnColorDisabled$1 = disabled03$1;
|
|
2377
|
+
const iconOnColorDisabled$1 = disabled03$1;
|
|
2378
|
+
const layerSelectedDisabled$1 = disabled03$1;
|
|
2379
|
+
const skeletonBackground$1 = skeleton01$1;
|
|
2380
|
+
const skeletonElement$1 = skeleton02$1;
|
|
2381
|
+
const brand01$1 = interactive01$1;
|
|
2382
|
+
const brand02$1 = interactive02$1;
|
|
2383
|
+
const brand03$1 = interactive03$1;
|
|
2384
|
+
const active01$1 = activeUI$1;
|
|
2385
|
+
const hoverField$1 = hoverUI$1;
|
|
2386
|
+
const danger$1 = danger01$1;
|
|
2387
|
+
|
|
2388
|
+
var g90 = /*#__PURE__*/Object.freeze({
|
|
2389
|
+
__proto__: null,
|
|
2390
|
+
interactive01: interactive01$1,
|
|
2391
|
+
interactive02: interactive02$1,
|
|
2392
|
+
interactive03: interactive03$1,
|
|
2393
|
+
interactive04: interactive04$1,
|
|
2394
|
+
uiBackground: uiBackground$1,
|
|
2395
|
+
ui01: ui01$1,
|
|
2396
|
+
ui02: ui02$1,
|
|
2397
|
+
ui03: ui03$1,
|
|
2398
|
+
ui04: ui04$1,
|
|
2399
|
+
ui05: ui05$1,
|
|
2400
|
+
text01: text01$1,
|
|
2401
|
+
text02: text02$1,
|
|
2402
|
+
text03: text03$1,
|
|
2403
|
+
text04: text04$1,
|
|
2404
|
+
text05: text05$1,
|
|
2405
|
+
textError: textError$1,
|
|
2406
|
+
icon01: icon01$1,
|
|
2407
|
+
icon02: icon02$1,
|
|
2408
|
+
icon03: icon03$1,
|
|
2409
|
+
link01: link01$1,
|
|
2410
|
+
link02: link02$1,
|
|
2411
|
+
inverseLink: inverseLink$1,
|
|
2412
|
+
field01: field01$1,
|
|
2413
|
+
field02: field02$1,
|
|
2414
|
+
inverse01: inverse01$1,
|
|
2415
|
+
inverse02: inverse02$1,
|
|
2416
|
+
support01: support01$1,
|
|
2417
|
+
support02: support02$1,
|
|
2418
|
+
support03: support03$1,
|
|
2419
|
+
support04: support04$1,
|
|
2420
|
+
inverseSupport01: inverseSupport01$1,
|
|
2421
|
+
inverseSupport02: inverseSupport02$1,
|
|
2422
|
+
inverseSupport03: inverseSupport03$1,
|
|
2423
|
+
inverseSupport04: inverseSupport04$1,
|
|
2424
|
+
overlay01: overlay01$1,
|
|
2425
|
+
danger01: danger01$1,
|
|
2426
|
+
danger02: danger02$1,
|
|
2427
|
+
focus: focus$2,
|
|
2428
|
+
inverseFocusUi: inverseFocusUi$1,
|
|
2429
|
+
hoverPrimary: hoverPrimary$1,
|
|
2430
|
+
activePrimary: activePrimary$1,
|
|
2431
|
+
hoverPrimaryText: hoverPrimaryText$1,
|
|
2432
|
+
hoverSecondary: hoverSecondary$1,
|
|
2433
|
+
activeSecondary: activeSecondary$1,
|
|
2434
|
+
hoverTertiary: hoverTertiary$1,
|
|
2435
|
+
activeTertiary: activeTertiary$1,
|
|
2436
|
+
hoverUI: hoverUI$1,
|
|
2437
|
+
hoverLightUI: hoverLightUI$1,
|
|
2438
|
+
activeUI: activeUI$1,
|
|
2439
|
+
activeLightUI: activeLightUI$1,
|
|
2440
|
+
selectedUI: selectedUI$1,
|
|
2441
|
+
selectedLightUI: selectedLightUI$1,
|
|
2442
|
+
inverseHoverUI: inverseHoverUI$1,
|
|
2443
|
+
hoverSelectedUI: hoverSelectedUI$1,
|
|
2444
|
+
hoverDanger: hoverDanger$1,
|
|
2445
|
+
activeDanger: activeDanger$1,
|
|
2446
|
+
hoverRow: hoverRow$1,
|
|
2447
|
+
visitedLink: visitedLink$1,
|
|
2448
|
+
disabled01: disabled01$1,
|
|
2449
|
+
disabled02: disabled02$1,
|
|
2450
|
+
disabled03: disabled03$1,
|
|
2451
|
+
highlight: highlight$1,
|
|
2452
|
+
decorative01: decorative01$1,
|
|
2453
|
+
buttonSeparator: buttonSeparator$2,
|
|
2454
|
+
skeleton01: skeleton01$1,
|
|
2455
|
+
skeleton02: skeleton02$1,
|
|
2456
|
+
background: background$2,
|
|
2457
|
+
layer: layer$2,
|
|
2458
|
+
layerAccent: layerAccent$1,
|
|
2459
|
+
layerAccentActive: layerAccentActive$1,
|
|
2460
|
+
layerAccentHover: layerAccentHover$1,
|
|
2461
|
+
field: field$2,
|
|
2462
|
+
backgroundInverse: backgroundInverse$1,
|
|
2463
|
+
backgroundBrand: backgroundBrand$1,
|
|
2464
|
+
interactive: interactive$1,
|
|
2465
|
+
borderSubtle: borderSubtle$1,
|
|
2466
|
+
borderStrong: borderStrong$1,
|
|
2467
|
+
borderInverse: borderInverse$1,
|
|
2468
|
+
borderInteractive: borderInteractive$1,
|
|
2469
|
+
textPrimary: textPrimary$1,
|
|
2470
|
+
textSecondary: textSecondary$1,
|
|
2471
|
+
textPlaceholder: textPlaceholder$1,
|
|
2472
|
+
textHelper: textHelper$1,
|
|
2473
|
+
textOnColor: textOnColor$1,
|
|
2474
|
+
textInverse: textInverse$1,
|
|
2475
|
+
linkPrimary: linkPrimary$1,
|
|
2476
|
+
linkSecondary: linkSecondary$1,
|
|
2477
|
+
linkVisited: linkVisited$1,
|
|
2478
|
+
linkInverse: linkInverse$1,
|
|
2479
|
+
iconPrimary: iconPrimary$1,
|
|
2480
|
+
iconSecondary: iconSecondary$1,
|
|
2481
|
+
iconOnColor: iconOnColor$1,
|
|
2482
|
+
iconInverse: iconInverse$1,
|
|
2483
|
+
supportError: supportError$1,
|
|
2484
|
+
supportSuccess: supportSuccess$1,
|
|
2485
|
+
supportWarning: supportWarning$1,
|
|
2486
|
+
supportInfo: supportInfo$1,
|
|
2487
|
+
supportErrorInverse: supportErrorInverse$1,
|
|
2488
|
+
supportSuccessInverse: supportSuccessInverse$1,
|
|
2489
|
+
supportWarningInverse: supportWarningInverse$1,
|
|
2490
|
+
supportInfoInverse: supportInfoInverse$1,
|
|
2491
|
+
overlay: overlay$1,
|
|
2492
|
+
toggleOff: toggleOff$1,
|
|
2493
|
+
shadow: shadow$1,
|
|
2494
|
+
buttonPrimary: buttonPrimary$2,
|
|
2495
|
+
buttonSecondary: buttonSecondary$2,
|
|
2496
|
+
buttonTertiary: buttonTertiary$2,
|
|
2497
|
+
buttonDangerPrimary: buttonDangerPrimary$2,
|
|
2498
|
+
buttonDangerSecondary: buttonDangerSecondary$2,
|
|
2499
|
+
backgroundActive: backgroundActive$1,
|
|
2500
|
+
layerActive: layerActive$1,
|
|
2501
|
+
buttonDangerActive: buttonDangerActive$2,
|
|
2502
|
+
buttonPrimaryActive: buttonPrimaryActive$2,
|
|
2503
|
+
buttonSecondaryActive: buttonSecondaryActive$2,
|
|
2504
|
+
buttonTertiaryActive: buttonTertiaryActive$2,
|
|
2505
|
+
focusInset: focusInset$1,
|
|
2506
|
+
focusInverse: focusInverse$1,
|
|
2507
|
+
backgroundHover: backgroundHover$1,
|
|
2508
|
+
layerHover: layerHover$1,
|
|
2509
|
+
fieldHover: fieldHover$1,
|
|
2510
|
+
backgroundInverseHover: backgroundInverseHover$1,
|
|
2511
|
+
linkPrimaryHover: linkPrimaryHover$1,
|
|
2512
|
+
buttonDangerHover: buttonDangerHover$2,
|
|
2513
|
+
buttonPrimaryHover: buttonPrimaryHover$2,
|
|
2514
|
+
buttonSecondaryHover: buttonSecondaryHover$2,
|
|
2515
|
+
buttonTertiaryHover: buttonTertiaryHover$2,
|
|
2516
|
+
backgroundSelected: backgroundSelected$1,
|
|
2517
|
+
backgroundSelectedHover: backgroundSelectedHover$1,
|
|
2518
|
+
layerSelected: layerSelected$1,
|
|
2519
|
+
layerSelectedHover: layerSelectedHover$1,
|
|
2520
|
+
layerSelectedInverse: layerSelectedInverse$1,
|
|
2521
|
+
borderSubtleSelected: borderSubtleSelected$1,
|
|
2522
|
+
borderDisabled: borderDisabled$1,
|
|
2523
|
+
textDisabled: textDisabled$1,
|
|
2524
|
+
buttonDisabled: buttonDisabled$2,
|
|
2525
|
+
iconDisabled: iconDisabled$1,
|
|
2526
|
+
textOnColorDisabled: textOnColorDisabled$1,
|
|
2527
|
+
iconOnColorDisabled: iconOnColorDisabled$1,
|
|
2528
|
+
layerSelectedDisabled: layerSelectedDisabled$1,
|
|
2529
|
+
skeletonBackground: skeletonBackground$1,
|
|
2530
|
+
skeletonElement: skeletonElement$1,
|
|
2531
|
+
brand01: brand01$1,
|
|
2532
|
+
brand02: brand02$1,
|
|
2533
|
+
brand03: brand03$1,
|
|
2534
|
+
active01: active01$1,
|
|
2535
|
+
hoverField: hoverField$1,
|
|
2536
|
+
danger: danger$1,
|
|
2537
|
+
caption01: caption01,
|
|
2538
|
+
caption02: caption02,
|
|
2539
|
+
label01: label01,
|
|
2540
|
+
label02: label02,
|
|
2541
|
+
helperText01: helperText01,
|
|
2542
|
+
helperText02: helperText02,
|
|
2543
|
+
bodyShort01: bodyShort01,
|
|
2544
|
+
bodyLong01: bodyLong01,
|
|
2545
|
+
bodyShort02: bodyShort02,
|
|
2546
|
+
bodyLong02: bodyLong02,
|
|
2547
|
+
code01: code01,
|
|
2548
|
+
code02: code02,
|
|
2549
|
+
heading01: heading01,
|
|
2550
|
+
productiveHeading01: productiveHeading01,
|
|
2551
|
+
heading02: heading02,
|
|
2552
|
+
productiveHeading02: productiveHeading02,
|
|
2553
|
+
productiveHeading03: productiveHeading03,
|
|
2554
|
+
productiveHeading04: productiveHeading04,
|
|
2555
|
+
productiveHeading05: productiveHeading05,
|
|
2556
|
+
productiveHeading06: productiveHeading06,
|
|
2557
|
+
productiveHeading07: productiveHeading07,
|
|
2558
|
+
expressiveHeading01: expressiveHeading01,
|
|
2559
|
+
expressiveHeading02: expressiveHeading02,
|
|
2560
|
+
expressiveHeading03: expressiveHeading03,
|
|
2561
|
+
expressiveHeading04: expressiveHeading04,
|
|
2562
|
+
expressiveHeading05: expressiveHeading05,
|
|
2563
|
+
expressiveHeading06: expressiveHeading06,
|
|
2564
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
2565
|
+
quotation01: quotation01,
|
|
2566
|
+
quotation02: quotation02,
|
|
2567
|
+
display01: display01,
|
|
2568
|
+
display02: display02,
|
|
2569
|
+
display03: display03,
|
|
2570
|
+
display04: display04,
|
|
2571
|
+
legal01: legal01,
|
|
2572
|
+
legal02: legal02,
|
|
2573
|
+
bodyCompact01: bodyCompact01,
|
|
2574
|
+
bodyCompact02: bodyCompact02,
|
|
2575
|
+
body01: body01,
|
|
2576
|
+
body02: body02,
|
|
2577
|
+
headingCompact01: headingCompact01,
|
|
2578
|
+
headingCompact02: headingCompact02,
|
|
2579
|
+
heading03: heading03,
|
|
2580
|
+
heading04: heading04,
|
|
2581
|
+
heading05: heading05,
|
|
2582
|
+
heading06: heading06,
|
|
2583
|
+
heading07: heading07,
|
|
2584
|
+
fluidHeading03: fluidHeading03,
|
|
2585
|
+
fluidHeading04: fluidHeading04,
|
|
2586
|
+
fluidHeading05: fluidHeading05,
|
|
2587
|
+
fluidHeading06: fluidHeading06,
|
|
2588
|
+
fluidParagraph01: fluidParagraph01,
|
|
2589
|
+
fluidQuotation01: fluidQuotation01,
|
|
2590
|
+
fluidQuotation02: fluidQuotation02,
|
|
2591
|
+
fluidDisplay01: fluidDisplay01,
|
|
2592
|
+
fluidDisplay02: fluidDisplay02,
|
|
2593
|
+
fluidDisplay03: fluidDisplay03,
|
|
2594
|
+
fluidDisplay04: fluidDisplay04,
|
|
2595
|
+
spacing01: spacing01,
|
|
2596
|
+
spacing02: spacing02,
|
|
2597
|
+
spacing03: spacing03,
|
|
2598
|
+
spacing04: spacing04,
|
|
2599
|
+
spacing05: spacing05,
|
|
2600
|
+
spacing06: spacing06,
|
|
2601
|
+
spacing07: spacing07,
|
|
2602
|
+
spacing08: spacing08,
|
|
2603
|
+
spacing09: spacing09,
|
|
2604
|
+
spacing10: spacing10,
|
|
2605
|
+
spacing11: spacing11,
|
|
2606
|
+
spacing12: spacing12,
|
|
2607
|
+
spacing13: spacing13,
|
|
2608
|
+
fluidSpacing01: fluidSpacing01,
|
|
2609
|
+
fluidSpacing02: fluidSpacing02,
|
|
2610
|
+
fluidSpacing03: fluidSpacing03,
|
|
2611
|
+
fluidSpacing04: fluidSpacing04,
|
|
2612
|
+
container01: container01,
|
|
2613
|
+
container02: container02,
|
|
2614
|
+
container03: container03,
|
|
2615
|
+
container04: container04,
|
|
2616
|
+
container05: container05,
|
|
2617
|
+
sizeXSmall: sizeXSmall,
|
|
2618
|
+
sizeSmall: sizeSmall,
|
|
2619
|
+
sizeMedium: sizeMedium,
|
|
2620
|
+
sizeLarge: sizeLarge,
|
|
2621
|
+
sizeXLarge: sizeXLarge,
|
|
2622
|
+
size2XLarge: size2XLarge,
|
|
2623
|
+
iconSize01: iconSize01,
|
|
2624
|
+
iconSize02: iconSize02,
|
|
2625
|
+
layout01: layout01,
|
|
2626
|
+
layout02: layout02,
|
|
2627
|
+
layout03: layout03,
|
|
2628
|
+
layout04: layout04,
|
|
2629
|
+
layout05: layout05,
|
|
2630
|
+
layout06: layout06,
|
|
2631
|
+
layout07: layout07
|
|
2632
|
+
});
|
|
2633
|
+
|
|
2634
|
+
const interactive01 = blue60;
|
|
2635
|
+
const interactive02 = gray60;
|
|
2636
|
+
const interactive03 = white$2;
|
|
2637
|
+
const interactive04 = blue50;
|
|
2638
|
+
const uiBackground = gray100;
|
|
2639
|
+
const ui01 = gray90;
|
|
2640
|
+
const ui02 = gray80;
|
|
2641
|
+
const ui03 = gray80;
|
|
2642
|
+
const ui04 = gray60;
|
|
2643
|
+
const ui05 = gray10;
|
|
2644
|
+
const text01 = gray10;
|
|
2645
|
+
const text02 = gray30;
|
|
2646
|
+
const text03 = gray60;
|
|
2647
|
+
const text04 = white$2;
|
|
2648
|
+
const text05 = gray50;
|
|
2649
|
+
const textError = red40;
|
|
2650
|
+
const icon01 = gray10;
|
|
2651
|
+
const icon02 = gray30;
|
|
2652
|
+
const icon03 = white$2;
|
|
2653
|
+
const link01 = blue40;
|
|
2654
|
+
const link02 = blue30;
|
|
2655
|
+
const inverseLink = blue60;
|
|
2656
|
+
const field01 = gray90;
|
|
2657
|
+
const field02 = gray80;
|
|
2658
|
+
const inverse01 = gray100;
|
|
2659
|
+
const inverse02 = gray10;
|
|
2660
|
+
const support01 = red50;
|
|
2661
|
+
const support02 = green40;
|
|
2662
|
+
const support03 = yellow30;
|
|
2663
|
+
const support04 = blue50;
|
|
2664
|
+
const inverseSupport01 = red60;
|
|
2665
|
+
const inverseSupport02 = green50;
|
|
2666
|
+
const inverseSupport03 = yellow30;
|
|
2667
|
+
const inverseSupport04 = blue60;
|
|
2668
|
+
const overlay01 = rgba(black, 0.65);
|
|
2669
|
+
const danger01 = red60;
|
|
2670
|
+
const danger02 = red50;
|
|
2671
|
+
const focus$1 = white$2;
|
|
2672
|
+
const inverseFocusUi = blue60;
|
|
2673
|
+
const hoverPrimary = "#0353e9";
|
|
2674
|
+
const activePrimary = blue80;
|
|
2675
|
+
const hoverPrimaryText = blue30;
|
|
2676
|
+
const hoverSecondary = "#606060";
|
|
2677
|
+
const activeSecondary = gray80;
|
|
2678
|
+
const hoverTertiary = gray10;
|
|
2679
|
+
const activeTertiary = gray30;
|
|
2680
|
+
const hoverUI = "#353535";
|
|
2681
|
+
const hoverLightUI = "#4c4c4c";
|
|
2682
|
+
const activeUI = gray70;
|
|
2683
|
+
const activeLightUI = gray60;
|
|
2684
|
+
const selectedUI = gray80;
|
|
2685
|
+
const selectedLightUI = gray70;
|
|
2686
|
+
const inverseHoverUI = "#e5e5e5";
|
|
2687
|
+
const hoverSelectedUI = "#4c4c4c";
|
|
2688
|
+
const hoverDanger = adjustLightness(danger01, -8);
|
|
2689
|
+
const activeDanger = red80;
|
|
2690
|
+
const hoverRow = "#353535";
|
|
2691
|
+
const visitedLink = purple40;
|
|
2692
|
+
const disabled01 = gray90;
|
|
2693
|
+
const disabled02 = gray70;
|
|
2694
|
+
const disabled03 = gray50;
|
|
2695
|
+
const highlight = blue80;
|
|
2696
|
+
const decorative01 = gray70;
|
|
2697
|
+
const buttonSeparator$1 = "#161616";
|
|
2698
|
+
const skeleton01 = "#353535";
|
|
2699
|
+
const skeleton02 = gray70;
|
|
2700
|
+
const background$1 = uiBackground;
|
|
2701
|
+
const layer$1 = ui01;
|
|
2702
|
+
const layerAccent = ui03;
|
|
2703
|
+
const layerAccentActive = gray60;
|
|
2704
|
+
const layerAccentHover = adjustLightness(layerAccent, 6);
|
|
2705
|
+
const field$1 = field01;
|
|
2706
|
+
const backgroundInverse = inverse02;
|
|
2707
|
+
const backgroundBrand = interactive01;
|
|
2708
|
+
const interactive = interactive04;
|
|
2709
|
+
const borderSubtle = ui03;
|
|
2710
|
+
const borderStrong = ui04;
|
|
2711
|
+
const borderInverse = ui05;
|
|
2712
|
+
const borderInteractive = interactive04;
|
|
2713
|
+
const textPrimary = text01;
|
|
2714
|
+
const textSecondary = text02;
|
|
2715
|
+
const textPlaceholder = text03;
|
|
2716
|
+
const textHelper = text05;
|
|
2717
|
+
const textOnColor = text04;
|
|
2718
|
+
const textInverse = inverse01;
|
|
2719
|
+
const linkPrimary = link01;
|
|
2720
|
+
const linkSecondary = link02;
|
|
2721
|
+
const linkVisited = visitedLink;
|
|
2722
|
+
const linkInverse = inverseLink;
|
|
2723
|
+
const iconPrimary = icon01;
|
|
2724
|
+
const iconSecondary = icon02;
|
|
2725
|
+
const iconOnColor = icon03;
|
|
2726
|
+
const iconInverse = inverse01;
|
|
2727
|
+
const supportError = support01;
|
|
2728
|
+
const supportSuccess = support02;
|
|
2729
|
+
const supportWarning = support03;
|
|
2730
|
+
const supportInfo = support04;
|
|
2731
|
+
const supportErrorInverse = inverseSupport01;
|
|
2732
|
+
const supportSuccessInverse = inverseSupport02;
|
|
2733
|
+
const supportWarningInverse = inverseSupport03;
|
|
2734
|
+
const supportInfoInverse = inverseSupport04;
|
|
2735
|
+
const overlay = overlay01;
|
|
2736
|
+
const toggleOff = ui04;
|
|
2737
|
+
const shadow = rgba(black, 0.8);
|
|
2738
|
+
const buttonPrimary$1 = interactive01;
|
|
2739
|
+
const buttonSecondary$1 = interactive02;
|
|
2740
|
+
const buttonTertiary$1 = interactive03;
|
|
2741
|
+
const buttonDangerPrimary$1 = danger01;
|
|
2742
|
+
const buttonDangerSecondary$1 = danger02;
|
|
2743
|
+
const backgroundActive = activeUI;
|
|
2744
|
+
const layerActive = activeUI;
|
|
2745
|
+
const buttonDangerActive$1 = activeDanger;
|
|
2746
|
+
const buttonPrimaryActive$1 = activePrimary;
|
|
2747
|
+
const buttonSecondaryActive$1 = activeSecondary;
|
|
2748
|
+
const buttonTertiaryActive$1 = activeTertiary;
|
|
2749
|
+
const focusInset = inverse01;
|
|
2750
|
+
const focusInverse = inverseFocusUi;
|
|
2751
|
+
const backgroundHover = hoverUI;
|
|
2752
|
+
const layerHover = hoverUI;
|
|
2753
|
+
const fieldHover = hoverUI;
|
|
2754
|
+
const backgroundInverseHover = inverseHoverUI;
|
|
2755
|
+
const linkPrimaryHover = hoverPrimaryText;
|
|
2756
|
+
const buttonDangerHover$1 = hoverDanger;
|
|
2757
|
+
const buttonPrimaryHover$1 = hoverPrimary;
|
|
2758
|
+
const buttonSecondaryHover$1 = hoverSecondary;
|
|
2759
|
+
const buttonTertiaryHover$1 = hoverTertiary;
|
|
2760
|
+
const backgroundSelected = selectedUI;
|
|
2761
|
+
const backgroundSelectedHover = hoverSelectedUI;
|
|
2762
|
+
const layerSelected = selectedUI;
|
|
2763
|
+
const layerSelectedHover = hoverSelectedUI;
|
|
2764
|
+
const layerSelectedInverse = ui05;
|
|
2765
|
+
const borderSubtleSelected = activeUI;
|
|
2766
|
+
const borderDisabled = disabled01;
|
|
2767
|
+
const textDisabled = disabled02;
|
|
2768
|
+
const buttonDisabled$1 = disabled02;
|
|
2769
|
+
const iconDisabled = disabled02;
|
|
2770
|
+
const textOnColorDisabled = disabled03;
|
|
2771
|
+
const iconOnColorDisabled = disabled03;
|
|
2772
|
+
const layerSelectedDisabled = disabled03;
|
|
2773
|
+
const skeletonBackground = skeleton01;
|
|
2774
|
+
const skeletonElement = skeleton02;
|
|
2775
|
+
const brand01 = interactive01;
|
|
2776
|
+
const brand02 = interactive02;
|
|
2777
|
+
const brand03 = interactive03;
|
|
2778
|
+
const active01 = activeUI;
|
|
2779
|
+
const hoverField = hoverUI;
|
|
2780
|
+
const danger = danger01;
|
|
2781
|
+
|
|
2782
|
+
var g100 = /*#__PURE__*/Object.freeze({
|
|
2783
|
+
__proto__: null,
|
|
2784
|
+
interactive01: interactive01,
|
|
2785
|
+
interactive02: interactive02,
|
|
2786
|
+
interactive03: interactive03,
|
|
2787
|
+
interactive04: interactive04,
|
|
2788
|
+
uiBackground: uiBackground,
|
|
2789
|
+
ui01: ui01,
|
|
2790
|
+
ui02: ui02,
|
|
2791
|
+
ui03: ui03,
|
|
2792
|
+
ui04: ui04,
|
|
2793
|
+
ui05: ui05,
|
|
2794
|
+
text01: text01,
|
|
2795
|
+
text02: text02,
|
|
2796
|
+
text03: text03,
|
|
2797
|
+
text04: text04,
|
|
2798
|
+
text05: text05,
|
|
2799
|
+
textError: textError,
|
|
2800
|
+
icon01: icon01,
|
|
2801
|
+
icon02: icon02,
|
|
2802
|
+
icon03: icon03,
|
|
2803
|
+
link01: link01,
|
|
2804
|
+
link02: link02,
|
|
2805
|
+
inverseLink: inverseLink,
|
|
2806
|
+
field01: field01,
|
|
2807
|
+
field02: field02,
|
|
2808
|
+
inverse01: inverse01,
|
|
2809
|
+
inverse02: inverse02,
|
|
2810
|
+
support01: support01,
|
|
2811
|
+
support02: support02,
|
|
2812
|
+
support03: support03,
|
|
2813
|
+
support04: support04,
|
|
2814
|
+
inverseSupport01: inverseSupport01,
|
|
2815
|
+
inverseSupport02: inverseSupport02,
|
|
2816
|
+
inverseSupport03: inverseSupport03,
|
|
2817
|
+
inverseSupport04: inverseSupport04,
|
|
2818
|
+
overlay01: overlay01,
|
|
2819
|
+
danger01: danger01,
|
|
2820
|
+
danger02: danger02,
|
|
2821
|
+
focus: focus$1,
|
|
2822
|
+
inverseFocusUi: inverseFocusUi,
|
|
2823
|
+
hoverPrimary: hoverPrimary,
|
|
2824
|
+
activePrimary: activePrimary,
|
|
2825
|
+
hoverPrimaryText: hoverPrimaryText,
|
|
2826
|
+
hoverSecondary: hoverSecondary,
|
|
2827
|
+
activeSecondary: activeSecondary,
|
|
2828
|
+
hoverTertiary: hoverTertiary,
|
|
2829
|
+
activeTertiary: activeTertiary,
|
|
2830
|
+
hoverUI: hoverUI,
|
|
2831
|
+
hoverLightUI: hoverLightUI,
|
|
2832
|
+
activeUI: activeUI,
|
|
2833
|
+
activeLightUI: activeLightUI,
|
|
2834
|
+
selectedUI: selectedUI,
|
|
2835
|
+
selectedLightUI: selectedLightUI,
|
|
2836
|
+
inverseHoverUI: inverseHoverUI,
|
|
2837
|
+
hoverSelectedUI: hoverSelectedUI,
|
|
2838
|
+
hoverDanger: hoverDanger,
|
|
2839
|
+
activeDanger: activeDanger,
|
|
2840
|
+
hoverRow: hoverRow,
|
|
2841
|
+
visitedLink: visitedLink,
|
|
2842
|
+
disabled01: disabled01,
|
|
2843
|
+
disabled02: disabled02,
|
|
2844
|
+
disabled03: disabled03,
|
|
2845
|
+
highlight: highlight,
|
|
2846
|
+
decorative01: decorative01,
|
|
2847
|
+
buttonSeparator: buttonSeparator$1,
|
|
2848
|
+
skeleton01: skeleton01,
|
|
2849
|
+
skeleton02: skeleton02,
|
|
2850
|
+
background: background$1,
|
|
2851
|
+
layer: layer$1,
|
|
2852
|
+
layerAccent: layerAccent,
|
|
2853
|
+
layerAccentActive: layerAccentActive,
|
|
2854
|
+
layerAccentHover: layerAccentHover,
|
|
2855
|
+
field: field$1,
|
|
2856
|
+
backgroundInverse: backgroundInverse,
|
|
2857
|
+
backgroundBrand: backgroundBrand,
|
|
2858
|
+
interactive: interactive,
|
|
2859
|
+
borderSubtle: borderSubtle,
|
|
2860
|
+
borderStrong: borderStrong,
|
|
2861
|
+
borderInverse: borderInverse,
|
|
2862
|
+
borderInteractive: borderInteractive,
|
|
2863
|
+
textPrimary: textPrimary,
|
|
2864
|
+
textSecondary: textSecondary,
|
|
2865
|
+
textPlaceholder: textPlaceholder,
|
|
2866
|
+
textHelper: textHelper,
|
|
2867
|
+
textOnColor: textOnColor,
|
|
2868
|
+
textInverse: textInverse,
|
|
2869
|
+
linkPrimary: linkPrimary,
|
|
2870
|
+
linkSecondary: linkSecondary,
|
|
2871
|
+
linkVisited: linkVisited,
|
|
2872
|
+
linkInverse: linkInverse,
|
|
2873
|
+
iconPrimary: iconPrimary,
|
|
2874
|
+
iconSecondary: iconSecondary,
|
|
2875
|
+
iconOnColor: iconOnColor,
|
|
2876
|
+
iconInverse: iconInverse,
|
|
2877
|
+
supportError: supportError,
|
|
2878
|
+
supportSuccess: supportSuccess,
|
|
2879
|
+
supportWarning: supportWarning,
|
|
2880
|
+
supportInfo: supportInfo,
|
|
2881
|
+
supportErrorInverse: supportErrorInverse,
|
|
2882
|
+
supportSuccessInverse: supportSuccessInverse,
|
|
2883
|
+
supportWarningInverse: supportWarningInverse,
|
|
2884
|
+
supportInfoInverse: supportInfoInverse,
|
|
2885
|
+
overlay: overlay,
|
|
2886
|
+
toggleOff: toggleOff,
|
|
2887
|
+
shadow: shadow,
|
|
2888
|
+
buttonPrimary: buttonPrimary$1,
|
|
2889
|
+
buttonSecondary: buttonSecondary$1,
|
|
2890
|
+
buttonTertiary: buttonTertiary$1,
|
|
2891
|
+
buttonDangerPrimary: buttonDangerPrimary$1,
|
|
2892
|
+
buttonDangerSecondary: buttonDangerSecondary$1,
|
|
2893
|
+
backgroundActive: backgroundActive,
|
|
2894
|
+
layerActive: layerActive,
|
|
2895
|
+
buttonDangerActive: buttonDangerActive$1,
|
|
2896
|
+
buttonPrimaryActive: buttonPrimaryActive$1,
|
|
2897
|
+
buttonSecondaryActive: buttonSecondaryActive$1,
|
|
2898
|
+
buttonTertiaryActive: buttonTertiaryActive$1,
|
|
2899
|
+
focusInset: focusInset,
|
|
2900
|
+
focusInverse: focusInverse,
|
|
2901
|
+
backgroundHover: backgroundHover,
|
|
2902
|
+
layerHover: layerHover,
|
|
2903
|
+
fieldHover: fieldHover,
|
|
2904
|
+
backgroundInverseHover: backgroundInverseHover,
|
|
2905
|
+
linkPrimaryHover: linkPrimaryHover,
|
|
2906
|
+
buttonDangerHover: buttonDangerHover$1,
|
|
2907
|
+
buttonPrimaryHover: buttonPrimaryHover$1,
|
|
2908
|
+
buttonSecondaryHover: buttonSecondaryHover$1,
|
|
2909
|
+
buttonTertiaryHover: buttonTertiaryHover$1,
|
|
2910
|
+
backgroundSelected: backgroundSelected,
|
|
2911
|
+
backgroundSelectedHover: backgroundSelectedHover,
|
|
2912
|
+
layerSelected: layerSelected,
|
|
2913
|
+
layerSelectedHover: layerSelectedHover,
|
|
2914
|
+
layerSelectedInverse: layerSelectedInverse,
|
|
2915
|
+
borderSubtleSelected: borderSubtleSelected,
|
|
2916
|
+
borderDisabled: borderDisabled,
|
|
2917
|
+
textDisabled: textDisabled,
|
|
2918
|
+
buttonDisabled: buttonDisabled$1,
|
|
2919
|
+
iconDisabled: iconDisabled,
|
|
2920
|
+
textOnColorDisabled: textOnColorDisabled,
|
|
2921
|
+
iconOnColorDisabled: iconOnColorDisabled,
|
|
2922
|
+
layerSelectedDisabled: layerSelectedDisabled,
|
|
2923
|
+
skeletonBackground: skeletonBackground,
|
|
2924
|
+
skeletonElement: skeletonElement,
|
|
2925
|
+
brand01: brand01,
|
|
2926
|
+
brand02: brand02,
|
|
2927
|
+
brand03: brand03,
|
|
2928
|
+
active01: active01,
|
|
2929
|
+
hoverField: hoverField,
|
|
2930
|
+
danger: danger,
|
|
2931
|
+
caption01: caption01,
|
|
2932
|
+
caption02: caption02,
|
|
2933
|
+
label01: label01,
|
|
2934
|
+
label02: label02,
|
|
2935
|
+
helperText01: helperText01,
|
|
2936
|
+
helperText02: helperText02,
|
|
2937
|
+
bodyShort01: bodyShort01,
|
|
2938
|
+
bodyLong01: bodyLong01,
|
|
2939
|
+
bodyShort02: bodyShort02,
|
|
2940
|
+
bodyLong02: bodyLong02,
|
|
2941
|
+
code01: code01,
|
|
2942
|
+
code02: code02,
|
|
2943
|
+
heading01: heading01,
|
|
2944
|
+
productiveHeading01: productiveHeading01,
|
|
2945
|
+
heading02: heading02,
|
|
2946
|
+
productiveHeading02: productiveHeading02,
|
|
2947
|
+
productiveHeading03: productiveHeading03,
|
|
2948
|
+
productiveHeading04: productiveHeading04,
|
|
2949
|
+
productiveHeading05: productiveHeading05,
|
|
2950
|
+
productiveHeading06: productiveHeading06,
|
|
2951
|
+
productiveHeading07: productiveHeading07,
|
|
2952
|
+
expressiveHeading01: expressiveHeading01,
|
|
2953
|
+
expressiveHeading02: expressiveHeading02,
|
|
2954
|
+
expressiveHeading03: expressiveHeading03,
|
|
2955
|
+
expressiveHeading04: expressiveHeading04,
|
|
2956
|
+
expressiveHeading05: expressiveHeading05,
|
|
2957
|
+
expressiveHeading06: expressiveHeading06,
|
|
2958
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
2959
|
+
quotation01: quotation01,
|
|
2960
|
+
quotation02: quotation02,
|
|
2961
|
+
display01: display01,
|
|
2962
|
+
display02: display02,
|
|
2963
|
+
display03: display03,
|
|
2964
|
+
display04: display04,
|
|
2965
|
+
legal01: legal01,
|
|
2966
|
+
legal02: legal02,
|
|
2967
|
+
bodyCompact01: bodyCompact01,
|
|
2968
|
+
bodyCompact02: bodyCompact02,
|
|
2969
|
+
body01: body01,
|
|
2970
|
+
body02: body02,
|
|
2971
|
+
headingCompact01: headingCompact01,
|
|
2972
|
+
headingCompact02: headingCompact02,
|
|
2973
|
+
heading03: heading03,
|
|
2974
|
+
heading04: heading04,
|
|
2975
|
+
heading05: heading05,
|
|
2976
|
+
heading06: heading06,
|
|
2977
|
+
heading07: heading07,
|
|
2978
|
+
fluidHeading03: fluidHeading03,
|
|
2979
|
+
fluidHeading04: fluidHeading04,
|
|
2980
|
+
fluidHeading05: fluidHeading05,
|
|
2981
|
+
fluidHeading06: fluidHeading06,
|
|
2982
|
+
fluidParagraph01: fluidParagraph01,
|
|
2983
|
+
fluidQuotation01: fluidQuotation01,
|
|
2984
|
+
fluidQuotation02: fluidQuotation02,
|
|
2985
|
+
fluidDisplay01: fluidDisplay01,
|
|
2986
|
+
fluidDisplay02: fluidDisplay02,
|
|
2987
|
+
fluidDisplay03: fluidDisplay03,
|
|
2988
|
+
fluidDisplay04: fluidDisplay04,
|
|
2989
|
+
spacing01: spacing01,
|
|
2990
|
+
spacing02: spacing02,
|
|
2991
|
+
spacing03: spacing03,
|
|
2992
|
+
spacing04: spacing04,
|
|
2993
|
+
spacing05: spacing05,
|
|
2994
|
+
spacing06: spacing06,
|
|
2995
|
+
spacing07: spacing07,
|
|
2996
|
+
spacing08: spacing08,
|
|
2997
|
+
spacing09: spacing09,
|
|
2998
|
+
spacing10: spacing10,
|
|
2999
|
+
spacing11: spacing11,
|
|
3000
|
+
spacing12: spacing12,
|
|
3001
|
+
spacing13: spacing13,
|
|
3002
|
+
fluidSpacing01: fluidSpacing01,
|
|
3003
|
+
fluidSpacing02: fluidSpacing02,
|
|
3004
|
+
fluidSpacing03: fluidSpacing03,
|
|
3005
|
+
fluidSpacing04: fluidSpacing04,
|
|
3006
|
+
container01: container01,
|
|
3007
|
+
container02: container02,
|
|
3008
|
+
container03: container03,
|
|
3009
|
+
container04: container04,
|
|
3010
|
+
container05: container05,
|
|
3011
|
+
sizeXSmall: sizeXSmall,
|
|
3012
|
+
sizeSmall: sizeSmall,
|
|
3013
|
+
sizeMedium: sizeMedium,
|
|
3014
|
+
sizeLarge: sizeLarge,
|
|
3015
|
+
sizeXLarge: sizeXLarge,
|
|
3016
|
+
size2XLarge: size2XLarge,
|
|
3017
|
+
iconSize01: iconSize01,
|
|
3018
|
+
iconSize02: iconSize02,
|
|
3019
|
+
layout01: layout01,
|
|
3020
|
+
layout02: layout02,
|
|
3021
|
+
layout03: layout03,
|
|
3022
|
+
layout04: layout04,
|
|
3023
|
+
layout05: layout05,
|
|
3024
|
+
layout06: layout06,
|
|
3025
|
+
layout07: layout07
|
|
3026
|
+
});
|
|
3027
|
+
|
|
3028
|
+
const colors = [
|
|
3029
|
+
// Core
|
|
3030
|
+
"interactive01",
|
|
3031
|
+
"interactive02",
|
|
3032
|
+
"interactive03",
|
|
3033
|
+
"interactive04",
|
|
3034
|
+
"uiBackground",
|
|
3035
|
+
"ui01",
|
|
3036
|
+
"ui02",
|
|
3037
|
+
"ui03",
|
|
3038
|
+
"ui04",
|
|
3039
|
+
"ui05",
|
|
3040
|
+
"text01",
|
|
3041
|
+
"text02",
|
|
3042
|
+
"text03",
|
|
3043
|
+
"text04",
|
|
3044
|
+
"text05",
|
|
3045
|
+
"textError",
|
|
3046
|
+
"icon01",
|
|
3047
|
+
"icon02",
|
|
3048
|
+
"icon03",
|
|
3049
|
+
"link01",
|
|
3050
|
+
"link02",
|
|
3051
|
+
"inverseLink",
|
|
3052
|
+
"field01",
|
|
3053
|
+
"field02",
|
|
3054
|
+
"inverse01",
|
|
3055
|
+
"inverse02",
|
|
3056
|
+
"support01",
|
|
3057
|
+
"support02",
|
|
3058
|
+
"support03",
|
|
3059
|
+
"support04",
|
|
3060
|
+
"inverseSupport01",
|
|
3061
|
+
"inverseSupport02",
|
|
3062
|
+
"inverseSupport03",
|
|
3063
|
+
"inverseSupport04",
|
|
3064
|
+
"overlay01",
|
|
3065
|
+
"danger01",
|
|
3066
|
+
"danger02",
|
|
3067
|
+
// Interactive states
|
|
3068
|
+
"focus",
|
|
3069
|
+
"inverseFocusUi",
|
|
3070
|
+
"hoverPrimary",
|
|
3071
|
+
"activePrimary",
|
|
3072
|
+
"hoverPrimaryText",
|
|
3073
|
+
"hoverSecondary",
|
|
3074
|
+
"activeSecondary",
|
|
3075
|
+
"hoverTertiary",
|
|
3076
|
+
"activeTertiary",
|
|
3077
|
+
"hoverUI",
|
|
3078
|
+
"hoverLightUI",
|
|
3079
|
+
"hoverSelectedUI",
|
|
3080
|
+
"activeUI",
|
|
3081
|
+
"activeLightUI",
|
|
3082
|
+
"selectedUI",
|
|
3083
|
+
"selectedLightUI",
|
|
3084
|
+
"inverseHoverUI",
|
|
3085
|
+
"hoverDanger",
|
|
3086
|
+
"activeDanger",
|
|
3087
|
+
"hoverRow",
|
|
3088
|
+
"visitedLink",
|
|
3089
|
+
"disabled01",
|
|
3090
|
+
"disabled02",
|
|
3091
|
+
"disabled03",
|
|
3092
|
+
"highlight",
|
|
3093
|
+
"decorative01",
|
|
3094
|
+
"buttonSeparator",
|
|
3095
|
+
"skeleton01",
|
|
3096
|
+
"skeleton02",
|
|
3097
|
+
// New color tokens
|
|
3098
|
+
// TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
|
|
3099
|
+
"background",
|
|
3100
|
+
"layer",
|
|
3101
|
+
"layerAccent",
|
|
3102
|
+
"layerAccentHover",
|
|
3103
|
+
"layerAccentActive",
|
|
3104
|
+
"field",
|
|
3105
|
+
"backgroundInverse",
|
|
3106
|
+
"backgroundBrand",
|
|
3107
|
+
"interactive",
|
|
3108
|
+
"borderSubtle",
|
|
3109
|
+
"borderStrong",
|
|
3110
|
+
"borderInverse",
|
|
3111
|
+
"borderInteractive",
|
|
3112
|
+
"textPrimary",
|
|
3113
|
+
"textSecondary",
|
|
3114
|
+
"textPlaceholder",
|
|
3115
|
+
"textHelper",
|
|
3116
|
+
"textOnColor",
|
|
3117
|
+
"textInverse",
|
|
3118
|
+
"linkPrimary",
|
|
3119
|
+
"linkSecondary",
|
|
3120
|
+
"linkVisited",
|
|
3121
|
+
"linkInverse",
|
|
3122
|
+
"iconPrimary",
|
|
3123
|
+
"iconSecondary",
|
|
3124
|
+
"iconOnColor",
|
|
3125
|
+
"iconInverse",
|
|
3126
|
+
"supportError",
|
|
3127
|
+
"supportSuccess",
|
|
3128
|
+
"supportWarning",
|
|
3129
|
+
"supportInfo",
|
|
3130
|
+
"supportErrorInverse",
|
|
3131
|
+
"supportSuccessInverse",
|
|
3132
|
+
"supportWarningInverse",
|
|
3133
|
+
"supportInfoInverse",
|
|
3134
|
+
"overlay",
|
|
3135
|
+
"toggleOff",
|
|
3136
|
+
"shadow",
|
|
3137
|
+
"buttonPrimary",
|
|
3138
|
+
"buttonSecondary",
|
|
3139
|
+
"buttonTertiary",
|
|
3140
|
+
"buttonDangerPrimary",
|
|
3141
|
+
"buttonDangerSecondary",
|
|
3142
|
+
"backgroundActive",
|
|
3143
|
+
"layerActive",
|
|
3144
|
+
"buttonDangerActive",
|
|
3145
|
+
"buttonPrimaryActive",
|
|
3146
|
+
"buttonSecondaryActive",
|
|
3147
|
+
"buttonTertiaryActive",
|
|
3148
|
+
"focusInset",
|
|
3149
|
+
"focusInverse",
|
|
3150
|
+
"backgroundHover",
|
|
3151
|
+
"layerHover",
|
|
3152
|
+
"fieldHover",
|
|
3153
|
+
"backgroundInverseHover",
|
|
3154
|
+
"linkPrimaryHover",
|
|
3155
|
+
"buttonDangerHover",
|
|
3156
|
+
"buttonPrimaryHover",
|
|
3157
|
+
"buttonSecondaryHover",
|
|
3158
|
+
"buttonTertiaryHover",
|
|
3159
|
+
"backgroundSelected",
|
|
3160
|
+
"backgroundSelectedHover",
|
|
3161
|
+
"layerSelected",
|
|
3162
|
+
"layerSelectedHover",
|
|
3163
|
+
"layerSelectedInverse",
|
|
3164
|
+
"borderSubtleSelected",
|
|
3165
|
+
"borderDisabled",
|
|
3166
|
+
"textDisabled",
|
|
3167
|
+
"buttonDisabled",
|
|
3168
|
+
"iconDisabled",
|
|
3169
|
+
"textOnColorDisabled",
|
|
3170
|
+
"iconOnColorDisabled",
|
|
3171
|
+
"layerSelectedDisabled",
|
|
3172
|
+
"skeletonBackground",
|
|
3173
|
+
"skeletonElement",
|
|
3174
|
+
// Deprecated
|
|
3175
|
+
"brand01",
|
|
3176
|
+
"brand02",
|
|
3177
|
+
"brand03",
|
|
3178
|
+
"active01",
|
|
3179
|
+
"hoverField",
|
|
3180
|
+
"danger"
|
|
3181
|
+
];
|
|
3182
|
+
const tokens$3 = {
|
|
3183
|
+
colors,
|
|
3184
|
+
type: unstable_tokens,
|
|
3185
|
+
layout: unstable_tokens$1
|
|
3186
|
+
};
|
|
3187
|
+
|
|
3188
|
+
const themes$1 = {
|
|
3189
|
+
white,
|
|
3190
|
+
g10,
|
|
3191
|
+
g90,
|
|
3192
|
+
g100
|
|
3193
|
+
};
|
|
3194
|
+
|
|
3195
|
+
var index$3 = /*#__PURE__*/Object.freeze({
|
|
3196
|
+
__proto__: null,
|
|
3197
|
+
white: white,
|
|
3198
|
+
g10: g10,
|
|
3199
|
+
g90: g90,
|
|
3200
|
+
g100: g100,
|
|
3201
|
+
themes: themes$1,
|
|
3202
|
+
tokens: tokens$3,
|
|
3203
|
+
caption01: caption01,
|
|
3204
|
+
caption02: caption02,
|
|
3205
|
+
label01: label01,
|
|
3206
|
+
label02: label02,
|
|
3207
|
+
helperText01: helperText01,
|
|
3208
|
+
helperText02: helperText02,
|
|
3209
|
+
bodyShort01: bodyShort01,
|
|
3210
|
+
bodyLong01: bodyLong01,
|
|
3211
|
+
bodyShort02: bodyShort02,
|
|
3212
|
+
bodyLong02: bodyLong02,
|
|
3213
|
+
code01: code01,
|
|
3214
|
+
code02: code02,
|
|
3215
|
+
heading01: heading01,
|
|
3216
|
+
productiveHeading01: productiveHeading01,
|
|
3217
|
+
heading02: heading02,
|
|
3218
|
+
productiveHeading02: productiveHeading02,
|
|
3219
|
+
productiveHeading03: productiveHeading03,
|
|
3220
|
+
productiveHeading04: productiveHeading04,
|
|
3221
|
+
productiveHeading05: productiveHeading05,
|
|
3222
|
+
productiveHeading06: productiveHeading06,
|
|
3223
|
+
productiveHeading07: productiveHeading07,
|
|
3224
|
+
expressiveHeading01: expressiveHeading01,
|
|
3225
|
+
expressiveHeading02: expressiveHeading02,
|
|
3226
|
+
expressiveHeading03: expressiveHeading03,
|
|
3227
|
+
expressiveHeading04: expressiveHeading04,
|
|
3228
|
+
expressiveHeading05: expressiveHeading05,
|
|
3229
|
+
expressiveHeading06: expressiveHeading06,
|
|
3230
|
+
expressiveParagraph01: expressiveParagraph01,
|
|
3231
|
+
quotation01: quotation01,
|
|
3232
|
+
quotation02: quotation02,
|
|
3233
|
+
display01: display01,
|
|
3234
|
+
display02: display02,
|
|
3235
|
+
display03: display03,
|
|
3236
|
+
display04: display04,
|
|
3237
|
+
legal01: legal01,
|
|
3238
|
+
legal02: legal02,
|
|
3239
|
+
bodyCompact01: bodyCompact01,
|
|
3240
|
+
bodyCompact02: bodyCompact02,
|
|
3241
|
+
body01: body01,
|
|
3242
|
+
body02: body02,
|
|
3243
|
+
headingCompact01: headingCompact01,
|
|
3244
|
+
headingCompact02: headingCompact02,
|
|
3245
|
+
heading03: heading03,
|
|
3246
|
+
heading04: heading04,
|
|
3247
|
+
heading05: heading05,
|
|
3248
|
+
heading06: heading06,
|
|
3249
|
+
heading07: heading07,
|
|
3250
|
+
fluidHeading03: fluidHeading03,
|
|
3251
|
+
fluidHeading04: fluidHeading04,
|
|
3252
|
+
fluidHeading05: fluidHeading05,
|
|
3253
|
+
fluidHeading06: fluidHeading06,
|
|
3254
|
+
fluidParagraph01: fluidParagraph01,
|
|
3255
|
+
fluidQuotation01: fluidQuotation01,
|
|
3256
|
+
fluidQuotation02: fluidQuotation02,
|
|
3257
|
+
fluidDisplay01: fluidDisplay01,
|
|
3258
|
+
fluidDisplay02: fluidDisplay02,
|
|
3259
|
+
fluidDisplay03: fluidDisplay03,
|
|
3260
|
+
fluidDisplay04: fluidDisplay04,
|
|
3261
|
+
spacing01: spacing01,
|
|
3262
|
+
spacing02: spacing02,
|
|
3263
|
+
spacing03: spacing03,
|
|
3264
|
+
spacing04: spacing04,
|
|
3265
|
+
spacing05: spacing05,
|
|
3266
|
+
spacing06: spacing06,
|
|
3267
|
+
spacing07: spacing07,
|
|
3268
|
+
spacing08: spacing08,
|
|
3269
|
+
spacing09: spacing09,
|
|
3270
|
+
spacing10: spacing10,
|
|
3271
|
+
spacing11: spacing11,
|
|
3272
|
+
spacing12: spacing12,
|
|
3273
|
+
spacing13: spacing13,
|
|
3274
|
+
fluidSpacing01: fluidSpacing01,
|
|
3275
|
+
fluidSpacing02: fluidSpacing02,
|
|
3276
|
+
fluidSpacing03: fluidSpacing03,
|
|
3277
|
+
fluidSpacing04: fluidSpacing04,
|
|
3278
|
+
container01: container01,
|
|
3279
|
+
container02: container02,
|
|
3280
|
+
container03: container03,
|
|
3281
|
+
container04: container04,
|
|
3282
|
+
container05: container05,
|
|
3283
|
+
sizeXSmall: sizeXSmall,
|
|
3284
|
+
sizeSmall: sizeSmall,
|
|
3285
|
+
sizeMedium: sizeMedium,
|
|
3286
|
+
sizeLarge: sizeLarge,
|
|
3287
|
+
sizeXLarge: sizeXLarge,
|
|
3288
|
+
size2XLarge: size2XLarge,
|
|
3289
|
+
iconSize01: iconSize01,
|
|
3290
|
+
iconSize02: iconSize02,
|
|
3291
|
+
layout01: layout01,
|
|
3292
|
+
layout02: layout02,
|
|
3293
|
+
layout03: layout03,
|
|
3294
|
+
layout04: layout04,
|
|
3295
|
+
layout05: layout05,
|
|
3296
|
+
layout06: layout06,
|
|
3297
|
+
layout07: layout07,
|
|
3298
|
+
interactive01: interactive01$3,
|
|
3299
|
+
interactive02: interactive02$3,
|
|
3300
|
+
interactive03: interactive03$3,
|
|
3301
|
+
interactive04: interactive04$3,
|
|
3302
|
+
uiBackground: uiBackground$3,
|
|
3303
|
+
ui01: ui01$3,
|
|
3304
|
+
ui02: ui02$3,
|
|
3305
|
+
ui03: ui03$3,
|
|
3306
|
+
ui04: ui04$3,
|
|
3307
|
+
ui05: ui05$3,
|
|
3308
|
+
text01: text01$3,
|
|
3309
|
+
text02: text02$3,
|
|
3310
|
+
text03: text03$3,
|
|
3311
|
+
text04: text04$3,
|
|
3312
|
+
text05: text05$3,
|
|
3313
|
+
textError: textError$3,
|
|
3314
|
+
icon01: icon01$3,
|
|
3315
|
+
icon02: icon02$3,
|
|
3316
|
+
icon03: icon03$3,
|
|
3317
|
+
link01: link01$3,
|
|
3318
|
+
link02: link02$3,
|
|
3319
|
+
inverseLink: inverseLink$3,
|
|
3320
|
+
field01: field01$3,
|
|
3321
|
+
field02: field02$3,
|
|
3322
|
+
inverse01: inverse01$3,
|
|
3323
|
+
inverse02: inverse02$3,
|
|
3324
|
+
support01: support01$3,
|
|
3325
|
+
support02: support02$3,
|
|
3326
|
+
support03: support03$3,
|
|
3327
|
+
support04: support04$3,
|
|
3328
|
+
inverseSupport01: inverseSupport01$3,
|
|
3329
|
+
inverseSupport02: inverseSupport02$3,
|
|
3330
|
+
inverseSupport03: inverseSupport03$3,
|
|
3331
|
+
inverseSupport04: inverseSupport04$3,
|
|
3332
|
+
overlay01: overlay01$3,
|
|
3333
|
+
danger01: danger01$3,
|
|
3334
|
+
danger02: danger02$3,
|
|
3335
|
+
focus: focus$4,
|
|
3336
|
+
inverseFocusUi: inverseFocusUi$3,
|
|
3337
|
+
hoverPrimary: hoverPrimary$3,
|
|
3338
|
+
activePrimary: activePrimary$3,
|
|
3339
|
+
hoverPrimaryText: hoverPrimaryText$3,
|
|
3340
|
+
hoverSecondary: hoverSecondary$3,
|
|
3341
|
+
activeSecondary: activeSecondary$3,
|
|
3342
|
+
hoverTertiary: hoverTertiary$3,
|
|
3343
|
+
activeTertiary: activeTertiary$3,
|
|
3344
|
+
hoverUI: hoverUI$3,
|
|
3345
|
+
hoverLightUI: hoverLightUI$3,
|
|
3346
|
+
activeUI: activeUI$3,
|
|
3347
|
+
activeLightUI: activeLightUI$3,
|
|
3348
|
+
selectedUI: selectedUI$3,
|
|
3349
|
+
selectedLightUI: selectedLightUI$3,
|
|
3350
|
+
inverseHoverUI: inverseHoverUI$3,
|
|
3351
|
+
hoverSelectedUI: hoverSelectedUI$3,
|
|
3352
|
+
hoverDanger: hoverDanger$3,
|
|
3353
|
+
activeDanger: activeDanger$3,
|
|
3354
|
+
hoverRow: hoverRow$3,
|
|
3355
|
+
visitedLink: visitedLink$3,
|
|
3356
|
+
disabled01: disabled01$3,
|
|
3357
|
+
disabled02: disabled02$3,
|
|
3358
|
+
disabled03: disabled03$3,
|
|
3359
|
+
highlight: highlight$3,
|
|
3360
|
+
decorative01: decorative01$3,
|
|
3361
|
+
buttonSeparator: buttonSeparator$4,
|
|
3362
|
+
skeleton01: skeleton01$3,
|
|
3363
|
+
skeleton02: skeleton02$3,
|
|
3364
|
+
background: background$4,
|
|
3365
|
+
layer: layer$4,
|
|
3366
|
+
layerAccent: layerAccent$3,
|
|
3367
|
+
layerAccentActive: layerAccentActive$3,
|
|
3368
|
+
layerAccentHover: layerAccentHover$3,
|
|
3369
|
+
field: field$4,
|
|
3370
|
+
backgroundInverse: backgroundInverse$3,
|
|
3371
|
+
backgroundBrand: backgroundBrand$3,
|
|
3372
|
+
interactive: interactive$3,
|
|
3373
|
+
borderSubtle: borderSubtle$3,
|
|
3374
|
+
borderStrong: borderStrong$3,
|
|
3375
|
+
borderInverse: borderInverse$3,
|
|
3376
|
+
borderInteractive: borderInteractive$3,
|
|
3377
|
+
textPrimary: textPrimary$3,
|
|
3378
|
+
textSecondary: textSecondary$3,
|
|
3379
|
+
textPlaceholder: textPlaceholder$3,
|
|
3380
|
+
textHelper: textHelper$3,
|
|
3381
|
+
textOnColor: textOnColor$3,
|
|
3382
|
+
textInverse: textInverse$3,
|
|
3383
|
+
linkPrimary: linkPrimary$3,
|
|
3384
|
+
linkSecondary: linkSecondary$3,
|
|
3385
|
+
linkVisited: linkVisited$3,
|
|
3386
|
+
linkInverse: linkInverse$3,
|
|
3387
|
+
iconPrimary: iconPrimary$3,
|
|
3388
|
+
iconSecondary: iconSecondary$3,
|
|
3389
|
+
iconOnColor: iconOnColor$3,
|
|
3390
|
+
iconInverse: iconInverse$3,
|
|
3391
|
+
supportError: supportError$3,
|
|
3392
|
+
supportSuccess: supportSuccess$3,
|
|
3393
|
+
supportWarning: supportWarning$3,
|
|
3394
|
+
supportInfo: supportInfo$3,
|
|
3395
|
+
supportErrorInverse: supportErrorInverse$3,
|
|
3396
|
+
supportSuccessInverse: supportSuccessInverse$3,
|
|
3397
|
+
supportWarningInverse: supportWarningInverse$3,
|
|
3398
|
+
supportInfoInverse: supportInfoInverse$3,
|
|
3399
|
+
overlay: overlay$3,
|
|
3400
|
+
toggleOff: toggleOff$3,
|
|
3401
|
+
shadow: shadow$3,
|
|
3402
|
+
buttonPrimary: buttonPrimary$4,
|
|
3403
|
+
buttonSecondary: buttonSecondary$4,
|
|
3404
|
+
buttonTertiary: buttonTertiary$4,
|
|
3405
|
+
buttonDangerPrimary: buttonDangerPrimary$4,
|
|
3406
|
+
buttonDangerSecondary: buttonDangerSecondary$4,
|
|
3407
|
+
backgroundActive: backgroundActive$3,
|
|
3408
|
+
layerActive: layerActive$3,
|
|
3409
|
+
buttonDangerActive: buttonDangerActive$4,
|
|
3410
|
+
buttonPrimaryActive: buttonPrimaryActive$4,
|
|
3411
|
+
buttonSecondaryActive: buttonSecondaryActive$4,
|
|
3412
|
+
buttonTertiaryActive: buttonTertiaryActive$4,
|
|
3413
|
+
focusInset: focusInset$3,
|
|
3414
|
+
focusInverse: focusInverse$3,
|
|
3415
|
+
backgroundHover: backgroundHover$3,
|
|
3416
|
+
layerHover: layerHover$3,
|
|
3417
|
+
fieldHover: fieldHover$3,
|
|
3418
|
+
backgroundInverseHover: backgroundInverseHover$3,
|
|
3419
|
+
linkPrimaryHover: linkPrimaryHover$3,
|
|
3420
|
+
buttonDangerHover: buttonDangerHover$4,
|
|
3421
|
+
buttonPrimaryHover: buttonPrimaryHover$4,
|
|
3422
|
+
buttonSecondaryHover: buttonSecondaryHover$4,
|
|
3423
|
+
buttonTertiaryHover: buttonTertiaryHover$4,
|
|
3424
|
+
backgroundSelected: backgroundSelected$3,
|
|
3425
|
+
backgroundSelectedHover: backgroundSelectedHover$3,
|
|
3426
|
+
layerSelected: layerSelected$3,
|
|
3427
|
+
layerSelectedHover: layerSelectedHover$3,
|
|
3428
|
+
layerSelectedInverse: layerSelectedInverse$3,
|
|
3429
|
+
borderSubtleSelected: borderSubtleSelected$3,
|
|
3430
|
+
borderDisabled: borderDisabled$3,
|
|
3431
|
+
textDisabled: textDisabled$3,
|
|
3432
|
+
buttonDisabled: buttonDisabled$4,
|
|
3433
|
+
iconDisabled: iconDisabled$3,
|
|
3434
|
+
textOnColorDisabled: textOnColorDisabled$3,
|
|
3435
|
+
iconOnColorDisabled: iconOnColorDisabled$3,
|
|
3436
|
+
layerSelectedDisabled: layerSelectedDisabled$3,
|
|
3437
|
+
skeletonBackground: skeletonBackground$3,
|
|
3438
|
+
skeletonElement: skeletonElement$3,
|
|
3439
|
+
brand01: brand01$3,
|
|
3440
|
+
brand02: brand02$3,
|
|
3441
|
+
brand03: brand03$3,
|
|
3442
|
+
active01: active01$3,
|
|
3443
|
+
hoverField: hoverField$3,
|
|
3444
|
+
danger: danger$3
|
|
3445
|
+
});
|
|
3446
|
+
|
|
3447
|
+
const buttonSeparator = {
|
|
3448
|
+
fallback: "#e0e0e0",
|
|
3449
|
+
whiteTheme: "#e0e0e0",
|
|
3450
|
+
g10: "#e0e0e0",
|
|
3451
|
+
g90: "#161616",
|
|
3452
|
+
g100: "#161616"
|
|
3453
|
+
};
|
|
3454
|
+
const buttonPrimary = {
|
|
3455
|
+
whiteTheme: "#0f62fe",
|
|
3456
|
+
g10: "#0f62fe",
|
|
3457
|
+
g90: "#0f62fe",
|
|
3458
|
+
g100: "#0f62fe"
|
|
3459
|
+
};
|
|
3460
|
+
const buttonSecondary = {
|
|
3461
|
+
whiteTheme: "#393939",
|
|
3462
|
+
g10: "#393939",
|
|
3463
|
+
g90: "#6f6f6f",
|
|
3464
|
+
g100: "#6f6f6f"
|
|
3465
|
+
};
|
|
3466
|
+
const buttonTertiary = {
|
|
3467
|
+
whiteTheme: "#0f62fe",
|
|
3468
|
+
g10: "#0f62fe",
|
|
3469
|
+
g90: "#ffffff",
|
|
3470
|
+
g100: "#ffffff"
|
|
3471
|
+
};
|
|
3472
|
+
const buttonDangerPrimary = {
|
|
3473
|
+
whiteTheme: "#da1e28",
|
|
3474
|
+
g10: "#da1e28",
|
|
3475
|
+
g90: "#da1e28",
|
|
3476
|
+
g100: "#da1e28"
|
|
3477
|
+
};
|
|
3478
|
+
const buttonDangerSecondary = {
|
|
3479
|
+
whiteTheme: "#da1e28",
|
|
3480
|
+
g10: "#da1e28",
|
|
3481
|
+
g90: "#ff8389",
|
|
3482
|
+
g100: "#fa4d56"
|
|
3483
|
+
};
|
|
3484
|
+
const buttonDangerActive = {
|
|
3485
|
+
whiteTheme: "#750e13",
|
|
3486
|
+
g10: "#750e13",
|
|
3487
|
+
g90: "#750e13",
|
|
3488
|
+
g100: "#750e13"
|
|
3489
|
+
};
|
|
3490
|
+
const buttonPrimaryActive = {
|
|
3491
|
+
whiteTheme: "#002d9c",
|
|
3492
|
+
g10: "#002d9c",
|
|
3493
|
+
g90: "#002d9c",
|
|
3494
|
+
g100: "#002d9c"
|
|
3495
|
+
};
|
|
3496
|
+
const buttonSecondaryActive = {
|
|
3497
|
+
whiteTheme: "#6f6f6f",
|
|
3498
|
+
g10: "#6f6f6f",
|
|
3499
|
+
g90: "#393939",
|
|
3500
|
+
g100: "#393939"
|
|
3501
|
+
};
|
|
3502
|
+
const buttonTertiaryActive = {
|
|
3503
|
+
whiteTheme: "#002d9c",
|
|
3504
|
+
g10: "#002d9c",
|
|
3505
|
+
g90: "#c6c6c6",
|
|
3506
|
+
g100: "#c6c6c6"
|
|
3507
|
+
};
|
|
3508
|
+
const buttonDangerHover = {
|
|
3509
|
+
whiteTheme: "#b81921",
|
|
3510
|
+
g10: "#b81921",
|
|
3511
|
+
g90: "#b81921",
|
|
3512
|
+
g100: "#b81921"
|
|
3513
|
+
};
|
|
3514
|
+
const buttonPrimaryHover = {
|
|
3515
|
+
whiteTheme: "#0050e6",
|
|
3516
|
+
g10: "#0050e6",
|
|
3517
|
+
g90: "#0050e6",
|
|
3518
|
+
g100: "#0050e6"
|
|
3519
|
+
};
|
|
3520
|
+
const buttonSecondaryHover = {
|
|
3521
|
+
whiteTheme: "#474747",
|
|
3522
|
+
g10: "#474747",
|
|
3523
|
+
g90: "#5e5e5e",
|
|
3524
|
+
g100: "#5e5e5e"
|
|
3525
|
+
};
|
|
3526
|
+
const buttonTertiaryHover = {
|
|
3527
|
+
whiteTheme: "#0050e6",
|
|
3528
|
+
g10: "#0050e6",
|
|
3529
|
+
g90: "#f4f4f4",
|
|
3530
|
+
g100: "#f4f4f4"
|
|
3531
|
+
};
|
|
3532
|
+
const buttonDisabled = {
|
|
3533
|
+
whiteTheme: "#c6c6c6",
|
|
3534
|
+
g10: "#c6c6c6",
|
|
3535
|
+
g90: "rgb(141 141 141 / 30%)",
|
|
3536
|
+
g100: "rgb(141 141 141 / 30%)"
|
|
3537
|
+
};
|
|
3538
|
+
|
|
3539
|
+
var tokens$2 = /*#__PURE__*/Object.freeze({
|
|
3540
|
+
__proto__: null,
|
|
3541
|
+
buttonSeparator: buttonSeparator,
|
|
3542
|
+
buttonPrimary: buttonPrimary,
|
|
3543
|
+
buttonSecondary: buttonSecondary,
|
|
3544
|
+
buttonTertiary: buttonTertiary,
|
|
3545
|
+
buttonDangerPrimary: buttonDangerPrimary,
|
|
3546
|
+
buttonDangerSecondary: buttonDangerSecondary,
|
|
3547
|
+
buttonDangerActive: buttonDangerActive,
|
|
3548
|
+
buttonPrimaryActive: buttonPrimaryActive,
|
|
3549
|
+
buttonSecondaryActive: buttonSecondaryActive,
|
|
3550
|
+
buttonTertiaryActive: buttonTertiaryActive,
|
|
3551
|
+
buttonDangerHover: buttonDangerHover,
|
|
3552
|
+
buttonPrimaryHover: buttonPrimaryHover,
|
|
3553
|
+
buttonSecondaryHover: buttonSecondaryHover,
|
|
3554
|
+
buttonTertiaryHover: buttonTertiaryHover,
|
|
3555
|
+
buttonDisabled: buttonDisabled
|
|
3556
|
+
});
|
|
3557
|
+
|
|
3558
|
+
var index$2 = /*#__PURE__*/Object.freeze({
|
|
3559
|
+
__proto__: null,
|
|
3560
|
+
buttonTokens: tokens$2
|
|
3561
|
+
});
|
|
3562
|
+
|
|
3563
|
+
const tagBackgroundRed = {
|
|
3564
|
+
whiteTheme: red20,
|
|
3565
|
+
g10: red20,
|
|
3566
|
+
g90: red70,
|
|
3567
|
+
g100: red70
|
|
3568
|
+
};
|
|
3569
|
+
const tagColorRed = {
|
|
3570
|
+
whiteTheme: red70,
|
|
3571
|
+
g10: red70,
|
|
3572
|
+
g90: red20,
|
|
3573
|
+
g100: red20
|
|
3574
|
+
};
|
|
3575
|
+
const tagHoverRed = {
|
|
3576
|
+
whiteTheme: red20Hover,
|
|
3577
|
+
g10: red20Hover,
|
|
3578
|
+
g90: red70Hover,
|
|
3579
|
+
g100: red70Hover
|
|
3580
|
+
};
|
|
3581
|
+
const tagBackgroundMagenta = {
|
|
3582
|
+
whiteTheme: magenta20,
|
|
3583
|
+
g10: magenta20,
|
|
3584
|
+
g90: magenta70,
|
|
3585
|
+
g100: magenta70
|
|
3586
|
+
};
|
|
3587
|
+
const tagColorMagenta = {
|
|
3588
|
+
whiteTheme: magenta70,
|
|
3589
|
+
g10: magenta70,
|
|
3590
|
+
g90: magenta20,
|
|
3591
|
+
g100: magenta20
|
|
3592
|
+
};
|
|
3593
|
+
const tagHoverMagenta = {
|
|
3594
|
+
whiteTheme: magenta20Hover,
|
|
3595
|
+
g10: magenta20Hover,
|
|
3596
|
+
g90: magenta70Hover,
|
|
3597
|
+
g100: magenta70Hover
|
|
3598
|
+
};
|
|
3599
|
+
const tagBackgroundPurple = {
|
|
3600
|
+
whiteTheme: purple20,
|
|
3601
|
+
g10: purple20,
|
|
3602
|
+
g90: purple70,
|
|
3603
|
+
g100: purple70
|
|
3604
|
+
};
|
|
3605
|
+
const tagColorPurple = {
|
|
3606
|
+
whiteTheme: purple70,
|
|
3607
|
+
g10: purple70,
|
|
3608
|
+
g90: purple20,
|
|
3609
|
+
g100: purple20
|
|
3610
|
+
};
|
|
3611
|
+
const tagHoverPurple = {
|
|
3612
|
+
whiteTheme: purple20Hover,
|
|
3613
|
+
g10: purple20Hover,
|
|
3614
|
+
g90: purple70Hover,
|
|
3615
|
+
g100: purple70Hover
|
|
3616
|
+
};
|
|
3617
|
+
const tagBackgroundBlue = {
|
|
3618
|
+
whiteTheme: blue20,
|
|
3619
|
+
g10: blue20,
|
|
3620
|
+
g90: blue70,
|
|
3621
|
+
g100: blue70
|
|
3622
|
+
};
|
|
3623
|
+
const tagColorBlue = {
|
|
3624
|
+
whiteTheme: blue70,
|
|
3625
|
+
g10: blue70,
|
|
3626
|
+
g90: blue20,
|
|
3627
|
+
g100: blue20
|
|
3628
|
+
};
|
|
3629
|
+
const tagHoverBlue = {
|
|
3630
|
+
whiteTheme: blue20Hover,
|
|
3631
|
+
g10: blue20Hover,
|
|
3632
|
+
g90: blue70Hover,
|
|
3633
|
+
g100: blue70Hover
|
|
3634
|
+
};
|
|
3635
|
+
const tagBackgroundCyan = {
|
|
3636
|
+
whiteTheme: cyan20,
|
|
3637
|
+
g10: cyan20,
|
|
3638
|
+
g90: cyan70,
|
|
3639
|
+
g100: cyan70
|
|
3640
|
+
};
|
|
3641
|
+
const tagColorCyan = {
|
|
3642
|
+
whiteTheme: cyan70,
|
|
3643
|
+
g10: cyan70,
|
|
3644
|
+
g90: cyan20,
|
|
3645
|
+
g100: cyan20
|
|
3646
|
+
};
|
|
3647
|
+
const tagHoverCyan = {
|
|
3648
|
+
whiteTheme: cyan20Hover,
|
|
3649
|
+
g10: cyan20Hover,
|
|
3650
|
+
g90: cyan70Hover,
|
|
3651
|
+
g100: cyan70Hover
|
|
3652
|
+
};
|
|
3653
|
+
const tagBackgroundTeal = {
|
|
3654
|
+
whiteTheme: teal20,
|
|
3655
|
+
g10: teal20,
|
|
3656
|
+
g90: teal70,
|
|
3657
|
+
g100: teal70
|
|
3658
|
+
};
|
|
3659
|
+
const tagColorTeal = {
|
|
3660
|
+
whiteTheme: teal70,
|
|
3661
|
+
g10: teal70,
|
|
3662
|
+
g90: teal20,
|
|
3663
|
+
g100: teal20
|
|
3664
|
+
};
|
|
3665
|
+
const tagHoverTeal = {
|
|
3666
|
+
whiteTheme: teal20Hover,
|
|
3667
|
+
g10: teal20Hover,
|
|
3668
|
+
g90: teal70Hover,
|
|
3669
|
+
g100: teal70Hover
|
|
3670
|
+
};
|
|
3671
|
+
const tagBackgroundGreen = {
|
|
3672
|
+
whiteTheme: green20,
|
|
3673
|
+
g10: green20,
|
|
3674
|
+
g90: green70,
|
|
3675
|
+
g100: green70
|
|
3676
|
+
};
|
|
3677
|
+
const tagColorGreen = {
|
|
3678
|
+
whiteTheme: green70,
|
|
3679
|
+
g10: green70,
|
|
3680
|
+
g90: green20,
|
|
3681
|
+
g100: green20
|
|
3682
|
+
};
|
|
3683
|
+
const tagHoverGreen = {
|
|
3684
|
+
whiteTheme: green20Hover,
|
|
3685
|
+
g10: green20Hover,
|
|
3686
|
+
g90: green70Hover,
|
|
3687
|
+
g100: green70Hover
|
|
3688
|
+
};
|
|
3689
|
+
const tagBackgroundGray = {
|
|
3690
|
+
whiteTheme: gray20,
|
|
3691
|
+
g10: gray20,
|
|
3692
|
+
g90: gray70,
|
|
3693
|
+
g100: gray70
|
|
3694
|
+
};
|
|
3695
|
+
const tagColorGray = {
|
|
3696
|
+
whiteTheme: gray100,
|
|
3697
|
+
g10: gray100,
|
|
3698
|
+
g90: gray10,
|
|
3699
|
+
g100: gray10
|
|
3700
|
+
};
|
|
3701
|
+
const tagHoverGray = {
|
|
3702
|
+
whiteTheme: gray20Hover,
|
|
3703
|
+
g10: gray20Hover,
|
|
3704
|
+
g90: gray70Hover,
|
|
3705
|
+
g100: gray70Hover
|
|
3706
|
+
};
|
|
3707
|
+
const tagBackgroundCoolGray = {
|
|
3708
|
+
whiteTheme: coolGray20,
|
|
3709
|
+
g10: coolGray20,
|
|
3710
|
+
g90: coolGray70,
|
|
3711
|
+
g100: coolGray70
|
|
3712
|
+
};
|
|
3713
|
+
const tagColorCoolGray = {
|
|
3714
|
+
whiteTheme: coolGray100,
|
|
3715
|
+
g10: coolGray100,
|
|
3716
|
+
g90: coolGray10,
|
|
3717
|
+
g100: coolGray10
|
|
3718
|
+
};
|
|
3719
|
+
const tagHoverCoolGray = {
|
|
3720
|
+
whiteTheme: coolGray20Hover,
|
|
3721
|
+
g10: coolGray20Hover,
|
|
3722
|
+
g90: coolGray70Hover,
|
|
3723
|
+
g100: coolGray70Hover
|
|
3724
|
+
};
|
|
3725
|
+
const tagBackgroundWarmGray = {
|
|
3726
|
+
whiteTheme: warmGray20,
|
|
3727
|
+
g10: warmGray20,
|
|
3728
|
+
g90: warmGray70,
|
|
3729
|
+
g100: warmGray70
|
|
3730
|
+
};
|
|
3731
|
+
const tagColorWarmGray = {
|
|
3732
|
+
whiteTheme: warmGray100,
|
|
3733
|
+
g10: warmGray100,
|
|
3734
|
+
g90: warmGray10,
|
|
3735
|
+
g100: warmGray10
|
|
3736
|
+
};
|
|
3737
|
+
const tagHoverWarmGray = {
|
|
3738
|
+
whiteTheme: warmGray20Hover,
|
|
3739
|
+
g10: warmGray20Hover,
|
|
3740
|
+
g90: warmGray70Hover,
|
|
3741
|
+
g100: warmGray70Hover
|
|
3742
|
+
};
|
|
3743
|
+
const tagBorderRed = {
|
|
3744
|
+
whiteTheme: red40,
|
|
3745
|
+
g10: red40,
|
|
3746
|
+
g90: red50,
|
|
3747
|
+
g100: red50
|
|
3748
|
+
};
|
|
3749
|
+
const tagBorderBlue = {
|
|
3750
|
+
whiteTheme: blue40,
|
|
3751
|
+
g10: blue40,
|
|
3752
|
+
g90: blue50,
|
|
3753
|
+
g100: blue50
|
|
3754
|
+
};
|
|
3755
|
+
const tagBorderCyan = {
|
|
3756
|
+
whiteTheme: cyan40,
|
|
3757
|
+
g10: cyan40,
|
|
3758
|
+
g90: cyan50,
|
|
3759
|
+
g100: cyan50
|
|
3760
|
+
};
|
|
3761
|
+
const tagBorderTeal = {
|
|
3762
|
+
whiteTheme: teal40,
|
|
3763
|
+
g10: teal40,
|
|
3764
|
+
g90: teal50,
|
|
3765
|
+
g100: teal50
|
|
3766
|
+
};
|
|
3767
|
+
const tagBorderGreen = {
|
|
3768
|
+
whiteTheme: green40,
|
|
3769
|
+
g10: green40,
|
|
3770
|
+
g90: green50,
|
|
3771
|
+
g100: green50
|
|
3772
|
+
};
|
|
3773
|
+
const tagBorderMagenta = {
|
|
3774
|
+
whiteTheme: magenta40,
|
|
3775
|
+
g10: magenta40,
|
|
3776
|
+
g90: magenta50,
|
|
3777
|
+
g100: magenta50
|
|
3778
|
+
};
|
|
3779
|
+
const tagBorderPurple = {
|
|
3780
|
+
whiteTheme: purple40,
|
|
3781
|
+
g10: purple40,
|
|
3782
|
+
g90: purple50,
|
|
3783
|
+
g100: purple50
|
|
3784
|
+
};
|
|
3785
|
+
const tagBorderGray = {
|
|
3786
|
+
whiteTheme: gray40,
|
|
3787
|
+
g10: gray40,
|
|
3788
|
+
g90: gray50,
|
|
3789
|
+
g100: gray50
|
|
3790
|
+
};
|
|
3791
|
+
const tagBorderCoolGray = {
|
|
3792
|
+
whiteTheme: coolGray40,
|
|
3793
|
+
g10: coolGray40,
|
|
3794
|
+
g90: coolGray50,
|
|
3795
|
+
g100: coolGray50
|
|
3796
|
+
};
|
|
3797
|
+
const tagBorderWarmGray = {
|
|
3798
|
+
whiteTheme: warmGray40,
|
|
3799
|
+
g10: warmGray40,
|
|
3800
|
+
g90: warmGray50,
|
|
3801
|
+
g100: warmGray50
|
|
3802
|
+
};
|
|
3803
|
+
|
|
3804
|
+
var tokens$1 = /*#__PURE__*/Object.freeze({
|
|
3805
|
+
__proto__: null,
|
|
3806
|
+
tagBackgroundRed: tagBackgroundRed,
|
|
3807
|
+
tagColorRed: tagColorRed,
|
|
3808
|
+
tagHoverRed: tagHoverRed,
|
|
3809
|
+
tagBackgroundMagenta: tagBackgroundMagenta,
|
|
3810
|
+
tagColorMagenta: tagColorMagenta,
|
|
3811
|
+
tagHoverMagenta: tagHoverMagenta,
|
|
3812
|
+
tagBackgroundPurple: tagBackgroundPurple,
|
|
3813
|
+
tagColorPurple: tagColorPurple,
|
|
3814
|
+
tagHoverPurple: tagHoverPurple,
|
|
3815
|
+
tagBackgroundBlue: tagBackgroundBlue,
|
|
3816
|
+
tagColorBlue: tagColorBlue,
|
|
3817
|
+
tagHoverBlue: tagHoverBlue,
|
|
3818
|
+
tagBackgroundCyan: tagBackgroundCyan,
|
|
3819
|
+
tagColorCyan: tagColorCyan,
|
|
3820
|
+
tagHoverCyan: tagHoverCyan,
|
|
3821
|
+
tagBackgroundTeal: tagBackgroundTeal,
|
|
3822
|
+
tagColorTeal: tagColorTeal,
|
|
3823
|
+
tagHoverTeal: tagHoverTeal,
|
|
3824
|
+
tagBackgroundGreen: tagBackgroundGreen,
|
|
3825
|
+
tagColorGreen: tagColorGreen,
|
|
3826
|
+
tagHoverGreen: tagHoverGreen,
|
|
3827
|
+
tagBackgroundGray: tagBackgroundGray,
|
|
3828
|
+
tagColorGray: tagColorGray,
|
|
3829
|
+
tagHoverGray: tagHoverGray,
|
|
3830
|
+
tagBackgroundCoolGray: tagBackgroundCoolGray,
|
|
3831
|
+
tagColorCoolGray: tagColorCoolGray,
|
|
3832
|
+
tagHoverCoolGray: tagHoverCoolGray,
|
|
3833
|
+
tagBackgroundWarmGray: tagBackgroundWarmGray,
|
|
3834
|
+
tagColorWarmGray: tagColorWarmGray,
|
|
3835
|
+
tagHoverWarmGray: tagHoverWarmGray,
|
|
3836
|
+
tagBorderRed: tagBorderRed,
|
|
3837
|
+
tagBorderBlue: tagBorderBlue,
|
|
3838
|
+
tagBorderCyan: tagBorderCyan,
|
|
3839
|
+
tagBorderTeal: tagBorderTeal,
|
|
3840
|
+
tagBorderGreen: tagBorderGreen,
|
|
3841
|
+
tagBorderMagenta: tagBorderMagenta,
|
|
3842
|
+
tagBorderPurple: tagBorderPurple,
|
|
3843
|
+
tagBorderGray: tagBorderGray,
|
|
3844
|
+
tagBorderCoolGray: tagBorderCoolGray,
|
|
3845
|
+
tagBorderWarmGray: tagBorderWarmGray
|
|
3846
|
+
});
|
|
3847
|
+
|
|
3848
|
+
var index$1 = /*#__PURE__*/Object.freeze({
|
|
3849
|
+
__proto__: null,
|
|
3850
|
+
tagTokens: tokens$1
|
|
3851
|
+
});
|
|
3852
|
+
|
|
3853
|
+
const notificationBackgroundError = {
|
|
3854
|
+
whiteTheme: red10,
|
|
3855
|
+
g10: red10,
|
|
3856
|
+
g90: gray80,
|
|
3857
|
+
g100: gray90
|
|
3858
|
+
};
|
|
3859
|
+
const notificationBackgroundSuccess = {
|
|
3860
|
+
whiteTheme: green10,
|
|
3861
|
+
g10: green10,
|
|
3862
|
+
g90: gray80,
|
|
3863
|
+
g100: gray90
|
|
3864
|
+
};
|
|
3865
|
+
const notificationBackgroundInfo = {
|
|
3866
|
+
whiteTheme: blue10,
|
|
3867
|
+
g10: blue10,
|
|
3868
|
+
g90: gray80,
|
|
3869
|
+
g100: gray90
|
|
3870
|
+
};
|
|
3871
|
+
const notificationBackgroundWarning = {
|
|
3872
|
+
whiteTheme: yellow10,
|
|
3873
|
+
g10: yellow10,
|
|
3874
|
+
g90: gray80,
|
|
3875
|
+
g100: gray90
|
|
3876
|
+
};
|
|
3877
|
+
const notificationActionHover = {
|
|
3878
|
+
whiteTheme: white0,
|
|
3879
|
+
g10: white0
|
|
3880
|
+
};
|
|
3881
|
+
const notificationActionTertiaryInverse = {
|
|
3882
|
+
whiteTheme: buttonTertiary.g100,
|
|
3883
|
+
g10: buttonTertiary.g90,
|
|
3884
|
+
g90: buttonTertiary.g10,
|
|
3885
|
+
g100: buttonTertiary.whiteTheme
|
|
3886
|
+
};
|
|
3887
|
+
const notificationActionTertiaryInverseActive = {
|
|
3888
|
+
whiteTheme: buttonTertiaryActive.g100,
|
|
3889
|
+
g10: buttonTertiaryActive.g90,
|
|
3890
|
+
g90: buttonTertiaryActive.g10,
|
|
3891
|
+
g100: buttonTertiaryActive.whiteTheme
|
|
3892
|
+
};
|
|
3893
|
+
const notificationActionTertiaryInverseHover = {
|
|
3894
|
+
whiteTheme: buttonTertiaryHover.g100,
|
|
3895
|
+
g10: buttonTertiaryHover.g90,
|
|
3896
|
+
g90: buttonTertiaryHover.g10,
|
|
3897
|
+
g100: buttonTertiaryHover.whiteTheme
|
|
3898
|
+
};
|
|
3899
|
+
const notificationActionTertiaryInverseText = {
|
|
3900
|
+
whiteTheme: textInverse$4,
|
|
3901
|
+
g10: textInverse$5,
|
|
3902
|
+
g90: textInverse$6,
|
|
3903
|
+
g100: textInverse$7
|
|
3904
|
+
};
|
|
3905
|
+
const notificationActionTertiaryInverseTextOnColorDisabled = {
|
|
3906
|
+
whiteTheme: textOnColorDisabled$4,
|
|
3907
|
+
g10: textOnColorDisabled$5,
|
|
3908
|
+
g90: textOnColorDisabled$6,
|
|
3909
|
+
g100: textOnColorDisabled$7
|
|
3910
|
+
};
|
|
3911
|
+
|
|
3912
|
+
var tokens = /*#__PURE__*/Object.freeze({
|
|
3913
|
+
__proto__: null,
|
|
3914
|
+
notificationBackgroundError: notificationBackgroundError,
|
|
3915
|
+
notificationBackgroundSuccess: notificationBackgroundSuccess,
|
|
3916
|
+
notificationBackgroundInfo: notificationBackgroundInfo,
|
|
3917
|
+
notificationBackgroundWarning: notificationBackgroundWarning,
|
|
3918
|
+
notificationActionHover: notificationActionHover,
|
|
3919
|
+
notificationActionTertiaryInverse: notificationActionTertiaryInverse,
|
|
3920
|
+
notificationActionTertiaryInverseActive: notificationActionTertiaryInverseActive,
|
|
3921
|
+
notificationActionTertiaryInverseHover: notificationActionTertiaryInverseHover,
|
|
3922
|
+
notificationActionTertiaryInverseText: notificationActionTertiaryInverseText,
|
|
3923
|
+
notificationActionTertiaryInverseTextOnColorDisabled: notificationActionTertiaryInverseTextOnColorDisabled
|
|
3924
|
+
});
|
|
3925
|
+
|
|
3926
|
+
var index = /*#__PURE__*/Object.freeze({
|
|
3927
|
+
__proto__: null,
|
|
3928
|
+
notificationTokens: tokens
|
|
3929
|
+
});
|
|
3930
|
+
|
|
3931
|
+
class Token {
|
|
3932
|
+
static create(token) {
|
|
3933
|
+
if (typeof token === "string") {
|
|
3934
|
+
return new Token(token);
|
|
3935
|
+
}
|
|
3936
|
+
return new Token(token.name, token.properties, token.state);
|
|
3937
|
+
}
|
|
3938
|
+
constructor(name, properties, state) {
|
|
3939
|
+
this.kind = "Token";
|
|
3940
|
+
this.name = name;
|
|
3941
|
+
if (properties) {
|
|
3942
|
+
this.properties = properties;
|
|
3943
|
+
}
|
|
3944
|
+
if (state) {
|
|
3945
|
+
this.state = state;
|
|
3946
|
+
}
|
|
3947
|
+
}
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
class TokenGroup {
|
|
3951
|
+
static create({ name, properties, tokens = [] }) {
|
|
3952
|
+
return new TokenGroup(name, tokens, properties);
|
|
3953
|
+
}
|
|
3954
|
+
constructor(name, tokens, properties) {
|
|
3955
|
+
this.kind = "TokenGroup";
|
|
3956
|
+
this.name = name;
|
|
3957
|
+
if (properties) {
|
|
3958
|
+
this.properties = properties;
|
|
3959
|
+
}
|
|
3960
|
+
this.children = tokens.map((child) => {
|
|
3961
|
+
if (child.kind === "TokenGroup") {
|
|
3962
|
+
return child;
|
|
3963
|
+
}
|
|
3964
|
+
return Token.create(child);
|
|
3965
|
+
});
|
|
3966
|
+
}
|
|
3967
|
+
*[Symbol.iterator]() {
|
|
3968
|
+
yield this;
|
|
3969
|
+
for (const child of this.children) {
|
|
3970
|
+
yield child;
|
|
3971
|
+
if (child.kind === "TokenGroup") {
|
|
3972
|
+
yield* child;
|
|
3973
|
+
}
|
|
3974
|
+
}
|
|
3975
|
+
}
|
|
3976
|
+
/**
|
|
3977
|
+
* Get all the tokens available in every Token Group in this TokenGroup,
|
|
3978
|
+
* including itself.
|
|
3979
|
+
* @returns {Array<Token>}
|
|
3980
|
+
*/
|
|
3981
|
+
getTokens(parentContext = {}) {
|
|
3982
|
+
const context = {
|
|
3983
|
+
...parentContext,
|
|
3984
|
+
groups: parentContext.groups ? parentContext.groups.concat(this) : [this],
|
|
3985
|
+
properties: this.properties || parentContext.properties
|
|
3986
|
+
};
|
|
3987
|
+
return this.children.flatMap((child) => {
|
|
3988
|
+
if (child.kind === "TokenGroup") {
|
|
3989
|
+
return child.getTokens(context);
|
|
3990
|
+
}
|
|
3991
|
+
const token = {
|
|
3992
|
+
...context,
|
|
3993
|
+
name: child.name,
|
|
3994
|
+
properties: child.properties || context.properties
|
|
3995
|
+
};
|
|
3996
|
+
if (child.state) {
|
|
3997
|
+
token.state = child.state;
|
|
3998
|
+
}
|
|
3999
|
+
return token;
|
|
4000
|
+
});
|
|
4001
|
+
}
|
|
4002
|
+
/**
|
|
4003
|
+
* Get a specific token from the TokenGroup, or form one of its nested
|
|
4004
|
+
* TokenGroups
|
|
4005
|
+
* @returns {Token}
|
|
4006
|
+
*/
|
|
4007
|
+
getToken(tokenOrName) {
|
|
4008
|
+
const name = typeof tokenOrName === "string" ? tokenOrName : tokenOrName.name;
|
|
4009
|
+
for (const child of this) {
|
|
4010
|
+
if (child.kind === "TokenGroup") {
|
|
4011
|
+
continue;
|
|
4012
|
+
}
|
|
4013
|
+
if (child.name === name) {
|
|
4014
|
+
return child;
|
|
4015
|
+
}
|
|
4016
|
+
}
|
|
4017
|
+
return null;
|
|
4018
|
+
}
|
|
4019
|
+
/**
|
|
4020
|
+
* Get all the unique groups in the token group, including this group
|
|
4021
|
+
* @returns {Array<TokenGroup>}
|
|
4022
|
+
*/
|
|
4023
|
+
getTokenGroups() {
|
|
4024
|
+
const set = /* @__PURE__ */ new Set();
|
|
4025
|
+
for (const child of this) {
|
|
4026
|
+
if (child.kind !== "TokenGroup") {
|
|
4027
|
+
continue;
|
|
4028
|
+
}
|
|
4029
|
+
set.add(child);
|
|
4030
|
+
}
|
|
4031
|
+
return Array.from(set);
|
|
4032
|
+
}
|
|
4033
|
+
/**
|
|
4034
|
+
* Get all the unique properties in the token group, including this group
|
|
4035
|
+
* @returns {Array<string>}
|
|
4036
|
+
*/
|
|
4037
|
+
getTokenProperties() {
|
|
4038
|
+
const set = /* @__PURE__ */ new Set();
|
|
4039
|
+
for (const child of this) {
|
|
4040
|
+
if (!Array.isArray(child.properties)) {
|
|
4041
|
+
continue;
|
|
4042
|
+
}
|
|
4043
|
+
for (const property of child.properties) {
|
|
4044
|
+
set.add(property);
|
|
4045
|
+
}
|
|
4046
|
+
}
|
|
4047
|
+
return Array.from(set);
|
|
4048
|
+
}
|
|
4049
|
+
/**
|
|
4050
|
+
* Get all the unique states in the token group, including this group
|
|
4051
|
+
* @returns {Array<string>}
|
|
4052
|
+
*/
|
|
4053
|
+
getTokenStates() {
|
|
4054
|
+
const set = /* @__PURE__ */ new Set();
|
|
4055
|
+
for (const child of this) {
|
|
4056
|
+
if (child.kind !== "Token") {
|
|
4057
|
+
continue;
|
|
4058
|
+
}
|
|
4059
|
+
if (child.state) {
|
|
4060
|
+
set.add(child.state);
|
|
4061
|
+
}
|
|
4062
|
+
}
|
|
4063
|
+
return Array.from(set);
|
|
4064
|
+
}
|
|
4065
|
+
}
|
|
4066
|
+
|
|
4067
|
+
class TokenSet {
|
|
4068
|
+
static create({ name, tokens }) {
|
|
4069
|
+
return new TokenSet(name, tokens);
|
|
4070
|
+
}
|
|
4071
|
+
constructor(name, tokens = []) {
|
|
4072
|
+
this.kind = "TokenSet";
|
|
4073
|
+
this.name = name;
|
|
4074
|
+
this.children = tokens;
|
|
4075
|
+
}
|
|
4076
|
+
*[Symbol.iterator]() {
|
|
4077
|
+
for (const child of this.children) {
|
|
4078
|
+
yield child;
|
|
4079
|
+
if (child.kind === "TokenSet") {
|
|
4080
|
+
yield* child;
|
|
4081
|
+
}
|
|
4082
|
+
}
|
|
4083
|
+
}
|
|
4084
|
+
getTokenSets() {
|
|
4085
|
+
const children = this.children.filter((child) => {
|
|
4086
|
+
return child.kind === "TokenSet";
|
|
4087
|
+
}).flatMap((child) => {
|
|
4088
|
+
return child.getTokenSets();
|
|
4089
|
+
});
|
|
4090
|
+
return [this, ...children];
|
|
4091
|
+
}
|
|
4092
|
+
getTokenSet(name) {
|
|
4093
|
+
for (const child of this) {
|
|
4094
|
+
if (!child.kind === "TokenSet") {
|
|
4095
|
+
continue;
|
|
4096
|
+
}
|
|
4097
|
+
if (child.name === name) {
|
|
4098
|
+
return child;
|
|
4099
|
+
}
|
|
4100
|
+
}
|
|
4101
|
+
return null;
|
|
4102
|
+
}
|
|
4103
|
+
hasToken(tokenOrName) {
|
|
4104
|
+
const name = typeof tokenOrName === "string" ? tokenOrName : tokenOrName.name;
|
|
4105
|
+
for (const child of this) {
|
|
4106
|
+
if (child.kind === "TokenSet") {
|
|
4107
|
+
continue;
|
|
4108
|
+
}
|
|
4109
|
+
if (child.name === name) {
|
|
4110
|
+
return true;
|
|
4111
|
+
}
|
|
4112
|
+
}
|
|
4113
|
+
return false;
|
|
4114
|
+
}
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4117
|
+
const background = TokenGroup.create({
|
|
4118
|
+
name: "Background",
|
|
4119
|
+
properties: ["background"],
|
|
4120
|
+
tokens: [
|
|
4121
|
+
"background",
|
|
4122
|
+
{
|
|
4123
|
+
name: "background-active",
|
|
4124
|
+
state: "active"
|
|
4125
|
+
},
|
|
4126
|
+
{
|
|
4127
|
+
name: "background-selected",
|
|
4128
|
+
state: "selected"
|
|
4129
|
+
},
|
|
4130
|
+
{
|
|
4131
|
+
name: "background-selected-hover",
|
|
4132
|
+
state: "hover"
|
|
4133
|
+
},
|
|
4134
|
+
{
|
|
4135
|
+
name: "background-hover",
|
|
4136
|
+
state: "hover"
|
|
4137
|
+
},
|
|
4138
|
+
"background-brand",
|
|
4139
|
+
"background-inverse",
|
|
4140
|
+
{
|
|
4141
|
+
state: "hover",
|
|
4142
|
+
name: "background-inverse-hover"
|
|
4143
|
+
}
|
|
4144
|
+
]
|
|
4145
|
+
});
|
|
4146
|
+
const layer = TokenGroup.create({
|
|
4147
|
+
name: "Layer",
|
|
4148
|
+
properties: ["background"],
|
|
4149
|
+
tokens: [
|
|
4150
|
+
{
|
|
4151
|
+
name: "layer-01"
|
|
4152
|
+
},
|
|
4153
|
+
{
|
|
4154
|
+
state: "active",
|
|
4155
|
+
name: "layer-active-01"
|
|
4156
|
+
},
|
|
4157
|
+
{
|
|
4158
|
+
state: "hover",
|
|
4159
|
+
name: "layer-hover-01"
|
|
4160
|
+
},
|
|
4161
|
+
{
|
|
4162
|
+
state: "selected",
|
|
4163
|
+
name: "layer-selected-01"
|
|
4164
|
+
},
|
|
4165
|
+
{
|
|
4166
|
+
state: "hover",
|
|
4167
|
+
name: "layer-selected-hover-01"
|
|
4168
|
+
},
|
|
4169
|
+
{
|
|
4170
|
+
name: "layer-02"
|
|
4171
|
+
},
|
|
4172
|
+
{
|
|
4173
|
+
state: "active",
|
|
4174
|
+
name: "layer-active-02"
|
|
4175
|
+
},
|
|
4176
|
+
{
|
|
4177
|
+
state: "hover",
|
|
4178
|
+
name: "layer-hover-02"
|
|
4179
|
+
},
|
|
4180
|
+
{
|
|
4181
|
+
state: "selected",
|
|
4182
|
+
name: "layer-selected-02"
|
|
4183
|
+
},
|
|
4184
|
+
{
|
|
4185
|
+
state: "hover",
|
|
4186
|
+
name: "layer-selected-hover-02"
|
|
4187
|
+
},
|
|
4188
|
+
{
|
|
4189
|
+
name: "layer-03"
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
state: "active",
|
|
4193
|
+
name: "layer-active-03"
|
|
4194
|
+
},
|
|
4195
|
+
{
|
|
4196
|
+
state: "hover",
|
|
4197
|
+
name: "layer-hover-03"
|
|
4198
|
+
},
|
|
4199
|
+
{
|
|
4200
|
+
state: "selected",
|
|
4201
|
+
name: "layer-selected-03"
|
|
4202
|
+
},
|
|
4203
|
+
{
|
|
4204
|
+
state: "hover",
|
|
4205
|
+
name: "layer-selected-hover-03"
|
|
4206
|
+
},
|
|
4207
|
+
{
|
|
4208
|
+
name: "layer-selected-inverse"
|
|
4209
|
+
},
|
|
4210
|
+
{
|
|
4211
|
+
state: "disabled",
|
|
4212
|
+
name: "layer-selected-disabled"
|
|
4213
|
+
},
|
|
4214
|
+
{
|
|
4215
|
+
name: "layer-accent-01"
|
|
4216
|
+
},
|
|
4217
|
+
{
|
|
4218
|
+
state: "active",
|
|
4219
|
+
name: "layer-accent-active-01"
|
|
4220
|
+
},
|
|
4221
|
+
{
|
|
4222
|
+
state: "hover",
|
|
4223
|
+
name: "layer-accent-hover-01"
|
|
4224
|
+
},
|
|
4225
|
+
{
|
|
4226
|
+
name: "layer-accent-02"
|
|
4227
|
+
},
|
|
4228
|
+
{
|
|
4229
|
+
state: "active",
|
|
4230
|
+
name: "layer-accent-active-02"
|
|
4231
|
+
},
|
|
4232
|
+
{
|
|
4233
|
+
state: "hover",
|
|
4234
|
+
name: "layer-accent-hover-02"
|
|
4235
|
+
},
|
|
4236
|
+
{
|
|
4237
|
+
name: "layer-accent-03"
|
|
4238
|
+
},
|
|
4239
|
+
{
|
|
4240
|
+
state: "active",
|
|
4241
|
+
name: "layer-accent-active-03"
|
|
4242
|
+
},
|
|
4243
|
+
{
|
|
4244
|
+
state: "hover",
|
|
4245
|
+
name: "layer-accent-hover-03"
|
|
4246
|
+
}
|
|
4247
|
+
]
|
|
4248
|
+
});
|
|
4249
|
+
const field = TokenGroup.create({
|
|
4250
|
+
name: "Field",
|
|
4251
|
+
properties: ["background"],
|
|
4252
|
+
tokens: [
|
|
4253
|
+
{
|
|
4254
|
+
name: "field-01"
|
|
4255
|
+
},
|
|
4256
|
+
{
|
|
4257
|
+
state: "hover",
|
|
4258
|
+
name: "field-hover-01"
|
|
4259
|
+
},
|
|
4260
|
+
{
|
|
4261
|
+
name: "field-02"
|
|
4262
|
+
},
|
|
4263
|
+
{
|
|
4264
|
+
state: "hover",
|
|
4265
|
+
name: "field-hover-02"
|
|
4266
|
+
},
|
|
4267
|
+
{
|
|
4268
|
+
name: "field-03"
|
|
4269
|
+
},
|
|
4270
|
+
{
|
|
4271
|
+
state: "hover",
|
|
4272
|
+
name: "field-hover-03"
|
|
4273
|
+
}
|
|
4274
|
+
]
|
|
4275
|
+
});
|
|
4276
|
+
const border = TokenGroup.create({
|
|
4277
|
+
name: "Borders",
|
|
4278
|
+
properties: ["border"],
|
|
4279
|
+
tokens: [
|
|
4280
|
+
{
|
|
4281
|
+
name: "border-subtle-00"
|
|
4282
|
+
},
|
|
4283
|
+
{
|
|
4284
|
+
name: "border-subtle-01"
|
|
4285
|
+
},
|
|
4286
|
+
{
|
|
4287
|
+
state: "selected",
|
|
4288
|
+
name: "border-subtle-selected-01"
|
|
4289
|
+
},
|
|
4290
|
+
{
|
|
4291
|
+
name: "border-subtle-02"
|
|
4292
|
+
},
|
|
4293
|
+
{
|
|
4294
|
+
state: "selected",
|
|
4295
|
+
name: "border-subtle-selected-02"
|
|
4296
|
+
},
|
|
4297
|
+
{
|
|
4298
|
+
name: "border-subtle-03"
|
|
4299
|
+
},
|
|
4300
|
+
{
|
|
4301
|
+
state: "selected",
|
|
4302
|
+
name: "border-subtle-selected-03"
|
|
4303
|
+
},
|
|
4304
|
+
// Border strong
|
|
4305
|
+
"border-strong-01",
|
|
4306
|
+
"border-strong-02",
|
|
4307
|
+
"border-strong-03",
|
|
4308
|
+
// Border tile
|
|
4309
|
+
"border-tile-01",
|
|
4310
|
+
"border-tile-02",
|
|
4311
|
+
"border-tile-03",
|
|
4312
|
+
// Border inverse
|
|
4313
|
+
"border-inverse",
|
|
4314
|
+
// Border interactive
|
|
4315
|
+
"border-interactive",
|
|
4316
|
+
{
|
|
4317
|
+
state: "disabled",
|
|
4318
|
+
name: "border-disabled"
|
|
4319
|
+
}
|
|
4320
|
+
]
|
|
4321
|
+
});
|
|
4322
|
+
const text = TokenGroup.create({
|
|
4323
|
+
name: "Text",
|
|
4324
|
+
properties: ["text"],
|
|
4325
|
+
tokens: [
|
|
4326
|
+
"text-primary",
|
|
4327
|
+
"text-secondary",
|
|
4328
|
+
"text-placeholder",
|
|
4329
|
+
"text-helper",
|
|
4330
|
+
"text-error",
|
|
4331
|
+
"text-inverse",
|
|
4332
|
+
{
|
|
4333
|
+
name: "text-on-color"
|
|
4334
|
+
},
|
|
4335
|
+
{
|
|
4336
|
+
state: "disabled",
|
|
4337
|
+
name: "text-on-color-disabled"
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
state: "disabled",
|
|
4341
|
+
name: "text-disabled"
|
|
4342
|
+
}
|
|
4343
|
+
]
|
|
4344
|
+
});
|
|
4345
|
+
const link = TokenGroup.create({
|
|
4346
|
+
name: "Link",
|
|
4347
|
+
properties: ["text"],
|
|
4348
|
+
tokens: [
|
|
4349
|
+
{
|
|
4350
|
+
name: "link-primary"
|
|
4351
|
+
},
|
|
4352
|
+
{
|
|
4353
|
+
state: "hover",
|
|
4354
|
+
name: "link-primary-hover"
|
|
4355
|
+
},
|
|
4356
|
+
"link-secondary",
|
|
4357
|
+
{
|
|
4358
|
+
state: "visited",
|
|
4359
|
+
name: "link-inverse-visited"
|
|
4360
|
+
},
|
|
4361
|
+
"link-visited",
|
|
4362
|
+
"link-inverse",
|
|
4363
|
+
"link-inverse-active",
|
|
4364
|
+
"link-inverse-hover"
|
|
4365
|
+
]
|
|
4366
|
+
});
|
|
4367
|
+
const icon = TokenGroup.create({
|
|
4368
|
+
name: "Icons",
|
|
4369
|
+
properties: ["background", "fill", "stroke"],
|
|
4370
|
+
tokens: [
|
|
4371
|
+
"icon-primary",
|
|
4372
|
+
"icon-secondary",
|
|
4373
|
+
"icon-inverse",
|
|
4374
|
+
{
|
|
4375
|
+
name: "icon-on-color"
|
|
4376
|
+
},
|
|
4377
|
+
{
|
|
4378
|
+
state: "disabled",
|
|
4379
|
+
name: "icon-on-color-disabled"
|
|
4380
|
+
},
|
|
4381
|
+
{
|
|
4382
|
+
state: "disabled",
|
|
4383
|
+
name: "icon-disabled"
|
|
4384
|
+
},
|
|
4385
|
+
"icon-interactive"
|
|
4386
|
+
]
|
|
4387
|
+
});
|
|
4388
|
+
const support = TokenGroup.create({
|
|
4389
|
+
name: "Support",
|
|
4390
|
+
properties: ["background", "fill", "stroke"],
|
|
4391
|
+
tokens: [
|
|
4392
|
+
"support-error",
|
|
4393
|
+
"support-success",
|
|
4394
|
+
"support-warning",
|
|
4395
|
+
"support-info",
|
|
4396
|
+
"support-error-inverse",
|
|
4397
|
+
"support-success-inverse",
|
|
4398
|
+
"support-warning-inverse",
|
|
4399
|
+
"support-info-inverse",
|
|
4400
|
+
"support-caution-major",
|
|
4401
|
+
"support-caution-minor",
|
|
4402
|
+
"support-caution-undefined"
|
|
4403
|
+
]
|
|
4404
|
+
});
|
|
4405
|
+
const focus = TokenGroup.create({
|
|
4406
|
+
name: "Focus",
|
|
4407
|
+
properties: ["border"],
|
|
4408
|
+
tokens: ["focus", "focus-inset", "focus-inverse"]
|
|
4409
|
+
});
|
|
4410
|
+
const skeleton = TokenGroup.create({
|
|
4411
|
+
name: "Skeleton",
|
|
4412
|
+
properties: ["background"],
|
|
4413
|
+
tokens: ["skeleton-background", "skeleton-element"]
|
|
4414
|
+
});
|
|
4415
|
+
const contextual = TokenGroup.create({
|
|
4416
|
+
name: "Contextual",
|
|
4417
|
+
properties: [],
|
|
4418
|
+
tokens: [
|
|
4419
|
+
"layer",
|
|
4420
|
+
"layer-active",
|
|
4421
|
+
"layer-hover",
|
|
4422
|
+
"layer-selected",
|
|
4423
|
+
"layer-selected-hover",
|
|
4424
|
+
"layer-accent",
|
|
4425
|
+
"layer-accent-hover",
|
|
4426
|
+
"layer-accent-active",
|
|
4427
|
+
"field",
|
|
4428
|
+
"field-hover",
|
|
4429
|
+
"border-subtle",
|
|
4430
|
+
"border-subtle-selected",
|
|
4431
|
+
"border-strong",
|
|
4432
|
+
"border-tile"
|
|
4433
|
+
]
|
|
4434
|
+
});
|
|
4435
|
+
const ai = TokenGroup.create({
|
|
4436
|
+
name: "AI",
|
|
4437
|
+
properties: ["background"],
|
|
4438
|
+
tokens: [
|
|
4439
|
+
// Phase 2
|
|
4440
|
+
"ai-popover-background",
|
|
4441
|
+
"ai-popover-shadow-outer-01",
|
|
4442
|
+
"ai-popover-shadow-outer-02",
|
|
4443
|
+
// Linear gradient refactor
|
|
4444
|
+
"ai-inner-shadow",
|
|
4445
|
+
"ai-aura-start-sm",
|
|
4446
|
+
"ai-aura-start",
|
|
4447
|
+
"ai-aura-end",
|
|
4448
|
+
"ai-aura-hover-background",
|
|
4449
|
+
"ai-aura-hover-start",
|
|
4450
|
+
"ai-aura-hover-end",
|
|
4451
|
+
"ai-border-strong",
|
|
4452
|
+
"ai-border-start",
|
|
4453
|
+
"ai-border-end",
|
|
4454
|
+
"ai-drop-shadow",
|
|
4455
|
+
"ai-skeleton-background",
|
|
4456
|
+
"ai-skeleton-element-background",
|
|
4457
|
+
"ai-overlay",
|
|
4458
|
+
// Caret tokens
|
|
4459
|
+
"ai-popover-caret-center",
|
|
4460
|
+
"ai-popover-caret-bottom",
|
|
4461
|
+
"ai-popover-caret-bottom-background",
|
|
4462
|
+
"ai-popover-caret-bottom-background-actions",
|
|
4463
|
+
// Chat tokens
|
|
4464
|
+
"chat-prompt-background",
|
|
4465
|
+
"chat-prompt-border-start",
|
|
4466
|
+
"chat-prompt-border-end",
|
|
4467
|
+
"chat-bubble-user",
|
|
4468
|
+
"chat-bubble-agent",
|
|
4469
|
+
"chat-bubble-border",
|
|
4470
|
+
"chat-avatar-bot",
|
|
4471
|
+
"chat-avatar-agent",
|
|
4472
|
+
"chat-avatar-user",
|
|
4473
|
+
"chat-shell-background",
|
|
4474
|
+
"chat-header-background",
|
|
4475
|
+
// Chat button tokens
|
|
4476
|
+
"chat-button",
|
|
4477
|
+
"chat-button-hover",
|
|
4478
|
+
"chat-button-text-hover",
|
|
4479
|
+
"chat-button-active",
|
|
4480
|
+
"chat-button-selected",
|
|
4481
|
+
"chat-button-text-selected"
|
|
4482
|
+
]
|
|
4483
|
+
});
|
|
4484
|
+
const group = TokenGroup.create({
|
|
4485
|
+
name: "All",
|
|
4486
|
+
tokens: [
|
|
4487
|
+
background,
|
|
4488
|
+
layer,
|
|
4489
|
+
field,
|
|
4490
|
+
// Interactive
|
|
4491
|
+
{
|
|
4492
|
+
name: "interactive",
|
|
4493
|
+
properties: ["background", "text"]
|
|
4494
|
+
},
|
|
4495
|
+
border,
|
|
4496
|
+
text,
|
|
4497
|
+
link,
|
|
4498
|
+
icon,
|
|
4499
|
+
support,
|
|
4500
|
+
ai,
|
|
4501
|
+
// Misc
|
|
4502
|
+
{
|
|
4503
|
+
name: "highlight"
|
|
4504
|
+
},
|
|
4505
|
+
{
|
|
4506
|
+
name: "overlay",
|
|
4507
|
+
properties: ["background"]
|
|
4508
|
+
},
|
|
4509
|
+
{
|
|
4510
|
+
name: "toggle-off"
|
|
4511
|
+
},
|
|
4512
|
+
{
|
|
4513
|
+
name: "shadow"
|
|
4514
|
+
},
|
|
4515
|
+
focus,
|
|
4516
|
+
skeleton
|
|
4517
|
+
]
|
|
4518
|
+
});
|
|
4519
|
+
|
|
4520
|
+
TokenSet.create({
|
|
4521
|
+
name: "All",
|
|
4522
|
+
tokens: [
|
|
4523
|
+
TokenSet.create({
|
|
4524
|
+
name: "Base set",
|
|
4525
|
+
tokens: [
|
|
4526
|
+
background.getToken("background"),
|
|
4527
|
+
background.getToken("background-hover"),
|
|
4528
|
+
background.getToken("background-selected"),
|
|
4529
|
+
background.getToken("background-selected-hover"),
|
|
4530
|
+
border.getToken("border-subtle-00")
|
|
4531
|
+
]
|
|
4532
|
+
}),
|
|
4533
|
+
TokenSet.create({
|
|
4534
|
+
name: "01 Layer set",
|
|
4535
|
+
tokens: [
|
|
4536
|
+
layer.getToken("layer-01"),
|
|
4537
|
+
layer.getToken("layer-active-01"),
|
|
4538
|
+
layer.getToken("layer-hover-01"),
|
|
4539
|
+
layer.getToken("layer-selected-hover-01"),
|
|
4540
|
+
layer.getToken("layer-accent-01"),
|
|
4541
|
+
layer.getToken("layer-accent-active-01"),
|
|
4542
|
+
layer.getToken("layer-accent-hover-01"),
|
|
4543
|
+
field.getToken("field-01"),
|
|
4544
|
+
field.getToken("field-hover-01"),
|
|
4545
|
+
border.getToken("border-subtle-01"),
|
|
4546
|
+
border.getToken("border-subtle-selected-01"),
|
|
4547
|
+
border.getToken("border-strong-01"),
|
|
4548
|
+
border.getToken("border-tile-01")
|
|
4549
|
+
]
|
|
4550
|
+
}),
|
|
4551
|
+
TokenSet.create({
|
|
4552
|
+
name: "02 Layer set",
|
|
4553
|
+
tokens: [
|
|
4554
|
+
layer.getToken("layer-02"),
|
|
4555
|
+
layer.getToken("layer-active-02"),
|
|
4556
|
+
layer.getToken("layer-hover-02"),
|
|
4557
|
+
layer.getToken("layer-selected-hover-02"),
|
|
4558
|
+
layer.getToken("layer-accent-02"),
|
|
4559
|
+
layer.getToken("layer-accent-active-02"),
|
|
4560
|
+
layer.getToken("layer-accent-hover-02"),
|
|
4561
|
+
field.getToken("field-02"),
|
|
4562
|
+
field.getToken("field-hover-02"),
|
|
4563
|
+
border.getToken("border-subtle-02"),
|
|
4564
|
+
border.getToken("border-subtle-selected-02"),
|
|
4565
|
+
border.getToken("border-strong-02"),
|
|
4566
|
+
border.getToken("border-tile-02")
|
|
4567
|
+
]
|
|
4568
|
+
}),
|
|
4569
|
+
TokenSet.create({
|
|
4570
|
+
name: "03 Layer set",
|
|
4571
|
+
tokens: [
|
|
4572
|
+
layer.getToken("layer-03"),
|
|
4573
|
+
layer.getToken("layer-active-03"),
|
|
4574
|
+
layer.getToken("layer-hover-03"),
|
|
4575
|
+
layer.getToken("layer-selected-hover-03"),
|
|
4576
|
+
layer.getToken("layer-accent-03"),
|
|
4577
|
+
layer.getToken("layer-accent-active-03"),
|
|
4578
|
+
layer.getToken("layer-accent-hover-03"),
|
|
4579
|
+
field.getToken("field-03"),
|
|
4580
|
+
field.getToken("field-hover-03"),
|
|
4581
|
+
border.getToken("border-subtle-03"),
|
|
4582
|
+
border.getToken("border-subtle-selected-03"),
|
|
4583
|
+
border.getToken("border-strong-03"),
|
|
4584
|
+
border.getToken("border-tile-03")
|
|
4585
|
+
]
|
|
4586
|
+
})
|
|
4587
|
+
]
|
|
4588
|
+
});
|
|
4589
|
+
|
|
4590
|
+
const button = TokenGroup.create({
|
|
4591
|
+
name: "Button",
|
|
4592
|
+
properties: [],
|
|
4593
|
+
tokens: [
|
|
4594
|
+
"button-separator",
|
|
4595
|
+
"button-primary",
|
|
4596
|
+
"button-secondary",
|
|
4597
|
+
"button-tertiary",
|
|
4598
|
+
"button-danger-primary",
|
|
4599
|
+
"button-danger-secondary",
|
|
4600
|
+
"button-danger-active",
|
|
4601
|
+
"button-primary-active",
|
|
4602
|
+
"button-secondary-active",
|
|
4603
|
+
"button-tertiary-active",
|
|
4604
|
+
"button-danger-hover",
|
|
4605
|
+
"button-primary-hover",
|
|
4606
|
+
"button-secondary-hover",
|
|
4607
|
+
"button-tertiary-hover",
|
|
4608
|
+
"button-disabled"
|
|
4609
|
+
]
|
|
4610
|
+
});
|
|
4611
|
+
const notification = TokenGroup.create({
|
|
4612
|
+
name: "Notification",
|
|
4613
|
+
properties: [],
|
|
4614
|
+
tokens: [
|
|
4615
|
+
"notification-background-error",
|
|
4616
|
+
"notification-background-success",
|
|
4617
|
+
"notification-background-info",
|
|
4618
|
+
"notification-background-warning",
|
|
4619
|
+
"notification-action-hover",
|
|
4620
|
+
"notification-action-tertiary-inverse",
|
|
4621
|
+
"notification-action-tertiary-inverse-active",
|
|
4622
|
+
"notification-action-tertiary-inverse-hover",
|
|
4623
|
+
"notification-action-tertiary-inverse-text",
|
|
4624
|
+
"notification-action-tertiary-inverse-text-on-color-disabled"
|
|
4625
|
+
]
|
|
4626
|
+
});
|
|
4627
|
+
const tag = TokenGroup.create({
|
|
4628
|
+
name: "Tag",
|
|
4629
|
+
properties: [],
|
|
4630
|
+
tokens: [
|
|
4631
|
+
"tag-background-red",
|
|
4632
|
+
"tag-color-red",
|
|
4633
|
+
"tag-hover-red",
|
|
4634
|
+
"tag-background-magenta",
|
|
4635
|
+
"tag-color-magenta",
|
|
4636
|
+
"tag-hover-magenta",
|
|
4637
|
+
"tag-background-purple",
|
|
4638
|
+
"tag-color-purple",
|
|
4639
|
+
"tag-hover-purple",
|
|
4640
|
+
"tag-background-blue",
|
|
4641
|
+
"tag-color-blue",
|
|
4642
|
+
"tag-hover-blue",
|
|
4643
|
+
"tag-background-cyan",
|
|
4644
|
+
"tag-color-cyan",
|
|
4645
|
+
"tag-hover-cyan",
|
|
4646
|
+
"tag-background-teal",
|
|
4647
|
+
"tag-color-teal",
|
|
4648
|
+
"tag-hover-teal",
|
|
4649
|
+
"tag-background-green",
|
|
4650
|
+
"tag-color-green",
|
|
4651
|
+
"tag-hover-green",
|
|
4652
|
+
"tag-background-gray",
|
|
4653
|
+
"tag-color-gray",
|
|
4654
|
+
"tag-hover-gray",
|
|
4655
|
+
"tag-border-red",
|
|
4656
|
+
"tag-border-blue",
|
|
4657
|
+
"tag-border-cyan",
|
|
4658
|
+
"tag-border-teal",
|
|
4659
|
+
"tag-border-green",
|
|
4660
|
+
"tag-border-magenta",
|
|
4661
|
+
"tag-border-purple",
|
|
4662
|
+
"tag-border-gray",
|
|
4663
|
+
"tag-border-cool-gray",
|
|
4664
|
+
"tag-border-warm-gray",
|
|
4665
|
+
"tag-background-cool-gray",
|
|
4666
|
+
"tag-color-cool-gray",
|
|
4667
|
+
"tag-hover-cool-gray",
|
|
4668
|
+
"tag-background-warm-gray",
|
|
4669
|
+
"tag-color-warm-gray",
|
|
4670
|
+
"tag-hover-warm-gray"
|
|
4671
|
+
]
|
|
4672
|
+
});
|
|
4673
|
+
|
|
4674
|
+
var components = /*#__PURE__*/Object.freeze({
|
|
4675
|
+
__proto__: null,
|
|
4676
|
+
button: button,
|
|
4677
|
+
notification: notification,
|
|
4678
|
+
tag: tag
|
|
4679
|
+
});
|
|
4680
|
+
|
|
4681
|
+
const type$1 = TokenGroup.create({
|
|
4682
|
+
name: "Type",
|
|
4683
|
+
properties: [],
|
|
4684
|
+
tokens: [
|
|
4685
|
+
"caption-01",
|
|
4686
|
+
"caption-02",
|
|
4687
|
+
"label-01",
|
|
4688
|
+
"label-02",
|
|
4689
|
+
"helper-text-01",
|
|
4690
|
+
"helper-text-02",
|
|
4691
|
+
"body-short-01",
|
|
4692
|
+
"body-long-01",
|
|
4693
|
+
"body-short-02",
|
|
4694
|
+
"body-long-02",
|
|
4695
|
+
"code-01",
|
|
4696
|
+
"code-02",
|
|
4697
|
+
"heading-01",
|
|
4698
|
+
"productive-heading-01",
|
|
4699
|
+
"heading-02",
|
|
4700
|
+
"productive-Heading-02",
|
|
4701
|
+
"productive-heading-03",
|
|
4702
|
+
"productive-heading-04",
|
|
4703
|
+
"productive-heading-05",
|
|
4704
|
+
"productive-heading-06",
|
|
4705
|
+
"productive-heading-07",
|
|
4706
|
+
"expressive-heading-01",
|
|
4707
|
+
"expressive-heading-02",
|
|
4708
|
+
"expressive-heading-03",
|
|
4709
|
+
"expressive-heading-04",
|
|
4710
|
+
"expressive-heading-05",
|
|
4711
|
+
"expressive-heading-06",
|
|
4712
|
+
"expressive-paragraph-01",
|
|
4713
|
+
"quotation-01",
|
|
4714
|
+
"quotation-02",
|
|
4715
|
+
"display-01",
|
|
4716
|
+
"display-02",
|
|
4717
|
+
"display-03",
|
|
4718
|
+
"display-04"
|
|
4719
|
+
]
|
|
4720
|
+
});
|
|
4721
|
+
|
|
4722
|
+
const layout$1 = TokenGroup.create({
|
|
4723
|
+
name: "Layout",
|
|
4724
|
+
properties: [],
|
|
4725
|
+
tokens: [
|
|
4726
|
+
"spacing-01",
|
|
4727
|
+
"spacing-02",
|
|
4728
|
+
"spacing-03",
|
|
4729
|
+
"spacing-04",
|
|
4730
|
+
"spacing-05",
|
|
4731
|
+
"spacing-06",
|
|
4732
|
+
"spacing-07",
|
|
4733
|
+
"spacing-08",
|
|
4734
|
+
"spacing-09",
|
|
4735
|
+
"spacing-10",
|
|
4736
|
+
"spacing-11",
|
|
4737
|
+
"spacing-12",
|
|
4738
|
+
"spacing-13",
|
|
4739
|
+
"fluid-spacing-01",
|
|
4740
|
+
"fluid-spacing-02",
|
|
4741
|
+
"fluid-spacing-03",
|
|
4742
|
+
"fluid-spacing-04",
|
|
4743
|
+
"container-01",
|
|
4744
|
+
"container-02",
|
|
4745
|
+
"container-03",
|
|
4746
|
+
"container-04",
|
|
4747
|
+
"container-05",
|
|
4748
|
+
"icon-size-01",
|
|
4749
|
+
"icon-size-02"
|
|
4750
|
+
]
|
|
4751
|
+
});
|
|
4752
|
+
|
|
4753
|
+
const color = TokenGroup.create({
|
|
4754
|
+
name: "Color",
|
|
4755
|
+
properties: [],
|
|
4756
|
+
tokens: [
|
|
4757
|
+
"interactive-01",
|
|
4758
|
+
"interactive-02",
|
|
4759
|
+
"interactive-03",
|
|
4760
|
+
"interactive-04",
|
|
4761
|
+
"ui-background",
|
|
4762
|
+
"ui-01",
|
|
4763
|
+
"ui-02",
|
|
4764
|
+
"ui-03",
|
|
4765
|
+
"ui-04",
|
|
4766
|
+
"ui-05",
|
|
4767
|
+
"text-01",
|
|
4768
|
+
"text-02",
|
|
4769
|
+
"text-03",
|
|
4770
|
+
"text-04",
|
|
4771
|
+
"text-05",
|
|
4772
|
+
"text-error",
|
|
4773
|
+
"icon-01",
|
|
4774
|
+
"icon-02",
|
|
4775
|
+
"icon-03",
|
|
4776
|
+
"link-01",
|
|
4777
|
+
"link-02",
|
|
4778
|
+
"inverse-link",
|
|
4779
|
+
"field-01",
|
|
4780
|
+
"field-02",
|
|
4781
|
+
"inverse-01",
|
|
4782
|
+
"inverse-02",
|
|
4783
|
+
"support-01",
|
|
4784
|
+
"support-02",
|
|
4785
|
+
"support-03",
|
|
4786
|
+
"support-04",
|
|
4787
|
+
"inverse-support-01",
|
|
4788
|
+
"inverse-support-02",
|
|
4789
|
+
"inverse-support-03",
|
|
4790
|
+
"inverse-support-04",
|
|
4791
|
+
"overlay-01",
|
|
4792
|
+
"danger-01",
|
|
4793
|
+
"danger-02",
|
|
4794
|
+
"focus",
|
|
4795
|
+
"inverse-focus-ui",
|
|
4796
|
+
"hover-primary",
|
|
4797
|
+
"active-primary",
|
|
4798
|
+
"hover-primary-text",
|
|
4799
|
+
"hover-secondary",
|
|
4800
|
+
"active-secondary",
|
|
4801
|
+
"hover-tertiary",
|
|
4802
|
+
"active-tertiary",
|
|
4803
|
+
"hover-ui",
|
|
4804
|
+
"hover-light-ui",
|
|
4805
|
+
"hover-selected-ui",
|
|
4806
|
+
"active-ui",
|
|
4807
|
+
"active-light-ui",
|
|
4808
|
+
"selected-ui",
|
|
4809
|
+
"selected-light-ui",
|
|
4810
|
+
"inverse-hover-ui",
|
|
4811
|
+
"hover-danger",
|
|
4812
|
+
"active-danger",
|
|
4813
|
+
"hover-row",
|
|
4814
|
+
"visited-link",
|
|
4815
|
+
"disabled-01",
|
|
4816
|
+
"disabled-02",
|
|
4817
|
+
"disabled-03",
|
|
4818
|
+
"highlight",
|
|
4819
|
+
"decorative-01",
|
|
4820
|
+
"button-separator",
|
|
4821
|
+
"skeleton-01",
|
|
4822
|
+
"skeleton-02",
|
|
4823
|
+
// deprecated
|
|
4824
|
+
"brand-01",
|
|
4825
|
+
"brand-02",
|
|
4826
|
+
"brand-03",
|
|
4827
|
+
"active-01",
|
|
4828
|
+
"hover-field",
|
|
4829
|
+
"danger"
|
|
4830
|
+
]
|
|
4831
|
+
});
|
|
4832
|
+
const type = TokenGroup.create({
|
|
4833
|
+
name: "Type",
|
|
4834
|
+
properties: [],
|
|
4835
|
+
tokens: [
|
|
4836
|
+
"caption-01",
|
|
4837
|
+
"caption-02",
|
|
4838
|
+
"label-01",
|
|
4839
|
+
"label-02",
|
|
4840
|
+
"helper-text-01",
|
|
4841
|
+
"helper-text-02",
|
|
4842
|
+
"body-short-01",
|
|
4843
|
+
"body-long-01",
|
|
4844
|
+
"body-short-02",
|
|
4845
|
+
"body-long-02",
|
|
4846
|
+
"code-01",
|
|
4847
|
+
"code-02",
|
|
4848
|
+
"heading-01",
|
|
4849
|
+
"productive-heading-01",
|
|
4850
|
+
"heading-02",
|
|
4851
|
+
"productive-Heading-02",
|
|
4852
|
+
"productive-heading-03",
|
|
4853
|
+
"productive-heading-04",
|
|
4854
|
+
"productive-heading-05",
|
|
4855
|
+
"productive-heading-06",
|
|
4856
|
+
"productive-heading-07",
|
|
4857
|
+
"expressive-heading-01",
|
|
4858
|
+
"expressive-heading-02",
|
|
4859
|
+
"expressive-heading-03",
|
|
4860
|
+
"expressive-heading-04",
|
|
4861
|
+
"expressive-heading-05",
|
|
4862
|
+
"expressive-heading-06",
|
|
4863
|
+
"expressive-paragraph-01",
|
|
4864
|
+
"quotation-01",
|
|
4865
|
+
"quotation-02",
|
|
4866
|
+
"display-01",
|
|
4867
|
+
"display-02",
|
|
4868
|
+
"display-03",
|
|
4869
|
+
"display-04"
|
|
4870
|
+
]
|
|
4871
|
+
});
|
|
4872
|
+
const layout = TokenGroup.create({
|
|
4873
|
+
name: "Layout",
|
|
4874
|
+
properties: [],
|
|
4875
|
+
tokens: [
|
|
4876
|
+
"spacing-01",
|
|
4877
|
+
"spacing-02",
|
|
4878
|
+
"spacing-03",
|
|
4879
|
+
"spacing-04",
|
|
4880
|
+
"spacing-05",
|
|
4881
|
+
"spacing-06",
|
|
4882
|
+
"spacing-07",
|
|
4883
|
+
"spacing-08",
|
|
4884
|
+
"spacing-09",
|
|
4885
|
+
"spacing-10",
|
|
4886
|
+
"spacing-11",
|
|
4887
|
+
"spacing-12",
|
|
4888
|
+
"spacing-13",
|
|
4889
|
+
"layout-01",
|
|
4890
|
+
"layout-02",
|
|
4891
|
+
"layout-03",
|
|
4892
|
+
"layout-04",
|
|
4893
|
+
"layout-05",
|
|
4894
|
+
"layout-06",
|
|
4895
|
+
"layout-07",
|
|
4896
|
+
"fluid-spacing-01",
|
|
4897
|
+
"fluid-spacing-02",
|
|
4898
|
+
"fluid-spacing-03",
|
|
4899
|
+
"fluid-spacing-04",
|
|
4900
|
+
"container-01",
|
|
4901
|
+
"container-02",
|
|
4902
|
+
"container-03",
|
|
4903
|
+
"container-04",
|
|
4904
|
+
"container-05",
|
|
4905
|
+
"icon-size-01",
|
|
4906
|
+
"icon-size-02"
|
|
4907
|
+
]
|
|
4908
|
+
});
|
|
4909
|
+
const v10 = [
|
|
4910
|
+
...color.getTokens().map((token) => {
|
|
4911
|
+
return {
|
|
4912
|
+
name: token.name,
|
|
4913
|
+
type: "color"
|
|
4914
|
+
};
|
|
4915
|
+
}),
|
|
4916
|
+
...type.getTokens().map((token) => {
|
|
4917
|
+
return {
|
|
4918
|
+
name: token.name,
|
|
4919
|
+
type: "type"
|
|
4920
|
+
};
|
|
4921
|
+
}),
|
|
4922
|
+
...layout.getTokens().map((token) => {
|
|
4923
|
+
return {
|
|
4924
|
+
name: token.name,
|
|
4925
|
+
type: "layout"
|
|
4926
|
+
};
|
|
4927
|
+
})
|
|
4928
|
+
];
|
|
4929
|
+
|
|
4930
|
+
const v11 = [
|
|
4931
|
+
// Base color tokens
|
|
4932
|
+
...group.getTokens().map((token) => {
|
|
4933
|
+
return {
|
|
4934
|
+
name: token.name,
|
|
4935
|
+
type: "color"
|
|
4936
|
+
};
|
|
4937
|
+
}),
|
|
4938
|
+
// Contextual tokens
|
|
4939
|
+
...contextual.getTokens().map((token) => {
|
|
4940
|
+
return {
|
|
4941
|
+
name: token.name,
|
|
4942
|
+
type: "color"
|
|
4943
|
+
};
|
|
4944
|
+
}),
|
|
4945
|
+
// Component tokens
|
|
4946
|
+
...Object.values(components).flatMap((group2) => {
|
|
4947
|
+
return group2.getTokens().map((token) => {
|
|
4948
|
+
return {
|
|
4949
|
+
name: token.name,
|
|
4950
|
+
type: "color"
|
|
4951
|
+
};
|
|
4952
|
+
});
|
|
4953
|
+
}),
|
|
4954
|
+
// Typography
|
|
4955
|
+
...type$1.getTokens().map((token) => {
|
|
4956
|
+
return {
|
|
4957
|
+
name: token.name,
|
|
4958
|
+
type: "type"
|
|
4959
|
+
};
|
|
4960
|
+
}),
|
|
4961
|
+
// Layout (spacing)
|
|
4962
|
+
...layout$1.getTokens().map((token) => {
|
|
4963
|
+
return {
|
|
4964
|
+
name: token.name,
|
|
4965
|
+
type: "layout"
|
|
4966
|
+
};
|
|
4967
|
+
})
|
|
4968
|
+
];
|
|
4969
|
+
const unstable_metadata = {
|
|
4970
|
+
v11,
|
|
4971
|
+
v10
|
|
4972
|
+
};
|
|
4973
|
+
|
|
4974
|
+
const themes = {
|
|
4975
|
+
white: white$1,
|
|
4976
|
+
g10: g10$1,
|
|
4977
|
+
g90: g90$1,
|
|
4978
|
+
g100: g100$1
|
|
4979
|
+
};
|
|
4980
|
+
|
|
4981
|
+
export { aiAuraEnd$3 as aiAuraEnd, aiAuraHoverBackground$3 as aiAuraHoverBackground, aiAuraHoverEnd$3 as aiAuraHoverEnd, aiAuraHoverStart$3 as aiAuraHoverStart, aiAuraStart$3 as aiAuraStart, aiAuraStartSm$3 as aiAuraStartSm, aiBorderEnd$3 as aiBorderEnd, aiBorderStart$3 as aiBorderStart, aiBorderStrong$3 as aiBorderStrong, aiDropShadow$3 as aiDropShadow, aiInnerShadow$3 as aiInnerShadow, aiOverlay$3 as aiOverlay, aiPopoverBackground$3 as aiPopoverBackground, aiPopoverCaretBottom$3 as aiPopoverCaretBottom, aiPopoverCaretBottomBackground$3 as aiPopoverCaretBottomBackground, aiPopoverCaretBottomBackgroundActions$3 as aiPopoverCaretBottomBackgroundActions, aiPopoverCaretCenter$3 as aiPopoverCaretCenter, aiPopoverShadowOuter01$3 as aiPopoverShadowOuter01, aiPopoverShadowOuter02$3 as aiPopoverShadowOuter02, aiSkeletonBackground$3 as aiSkeletonBackground, aiSkeletonElementBackground$3 as aiSkeletonElementBackground, background$8 as background, backgroundActive$7 as backgroundActive, backgroundBrand$7 as backgroundBrand, backgroundHover$7 as backgroundHover, backgroundInverse$7 as backgroundInverse, backgroundInverseHover$7 as backgroundInverseHover, backgroundSelected$7 as backgroundSelected, backgroundSelectedHover$7 as backgroundSelectedHover, borderDisabled$7 as borderDisabled, borderInteractive$7 as borderInteractive, borderInverse$7 as borderInverse, borderStrong01$3 as borderStrong01, borderStrong02$3 as borderStrong02, borderStrong03$3 as borderStrong03, borderSubtle00$3 as borderSubtle00, borderSubtle01$3 as borderSubtle01, borderSubtle02$3 as borderSubtle02, borderSubtle03$3 as borderSubtle03, borderSubtleSelected01$3 as borderSubtleSelected01, borderSubtleSelected02$3 as borderSubtleSelected02, borderSubtleSelected03$3 as borderSubtleSelected03, borderTile01$3 as borderTile01, borderTile02$3 as borderTile02, borderTile03$3 as borderTile03, index$2 as buttonTokens, chatAvatarAgent$3 as chatAvatarAgent, chatAvatarBot$3 as chatAvatarBot, chatAvatarUser$3 as chatAvatarUser, chatBubbleAgent$3 as chatBubbleAgent, chatBubbleBorder$3 as chatBubbleBorder, chatBubbleUser$3 as chatBubbleUser, chatButton$3 as chatButton, chatButtonActive$3 as chatButtonActive, chatButtonHover$3 as chatButtonHover, chatButtonSelected$3 as chatButtonSelected, chatButtonTextHover$3 as chatButtonTextHover, chatButtonTextSelected$3 as chatButtonTextSelected, chatHeaderBackground$3 as chatHeaderBackground, chatPromptBackground$3 as chatPromptBackground, chatPromptBorderEnd$3 as chatPromptBorderEnd, chatPromptBorderStart$3 as chatPromptBorderStart, chatShellBackground$3 as chatShellBackground, field01$7 as field01, field02$7 as field02, field03$3 as field03, fieldHover01$3 as fieldHover01, fieldHover02$3 as fieldHover02, fieldHover03$3 as fieldHover03, focus$8 as focus, focusInset$7 as focusInset, focusInverse$7 as focusInverse, formatTokenName, g10$1 as g10, g100$1 as g100, g90$1 as g90, highlight$7 as highlight, iconDisabled$7 as iconDisabled, iconInteractive$3 as iconInteractive, iconInverse$7 as iconInverse, iconOnColor$7 as iconOnColor, iconOnColorDisabled$7 as iconOnColorDisabled, iconPrimary$7 as iconPrimary, iconSecondary$7 as iconSecondary, interactive$7 as interactive, layer01$3 as layer01, layer02$3 as layer02, layer03$3 as layer03, layerAccent01$3 as layerAccent01, layerAccent02$3 as layerAccent02, layerAccent03$3 as layerAccent03, layerAccentActive01$3 as layerAccentActive01, layerAccentActive02$3 as layerAccentActive02, layerAccentActive03$3 as layerAccentActive03, layerAccentHover01$3 as layerAccentHover01, layerAccentHover02$3 as layerAccentHover02, layerAccentHover03$3 as layerAccentHover03, layerActive01$3 as layerActive01, layerActive02$3 as layerActive02, layerActive03$3 as layerActive03, layerHover01$3 as layerHover01, layerHover02$3 as layerHover02, layerHover03$3 as layerHover03, layerSelected01$3 as layerSelected01, layerSelected02$3 as layerSelected02, layerSelected03$3 as layerSelected03, layerSelectedDisabled$7 as layerSelectedDisabled, layerSelectedHover01$3 as layerSelectedHover01, layerSelectedHover02$3 as layerSelectedHover02, layerSelectedHover03$3 as layerSelectedHover03, layerSelectedInverse$7 as layerSelectedInverse, linkInverse$7 as linkInverse, linkInverseActive$3 as linkInverseActive, linkInverseHover$3 as linkInverseHover, linkInverseVisited$3 as linkInverseVisited, linkPrimary$7 as linkPrimary, linkPrimaryHover$7 as linkPrimaryHover, linkSecondary$7 as linkSecondary, linkVisited$7 as linkVisited, index as notificationTokens, overlay$7 as overlay, shadow$7 as shadow, skeletonBackground$7 as skeletonBackground, skeletonElement$7 as skeletonElement, supportCautionMajor$3 as supportCautionMajor, supportCautionMinor$3 as supportCautionMinor, supportCautionUndefined$3 as supportCautionUndefined, supportError$7 as supportError, supportErrorInverse$7 as supportErrorInverse, supportInfo$7 as supportInfo, supportInfoInverse$7 as supportInfoInverse, supportSuccess$7 as supportSuccess, supportSuccessInverse$7 as supportSuccessInverse, supportWarning$7 as supportWarning, supportWarningInverse$7 as supportWarningInverse, index$1 as tagTokens, textDisabled$7 as textDisabled, textError$7 as textError, textHelper$7 as textHelper, textInverse$7 as textInverse, textOnColor$7 as textOnColor, textOnColorDisabled$7 as textOnColorDisabled, textPlaceholder$7 as textPlaceholder, textPrimary$7 as textPrimary, textSecondary$7 as textSecondary, themes, toggleOff$7 as toggleOff, unstable_metadata, index$3 as v10, white$1 as white };
|