carbon-react 94.4.0 → 94.6.1
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/lib/components/accordion/accordion.component.js +22 -18
- package/lib/components/accordion/accordion.style.js +58 -42
- package/lib/components/button/button.component.js +2 -2
- package/lib/components/duelling-picklist/duelling-picklist-test.stories.js +573 -0
- package/lib/components/duelling-picklist/duelling-picklist.style.js +2 -12
- package/lib/components/duelling-picklist/picklist/picklist.style.js +3 -3
- package/lib/components/duelling-picklist/picklist-divider/picklist-divider.style.js +2 -2
- package/lib/components/duelling-picklist/picklist-group/picklist-group.component.js +1 -1
- package/lib/components/duelling-picklist/picklist-group/picklist-group.style.js +5 -1
- package/lib/style/design-tokens/carbon-global-tokens-provider/carbon-global-tokens-provider.component.js +25 -0
- package/lib/style/design-tokens/carbon-global-tokens-provider/index.js +15 -0
- package/lib/style/design-tokens/carbon-scoped-story-provider/carbon-scoped-tokens-provider.component.js +30 -0
- package/lib/style/design-tokens/carbon-scoped-story-provider/index.js +15 -0
- package/lib/style/design-tokens/debug-theme.util.js +51 -0
- package/lib/style/design-tokens/generate-css-variables.util.js +18 -0
- package/lib/style/design-tokens/theme-compatibility.util.js +705 -0
- package/lib/style/themes/base/index.js +7 -1
- package/lib/style/themes/index.d.ts +2 -1
- package/lib/style/themes/index.js +9 -1
- package/lib/style/themes/sage/index.js +18 -0
- package/package.json +3 -1
|
@@ -0,0 +1,705 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* Util that maps old theme properties to design tokens
|
|
11
|
+
* or assigns hardcoded values if equivalent does not
|
|
12
|
+
* exist in old theme.
|
|
13
|
+
*
|
|
14
|
+
* Its purpose is to provide new property values to
|
|
15
|
+
* old themes so both of them can be compatible.
|
|
16
|
+
*
|
|
17
|
+
* I see no other way, than hardcode those keys and
|
|
18
|
+
* assign them values. Hopefully this job will be
|
|
19
|
+
* done only once in the beginning.
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
22
|
+
var _default = theme => ({ ...theme,
|
|
23
|
+
metaName: "Base Theme",
|
|
24
|
+
metaPublic: "true",
|
|
25
|
+
colorsLogo: "#00D639",
|
|
26
|
+
colorsComponentsNavigation500: "#008146",
|
|
27
|
+
colorsComponentsNavigation600: "#006738",
|
|
28
|
+
colorsComponentsNavigation700: "#004D2A",
|
|
29
|
+
colorsComponentsNavigation1000: "#000000",
|
|
30
|
+
colorsComponentsNavigation000: "#FFFFFF",
|
|
31
|
+
colorsComponentsNavigationTransparent: "rgba(0,0,0,0)",
|
|
32
|
+
colorsUtilityMajor100: "#CCD6DB",
|
|
33
|
+
colorsUtilityMajor150: "#B3C2C9",
|
|
34
|
+
colorsUtilityMajor200: "#99ADB7",
|
|
35
|
+
colorsUtilityMajor300: "#668494",
|
|
36
|
+
colorsUtilityMajor400: "#335B70",
|
|
37
|
+
colorsUtilityMajor500: "#00324C",
|
|
38
|
+
colorsUtilityMajor800: "#00141E",
|
|
39
|
+
colorsUtilityMajor1000: "#000000",
|
|
40
|
+
colorsUtilityMajor000: "#FFFFFF",
|
|
41
|
+
colorsUtilityMajor025: "#F2F5F6",
|
|
42
|
+
colorsUtilityMajor050: "#E6EBED",
|
|
43
|
+
colorsUtilityMajor075: "#D9E0E4",
|
|
44
|
+
colorsUtilityMajorTransparent: "rgba(0,0,0,0)",
|
|
45
|
+
colorsUtilityDisabled400: "#F2F5F6",
|
|
46
|
+
colorsUtilityDisabled500: "#E6EBED",
|
|
47
|
+
colorsUtilityDisabled600: "#CCD6DB",
|
|
48
|
+
colorsUtilityReadOnly400: "#F2F5F6",
|
|
49
|
+
colorsUtilityReadOnly500: "#E6EBED",
|
|
50
|
+
colorsUtilityReadOnly600: "#CCD6DB",
|
|
51
|
+
colorsActionMajor150: "#B3D9C8",
|
|
52
|
+
colorsActionMajor500: theme.colors.primary,
|
|
53
|
+
colorsActionMajor600: theme.colors.secondary,
|
|
54
|
+
colorsActionMajor700: "#004D2A",
|
|
55
|
+
colorsActionMajor1000: "#000000",
|
|
56
|
+
colorsActionMajor000: "#FFFFFF",
|
|
57
|
+
colorsActionMajorTransparent: "rgba(0,0,0,0)",
|
|
58
|
+
colorsActionMinor100: "#E6EBED",
|
|
59
|
+
colorsActionMinor200: "#CCD6DB",
|
|
60
|
+
colorsActionMinor300: "#99ADB7",
|
|
61
|
+
colorsActionMinor400: "#668494",
|
|
62
|
+
colorsActionMinor500: "#335B70",
|
|
63
|
+
colorsActionMinor600: "#00324C",
|
|
64
|
+
colorsActionMinor1000: "#000000",
|
|
65
|
+
colorsActionMinor000: "#FFFFFF",
|
|
66
|
+
colorsActionMinor025: "#FAFBFB",
|
|
67
|
+
colorsActionMinor050: "#F2F5F6",
|
|
68
|
+
colorsActionMinorTransparent: "rgba(0,0,0,0)",
|
|
69
|
+
colorsActionDisabled400: "#F2F5F6",
|
|
70
|
+
colorsActionDisabled500: theme.colors.disabled.disabled,
|
|
71
|
+
colorsActionDisabled600: "#CCD6DB",
|
|
72
|
+
colorsActionReadOnly400: "#F2F5F6",
|
|
73
|
+
colorsActionReadOnly500: "#E6EBED",
|
|
74
|
+
colorsActionReadOnly600: "#CCD6DB",
|
|
75
|
+
colorsSemanticNeutral200: "#CCD6DB",
|
|
76
|
+
colorsSemanticNeutral500: "#335B70",
|
|
77
|
+
colorsSemanticNeutral600: "#00324C",
|
|
78
|
+
colorsSemanticNeutral1000: "#000000",
|
|
79
|
+
colorsSemanticNeutral000: "#FFFFFF",
|
|
80
|
+
colorsSemanticNeutralTransparent: "rgba(0,0,0,0)",
|
|
81
|
+
colorsSemanticFocus250: "#FFDA80",
|
|
82
|
+
colorsSemanticFocus500: theme.colors.focus,
|
|
83
|
+
colorsSemanticFocus1000: "#000000",
|
|
84
|
+
colorsSemanticFocus000: "#FFFFFF",
|
|
85
|
+
colorsSemanticFocusTransparent: "rgba(0,0,0,0)",
|
|
86
|
+
colorsSemanticPositive500: theme.colors.success,
|
|
87
|
+
colorsSemanticPositive600: "#006e1a",
|
|
88
|
+
colorsSemanticPositive1000: "#000000",
|
|
89
|
+
colorsSemanticPositive000: "#FFFFFF",
|
|
90
|
+
colorsSemanticPositiveTransparent: "rgba(0,0,0,0)",
|
|
91
|
+
colorsSemanticNegative500: theme.colors.error,
|
|
92
|
+
colorsSemanticNegative600: theme.colors.destructive.hover,
|
|
93
|
+
colorsSemanticNegative1000: "#000000",
|
|
94
|
+
colorsSemanticNegative000: "#FFFFFF",
|
|
95
|
+
colorsSemanticNegativeTransparent: "rgba(0,0,0,0)",
|
|
96
|
+
colorsSemanticCaution400: "#f28533",
|
|
97
|
+
colorsSemanticCaution500: theme.colors.warning,
|
|
98
|
+
colorsSemanticCaution600: "#bf5200",
|
|
99
|
+
colorsSemanticCaution1000: "#000000",
|
|
100
|
+
colorsSemanticCaution000: "#FFFFFF",
|
|
101
|
+
colorsSemanticCautionTransparent: "rgba(0,0,0,0)",
|
|
102
|
+
colorsSemanticInfo150: "#b3cfe5",
|
|
103
|
+
colorsSemanticInfo500: theme.colors.info,
|
|
104
|
+
colorsSemanticInfo600: "#004d86",
|
|
105
|
+
colorsSemanticInfo1000: "#000000",
|
|
106
|
+
colorsSemanticInfo000: "#FFFFFF",
|
|
107
|
+
colorsSemanticInfoTransparent: "rgba(0,0,0,0)",
|
|
108
|
+
sizing10: "1px",
|
|
109
|
+
sizing100: "8px",
|
|
110
|
+
sizing125: "10px",
|
|
111
|
+
sizing150: "12px",
|
|
112
|
+
sizing175: "14px",
|
|
113
|
+
sizing200: "16px",
|
|
114
|
+
sizing250: "20px",
|
|
115
|
+
sizing300: "24px",
|
|
116
|
+
sizing350: "28px",
|
|
117
|
+
sizing375: "30px",
|
|
118
|
+
sizing400: "32px",
|
|
119
|
+
sizing500: "40px",
|
|
120
|
+
sizing600: "48px",
|
|
121
|
+
sizing700: "56px",
|
|
122
|
+
sizing800: "64px",
|
|
123
|
+
sizing900: "72px",
|
|
124
|
+
sizing1000: "80px",
|
|
125
|
+
sizing025: "2px",
|
|
126
|
+
sizing050: "4px",
|
|
127
|
+
sizing075: "6px",
|
|
128
|
+
sizingLogowidth: "40px",
|
|
129
|
+
spacing000: theme.space[0],
|
|
130
|
+
// 0px
|
|
131
|
+
spacing025: "2px",
|
|
132
|
+
spacing050: "4px",
|
|
133
|
+
spacing075: "6px",
|
|
134
|
+
spacing100: theme.space[1],
|
|
135
|
+
// 8px
|
|
136
|
+
spacing125: "10px",
|
|
137
|
+
spacing150: "12px",
|
|
138
|
+
spacing200: theme.space[2],
|
|
139
|
+
// 16px
|
|
140
|
+
spacing250: "20px",
|
|
141
|
+
spacing300: theme.space[3],
|
|
142
|
+
// 24px
|
|
143
|
+
spacing400: theme.space[4],
|
|
144
|
+
// 32px
|
|
145
|
+
spacing500: theme.space[5],
|
|
146
|
+
// 40px
|
|
147
|
+
spacing600: theme.space[6],
|
|
148
|
+
// 48px
|
|
149
|
+
spacing700: theme.space[7],
|
|
150
|
+
// 56px
|
|
151
|
+
spacing800: theme.space[8],
|
|
152
|
+
// 64px
|
|
153
|
+
spacing900: theme.space[9],
|
|
154
|
+
// 72px
|
|
155
|
+
borderWidth100: "1px",
|
|
156
|
+
borderWidth200: "2px",
|
|
157
|
+
borderWidth300: "3px",
|
|
158
|
+
borderWidth400: "4px",
|
|
159
|
+
borderWidth000: "0px",
|
|
160
|
+
fontSizes100: theme.text.size,
|
|
161
|
+
fontSizes200: "16px",
|
|
162
|
+
fontSizes300: "18px",
|
|
163
|
+
fontSizes400: "20px",
|
|
164
|
+
fontSizes500: "22px",
|
|
165
|
+
fontSizes600: "24px",
|
|
166
|
+
fontSizes700: "32px",
|
|
167
|
+
fontSizes800: "48px",
|
|
168
|
+
fontSizes900: "56px",
|
|
169
|
+
fontSizes1000: "64px",
|
|
170
|
+
fontSizes010: "10px",
|
|
171
|
+
fontSizes025: "12px",
|
|
172
|
+
fontSizes050: "13px",
|
|
173
|
+
boxShadow100: {
|
|
174
|
+
x: "0",
|
|
175
|
+
y: "10px",
|
|
176
|
+
blur: "10px",
|
|
177
|
+
spread: "0",
|
|
178
|
+
color: "rgba(0,20,29,0.1)"
|
|
179
|
+
},
|
|
180
|
+
boxShadow200: {
|
|
181
|
+
x: "0",
|
|
182
|
+
y: "20px",
|
|
183
|
+
blur: "40px",
|
|
184
|
+
spread: "0",
|
|
185
|
+
color: "rgba(0,20,29,0.1)"
|
|
186
|
+
},
|
|
187
|
+
boxShadow300: {
|
|
188
|
+
x: "0",
|
|
189
|
+
y: "30px",
|
|
190
|
+
blur: "60px",
|
|
191
|
+
spread: "0",
|
|
192
|
+
color: "rgba(0,20,29,0.1)"
|
|
193
|
+
},
|
|
194
|
+
boxShadow400: {
|
|
195
|
+
x: "0",
|
|
196
|
+
y: "50px",
|
|
197
|
+
blur: "80px",
|
|
198
|
+
spread: "0",
|
|
199
|
+
color: "rgba(0,20,29,0.1)"
|
|
200
|
+
},
|
|
201
|
+
opacity100: "10%",
|
|
202
|
+
opacity200: "20%",
|
|
203
|
+
opacity300: "30%",
|
|
204
|
+
opacity400: "40%",
|
|
205
|
+
opacity500: "50%",
|
|
206
|
+
opacity550: "55%",
|
|
207
|
+
opacity600: "60%",
|
|
208
|
+
opacity650: "65%",
|
|
209
|
+
opacity700: "70%",
|
|
210
|
+
opacity800: "80%",
|
|
211
|
+
opacity900: "90%",
|
|
212
|
+
fontWeights400: "Regular Beta",
|
|
213
|
+
fontWeights500: "Medium Beta",
|
|
214
|
+
fontWeights600: "SemiBold Beta",
|
|
215
|
+
fontWeights700: "Bold Beta",
|
|
216
|
+
lineHeights400: "125%",
|
|
217
|
+
lineHeights500: "150%",
|
|
218
|
+
fontFamiliesDefault: "Sage UI",
|
|
219
|
+
fontFamiliesIos: "San Francisco",
|
|
220
|
+
fontFamiliesAndroid: "Roboto",
|
|
221
|
+
fontFamiliesOther: "Open Sans",
|
|
222
|
+
borderRadiusCircle: "50%",
|
|
223
|
+
typographyButtonLabelS: {
|
|
224
|
+
fontFamily: "Sage UI",
|
|
225
|
+
fontWeight: "Bold Beta",
|
|
226
|
+
lineHeight: "150%",
|
|
227
|
+
fontSize: "14px",
|
|
228
|
+
letterSpacing: "0%",
|
|
229
|
+
paragraphSpacing: "0px"
|
|
230
|
+
},
|
|
231
|
+
typographyButtonLabelM: {
|
|
232
|
+
fontFamily: "Sage UI",
|
|
233
|
+
fontWeight: "Bold Beta",
|
|
234
|
+
lineHeight: "150%",
|
|
235
|
+
fontSize: "14px",
|
|
236
|
+
letterSpacing: "0%",
|
|
237
|
+
paragraphSpacing: "0px"
|
|
238
|
+
},
|
|
239
|
+
typographyButtonLabelL: {
|
|
240
|
+
fontFamily: "Sage UI",
|
|
241
|
+
fontWeight: "Bold Beta",
|
|
242
|
+
lineHeight: "150%",
|
|
243
|
+
fontSize: "16px",
|
|
244
|
+
letterSpacing: "0%",
|
|
245
|
+
paragraphSpacing: "0px"
|
|
246
|
+
},
|
|
247
|
+
typographyDialogTitleXs: {
|
|
248
|
+
fontFamily: "Sage UI",
|
|
249
|
+
fontWeight: "Bold Beta",
|
|
250
|
+
lineHeight: "125%",
|
|
251
|
+
fontSize: "20px",
|
|
252
|
+
letterSpacing: "0%",
|
|
253
|
+
paragraphSpacing: "0px"
|
|
254
|
+
},
|
|
255
|
+
typographyDialogTitleS: {
|
|
256
|
+
fontFamily: "Sage UI",
|
|
257
|
+
fontWeight: "Bold Beta",
|
|
258
|
+
lineHeight: "125%",
|
|
259
|
+
fontSize: "20px",
|
|
260
|
+
letterSpacing: "0%",
|
|
261
|
+
paragraphSpacing: "0px"
|
|
262
|
+
},
|
|
263
|
+
typographyDialogTitleMs: {
|
|
264
|
+
fontFamily: "Sage UI",
|
|
265
|
+
fontWeight: "Bold Beta",
|
|
266
|
+
lineHeight: "125%",
|
|
267
|
+
fontSize: "20px",
|
|
268
|
+
letterSpacing: "0%",
|
|
269
|
+
paragraphSpacing: "0px"
|
|
270
|
+
},
|
|
271
|
+
typographyDialogTitleM: {
|
|
272
|
+
fontFamily: "Sage UI",
|
|
273
|
+
fontWeight: "Bold Beta",
|
|
274
|
+
lineHeight: "125%",
|
|
275
|
+
fontSize: "20px",
|
|
276
|
+
letterSpacing: "0%",
|
|
277
|
+
paragraphSpacing: "0px"
|
|
278
|
+
},
|
|
279
|
+
typographyDialogTitleMl: {
|
|
280
|
+
fontFamily: "Sage UI",
|
|
281
|
+
fontWeight: "Bold Beta",
|
|
282
|
+
lineHeight: "125%",
|
|
283
|
+
fontSize: "20px",
|
|
284
|
+
letterSpacing: "0%",
|
|
285
|
+
paragraphSpacing: "0px"
|
|
286
|
+
},
|
|
287
|
+
typographyDialogTitleL: {
|
|
288
|
+
fontFamily: "Sage UI",
|
|
289
|
+
fontWeight: "Bold Beta",
|
|
290
|
+
lineHeight: "125%",
|
|
291
|
+
fontSize: "20px",
|
|
292
|
+
letterSpacing: "0%",
|
|
293
|
+
paragraphSpacing: "0px"
|
|
294
|
+
},
|
|
295
|
+
typographyDialogTitleXl: {
|
|
296
|
+
fontFamily: "Sage UI",
|
|
297
|
+
fontWeight: "Bold Beta",
|
|
298
|
+
lineHeight: "125%",
|
|
299
|
+
fontSize: "20px",
|
|
300
|
+
letterSpacing: "0%",
|
|
301
|
+
paragraphSpacing: "0px"
|
|
302
|
+
},
|
|
303
|
+
typographyFlashTextM: {
|
|
304
|
+
fontFamily: "Sage UI",
|
|
305
|
+
fontWeight: "Regular Beta",
|
|
306
|
+
lineHeight: "150%",
|
|
307
|
+
fontSize: "14px",
|
|
308
|
+
letterSpacing: "0%",
|
|
309
|
+
paragraphSpacing: "0px"
|
|
310
|
+
},
|
|
311
|
+
typographyFlashTextL: {
|
|
312
|
+
fontFamily: "Sage UI",
|
|
313
|
+
fontWeight: "Regular Beta",
|
|
314
|
+
lineHeight: "150%",
|
|
315
|
+
fontSize: "16px",
|
|
316
|
+
letterSpacing: "0%",
|
|
317
|
+
paragraphSpacing: "0px"
|
|
318
|
+
},
|
|
319
|
+
typographyFormFieldLabelXs: {
|
|
320
|
+
fontFamily: "Sage UI",
|
|
321
|
+
fontWeight: "Medium Beta",
|
|
322
|
+
lineHeight: "150%",
|
|
323
|
+
fontSize: "14px",
|
|
324
|
+
letterSpacing: "0%",
|
|
325
|
+
paragraphSpacing: "0px"
|
|
326
|
+
},
|
|
327
|
+
typographyFormFieldLabelS: {
|
|
328
|
+
fontFamily: "Sage UI",
|
|
329
|
+
fontWeight: "Medium Beta",
|
|
330
|
+
lineHeight: "150%",
|
|
331
|
+
fontSize: "14px",
|
|
332
|
+
letterSpacing: "0%",
|
|
333
|
+
paragraphSpacing: "0px"
|
|
334
|
+
},
|
|
335
|
+
typographyFormFieldLabelM: {
|
|
336
|
+
fontFamily: "Sage UI",
|
|
337
|
+
fontWeight: "Medium Beta",
|
|
338
|
+
lineHeight: "150%",
|
|
339
|
+
fontSize: "14px",
|
|
340
|
+
letterSpacing: "0%",
|
|
341
|
+
paragraphSpacing: "0px"
|
|
342
|
+
},
|
|
343
|
+
typographyFormFieldLabelL: {
|
|
344
|
+
fontFamily: "Sage UI",
|
|
345
|
+
fontWeight: "Medium Beta",
|
|
346
|
+
lineHeight: "150%",
|
|
347
|
+
fontSize: "16px",
|
|
348
|
+
letterSpacing: "0%",
|
|
349
|
+
paragraphSpacing: "0px"
|
|
350
|
+
},
|
|
351
|
+
typographyFormFieldHintTextXs: {
|
|
352
|
+
fontFamily: "Sage UI",
|
|
353
|
+
fontWeight: "Regular Beta",
|
|
354
|
+
lineHeight: "150%",
|
|
355
|
+
fontSize: "14px",
|
|
356
|
+
letterSpacing: "0%",
|
|
357
|
+
paragraphSpacing: "0px"
|
|
358
|
+
},
|
|
359
|
+
typographyFormFieldHintTextS: {
|
|
360
|
+
fontFamily: "Sage UI",
|
|
361
|
+
fontWeight: "Regular Beta",
|
|
362
|
+
lineHeight: "150%",
|
|
363
|
+
fontSize: "14px",
|
|
364
|
+
letterSpacing: "0%",
|
|
365
|
+
paragraphSpacing: "0px"
|
|
366
|
+
},
|
|
367
|
+
typographyFormFieldHintTextM: {
|
|
368
|
+
fontFamily: "Sage UI",
|
|
369
|
+
fontWeight: "Regular Beta",
|
|
370
|
+
lineHeight: "150%",
|
|
371
|
+
fontSize: "14px",
|
|
372
|
+
letterSpacing: "0%",
|
|
373
|
+
paragraphSpacing: "0px"
|
|
374
|
+
},
|
|
375
|
+
typographyFormFieldHintTextL: {
|
|
376
|
+
fontFamily: "Sage UI",
|
|
377
|
+
fontWeight: "Regular Beta",
|
|
378
|
+
lineHeight: "150%",
|
|
379
|
+
fontSize: "16px",
|
|
380
|
+
letterSpacing: "0%",
|
|
381
|
+
paragraphSpacing: "0px"
|
|
382
|
+
},
|
|
383
|
+
typographyFormFieldErrorMessageXs: {
|
|
384
|
+
fontFamily: "Sage UI",
|
|
385
|
+
fontWeight: "Medium Beta",
|
|
386
|
+
lineHeight: "150%",
|
|
387
|
+
fontSize: "14px",
|
|
388
|
+
letterSpacing: "0%",
|
|
389
|
+
paragraphSpacing: "0px"
|
|
390
|
+
},
|
|
391
|
+
typographyFormFieldErrorMessageS: {
|
|
392
|
+
fontFamily: "Sage UI",
|
|
393
|
+
fontWeight: "Medium Beta",
|
|
394
|
+
lineHeight: "150%",
|
|
395
|
+
fontSize: "14px",
|
|
396
|
+
letterSpacing: "0%",
|
|
397
|
+
paragraphSpacing: "0px"
|
|
398
|
+
},
|
|
399
|
+
typographyFormFieldErrorMessageM: {
|
|
400
|
+
fontFamily: "Sage UI",
|
|
401
|
+
fontWeight: "Medium Beta",
|
|
402
|
+
lineHeight: "150%",
|
|
403
|
+
fontSize: "14px",
|
|
404
|
+
letterSpacing: "0%",
|
|
405
|
+
paragraphSpacing: "0px"
|
|
406
|
+
},
|
|
407
|
+
typographyFormFieldErrorMessageL: {
|
|
408
|
+
fontFamily: "Sage UI",
|
|
409
|
+
fontWeight: "Medium Beta",
|
|
410
|
+
lineHeight: "150%",
|
|
411
|
+
fontSize: "16px",
|
|
412
|
+
letterSpacing: "0%",
|
|
413
|
+
paragraphSpacing: "0px"
|
|
414
|
+
},
|
|
415
|
+
typographyFormFieldCautionMessageXs: {
|
|
416
|
+
fontFamily: "Sage UI",
|
|
417
|
+
fontWeight: "Regular Beta",
|
|
418
|
+
lineHeight: "150%",
|
|
419
|
+
fontSize: "14px",
|
|
420
|
+
letterSpacing: "0%",
|
|
421
|
+
paragraphSpacing: "0px"
|
|
422
|
+
},
|
|
423
|
+
typographyFormFieldCautionMessageS: {
|
|
424
|
+
fontFamily: "Sage UI",
|
|
425
|
+
fontWeight: "Regular Beta",
|
|
426
|
+
lineHeight: "150%",
|
|
427
|
+
fontSize: "14px",
|
|
428
|
+
letterSpacing: "0%",
|
|
429
|
+
paragraphSpacing: "0px"
|
|
430
|
+
},
|
|
431
|
+
typographyFormFieldCautionMessageM: {
|
|
432
|
+
fontFamily: "Sage UI",
|
|
433
|
+
fontWeight: "Regular Beta",
|
|
434
|
+
lineHeight: "150%",
|
|
435
|
+
fontSize: "14px",
|
|
436
|
+
letterSpacing: "0%",
|
|
437
|
+
paragraphSpacing: "0px"
|
|
438
|
+
},
|
|
439
|
+
typographyFormFieldCautionMessageL: {
|
|
440
|
+
fontFamily: "Sage UI",
|
|
441
|
+
fontWeight: "Regular Beta",
|
|
442
|
+
lineHeight: "150%",
|
|
443
|
+
fontSize: "16px",
|
|
444
|
+
letterSpacing: "0%",
|
|
445
|
+
paragraphSpacing: "0px"
|
|
446
|
+
},
|
|
447
|
+
typographyFormFieldInputTextXs: {
|
|
448
|
+
fontFamily: "Sage UI",
|
|
449
|
+
fontWeight: "Regular Beta",
|
|
450
|
+
lineHeight: "150%",
|
|
451
|
+
fontSize: "14px",
|
|
452
|
+
letterSpacing: "0%",
|
|
453
|
+
paragraphSpacing: "0px"
|
|
454
|
+
},
|
|
455
|
+
typographyFormFieldInputTextS: {
|
|
456
|
+
fontFamily: "Sage UI",
|
|
457
|
+
fontWeight: "Regular Beta",
|
|
458
|
+
lineHeight: "150%",
|
|
459
|
+
fontSize: "14px",
|
|
460
|
+
letterSpacing: "0%",
|
|
461
|
+
paragraphSpacing: "0px"
|
|
462
|
+
},
|
|
463
|
+
typographyFormFieldInputTextM: {
|
|
464
|
+
fontFamily: "Sage UI",
|
|
465
|
+
fontWeight: "Regular Beta",
|
|
466
|
+
lineHeight: "150%",
|
|
467
|
+
fontSize: "14px",
|
|
468
|
+
letterSpacing: "0%",
|
|
469
|
+
paragraphSpacing: "0px"
|
|
470
|
+
},
|
|
471
|
+
typographyFormFieldInputTextL: {
|
|
472
|
+
fontFamily: "Sage UI",
|
|
473
|
+
fontWeight: "Regular Beta",
|
|
474
|
+
lineHeight: "150%",
|
|
475
|
+
fontSize: "16px",
|
|
476
|
+
letterSpacing: "0%",
|
|
477
|
+
paragraphSpacing: "0px"
|
|
478
|
+
},
|
|
479
|
+
typographyFormFieldDropdownOptionsXs: {
|
|
480
|
+
fontFamily: "Sage UI",
|
|
481
|
+
fontWeight: "Regular Beta",
|
|
482
|
+
lineHeight: "150%",
|
|
483
|
+
fontSize: "14px",
|
|
484
|
+
letterSpacing: "0%",
|
|
485
|
+
paragraphSpacing: "0px"
|
|
486
|
+
},
|
|
487
|
+
typographyFormFieldDropdownOptionsS: {
|
|
488
|
+
fontFamily: "Sage UI",
|
|
489
|
+
fontWeight: "Regular Beta",
|
|
490
|
+
lineHeight: "150%",
|
|
491
|
+
fontSize: "14px",
|
|
492
|
+
letterSpacing: "0%",
|
|
493
|
+
paragraphSpacing: "0px"
|
|
494
|
+
},
|
|
495
|
+
typographyFormFieldDropdownOptionsM: {
|
|
496
|
+
fontFamily: "Sage UI",
|
|
497
|
+
fontWeight: "Regular Beta",
|
|
498
|
+
lineHeight: "150%",
|
|
499
|
+
fontSize: "14px",
|
|
500
|
+
letterSpacing: "0%",
|
|
501
|
+
paragraphSpacing: "0px"
|
|
502
|
+
},
|
|
503
|
+
typographyFormFieldDropdownOptionsL: {
|
|
504
|
+
fontFamily: "Sage UI",
|
|
505
|
+
fontWeight: "Regular Beta",
|
|
506
|
+
lineHeight: "150%",
|
|
507
|
+
fontSize: "16px",
|
|
508
|
+
letterSpacing: "0%",
|
|
509
|
+
paragraphSpacing: "0px"
|
|
510
|
+
},
|
|
511
|
+
typographyFormFieldSecondLabelXs: {
|
|
512
|
+
fontFamily: "Sage UI",
|
|
513
|
+
fontWeight: "Medium Beta",
|
|
514
|
+
lineHeight: "150%",
|
|
515
|
+
fontSize: "14px",
|
|
516
|
+
letterSpacing: "0%",
|
|
517
|
+
paragraphSpacing: "0px"
|
|
518
|
+
},
|
|
519
|
+
typographyFormFieldSecondLabelS: {
|
|
520
|
+
fontFamily: "Sage UI",
|
|
521
|
+
fontWeight: "Medium Beta",
|
|
522
|
+
lineHeight: "150%",
|
|
523
|
+
fontSize: "14px",
|
|
524
|
+
letterSpacing: "0%",
|
|
525
|
+
paragraphSpacing: "0px"
|
|
526
|
+
},
|
|
527
|
+
typographyFormFieldSecondLabelM: {
|
|
528
|
+
fontFamily: "Sage UI",
|
|
529
|
+
fontWeight: "Medium Beta",
|
|
530
|
+
lineHeight: "150%",
|
|
531
|
+
fontSize: "14px",
|
|
532
|
+
letterSpacing: "0%",
|
|
533
|
+
paragraphSpacing: "0px"
|
|
534
|
+
},
|
|
535
|
+
typographyFormFieldSecondLabelL: {
|
|
536
|
+
fontFamily: "Sage UI",
|
|
537
|
+
fontWeight: "Medium Beta",
|
|
538
|
+
lineHeight: "150%",
|
|
539
|
+
fontSize: "16px",
|
|
540
|
+
letterSpacing: "0%",
|
|
541
|
+
paragraphSpacing: "0px"
|
|
542
|
+
},
|
|
543
|
+
typographyFormFieldCharacterCountXs: {
|
|
544
|
+
fontFamily: "Sage UI",
|
|
545
|
+
fontWeight: "Regular Beta",
|
|
546
|
+
lineHeight: "150%",
|
|
547
|
+
fontSize: "14px",
|
|
548
|
+
letterSpacing: "0%",
|
|
549
|
+
paragraphSpacing: "0px"
|
|
550
|
+
},
|
|
551
|
+
typographyFormFieldCharacterCountS: {
|
|
552
|
+
fontFamily: "Sage UI",
|
|
553
|
+
fontWeight: "Regular Beta",
|
|
554
|
+
lineHeight: "150%",
|
|
555
|
+
fontSize: "14px",
|
|
556
|
+
letterSpacing: "0%",
|
|
557
|
+
paragraphSpacing: "0px"
|
|
558
|
+
},
|
|
559
|
+
typographyFormFieldCharacterCountM: {
|
|
560
|
+
fontFamily: "Sage UI",
|
|
561
|
+
lineHeight: "150%",
|
|
562
|
+
fontWeight: "Regular Beta",
|
|
563
|
+
fontSize: "14px",
|
|
564
|
+
letterSpacing: "0%",
|
|
565
|
+
paragraphSpacing: "0px"
|
|
566
|
+
},
|
|
567
|
+
typographyFormFieldCharacterCountL: {
|
|
568
|
+
fontFamily: "Sage UI",
|
|
569
|
+
fontWeight: "Regular Beta",
|
|
570
|
+
lineHeight: "150%",
|
|
571
|
+
fontSize: "14px",
|
|
572
|
+
letterSpacing: "0%",
|
|
573
|
+
paragraphSpacing: "0px"
|
|
574
|
+
},
|
|
575
|
+
typographyLinkTextM: {
|
|
576
|
+
fontFamily: "Sage UI",
|
|
577
|
+
fontWeight: "Regular Beta",
|
|
578
|
+
lineHeight: "150%",
|
|
579
|
+
fontSize: "14px",
|
|
580
|
+
letterSpacing: "0%",
|
|
581
|
+
paragraphSpacing: "0px"
|
|
582
|
+
},
|
|
583
|
+
typographyLinkTextL: {
|
|
584
|
+
fontFamily: "Sage UI",
|
|
585
|
+
fontWeight: "Regular Beta",
|
|
586
|
+
lineHeight: "150%",
|
|
587
|
+
fontSize: "16px",
|
|
588
|
+
letterSpacing: "0%",
|
|
589
|
+
paragraphSpacing: "0px"
|
|
590
|
+
},
|
|
591
|
+
typographyMessageHeadingM: {
|
|
592
|
+
fontFamily: "Sage UI",
|
|
593
|
+
fontWeight: "Bold Beta",
|
|
594
|
+
lineHeight: "150%",
|
|
595
|
+
fontSize: "14px",
|
|
596
|
+
letterSpacing: "0%",
|
|
597
|
+
paragraphSpacing: "0px"
|
|
598
|
+
},
|
|
599
|
+
typographyMessageHeadingL: {
|
|
600
|
+
fontFamily: "Sage UI",
|
|
601
|
+
fontWeight: "Bold Beta",
|
|
602
|
+
lineHeight: "150%",
|
|
603
|
+
fontSize: "16px",
|
|
604
|
+
letterSpacing: "0%",
|
|
605
|
+
paragraphSpacing: "0px"
|
|
606
|
+
},
|
|
607
|
+
typographyMessageTextM: {
|
|
608
|
+
fontFamily: "Sage UI",
|
|
609
|
+
fontWeight: "Regular Beta",
|
|
610
|
+
lineHeight: "150%",
|
|
611
|
+
fontSize: "14px",
|
|
612
|
+
letterSpacing: "0%",
|
|
613
|
+
paragraphSpacing: "0px"
|
|
614
|
+
},
|
|
615
|
+
typographyMessageTextL: {
|
|
616
|
+
fontFamily: "Sage UI",
|
|
617
|
+
fontWeight: "Regular Beta",
|
|
618
|
+
lineHeight: "150%",
|
|
619
|
+
fontSize: "16px",
|
|
620
|
+
letterSpacing: "0%",
|
|
621
|
+
paragraphSpacing: "0px"
|
|
622
|
+
},
|
|
623
|
+
typographyPillLabelS: {
|
|
624
|
+
fontFamily: "Sage UI",
|
|
625
|
+
fontWeight: "Medium Beta",
|
|
626
|
+
lineHeight: "150%",
|
|
627
|
+
fontSize: "10px",
|
|
628
|
+
letterSpacing: "0%",
|
|
629
|
+
paragraphSpacing: "0px"
|
|
630
|
+
},
|
|
631
|
+
typographyPillLabelM: {
|
|
632
|
+
fontFamily: "Sage UI",
|
|
633
|
+
fontWeight: "Medium Beta",
|
|
634
|
+
lineHeight: "150%",
|
|
635
|
+
fontSize: "12px",
|
|
636
|
+
letterSpacing: "0%",
|
|
637
|
+
paragraphSpacing: "0px"
|
|
638
|
+
},
|
|
639
|
+
typographyPillLabelL: {
|
|
640
|
+
fontFamily: "Sage UI",
|
|
641
|
+
fontWeight: "Medium Beta",
|
|
642
|
+
lineHeight: "150%",
|
|
643
|
+
fontSize: "14px",
|
|
644
|
+
letterSpacing: "0%",
|
|
645
|
+
paragraphSpacing: "0px"
|
|
646
|
+
},
|
|
647
|
+
typographyPillLabelXl: {
|
|
648
|
+
fontFamily: "Sage UI",
|
|
649
|
+
fontWeight: "Medium Beta",
|
|
650
|
+
lineHeight: "150%",
|
|
651
|
+
fontSize: "16px",
|
|
652
|
+
letterSpacing: "0%",
|
|
653
|
+
paragraphSpacing: "0px"
|
|
654
|
+
},
|
|
655
|
+
typographySwitchOptionLabelM: {
|
|
656
|
+
fontFamily: "Sage UI",
|
|
657
|
+
fontWeight: "Medium Beta",
|
|
658
|
+
lineHeight: "150%",
|
|
659
|
+
fontSize: "12px",
|
|
660
|
+
letterSpacing: "0%",
|
|
661
|
+
paragraphSpacing: "0px"
|
|
662
|
+
},
|
|
663
|
+
typographySwitchOptionLabelL: {
|
|
664
|
+
fontFamily: "Sage UI",
|
|
665
|
+
fontWeight: "Medium Beta",
|
|
666
|
+
lineHeight: "150%",
|
|
667
|
+
fontSize: "14px",
|
|
668
|
+
letterSpacing: "0%",
|
|
669
|
+
paragraphSpacing: "0px"
|
|
670
|
+
},
|
|
671
|
+
typographyTableHeaderTextM: {
|
|
672
|
+
fontFamily: "Sage UI",
|
|
673
|
+
fontWeight: "Medium Beta",
|
|
674
|
+
lineHeight: "150%",
|
|
675
|
+
fontSize: "14px",
|
|
676
|
+
letterSpacing: "0%",
|
|
677
|
+
paragraphSpacing: "0px"
|
|
678
|
+
},
|
|
679
|
+
typographyTableCellTextM: {
|
|
680
|
+
fontFamily: "Sage UI",
|
|
681
|
+
fontWeight: "Regular Beta",
|
|
682
|
+
lineHeight: "150%",
|
|
683
|
+
fontSize: "14px",
|
|
684
|
+
letterSpacing: "0%",
|
|
685
|
+
paragraphSpacing: "0px"
|
|
686
|
+
},
|
|
687
|
+
typographyTooltipTextM: {
|
|
688
|
+
fontFamily: "Sage UI",
|
|
689
|
+
fontWeight: "Regular Beta",
|
|
690
|
+
lineHeight: "150%",
|
|
691
|
+
fontSize: "14px",
|
|
692
|
+
letterSpacing: "0%",
|
|
693
|
+
paragraphSpacing: "0px"
|
|
694
|
+
},
|
|
695
|
+
typographyTooltipTextL: {
|
|
696
|
+
fontFamily: "Sage UI",
|
|
697
|
+
fontWeight: "Regular Beta",
|
|
698
|
+
lineHeight: "150%",
|
|
699
|
+
fontSize: "16px",
|
|
700
|
+
letterSpacing: "0%",
|
|
701
|
+
paragraphSpacing: "0px"
|
|
702
|
+
}
|
|
703
|
+
});
|
|
704
|
+
|
|
705
|
+
exports.default = _default;
|