@sendoutcards/quantum-design-ui 1.7.78 → 1.7.79
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/dist/index.es.js +1407 -648
- package/dist/src/atoms/companion/companion.d.ts +17 -0
- package/dist/src/customThemes/bellaCadaeux/tokens/colors.d.ts +1 -0
- package/dist/src/customThemes/blue42/concepts.d.ts +1 -0
- package/dist/src/customThemes/blue42/tokens/colors.d.ts +1 -0
- package/dist/src/customThemes/greenerStill/concepts.d.ts +1 -0
- package/dist/src/customThemes/greenerStill/tokens/colors.d.ts +1 -0
- package/dist/src/customThemes/promptingU/concepts.d.ts +1 -0
- package/dist/src/customThemes/promptingU/tokens/colors.d.ts +1 -0
- package/dist/src/customThemes/promptings/concepts.d.ts +22 -0
- package/dist/src/customThemes/promptings/entities.d.ts +2 -0
- package/dist/src/customThemes/promptings/tokens/colors.d.ts +13 -0
- package/dist/src/customThemes/promptings/tokens/typography.d.ts +23 -0
- package/dist/src/customThemes/sendOutCards/concepts.d.ts +1 -0
- package/dist/src/customThemes/sendOutCards/tokens/colors.d.ts +1 -0
- package/dist/src/customThemes/sendogo/concepts.d.ts +1 -0
- package/dist/src/customThemes/streamMarketing/concepts.d.ts +1 -0
- package/dist/src/customThemes/streamMarketing/tokens/colors.d.ts +1 -0
- package/dist/src/customThemes/streamVA/concepts.d.ts +1 -0
- package/dist/src/customThemes/streamVA/tokens/colors.d.ts +1 -0
- package/dist/src/exports/themes.d.ts +2 -1
- package/dist/src/helpers/hoc-functions/makeResponsive.d.ts +1 -0
- package/dist/src/helpers/hoc-types/entityValueTypes.d.ts +6 -1
- package/dist/src/hooks/useColorSwatch.d.ts +1 -0
- package/dist/src/hooks/useEntities.d.ts +1 -0
- package/dist/src/stories/atoms/Colors.stories.d.ts +1 -0
- package/dist/src/theme/theming/concepts.d.ts +1 -0
- package/dist/src/theme/theming/entities.d.ts +2 -0
- package/dist/src/theme/tokens/colors.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -149,31 +149,34 @@ var mapColorsToKeys = function (hslColors, baseColor) {
|
|
|
149
149
|
};
|
|
150
150
|
|
|
151
151
|
var PINK$1 = '#FF04A0';
|
|
152
|
-
var LIGHT_BLUE$
|
|
153
|
-
var GREEN$
|
|
152
|
+
var LIGHT_BLUE$3 = '#02C3E2';
|
|
153
|
+
var GREEN$9 = '#44D5A4';
|
|
154
154
|
var YELLOW$8 = '#F4E467';
|
|
155
155
|
var RED$8 = '#F26666'; // TODO change ACCENT
|
|
156
156
|
|
|
157
157
|
var ACCENT$2 = '#FFF';
|
|
158
|
-
var WHITE$
|
|
158
|
+
var WHITE$9 = '#FFF';
|
|
159
159
|
var BLUE$8 = '#32abe4';
|
|
160
|
+
var PURPLE$9 = '#703a96';
|
|
160
161
|
var pinkSwatch$1 = computeColorSwatch(PINK$1);
|
|
161
|
-
var brightBlueSwatch$2 = computeColorSwatch(LIGHT_BLUE$
|
|
162
|
-
var greenSwatch$
|
|
163
|
-
var yellowSwatch$
|
|
164
|
-
var redSwatch$
|
|
162
|
+
var brightBlueSwatch$2 = computeColorSwatch(LIGHT_BLUE$3);
|
|
163
|
+
var greenSwatch$9 = computeColorSwatch(GREEN$9);
|
|
164
|
+
var yellowSwatch$9 = computeColorSwatch(YELLOW$8);
|
|
165
|
+
var redSwatch$9 = computeColorSwatch(RED$8);
|
|
165
166
|
var accentSwatch$2 = computeColorSwatch(ACCENT$2);
|
|
166
167
|
var blueSwatch$8 = computeColorSwatch(BLUE$8);
|
|
168
|
+
var purpleSwatch$9 = computeColorSwatch(PURPLE$9);
|
|
167
169
|
var lightGray$2 = '#f5f6f7';
|
|
168
|
-
var colors$
|
|
170
|
+
var colors$j = {
|
|
169
171
|
pinkSwatch: pinkSwatch$1,
|
|
170
172
|
brightBlueSwatch: brightBlueSwatch$2,
|
|
171
|
-
greenSwatch: greenSwatch$
|
|
172
|
-
redSwatch: redSwatch$
|
|
173
|
-
yellowSwatch: yellowSwatch$
|
|
173
|
+
greenSwatch: greenSwatch$9,
|
|
174
|
+
redSwatch: redSwatch$9,
|
|
175
|
+
yellowSwatch: yellowSwatch$9,
|
|
174
176
|
accentSwatch: accentSwatch$2,
|
|
175
|
-
WHITE: WHITE$
|
|
177
|
+
WHITE: WHITE$9,
|
|
176
178
|
blueSwatch: blueSwatch$8,
|
|
179
|
+
purpleSwatch: purpleSwatch$9,
|
|
177
180
|
lightGray: lightGray$2
|
|
178
181
|
};
|
|
179
182
|
|
|
@@ -196,7 +199,7 @@ var shadows = {
|
|
|
196
199
|
xLight: [0, 18, 40, -12]
|
|
197
200
|
};
|
|
198
201
|
|
|
199
|
-
var borders$
|
|
202
|
+
var borders$b = {
|
|
200
203
|
xSmall: 1,
|
|
201
204
|
small: 1.5,
|
|
202
205
|
medium: 2,
|
|
@@ -204,8 +207,8 @@ var borders$a = {
|
|
|
204
207
|
xLarge: 3
|
|
205
208
|
};
|
|
206
209
|
|
|
207
|
-
var BASE_VALUE$
|
|
208
|
-
var BASE_UNITS$
|
|
210
|
+
var BASE_VALUE$b = 0.5;
|
|
211
|
+
var BASE_UNITS$b = 'rem';
|
|
209
212
|
|
|
210
213
|
var mediaQuerySizes$1 = {
|
|
211
214
|
small: 576,
|
|
@@ -214,44 +217,44 @@ var mediaQuerySizes$1 = {
|
|
|
214
217
|
xLarge: 1200
|
|
215
218
|
};
|
|
216
219
|
|
|
217
|
-
var BASE_VALUE$
|
|
218
|
-
var BASE_UNITS$
|
|
219
|
-
|
|
220
|
-
var computeFontSize$
|
|
221
|
-
return BASE_VALUE$
|
|
222
|
-
};
|
|
223
|
-
|
|
224
|
-
var XSMALL_FONT$
|
|
225
|
-
var SMALL_FONT$
|
|
226
|
-
var MEDIUM_FONT$
|
|
227
|
-
var MEDIUM_PLUS_FONT$
|
|
228
|
-
var LARGE_FONT$
|
|
229
|
-
var XLARGE_FONT$
|
|
230
|
-
var XXLARGE_FONT$
|
|
231
|
-
var XSMALL_LINE_HEIGHT$
|
|
232
|
-
var SMALL_LINE_HEIGHT$
|
|
233
|
-
var MEDIUM_LINE_HEIGHT$
|
|
234
|
-
var LARGE_LINE_HEIGHT$
|
|
235
|
-
var XLARGE_LINE_HEIGHT$
|
|
236
|
-
var XXLARGE_LINE_HEIGHT$
|
|
237
|
-
var HEADING_FONT_FAMILY$
|
|
238
|
-
var BODY_FONT_FAMILY$
|
|
239
|
-
var HEADING_FONT_IMPORT$
|
|
240
|
-
var BODY_FONT_IMPORT$
|
|
241
|
-
var WEIGHT_THIN$
|
|
242
|
-
var WEIGHT_REGULAR$
|
|
243
|
-
var WEIGHT_SEMI_BOLD$
|
|
244
|
-
var WEIGHT_BOLD$
|
|
245
|
-
var WEIGHT_EXTRA_BOLD$
|
|
246
|
-
|
|
247
|
-
var icons$
|
|
220
|
+
var BASE_VALUE$a = 1;
|
|
221
|
+
var BASE_UNITS$a = 'rem'; // Rename to typography
|
|
222
|
+
|
|
223
|
+
var computeFontSize$9 = function (multiplier) {
|
|
224
|
+
return BASE_VALUE$a * multiplier;
|
|
225
|
+
};
|
|
226
|
+
|
|
227
|
+
var XSMALL_FONT$9 = computeFontSize$9(0.75) + BASE_UNITS$a;
|
|
228
|
+
var SMALL_FONT$9 = computeFontSize$9(0.875) + BASE_UNITS$a;
|
|
229
|
+
var MEDIUM_FONT$9 = computeFontSize$9(1) + BASE_UNITS$a;
|
|
230
|
+
var MEDIUM_PLUS_FONT$9 = computeFontSize$9(1.125) + BASE_UNITS$a;
|
|
231
|
+
var LARGE_FONT$9 = computeFontSize$9(1.5) + BASE_UNITS$a;
|
|
232
|
+
var XLARGE_FONT$9 = computeFontSize$9(2) + BASE_UNITS$a;
|
|
233
|
+
var XXLARGE_FONT$9 = computeFontSize$9(4) + BASE_UNITS$a;
|
|
234
|
+
var XSMALL_LINE_HEIGHT$9 = computeFontSize$9(1.5) + BASE_UNITS$a;
|
|
235
|
+
var SMALL_LINE_HEIGHT$9 = computeFontSize$9(1.75) + BASE_UNITS$a;
|
|
236
|
+
var MEDIUM_LINE_HEIGHT$9 = computeFontSize$9(2) + BASE_UNITS$a;
|
|
237
|
+
var LARGE_LINE_HEIGHT$9 = computeFontSize$9(2.5) + BASE_UNITS$a;
|
|
238
|
+
var XLARGE_LINE_HEIGHT$9 = computeFontSize$9(3) + BASE_UNITS$a;
|
|
239
|
+
var XXLARGE_LINE_HEIGHT$9 = computeFontSize$9(3.5) + BASE_UNITS$a;
|
|
240
|
+
var HEADING_FONT_FAMILY$9 = "'Montserrat', sans-serif";
|
|
241
|
+
var BODY_FONT_FAMILY$9 = "'Montserrat', sans-serif";
|
|
242
|
+
var HEADING_FONT_IMPORT$9 = 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap';
|
|
243
|
+
var BODY_FONT_IMPORT$9 = 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap';
|
|
244
|
+
var WEIGHT_THIN$9 = 300;
|
|
245
|
+
var WEIGHT_REGULAR$9 = 400;
|
|
246
|
+
var WEIGHT_SEMI_BOLD$9 = 500;
|
|
247
|
+
var WEIGHT_BOLD$9 = 600;
|
|
248
|
+
var WEIGHT_EXTRA_BOLD$9 = 800;
|
|
249
|
+
|
|
250
|
+
var icons$b = {
|
|
248
251
|
xSmall: 18,
|
|
249
252
|
small: 24,
|
|
250
253
|
medium: 32,
|
|
251
254
|
large: 64,
|
|
252
255
|
xLarge: 88
|
|
253
256
|
};
|
|
254
|
-
var sphere$
|
|
257
|
+
var sphere$b = {
|
|
255
258
|
xSmall: 64,
|
|
256
259
|
small: 80,
|
|
257
260
|
medium: 96,
|
|
@@ -291,32 +294,793 @@ var computeGrayScale = function (swatch) {
|
|
|
291
294
|
return grayScale;
|
|
292
295
|
};
|
|
293
296
|
|
|
297
|
+
var colors$i = {
|
|
298
|
+
primaryBrand: colors$j.pinkSwatch,
|
|
299
|
+
secondaryBrand: colors$j.brightBlueSwatch,
|
|
300
|
+
accent: colors$j.accentSwatch,
|
|
301
|
+
success: colors$j.greenSwatch,
|
|
302
|
+
warning: colors$j.yellowSwatch,
|
|
303
|
+
danger: colors$j.redSwatch,
|
|
304
|
+
background: colors$j.lightGray,
|
|
305
|
+
foreground: colors$j.WHITE,
|
|
306
|
+
grayScale: computeGrayScale(colors$j.pinkSwatch),
|
|
307
|
+
blueScale: colors$j.blueSwatch,
|
|
308
|
+
purpleScale: colors$j.purpleSwatch,
|
|
309
|
+
white: colors$j.WHITE,
|
|
310
|
+
defaultShadowColor: SHADOW_DEFAULT_COLOR$1
|
|
311
|
+
};
|
|
312
|
+
var concepts$9 = {
|
|
313
|
+
colors: __assign({}, colors$i),
|
|
314
|
+
radius: {
|
|
315
|
+
none: radius$1.none,
|
|
316
|
+
small: radius$1.small,
|
|
317
|
+
medium: radius$1.mediumLarge,
|
|
318
|
+
default: radius$1.medium,
|
|
319
|
+
large: radius$1.large,
|
|
320
|
+
circle: radius$1.circle
|
|
321
|
+
},
|
|
322
|
+
shadows: {
|
|
323
|
+
light: computeShadow('light', Color$1(colors$i.defaultShadowColor).rgb().alpha(0.06).toString()),
|
|
324
|
+
mediumLight: computeShadow('mediumLight', Color$1(colors$i.defaultShadowColor).rgb().alpha(0.08).toString()),
|
|
325
|
+
mediumDark: computeShadow('mediumDark', Color$1(colors$i.defaultShadowColor).rgb().alpha(0.1).toString()),
|
|
326
|
+
dark: computeShadow('dark', Color$1(colors$i.defaultShadowColor).rgb().alpha(0.12).toString()),
|
|
327
|
+
generate: computeShadow
|
|
328
|
+
},
|
|
329
|
+
typography: {
|
|
330
|
+
imports: {
|
|
331
|
+
body: BODY_FONT_IMPORT$9,
|
|
332
|
+
heading: HEADING_FONT_IMPORT$9
|
|
333
|
+
},
|
|
334
|
+
colors: {
|
|
335
|
+
primaryHeading: colors$i.grayScale._200,
|
|
336
|
+
primaryBody: colors$i.grayScale.base,
|
|
337
|
+
inverseHeading: colors$i.white,
|
|
338
|
+
inverseBody: colors$i.white
|
|
339
|
+
},
|
|
340
|
+
families: {
|
|
341
|
+
heading: BODY_FONT_FAMILY$9,
|
|
342
|
+
body: HEADING_FONT_FAMILY$9
|
|
343
|
+
},
|
|
344
|
+
sizes: {
|
|
345
|
+
xSmall: XSMALL_FONT$9,
|
|
346
|
+
small: SMALL_FONT$9,
|
|
347
|
+
medium: MEDIUM_FONT$9,
|
|
348
|
+
mediumPlus: MEDIUM_PLUS_FONT$9,
|
|
349
|
+
large: LARGE_FONT$9,
|
|
350
|
+
xLarge: XLARGE_FONT$9,
|
|
351
|
+
xxLarge: XXLARGE_FONT$9
|
|
352
|
+
},
|
|
353
|
+
weights: {
|
|
354
|
+
thin: WEIGHT_THIN$9,
|
|
355
|
+
regular: WEIGHT_REGULAR$9,
|
|
356
|
+
semiBold: WEIGHT_SEMI_BOLD$9,
|
|
357
|
+
bold: WEIGHT_BOLD$9,
|
|
358
|
+
extraBold: WEIGHT_EXTRA_BOLD$9
|
|
359
|
+
},
|
|
360
|
+
lineHeight: {
|
|
361
|
+
xSmall: XSMALL_LINE_HEIGHT$9,
|
|
362
|
+
small: SMALL_LINE_HEIGHT$9,
|
|
363
|
+
medium: MEDIUM_LINE_HEIGHT$9,
|
|
364
|
+
large: LARGE_LINE_HEIGHT$9,
|
|
365
|
+
xLarge: XLARGE_LINE_HEIGHT$9,
|
|
366
|
+
xxLarge: XXLARGE_LINE_HEIGHT$9
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
borders: {
|
|
370
|
+
thin: borders$b.xSmall,
|
|
371
|
+
small: borders$b.small,
|
|
372
|
+
default: borders$b.medium,
|
|
373
|
+
large: borders$b.large,
|
|
374
|
+
bold: borders$b.xLarge
|
|
375
|
+
},
|
|
376
|
+
spacing: {
|
|
377
|
+
baseValue: BASE_VALUE$b,
|
|
378
|
+
baseUnits: BASE_UNITS$b
|
|
379
|
+
},
|
|
380
|
+
mediaQueries: {
|
|
381
|
+
small: mediaQuerySizes$1.small,
|
|
382
|
+
medium: mediaQuerySizes$1.medium,
|
|
383
|
+
large: mediaQuerySizes$1.large,
|
|
384
|
+
xLarge: mediaQuerySizes$1.xLarge
|
|
385
|
+
},
|
|
386
|
+
sizing: {
|
|
387
|
+
icons: {
|
|
388
|
+
xSmall: icons$b.xSmall,
|
|
389
|
+
small: icons$b.small,
|
|
390
|
+
medium: icons$b.medium,
|
|
391
|
+
large: icons$b.large,
|
|
392
|
+
xLarge: icons$b.xLarge
|
|
393
|
+
},
|
|
394
|
+
sphere: {
|
|
395
|
+
xSmall: sphere$b.xSmall,
|
|
396
|
+
small: sphere$b.small,
|
|
397
|
+
medium: sphere$b.medium,
|
|
398
|
+
large: sphere$b.large,
|
|
399
|
+
xLarge: sphere$b.xLarge
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
var computeSpace = function (baseValue, baseUnits) {
|
|
405
|
+
return function (multiplier) {
|
|
406
|
+
return baseValue * multiplier + baseUnits;
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
|
|
410
|
+
var space$9 = computeSpace(concepts$9.spacing.baseValue, concepts$9.spacing.baseUnits);
|
|
411
|
+
var spacing$9 = {
|
|
412
|
+
x0: space$9(0),
|
|
413
|
+
x_25: space$9(0.25),
|
|
414
|
+
x_5: space$9(0.5),
|
|
415
|
+
x_75: space$9(0.75),
|
|
416
|
+
x1: space$9(1),
|
|
417
|
+
x1_5: space$9(1.5),
|
|
418
|
+
x2: space$9(2),
|
|
419
|
+
x2_5: space$9(2.5),
|
|
420
|
+
x3: space$9(3),
|
|
421
|
+
x4: space$9(4),
|
|
422
|
+
x5: space$9(5),
|
|
423
|
+
x6: space$9(6),
|
|
424
|
+
x7: space$9(7),
|
|
425
|
+
x8: space$9(8),
|
|
426
|
+
x9: space$9(9)
|
|
427
|
+
};
|
|
428
|
+
var borders$a = {
|
|
429
|
+
thin: concepts$9.borders.thin + "px",
|
|
430
|
+
default: concepts$9.borders.default + "px",
|
|
431
|
+
bold: concepts$9.borders.bold + "px"
|
|
432
|
+
};
|
|
433
|
+
var text$9 = {
|
|
434
|
+
imports: {
|
|
435
|
+
body: concepts$9.typography.imports.body,
|
|
436
|
+
heading: concepts$9.typography.imports.heading
|
|
437
|
+
},
|
|
438
|
+
families: {
|
|
439
|
+
body: concepts$9.typography.families.body,
|
|
440
|
+
heading: concepts$9.typography.families.heading
|
|
441
|
+
},
|
|
442
|
+
types: {
|
|
443
|
+
heroTitle: {
|
|
444
|
+
color: concepts$9.typography.colors.primaryHeading,
|
|
445
|
+
size: concepts$9.typography.sizes.xxLarge,
|
|
446
|
+
fontWeight: concepts$9.typography.weights.extraBold,
|
|
447
|
+
lineHeight: concepts$9.typography.lineHeight.xxLarge,
|
|
448
|
+
fontFamily: concepts$9.typography.families.heading
|
|
449
|
+
},
|
|
450
|
+
title: {
|
|
451
|
+
color: concepts$9.typography.colors.primaryHeading,
|
|
452
|
+
size: concepts$9.typography.sizes.xLarge,
|
|
453
|
+
fontWeight: concepts$9.typography.weights.bold,
|
|
454
|
+
lineHeight: concepts$9.typography.lineHeight.xLarge,
|
|
455
|
+
fontFamily: concepts$9.typography.families.heading
|
|
456
|
+
},
|
|
457
|
+
subtitle: {
|
|
458
|
+
color: concepts$9.typography.colors.primaryHeading,
|
|
459
|
+
size: concepts$9.typography.sizes.large,
|
|
460
|
+
fontWeight: concepts$9.typography.weights.regular,
|
|
461
|
+
lineHeight: concepts$9.typography.lineHeight.medium,
|
|
462
|
+
fontFamily: concepts$9.typography.families.heading
|
|
463
|
+
},
|
|
464
|
+
largeBody: {
|
|
465
|
+
color: concepts$9.typography.colors.primaryBody,
|
|
466
|
+
size: concepts$9.typography.sizes.mediumPlus,
|
|
467
|
+
fontWeight: concepts$9.typography.weights.regular,
|
|
468
|
+
lineHeight: concepts$9.typography.lineHeight.small,
|
|
469
|
+
fontFamily: concepts$9.typography.families.body
|
|
470
|
+
},
|
|
471
|
+
body: {
|
|
472
|
+
color: concepts$9.typography.colors.primaryBody,
|
|
473
|
+
size: concepts$9.typography.sizes.medium,
|
|
474
|
+
fontWeight: concepts$9.typography.weights.regular,
|
|
475
|
+
lineHeight: concepts$9.typography.lineHeight.small,
|
|
476
|
+
fontFamily: concepts$9.typography.families.body
|
|
477
|
+
},
|
|
478
|
+
caption: {
|
|
479
|
+
color: concepts$9.typography.colors.primaryBody,
|
|
480
|
+
size: concepts$9.typography.sizes.small,
|
|
481
|
+
fontWeight: concepts$9.typography.weights.regular,
|
|
482
|
+
lineHeight: concepts$9.typography.lineHeight.small,
|
|
483
|
+
fontFamily: concepts$9.typography.families.body
|
|
484
|
+
},
|
|
485
|
+
footnote: {
|
|
486
|
+
color: concepts$9.typography.colors.primaryBody,
|
|
487
|
+
size: concepts$9.typography.sizes.xSmall,
|
|
488
|
+
fontWeight: concepts$9.typography.weights.regular,
|
|
489
|
+
lineHeight: concepts$9.typography.lineHeight.xSmall,
|
|
490
|
+
fontFamily: concepts$9.typography.families.body
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
colors: {
|
|
494
|
+
primaryBrand: concepts$9.colors.primaryBrand.base,
|
|
495
|
+
secondaryBrand: concepts$9.colors.secondaryBrand.base,
|
|
496
|
+
primaryHeading: concepts$9.typography.colors.primaryHeading,
|
|
497
|
+
primaryBody: concepts$9.typography.colors.primaryBody,
|
|
498
|
+
inverseHeading: concepts$9.typography.colors.inverseHeading,
|
|
499
|
+
inverseBody: concepts$9.typography.colors.inverseBody,
|
|
500
|
+
accent: concepts$9.colors.accent.base,
|
|
501
|
+
success: concepts$9.colors.success.base,
|
|
502
|
+
warning: concepts$9.colors.warning.base,
|
|
503
|
+
danger: concepts$9.colors.danger.base,
|
|
504
|
+
anchorBlue: concepts$9.colors.blueScale.base
|
|
505
|
+
},
|
|
506
|
+
weights: {
|
|
507
|
+
thin: concepts$9.typography.weights.thin,
|
|
508
|
+
regular: concepts$9.typography.weights.regular,
|
|
509
|
+
semiBold: concepts$9.typography.weights.semiBold,
|
|
510
|
+
bold: concepts$9.typography.weights.bold,
|
|
511
|
+
extraBold: concepts$9.typography.weights.extraBold
|
|
512
|
+
}
|
|
513
|
+
};
|
|
514
|
+
var mediaQueries$c = {
|
|
515
|
+
queries: {
|
|
516
|
+
xSmall: "@media screen and (min-width: 0px)",
|
|
517
|
+
// Large Mobile
|
|
518
|
+
small: "@media screen and (min-width: " + concepts$9.mediaQueries.small + "px)",
|
|
519
|
+
// Tablet
|
|
520
|
+
medium: "@media screen and (min-width: " + concepts$9.mediaQueries.medium + "px)",
|
|
521
|
+
// Large Tablet
|
|
522
|
+
large: "@media screen and (min-width: " + concepts$9.mediaQueries.large + "px)",
|
|
523
|
+
// Desktop
|
|
524
|
+
xLarge: "@media screen and (min-width: " + concepts$9.mediaQueries.xLarge + "px)"
|
|
525
|
+
},
|
|
526
|
+
rawValues: {
|
|
527
|
+
xSmall: 0,
|
|
528
|
+
small: concepts$9.mediaQueries.small,
|
|
529
|
+
medium: concepts$9.mediaQueries.medium,
|
|
530
|
+
large: concepts$9.mediaQueries.large,
|
|
531
|
+
xLarge: concepts$9.mediaQueries.xLarge
|
|
532
|
+
}
|
|
533
|
+
};
|
|
534
|
+
var hocs$9 = {
|
|
535
|
+
colors: {
|
|
536
|
+
swatches: {
|
|
537
|
+
primaryBrand: concepts$9.colors.primaryBrand,
|
|
538
|
+
secondaryBrand: concepts$9.colors.secondaryBrand,
|
|
539
|
+
success: concepts$9.colors.success,
|
|
540
|
+
danger: concepts$9.colors.danger,
|
|
541
|
+
warning: concepts$9.colors.warning,
|
|
542
|
+
accent: concepts$9.colors.accent,
|
|
543
|
+
grayScale: concepts$9.colors.grayScale,
|
|
544
|
+
blueScale: concepts$9.colors.blueScale,
|
|
545
|
+
purpleScale: concepts$9.colors.purpleScale
|
|
546
|
+
},
|
|
547
|
+
background: concepts$9.colors.background,
|
|
548
|
+
foreground: concepts$9.colors.foreground
|
|
549
|
+
},
|
|
550
|
+
textColors: text$9.colors,
|
|
551
|
+
spacing: spacing$9,
|
|
552
|
+
borderRadius: concepts$9.radius,
|
|
553
|
+
shadows: concepts$9.shadows,
|
|
554
|
+
borders: borders$a
|
|
555
|
+
}; // TODO - revisit buttons for contrast and font color
|
|
556
|
+
|
|
557
|
+
var buttons$9 = {
|
|
558
|
+
primary: {
|
|
559
|
+
backgroundColor: concepts$9.colors.primaryBrand.base,
|
|
560
|
+
fontColor: concepts$9.typography.colors.inverseBody,
|
|
561
|
+
fontFamily: concepts$9.typography.families.body
|
|
562
|
+
},
|
|
563
|
+
secondary: {
|
|
564
|
+
backgroundColor: concepts$9.colors.secondaryBrand.base,
|
|
565
|
+
fontColor: concepts$9.typography.colors.inverseBody,
|
|
566
|
+
fontFamily: concepts$9.typography.families.body
|
|
567
|
+
},
|
|
568
|
+
warning: {
|
|
569
|
+
backgroundColor: concepts$9.colors.warning.base,
|
|
570
|
+
fontColor: concepts$9.typography.colors.inverseBody,
|
|
571
|
+
fontFamily: concepts$9.typography.families.body
|
|
572
|
+
},
|
|
573
|
+
success: {
|
|
574
|
+
backgroundColor: concepts$9.colors.success.base,
|
|
575
|
+
fontColor: concepts$9.typography.colors.inverseBody,
|
|
576
|
+
fontFamily: concepts$9.typography.families.body
|
|
577
|
+
},
|
|
578
|
+
danger: {
|
|
579
|
+
backgroundColor: concepts$9.colors.danger.base,
|
|
580
|
+
fontColor: concepts$9.typography.colors.inverseBody,
|
|
581
|
+
fontFamily: concepts$9.typography.families.body
|
|
582
|
+
},
|
|
583
|
+
shadow: {
|
|
584
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
585
|
+
fontColor: concepts$9.typography.colors.primaryBody,
|
|
586
|
+
fontFamily: concepts$9.typography.families.body
|
|
587
|
+
},
|
|
588
|
+
accent: {
|
|
589
|
+
backgroundColor: concepts$9.colors.accent.base,
|
|
590
|
+
fontColor: concepts$9.typography.colors.primaryBody,
|
|
591
|
+
fontFamily: concepts$9.typography.families.body
|
|
592
|
+
},
|
|
593
|
+
smoke: {
|
|
594
|
+
backgroundColor: concepts$9.colors.background,
|
|
595
|
+
fontColor: concepts$9.typography.colors.primaryBody,
|
|
596
|
+
fontFamily: concepts$9.typography.families.body
|
|
597
|
+
},
|
|
598
|
+
boxShadow: concepts$9.shadows.generate,
|
|
599
|
+
borderSize: borders$a.default,
|
|
600
|
+
outlinedBackgroundColor: concepts$9.colors.foreground,
|
|
601
|
+
fontWeight: concepts$9.typography.weights.semiBold,
|
|
602
|
+
sizes: {
|
|
603
|
+
xSmall: {
|
|
604
|
+
inset: spacing$9.x1 + " " + spacing$9.x2,
|
|
605
|
+
outlinedInset: {
|
|
606
|
+
vertical: "calc(" + spacing$9.x1 + " - 2px)",
|
|
607
|
+
horizontal: "calc(" + spacing$9.x2 + " - 2px)"
|
|
608
|
+
},
|
|
609
|
+
fontSize: text$9.types.footnote.size,
|
|
610
|
+
borderRadius: concepts$9.radius.default
|
|
611
|
+
},
|
|
612
|
+
small: {
|
|
613
|
+
inset: spacing$9.x1_5 + " " + spacing$9.x2_5,
|
|
614
|
+
outlinedInset: {
|
|
615
|
+
vertical: "calc(" + spacing$9.x1_5 + " - 2px)",
|
|
616
|
+
horizontal: "calc(" + spacing$9.x2_5 + " - 2px)"
|
|
617
|
+
},
|
|
618
|
+
fontSize: text$9.types.caption.size,
|
|
619
|
+
borderRadius: concepts$9.radius.default
|
|
620
|
+
},
|
|
621
|
+
medium: {
|
|
622
|
+
inset: spacing$9.x1_5 + " " + spacing$9.x3,
|
|
623
|
+
outlinedInset: {
|
|
624
|
+
vertical: "calc(" + spacing$9.x1_5 + " - 2px)",
|
|
625
|
+
horizontal: "calc(" + spacing$9.x3 + " - 2px)"
|
|
626
|
+
},
|
|
627
|
+
fontSize: text$9.types.body.size,
|
|
628
|
+
borderRadius: concepts$9.radius.default
|
|
629
|
+
},
|
|
630
|
+
large: {
|
|
631
|
+
inset: spacing$9.x2 + " " + spacing$9.x4,
|
|
632
|
+
outlinedInset: {
|
|
633
|
+
vertical: "calc(" + spacing$9.x2 + " - 2px)",
|
|
634
|
+
horizontal: "calc(" + spacing$9.x4 + " - 2px)"
|
|
635
|
+
},
|
|
636
|
+
fontSize: text$9.types.largeBody.size,
|
|
637
|
+
borderRadius: concepts$9.radius.default
|
|
638
|
+
},
|
|
639
|
+
xLarge: {
|
|
640
|
+
inset: spacing$9.x3 + " " + spacing$9.x5,
|
|
641
|
+
outlinedInset: {
|
|
642
|
+
vertical: "calc(" + spacing$9.x3 + " - 2px)",
|
|
643
|
+
horizontal: "calc(" + spacing$9.x5 + " - 2px)"
|
|
644
|
+
},
|
|
645
|
+
fontSize: text$9.types.subtitle.size,
|
|
646
|
+
borderRadius: concepts$9.radius.default
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
};
|
|
650
|
+
var inputs$9 = {
|
|
651
|
+
checkbox: {
|
|
652
|
+
border: borders$a.default,
|
|
653
|
+
borderRadius: concepts$9.radius.small,
|
|
654
|
+
unCheckedBackgroundColor: concepts$9.colors.grayScale._1000,
|
|
655
|
+
checkmarkColor: concepts$9.typography.colors.inverseBody,
|
|
656
|
+
labelColor: concepts$9.typography.colors.primaryBody
|
|
657
|
+
},
|
|
658
|
+
text: {
|
|
659
|
+
borderRadius: concepts$9.radius.default,
|
|
660
|
+
labelColor: concepts$9.colors.accent,
|
|
661
|
+
placeholderColor: concepts$9.typography.colors.primaryBody,
|
|
662
|
+
labelFontSize: text$9.types.caption.size,
|
|
663
|
+
textFontSize: text$9.types.caption.size,
|
|
664
|
+
borderWidth: borders$a.default,
|
|
665
|
+
defaultFocusColor: concepts$9.colors.blueScale.base
|
|
666
|
+
},
|
|
667
|
+
select: {
|
|
668
|
+
dropDownShadow: concepts$9.shadows.mediumDark,
|
|
669
|
+
dropDownBackgroundColor: concepts$9.colors.foreground,
|
|
670
|
+
boxShadow: concepts$9.shadows.light,
|
|
671
|
+
borderRadius: concepts$9.radius.default
|
|
672
|
+
},
|
|
673
|
+
number: {
|
|
674
|
+
backgroundColor: concepts$9.colors.grayScale._200,
|
|
675
|
+
fontColor: concepts$9.typography.colors.inverseBody,
|
|
676
|
+
fontSize: text$9.types.body.size,
|
|
677
|
+
borderRadius: concepts$9.radius.default
|
|
678
|
+
},
|
|
679
|
+
backgroundColor: concepts$9.colors.background,
|
|
680
|
+
fontSize: text$9.types.caption.size,
|
|
681
|
+
fontColor: concepts$9.typography.colors.primaryBody,
|
|
682
|
+
fontFamily: concepts$9.typography.families.body,
|
|
683
|
+
colors: {
|
|
684
|
+
primary: concepts$9.colors.primaryBrand.base,
|
|
685
|
+
secondary: concepts$9.colors.secondaryBrand.base,
|
|
686
|
+
success: concepts$9.colors.success.base,
|
|
687
|
+
warning: concepts$9.colors.warning.base,
|
|
688
|
+
danger: concepts$9.colors.danger.base,
|
|
689
|
+
accent: concepts$9.colors.accent.base,
|
|
690
|
+
dark: concepts$9.colors.primaryBrand._100,
|
|
691
|
+
blue: concepts$9.colors.blueScale.base
|
|
692
|
+
}
|
|
693
|
+
};
|
|
694
|
+
var icons$a = {
|
|
695
|
+
sizes: {
|
|
696
|
+
xSmall: concepts$9.sizing.icons.xSmall,
|
|
697
|
+
small: concepts$9.sizing.icons.small,
|
|
698
|
+
medium: concepts$9.sizing.icons.medium,
|
|
699
|
+
large: concepts$9.sizing.icons.large,
|
|
700
|
+
xLarge: concepts$9.sizing.icons.xLarge
|
|
701
|
+
},
|
|
702
|
+
colors: {
|
|
703
|
+
default: concepts$9.colors.grayScale._800,
|
|
704
|
+
primaryBodyText: concepts$9.typography.colors.primaryBody,
|
|
705
|
+
primaryHeadingText: concepts$9.typography.colors.primaryHeading,
|
|
706
|
+
inverseBodyText: concepts$9.typography.colors.inverseBody,
|
|
707
|
+
inverseHeadingText: concepts$9.typography.colors.inverseHeading,
|
|
708
|
+
primaryBrand: concepts$9.colors.primaryBrand.base,
|
|
709
|
+
secondaryBrand: concepts$9.colors.secondaryBrand.base,
|
|
710
|
+
warning: concepts$9.colors.warning.base,
|
|
711
|
+
danger: concepts$9.colors.danger.base,
|
|
712
|
+
success: concepts$9.colors.success.base,
|
|
713
|
+
background: concepts$9.colors.background,
|
|
714
|
+
accent: concepts$9.colors.background
|
|
715
|
+
}
|
|
716
|
+
};
|
|
717
|
+
var animatedCheckmark$9 = {
|
|
718
|
+
sizeMap: {
|
|
719
|
+
xSmall: concepts$9.sizing.icons.xSmall,
|
|
720
|
+
small: concepts$9.sizing.icons.small,
|
|
721
|
+
medium: concepts$9.sizing.icons.medium,
|
|
722
|
+
large: concepts$9.sizing.icons.large,
|
|
723
|
+
xLarge: concepts$9.sizing.icons.xLarge
|
|
724
|
+
},
|
|
725
|
+
colors: {
|
|
726
|
+
primary: concepts$9.colors.primaryBrand.base,
|
|
727
|
+
secondary: concepts$9.colors.secondaryBrand.base,
|
|
728
|
+
success: concepts$9.colors.success.base,
|
|
729
|
+
accent: concepts$9.colors.accent.base
|
|
730
|
+
},
|
|
731
|
+
strokeWidth: {
|
|
732
|
+
small: concepts$9.borders.small,
|
|
733
|
+
default: concepts$9.borders.default,
|
|
734
|
+
large: concepts$9.borders.large
|
|
735
|
+
},
|
|
736
|
+
borderRadius: concepts$9.radius.circle,
|
|
737
|
+
checkmarkFilledColor: concepts$9.colors.foreground
|
|
738
|
+
};
|
|
739
|
+
var avatar$9 = {
|
|
740
|
+
borderWidth: borders$a.thin,
|
|
741
|
+
borderColor: concepts$9.colors.grayScale._1000,
|
|
742
|
+
borderRadius: concepts$9.radius.circle,
|
|
743
|
+
boxShadow: concepts$9.shadows.mediumLight,
|
|
744
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
745
|
+
bubbleBackgroundColors: {
|
|
746
|
+
isActive: concepts$9.colors.success._600,
|
|
747
|
+
default: concepts$9.colors.grayScale._1000
|
|
748
|
+
},
|
|
749
|
+
defaultBackgroundColors: {
|
|
750
|
+
primary: concepts$9.colors.primaryBrand.base,
|
|
751
|
+
secondary: concepts$9.colors.secondaryBrand.base,
|
|
752
|
+
success: concepts$9.colors.success.base,
|
|
753
|
+
accent: concepts$9.colors.accent.base,
|
|
754
|
+
warning: concepts$9.colors.warning.base,
|
|
755
|
+
danger: concepts$9.colors.danger.base
|
|
756
|
+
},
|
|
757
|
+
sizes: {
|
|
758
|
+
xSmall: {
|
|
759
|
+
avatarSize: 34,
|
|
760
|
+
bubbleLeftPosition: 22,
|
|
761
|
+
bubbleSize: 12
|
|
762
|
+
},
|
|
763
|
+
small: {
|
|
764
|
+
avatarSize: 44,
|
|
765
|
+
bubbleLeftPosition: 28,
|
|
766
|
+
bubbleSize: 14
|
|
767
|
+
},
|
|
768
|
+
medium: {
|
|
769
|
+
avatarSize: 60,
|
|
770
|
+
bubbleLeftPosition: 40,
|
|
771
|
+
bubbleSize: 16
|
|
772
|
+
},
|
|
773
|
+
large: {
|
|
774
|
+
avatarSize: 76,
|
|
775
|
+
bubbleLeftPosition: 52,
|
|
776
|
+
bubbleSize: 20
|
|
777
|
+
},
|
|
778
|
+
xLarge: {
|
|
779
|
+
avatarSize: 96,
|
|
780
|
+
bubbleLeftPosition: 64,
|
|
781
|
+
bubbleSize: 28
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
};
|
|
785
|
+
var loadingSpinner$9 = {
|
|
786
|
+
size: {
|
|
787
|
+
xSmall: concepts$9.sizing.icons.xSmall,
|
|
788
|
+
small: concepts$9.sizing.icons.small,
|
|
789
|
+
medium: concepts$9.sizing.icons.medium,
|
|
790
|
+
large: concepts$9.sizing.icons.large,
|
|
791
|
+
xLarge: concepts$9.sizing.icons.xLarge
|
|
792
|
+
},
|
|
793
|
+
colors: {
|
|
794
|
+
primary: concepts$9.colors.primaryBrand.base,
|
|
795
|
+
secondary: concepts$9.colors.secondaryBrand.base,
|
|
796
|
+
success: concepts$9.colors.success.base,
|
|
797
|
+
warning: concepts$9.colors.warning.base,
|
|
798
|
+
danger: concepts$9.colors.danger.base
|
|
799
|
+
}
|
|
800
|
+
};
|
|
801
|
+
var separator$9 = {
|
|
802
|
+
border: borders$a.default,
|
|
803
|
+
color: concepts$9.colors.grayScale._1000
|
|
804
|
+
};
|
|
805
|
+
var card$9 = {
|
|
806
|
+
backgroundColor: concepts$9.colors.warning.base,
|
|
807
|
+
borderRadius: concepts$9.radius.default,
|
|
808
|
+
boxShadow: concepts$9.shadows.mediumDark,
|
|
809
|
+
defaultInset: spacing$9.x4 + " " + spacing$9.x2 + " " + spacing$9.x2 + " " + spacing$9.x2
|
|
810
|
+
};
|
|
811
|
+
var dialog$9 = {
|
|
812
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
813
|
+
boxShadow: concepts$9.shadows.mediumDark,
|
|
814
|
+
defaultInset: spacing$9.x6 + " " + spacing$9.x4 + " " + spacing$9.x4 + " " + spacing$9.x4
|
|
815
|
+
};
|
|
816
|
+
var drawer$9 = {
|
|
817
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
818
|
+
borderRadius: concepts$9.radius.small,
|
|
819
|
+
boxShadow: concepts$9.shadows.mediumLight,
|
|
820
|
+
bottomDirectionShadow: concepts$9.shadows.generate('mediumLight', Color$1(concepts$9.colors.defaultShadowColor).rgb().alpha(0.1).toString(), true),
|
|
821
|
+
hoverBoxShadow: concepts$9.shadows.mediumDark,
|
|
822
|
+
hoverBottomDirectionShadow: concepts$9.shadows.generate('mediumDark', Color$1(concepts$9.colors.defaultShadowColor).rgb().alpha(0.1).toString(), true),
|
|
823
|
+
defaultInset: "" + spacing$9.x1,
|
|
824
|
+
tab: {
|
|
825
|
+
dark: {
|
|
826
|
+
backgroundColor: concepts$9.colors.grayScale._600,
|
|
827
|
+
arrowColor: concepts$9.colors.foreground
|
|
828
|
+
},
|
|
829
|
+
light: {
|
|
830
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
831
|
+
arrowColor: icons$a.colors.default
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
};
|
|
835
|
+
var navigation$9 = {
|
|
836
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
837
|
+
border: borders$a.thin,
|
|
838
|
+
borderColor: concepts$9.colors.grayScale._1000
|
|
839
|
+
};
|
|
840
|
+
var sheet$9 = {
|
|
841
|
+
mobileBorderRadius: concepts$9.radius.large,
|
|
842
|
+
desktopBorderRadius: concepts$9.radius.default,
|
|
843
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
844
|
+
boxShadow: concepts$9.shadows.mediumDark
|
|
845
|
+
};
|
|
846
|
+
var slider$9 = {
|
|
847
|
+
backgroundColor: concepts$9.colors.background,
|
|
848
|
+
borderRadius: concepts$9.radius.small,
|
|
849
|
+
handleRadius: concepts$9.radius.circle,
|
|
850
|
+
handleColor: concepts$9.colors.foreground,
|
|
851
|
+
handleShadow: concepts$9.shadows.light
|
|
852
|
+
};
|
|
853
|
+
var toggle$9 = {
|
|
854
|
+
isActiveColor: concepts$9.colors.success.base,
|
|
855
|
+
isNotActiveColor: concepts$9.colors.grayScale._900
|
|
856
|
+
};
|
|
857
|
+
var tooltip$9 = {
|
|
858
|
+
lightBackgroundColor: concepts$9.colors.foreground,
|
|
859
|
+
darkBackgroundColor: concepts$9.colors.grayScale._100,
|
|
860
|
+
boxShadow: concepts$9.shadows.mediumLight,
|
|
861
|
+
borderColor: concepts$9.colors.background
|
|
862
|
+
};
|
|
863
|
+
var colorPicker$9 = {
|
|
864
|
+
backgroundColor: concepts$9.colors.background,
|
|
865
|
+
borderColor: 'transparent',
|
|
866
|
+
boxShadow: concepts$9.shadows.mediumLight,
|
|
867
|
+
borderRadius: concepts$9.radius.small
|
|
868
|
+
};
|
|
869
|
+
var sphere$a = {
|
|
870
|
+
xSmall: {
|
|
871
|
+
circumference: concepts$9.sizing.sphere.xSmall,
|
|
872
|
+
textType: 'title'
|
|
873
|
+
},
|
|
874
|
+
small: {
|
|
875
|
+
circumference: concepts$9.sizing.sphere.small,
|
|
876
|
+
textType: 'title'
|
|
877
|
+
},
|
|
878
|
+
medium: {
|
|
879
|
+
circumference: concepts$9.sizing.sphere.medium,
|
|
880
|
+
textType: 'heroTitle'
|
|
881
|
+
},
|
|
882
|
+
large: {
|
|
883
|
+
circumference: concepts$9.sizing.sphere.large,
|
|
884
|
+
textType: 'heroTitle'
|
|
885
|
+
},
|
|
886
|
+
xLarge: {
|
|
887
|
+
circumference: concepts$9.sizing.sphere.xLarge,
|
|
888
|
+
textType: 'heroTitle'
|
|
889
|
+
}
|
|
890
|
+
};
|
|
891
|
+
var widget$9 = {
|
|
892
|
+
primary: {
|
|
893
|
+
backgroundColor: concepts$9.colors.primaryBrand.base,
|
|
894
|
+
fontColor: 'inverseBody'
|
|
895
|
+
},
|
|
896
|
+
secondary: {
|
|
897
|
+
backgroundColor: concepts$9.colors.secondaryBrand.base,
|
|
898
|
+
fontColor: 'inverseBody'
|
|
899
|
+
},
|
|
900
|
+
warning: {
|
|
901
|
+
backgroundColor: concepts$9.colors.warning.base,
|
|
902
|
+
fontColor: 'primaryBody'
|
|
903
|
+
},
|
|
904
|
+
success: {
|
|
905
|
+
backgroundColor: concepts$9.colors.success.base,
|
|
906
|
+
fontColor: 'inverseBody'
|
|
907
|
+
},
|
|
908
|
+
danger: {
|
|
909
|
+
backgroundColor: concepts$9.colors.danger.base,
|
|
910
|
+
fontColor: 'primaryBody'
|
|
911
|
+
},
|
|
912
|
+
shadow: {
|
|
913
|
+
backgroundColor: concepts$9.colors.foreground,
|
|
914
|
+
fontColor: 'primaryBody'
|
|
915
|
+
},
|
|
916
|
+
accent: {
|
|
917
|
+
backgroundColor: concepts$9.colors.accent.base,
|
|
918
|
+
fontColor: 'primaryBody'
|
|
919
|
+
}
|
|
920
|
+
};
|
|
921
|
+
var colorOption$9 = {
|
|
922
|
+
defaults: {
|
|
923
|
+
circleFill: concepts$9.shadows.generate([0, 0, 6, 1], Color$1(concepts$9.colors.defaultShadowColor).rgb().alpha(0.1).toString()),
|
|
924
|
+
innerRing: concepts$9.shadows.generate([0, 0, 0, 11], Color$1([20, 30, 50]).rgb().alpha(0.03).toString()),
|
|
925
|
+
outerRing: concepts$9.shadows.generate([0, 0, 6, 1], Color$1(concepts$9.colors.defaultShadowColor).rgb().alpha(0.06).toString())
|
|
926
|
+
}
|
|
927
|
+
};
|
|
928
|
+
var entities$9 = {
|
|
929
|
+
mediaQueries: mediaQueries$c,
|
|
930
|
+
hocs: hocs$9,
|
|
931
|
+
text: text$9,
|
|
932
|
+
spacing: spacing$9,
|
|
933
|
+
buttons: buttons$9,
|
|
934
|
+
inputs: inputs$9,
|
|
935
|
+
icons: icons$a,
|
|
936
|
+
card: card$9,
|
|
937
|
+
separator: separator$9,
|
|
938
|
+
loadingSpinner: loadingSpinner$9,
|
|
939
|
+
animatedCheckmark: animatedCheckmark$9,
|
|
940
|
+
avatar: avatar$9,
|
|
941
|
+
dialog: dialog$9,
|
|
942
|
+
drawer: drawer$9,
|
|
943
|
+
sheet: sheet$9,
|
|
944
|
+
slider: slider$9,
|
|
945
|
+
navigation: navigation$9,
|
|
946
|
+
toggle: toggle$9,
|
|
947
|
+
tooltip: tooltip$9,
|
|
948
|
+
colorPicker: colorPicker$9,
|
|
949
|
+
sphere: sphere$a,
|
|
950
|
+
widget: widget$9,
|
|
951
|
+
colorOption: colorOption$9
|
|
952
|
+
};
|
|
953
|
+
|
|
954
|
+
var PURPLE$8 = '#8D7EAE';
|
|
955
|
+
var ORANGE$1 = '#F36D2C';
|
|
956
|
+
var GREEN$8 = '#1DE6B9';
|
|
957
|
+
var YELLOW$7 = '#F7A14D';
|
|
958
|
+
var RED$7 = '#FB2E4B';
|
|
959
|
+
var ACCENT$1 = '#FFF';
|
|
960
|
+
var WHITE$8 = '#FFF';
|
|
961
|
+
var BLUE$7 = '#1DC5E6'; // const GREEN = '#1DE9B6' // This green is almost identical to DOGO_GREEN, probably don't need both
|
|
962
|
+
|
|
963
|
+
var purpleSwatch$8 = computeColorSwatch(PURPLE$8);
|
|
964
|
+
var orangeSwatch$1 = computeColorSwatch(ORANGE$1);
|
|
965
|
+
var greenSwatch$8 = computeColorSwatch(GREEN$8);
|
|
966
|
+
var yellowSwatch$8 = computeColorSwatch(YELLOW$7);
|
|
967
|
+
var redSwatch$8 = computeColorSwatch(RED$7);
|
|
968
|
+
var accentSwatch$1 = computeColorSwatch(ACCENT$1);
|
|
969
|
+
var blueSwatch$7 = computeColorSwatch(BLUE$7);
|
|
970
|
+
var lightGray$1 = '#EAEAEA';
|
|
971
|
+
var colors$h = {
|
|
972
|
+
purpleSwatch: purpleSwatch$8,
|
|
973
|
+
orangeSwatch: orangeSwatch$1,
|
|
974
|
+
greenSwatch: greenSwatch$8,
|
|
975
|
+
redSwatch: redSwatch$8,
|
|
976
|
+
yellowSwatch: yellowSwatch$8,
|
|
977
|
+
accentSwatch: accentSwatch$1,
|
|
978
|
+
WHITE: WHITE$8,
|
|
979
|
+
blueSwatch: blueSwatch$7,
|
|
980
|
+
lightGray: lightGray$1
|
|
981
|
+
};
|
|
982
|
+
|
|
983
|
+
var radius = {
|
|
984
|
+
none: '0px',
|
|
985
|
+
small: '6px',
|
|
986
|
+
smallMedium: '8px',
|
|
987
|
+
medium: '12px',
|
|
988
|
+
mediumLarge: '16px',
|
|
989
|
+
large: '28px',
|
|
990
|
+
circle: '1000rem'
|
|
991
|
+
};
|
|
992
|
+
|
|
993
|
+
var SHADOW_DEFAULT_COLOR = '#000000';
|
|
994
|
+
|
|
995
|
+
var borders$9 = {
|
|
996
|
+
xSmall: 1,
|
|
997
|
+
small: 1.5,
|
|
998
|
+
medium: 2,
|
|
999
|
+
large: 2.5,
|
|
1000
|
+
xLarge: 3
|
|
1001
|
+
};
|
|
1002
|
+
|
|
1003
|
+
var BASE_VALUE$9 = 0.5;
|
|
1004
|
+
var BASE_UNITS$9 = 'rem';
|
|
1005
|
+
|
|
1006
|
+
var mediaQuerySizes = {
|
|
1007
|
+
small: 576,
|
|
1008
|
+
medium: 768,
|
|
1009
|
+
large: 992,
|
|
1010
|
+
xLarge: 1200
|
|
1011
|
+
};
|
|
1012
|
+
|
|
1013
|
+
var BASE_VALUE$8 = 1;
|
|
1014
|
+
var BASE_UNITS$8 = 'rem'; // Rename to typography
|
|
1015
|
+
|
|
1016
|
+
var computeFontSize$8 = function (multiplier) {
|
|
1017
|
+
return BASE_VALUE$8 * multiplier;
|
|
1018
|
+
};
|
|
1019
|
+
var XSMALL_FONT$8 = computeFontSize$8(0.75) + BASE_UNITS$8;
|
|
1020
|
+
var SMALL_FONT$8 = computeFontSize$8(0.875) + BASE_UNITS$8;
|
|
1021
|
+
var MEDIUM_FONT$8 = computeFontSize$8(1) + BASE_UNITS$8;
|
|
1022
|
+
var MEDIUM_PLUS_FONT$8 = computeFontSize$8(1.25) + BASE_UNITS$8;
|
|
1023
|
+
var LARGE_FONT$8 = computeFontSize$8(1.75) + BASE_UNITS$8;
|
|
1024
|
+
var XLARGE_FONT$8 = computeFontSize$8(2.125) + BASE_UNITS$8;
|
|
1025
|
+
var XXLARGE_FONT$8 = computeFontSize$8(3) + BASE_UNITS$8;
|
|
1026
|
+
var XSMALL_LINE_HEIGHT$8 = computeFontSize$8(1.5) + BASE_UNITS$8;
|
|
1027
|
+
var SMALL_LINE_HEIGHT$8 = computeFontSize$8(1.75) + BASE_UNITS$8;
|
|
1028
|
+
var MEDIUM_LINE_HEIGHT$8 = computeFontSize$8(2) + BASE_UNITS$8;
|
|
1029
|
+
var LARGE_LINE_HEIGHT$8 = computeFontSize$8(2.5) + BASE_UNITS$8;
|
|
1030
|
+
var XLARGE_LINE_HEIGHT$8 = computeFontSize$8(3) + BASE_UNITS$8;
|
|
1031
|
+
var XXLARGE_LINE_HEIGHT$8 = computeFontSize$8(3.5) + BASE_UNITS$8;
|
|
1032
|
+
var HEADING_FONT_FAMILY$8 = "'Poppins', 'Open Sans', sans-serif";
|
|
1033
|
+
var BODY_FONT_FAMILY$8 = "'Poppins', 'Open Sans', sans-serif";
|
|
1034
|
+
var BODY_FONT_IMPORT$8 = 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap';
|
|
1035
|
+
var HEADING_FONT_IMPORT$8 = 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap';
|
|
1036
|
+
var WEIGHT_THIN$8 = 300;
|
|
1037
|
+
var WEIGHT_REGULAR$8 = 400;
|
|
1038
|
+
var WEIGHT_SEMI_BOLD$8 = 600;
|
|
1039
|
+
var WEIGHT_BOLD$8 = 700;
|
|
1040
|
+
var WEIGHT_EXTRA_BOLD$8 = 800;
|
|
1041
|
+
|
|
1042
|
+
var icons$9 = {
|
|
1043
|
+
xSmall: 18,
|
|
1044
|
+
small: 24,
|
|
1045
|
+
medium: 32,
|
|
1046
|
+
large: 64,
|
|
1047
|
+
xLarge: 88
|
|
1048
|
+
};
|
|
1049
|
+
var sphere$9 = {
|
|
1050
|
+
xSmall: 64,
|
|
1051
|
+
small: 80,
|
|
1052
|
+
medium: 96,
|
|
1053
|
+
large: 104,
|
|
1054
|
+
xLarge: 128
|
|
1055
|
+
};
|
|
1056
|
+
|
|
294
1057
|
var colors$g = {
|
|
295
|
-
primaryBrand: colors$h.
|
|
296
|
-
secondaryBrand: colors$h.
|
|
1058
|
+
primaryBrand: colors$h.purpleSwatch,
|
|
1059
|
+
secondaryBrand: colors$h.orangeSwatch,
|
|
297
1060
|
accent: colors$h.accentSwatch,
|
|
298
1061
|
success: colors$h.greenSwatch,
|
|
299
1062
|
warning: colors$h.yellowSwatch,
|
|
300
1063
|
danger: colors$h.redSwatch,
|
|
301
1064
|
background: colors$h.lightGray,
|
|
302
1065
|
foreground: colors$h.WHITE,
|
|
303
|
-
grayScale: computeGrayScale(colors$h.
|
|
1066
|
+
grayScale: computeGrayScale(colors$h.purpleSwatch),
|
|
304
1067
|
blueScale: colors$h.blueSwatch,
|
|
1068
|
+
purpleScale: colors$h.purpleSwatch,
|
|
305
1069
|
white: colors$h.WHITE,
|
|
306
|
-
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
1070
|
+
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
307
1071
|
};
|
|
308
1072
|
var concepts$8 = {
|
|
309
1073
|
colors: __assign({}, colors$g),
|
|
310
1074
|
radius: {
|
|
311
|
-
none: radius
|
|
312
|
-
small: radius
|
|
313
|
-
medium: radius
|
|
314
|
-
default: radius
|
|
315
|
-
large: radius
|
|
316
|
-
circle: radius
|
|
1075
|
+
none: radius.none,
|
|
1076
|
+
small: radius.small,
|
|
1077
|
+
medium: radius.mediumLarge,
|
|
1078
|
+
default: radius.medium,
|
|
1079
|
+
large: radius.large,
|
|
1080
|
+
circle: radius.circle
|
|
317
1081
|
},
|
|
318
1082
|
shadows: {
|
|
319
|
-
light: computeShadow('light', Color$1(colors$g.defaultShadowColor).rgb().alpha(0.
|
|
1083
|
+
light: computeShadow('light', Color$1(colors$g.defaultShadowColor).rgb().alpha(0.08).toString()),
|
|
320
1084
|
mediumLight: computeShadow('mediumLight', Color$1(colors$g.defaultShadowColor).rgb().alpha(0.08).toString()),
|
|
321
1085
|
mediumDark: computeShadow('mediumDark', Color$1(colors$g.defaultShadowColor).rgb().alpha(0.1).toString()),
|
|
322
1086
|
dark: computeShadow('dark', Color$1(colors$g.defaultShadowColor).rgb().alpha(0.12).toString()),
|
|
@@ -363,46 +1127,40 @@ var concepts$8 = {
|
|
|
363
1127
|
}
|
|
364
1128
|
},
|
|
365
1129
|
borders: {
|
|
366
|
-
thin: borders$
|
|
367
|
-
small: borders$
|
|
368
|
-
default: borders$
|
|
369
|
-
large: borders$
|
|
370
|
-
bold: borders$
|
|
1130
|
+
thin: borders$9.xSmall,
|
|
1131
|
+
small: borders$9.small,
|
|
1132
|
+
default: borders$9.medium,
|
|
1133
|
+
large: borders$9.large,
|
|
1134
|
+
bold: borders$9.xLarge
|
|
371
1135
|
},
|
|
372
1136
|
spacing: {
|
|
373
|
-
baseValue: BASE_VALUE$
|
|
374
|
-
baseUnits: BASE_UNITS$
|
|
1137
|
+
baseValue: BASE_VALUE$9,
|
|
1138
|
+
baseUnits: BASE_UNITS$9
|
|
375
1139
|
},
|
|
376
1140
|
mediaQueries: {
|
|
377
|
-
small: mediaQuerySizes
|
|
378
|
-
medium: mediaQuerySizes
|
|
379
|
-
large: mediaQuerySizes
|
|
380
|
-
xLarge: mediaQuerySizes
|
|
1141
|
+
small: mediaQuerySizes.small,
|
|
1142
|
+
medium: mediaQuerySizes.medium,
|
|
1143
|
+
large: mediaQuerySizes.large,
|
|
1144
|
+
xLarge: mediaQuerySizes.xLarge
|
|
381
1145
|
},
|
|
382
1146
|
sizing: {
|
|
383
1147
|
icons: {
|
|
384
|
-
xSmall: icons$
|
|
385
|
-
small: icons$
|
|
386
|
-
medium: icons$
|
|
387
|
-
large: icons$
|
|
388
|
-
xLarge: icons$
|
|
1148
|
+
xSmall: icons$9.xSmall,
|
|
1149
|
+
small: icons$9.small,
|
|
1150
|
+
medium: icons$9.medium,
|
|
1151
|
+
large: icons$9.large,
|
|
1152
|
+
xLarge: icons$9.xLarge
|
|
389
1153
|
},
|
|
390
1154
|
sphere: {
|
|
391
|
-
xSmall: sphere$
|
|
392
|
-
small: sphere$
|
|
393
|
-
medium: sphere$
|
|
394
|
-
large: sphere$
|
|
395
|
-
xLarge: sphere$
|
|
1155
|
+
xSmall: sphere$9.xSmall,
|
|
1156
|
+
small: sphere$9.small,
|
|
1157
|
+
medium: sphere$9.medium,
|
|
1158
|
+
large: sphere$9.large,
|
|
1159
|
+
xLarge: sphere$9.xLarge
|
|
396
1160
|
}
|
|
397
1161
|
}
|
|
398
1162
|
};
|
|
399
1163
|
|
|
400
|
-
var computeSpace = function (baseValue, baseUnits) {
|
|
401
|
-
return function (multiplier) {
|
|
402
|
-
return baseValue * multiplier + baseUnits;
|
|
403
|
-
};
|
|
404
|
-
};
|
|
405
|
-
|
|
406
1164
|
var space$8 = computeSpace(concepts$8.spacing.baseValue, concepts$8.spacing.baseUnits);
|
|
407
1165
|
var spacing$8 = {
|
|
408
1166
|
x0: space$8(0),
|
|
@@ -421,7 +1179,7 @@ var spacing$8 = {
|
|
|
421
1179
|
x8: space$8(8),
|
|
422
1180
|
x9: space$8(9)
|
|
423
1181
|
};
|
|
424
|
-
var borders$
|
|
1182
|
+
var borders$8 = {
|
|
425
1183
|
thin: concepts$8.borders.thin + "px",
|
|
426
1184
|
default: concepts$8.borders.default + "px",
|
|
427
1185
|
bold: concepts$8.borders.bold + "px"
|
|
@@ -537,7 +1295,8 @@ var hocs$8 = {
|
|
|
537
1295
|
warning: concepts$8.colors.warning,
|
|
538
1296
|
accent: concepts$8.colors.accent,
|
|
539
1297
|
grayScale: concepts$8.colors.grayScale,
|
|
540
|
-
blueScale: concepts$8.colors.blueScale
|
|
1298
|
+
blueScale: concepts$8.colors.blueScale,
|
|
1299
|
+
purpleScale: concepts$8.colors.purpleScale
|
|
541
1300
|
},
|
|
542
1301
|
background: concepts$8.colors.background,
|
|
543
1302
|
foreground: concepts$8.colors.foreground
|
|
@@ -546,52 +1305,12 @@ var hocs$8 = {
|
|
|
546
1305
|
spacing: spacing$8,
|
|
547
1306
|
borderRadius: concepts$8.radius,
|
|
548
1307
|
shadows: concepts$8.shadows,
|
|
549
|
-
borders: borders$
|
|
1308
|
+
borders: borders$8
|
|
550
1309
|
}; // TODO - revisit buttons for contrast and font color
|
|
551
1310
|
|
|
552
1311
|
var buttons$8 = {
|
|
553
|
-
primary: {
|
|
554
|
-
backgroundColor: concepts$8.colors.primaryBrand.base,
|
|
555
|
-
fontColor: concepts$8.typography.colors.inverseBody,
|
|
556
|
-
fontFamily: concepts$8.typography.families.body
|
|
557
|
-
},
|
|
558
|
-
secondary: {
|
|
559
|
-
backgroundColor: concepts$8.colors.secondaryBrand.base,
|
|
560
|
-
fontColor: concepts$8.typography.colors.inverseBody,
|
|
561
|
-
fontFamily: concepts$8.typography.families.body
|
|
562
|
-
},
|
|
563
|
-
warning: {
|
|
564
|
-
backgroundColor: concepts$8.colors.warning.base,
|
|
565
|
-
fontColor: concepts$8.typography.colors.inverseBody,
|
|
566
|
-
fontFamily: concepts$8.typography.families.body
|
|
567
|
-
},
|
|
568
|
-
success: {
|
|
569
|
-
backgroundColor: concepts$8.colors.success.base,
|
|
570
|
-
fontColor: concepts$8.typography.colors.inverseBody,
|
|
571
|
-
fontFamily: concepts$8.typography.families.body
|
|
572
|
-
},
|
|
573
|
-
danger: {
|
|
574
|
-
backgroundColor: concepts$8.colors.danger.base,
|
|
575
|
-
fontColor: concepts$8.typography.colors.inverseBody,
|
|
576
|
-
fontFamily: concepts$8.typography.families.body
|
|
577
|
-
},
|
|
578
|
-
shadow: {
|
|
579
|
-
backgroundColor: concepts$8.colors.foreground,
|
|
580
|
-
fontColor: concepts$8.typography.colors.primaryBody,
|
|
581
|
-
fontFamily: concepts$8.typography.families.body
|
|
582
|
-
},
|
|
583
|
-
accent: {
|
|
584
|
-
backgroundColor: concepts$8.colors.accent.base,
|
|
585
|
-
fontColor: concepts$8.typography.colors.primaryBody,
|
|
586
|
-
fontFamily: concepts$8.typography.families.body
|
|
587
|
-
},
|
|
588
|
-
smoke: {
|
|
589
|
-
backgroundColor: concepts$8.colors.background,
|
|
590
|
-
fontColor: concepts$8.typography.colors.primaryBody,
|
|
591
|
-
fontFamily: concepts$8.typography.families.body
|
|
592
|
-
},
|
|
593
1312
|
boxShadow: concepts$8.shadows.generate,
|
|
594
|
-
borderSize: borders$
|
|
1313
|
+
borderSize: borders$8.default,
|
|
595
1314
|
outlinedBackgroundColor: concepts$8.colors.foreground,
|
|
596
1315
|
fontWeight: concepts$8.typography.weights.semiBold,
|
|
597
1316
|
sizes: {
|
|
@@ -640,11 +1359,51 @@ var buttons$8 = {
|
|
|
640
1359
|
fontSize: text$8.types.subtitle.size,
|
|
641
1360
|
borderRadius: concepts$8.radius.default
|
|
642
1361
|
}
|
|
1362
|
+
},
|
|
1363
|
+
primary: {
|
|
1364
|
+
backgroundColor: concepts$8.colors.primaryBrand.base,
|
|
1365
|
+
fontColor: concepts$8.typography.colors.inverseBody,
|
|
1366
|
+
fontFamily: concepts$8.typography.families.body
|
|
1367
|
+
},
|
|
1368
|
+
secondary: {
|
|
1369
|
+
backgroundColor: concepts$8.colors.secondaryBrand.base,
|
|
1370
|
+
fontColor: concepts$8.typography.colors.inverseBody,
|
|
1371
|
+
fontFamily: concepts$8.typography.families.body
|
|
1372
|
+
},
|
|
1373
|
+
warning: {
|
|
1374
|
+
backgroundColor: concepts$8.colors.warning.base,
|
|
1375
|
+
fontColor: concepts$8.typography.colors.inverseBody,
|
|
1376
|
+
fontFamily: concepts$8.typography.families.body
|
|
1377
|
+
},
|
|
1378
|
+
success: {
|
|
1379
|
+
backgroundColor: concepts$8.colors.success.base,
|
|
1380
|
+
fontColor: concepts$8.typography.colors.inverseBody,
|
|
1381
|
+
fontFamily: concepts$8.typography.families.body
|
|
1382
|
+
},
|
|
1383
|
+
danger: {
|
|
1384
|
+
backgroundColor: concepts$8.colors.danger.base,
|
|
1385
|
+
fontColor: concepts$8.typography.colors.inverseBody,
|
|
1386
|
+
fontFamily: concepts$8.typography.families.body
|
|
1387
|
+
},
|
|
1388
|
+
shadow: {
|
|
1389
|
+
backgroundColor: concepts$8.colors.foreground,
|
|
1390
|
+
fontColor: concepts$8.typography.colors.primaryBody,
|
|
1391
|
+
fontFamily: concepts$8.typography.families.body
|
|
1392
|
+
},
|
|
1393
|
+
accent: {
|
|
1394
|
+
backgroundColor: concepts$8.colors.accent.base,
|
|
1395
|
+
fontColor: concepts$8.typography.colors.primaryBody,
|
|
1396
|
+
fontFamily: concepts$8.typography.families.body
|
|
1397
|
+
},
|
|
1398
|
+
smoke: {
|
|
1399
|
+
backgroundColor: concepts$8.colors.background,
|
|
1400
|
+
fontColor: concepts$8.typography.colors.primaryBody,
|
|
1401
|
+
fontFamily: concepts$8.typography.families.body
|
|
643
1402
|
}
|
|
644
1403
|
};
|
|
645
1404
|
var inputs$8 = {
|
|
646
1405
|
checkbox: {
|
|
647
|
-
border: borders$
|
|
1406
|
+
border: borders$8.default,
|
|
648
1407
|
borderRadius: concepts$8.radius.small,
|
|
649
1408
|
unCheckedBackgroundColor: concepts$8.colors.grayScale._1000,
|
|
650
1409
|
checkmarkColor: concepts$8.typography.colors.inverseBody,
|
|
@@ -656,7 +1415,7 @@ var inputs$8 = {
|
|
|
656
1415
|
placeholderColor: concepts$8.typography.colors.primaryBody,
|
|
657
1416
|
labelFontSize: text$8.types.caption.size,
|
|
658
1417
|
textFontSize: text$8.types.caption.size,
|
|
659
|
-
borderWidth: borders$
|
|
1418
|
+
borderWidth: borders$8.default,
|
|
660
1419
|
defaultFocusColor: concepts$8.colors.blueScale.base
|
|
661
1420
|
},
|
|
662
1421
|
select: {
|
|
@@ -686,7 +1445,7 @@ var inputs$8 = {
|
|
|
686
1445
|
blue: concepts$8.colors.blueScale.base
|
|
687
1446
|
}
|
|
688
1447
|
};
|
|
689
|
-
var icons$
|
|
1448
|
+
var icons$8 = {
|
|
690
1449
|
sizes: {
|
|
691
1450
|
xSmall: concepts$8.sizing.icons.xSmall,
|
|
692
1451
|
small: concepts$8.sizing.icons.small,
|
|
@@ -732,13 +1491,13 @@ var animatedCheckmark$8 = {
|
|
|
732
1491
|
checkmarkFilledColor: concepts$8.colors.foreground
|
|
733
1492
|
};
|
|
734
1493
|
var avatar$8 = {
|
|
735
|
-
borderWidth: borders$
|
|
1494
|
+
borderWidth: borders$8.thin,
|
|
736
1495
|
borderColor: concepts$8.colors.grayScale._1000,
|
|
737
1496
|
borderRadius: concepts$8.radius.circle,
|
|
738
1497
|
boxShadow: concepts$8.shadows.mediumLight,
|
|
739
1498
|
backgroundColor: concepts$8.colors.foreground,
|
|
740
1499
|
bubbleBackgroundColors: {
|
|
741
|
-
isActive: concepts$8.colors.success.
|
|
1500
|
+
isActive: concepts$8.colors.success.base,
|
|
742
1501
|
default: concepts$8.colors.grayScale._1000
|
|
743
1502
|
},
|
|
744
1503
|
defaultBackgroundColors: {
|
|
@@ -793,8 +1552,15 @@ var loadingSpinner$8 = {
|
|
|
793
1552
|
danger: concepts$8.colors.danger.base
|
|
794
1553
|
}
|
|
795
1554
|
};
|
|
1555
|
+
var slider$8 = {
|
|
1556
|
+
backgroundColor: concepts$8.colors.background,
|
|
1557
|
+
borderRadius: concepts$8.radius.small,
|
|
1558
|
+
handleRadius: concepts$8.radius.circle,
|
|
1559
|
+
handleColor: concepts$8.colors.foreground,
|
|
1560
|
+
handleShadow: concepts$8.shadows.light
|
|
1561
|
+
};
|
|
796
1562
|
var separator$8 = {
|
|
797
|
-
border: borders$
|
|
1563
|
+
border: borders$8.default,
|
|
798
1564
|
color: concepts$8.colors.grayScale._1000
|
|
799
1565
|
};
|
|
800
1566
|
var card$8 = {
|
|
@@ -805,9 +1571,15 @@ var card$8 = {
|
|
|
805
1571
|
};
|
|
806
1572
|
var dialog$8 = {
|
|
807
1573
|
backgroundColor: concepts$8.colors.foreground,
|
|
1574
|
+
borderRadius: concepts$8.radius.default,
|
|
808
1575
|
boxShadow: concepts$8.shadows.mediumDark,
|
|
809
1576
|
defaultInset: spacing$8.x6 + " " + spacing$8.x4 + " " + spacing$8.x4 + " " + spacing$8.x4
|
|
810
1577
|
};
|
|
1578
|
+
var navigation$8 = {
|
|
1579
|
+
backgroundColor: concepts$8.colors.foreground,
|
|
1580
|
+
border: borders$8.thin,
|
|
1581
|
+
borderColor: concepts$8.colors.grayScale._1000
|
|
1582
|
+
};
|
|
811
1583
|
var drawer$8 = {
|
|
812
1584
|
backgroundColor: concepts$8.colors.foreground,
|
|
813
1585
|
borderRadius: concepts$8.radius.small,
|
|
@@ -823,28 +1595,16 @@ var drawer$8 = {
|
|
|
823
1595
|
},
|
|
824
1596
|
light: {
|
|
825
1597
|
backgroundColor: concepts$8.colors.foreground,
|
|
826
|
-
arrowColor: icons$
|
|
1598
|
+
arrowColor: icons$8.colors.default
|
|
827
1599
|
}
|
|
828
1600
|
}
|
|
829
1601
|
};
|
|
830
|
-
var navigation$8 = {
|
|
831
|
-
backgroundColor: concepts$8.colors.foreground,
|
|
832
|
-
border: borders$9.thin,
|
|
833
|
-
borderColor: concepts$8.colors.grayScale._1000
|
|
834
|
-
};
|
|
835
1602
|
var sheet$8 = {
|
|
836
1603
|
mobileBorderRadius: concepts$8.radius.large,
|
|
837
1604
|
desktopBorderRadius: concepts$8.radius.default,
|
|
838
1605
|
backgroundColor: concepts$8.colors.foreground,
|
|
839
1606
|
boxShadow: concepts$8.shadows.mediumDark
|
|
840
1607
|
};
|
|
841
|
-
var slider$8 = {
|
|
842
|
-
backgroundColor: concepts$8.colors.background,
|
|
843
|
-
borderRadius: concepts$8.radius.small,
|
|
844
|
-
handleRadius: concepts$8.radius.circle,
|
|
845
|
-
handleColor: concepts$8.colors.foreground,
|
|
846
|
-
handleShadow: concepts$8.shadows.light
|
|
847
|
-
};
|
|
848
1608
|
var toggle$8 = {
|
|
849
1609
|
isActiveColor: concepts$8.colors.success.base,
|
|
850
1610
|
isNotActiveColor: concepts$8.colors.grayScale._900
|
|
@@ -861,7 +1621,7 @@ var colorPicker$8 = {
|
|
|
861
1621
|
boxShadow: concepts$8.shadows.mediumLight,
|
|
862
1622
|
borderRadius: concepts$8.radius.small
|
|
863
1623
|
};
|
|
864
|
-
var sphere$
|
|
1624
|
+
var sphere$8 = {
|
|
865
1625
|
xSmall: {
|
|
866
1626
|
circumference: concepts$8.sizing.sphere.xSmall,
|
|
867
1627
|
textType: 'title'
|
|
@@ -894,15 +1654,15 @@ var widget$8 = {
|
|
|
894
1654
|
},
|
|
895
1655
|
warning: {
|
|
896
1656
|
backgroundColor: concepts$8.colors.warning.base,
|
|
897
|
-
fontColor: '
|
|
1657
|
+
fontColor: 'inverseBody'
|
|
898
1658
|
},
|
|
899
1659
|
success: {
|
|
900
1660
|
backgroundColor: concepts$8.colors.success.base,
|
|
901
|
-
fontColor: '
|
|
1661
|
+
fontColor: 'primaryBody'
|
|
902
1662
|
},
|
|
903
1663
|
danger: {
|
|
904
1664
|
backgroundColor: concepts$8.colors.danger.base,
|
|
905
|
-
fontColor: '
|
|
1665
|
+
fontColor: 'inverseBody'
|
|
906
1666
|
},
|
|
907
1667
|
shadow: {
|
|
908
1668
|
backgroundColor: concepts$8.colors.foreground,
|
|
@@ -927,82 +1687,57 @@ var entities$8 = {
|
|
|
927
1687
|
spacing: spacing$8,
|
|
928
1688
|
buttons: buttons$8,
|
|
929
1689
|
inputs: inputs$8,
|
|
930
|
-
icons: icons$
|
|
1690
|
+
icons: icons$8,
|
|
931
1691
|
card: card$8,
|
|
932
1692
|
separator: separator$8,
|
|
933
1693
|
loadingSpinner: loadingSpinner$8,
|
|
934
1694
|
animatedCheckmark: animatedCheckmark$8,
|
|
935
1695
|
avatar: avatar$8,
|
|
936
1696
|
dialog: dialog$8,
|
|
937
|
-
drawer: drawer$8,
|
|
938
1697
|
sheet: sheet$8,
|
|
939
|
-
slider: slider$8,
|
|
940
1698
|
navigation: navigation$8,
|
|
941
1699
|
toggle: toggle$8,
|
|
942
1700
|
tooltip: tooltip$8,
|
|
1701
|
+
drawer: drawer$8,
|
|
1702
|
+
slider: slider$8,
|
|
943
1703
|
colorPicker: colorPicker$8,
|
|
944
|
-
sphere: sphere$
|
|
1704
|
+
sphere: sphere$8,
|
|
945
1705
|
widget: widget$8,
|
|
946
1706
|
colorOption: colorOption$8
|
|
947
1707
|
};
|
|
948
1708
|
|
|
949
|
-
var
|
|
950
|
-
var
|
|
1709
|
+
var BRIGHT_GREEN$1 = '#74C468';
|
|
1710
|
+
var LIGHT_BLUE$2 = '#52C1D1';
|
|
1711
|
+
var BASE_GRAY$6 = '#696767';
|
|
1712
|
+
var COPPER = '#BB7E3D';
|
|
951
1713
|
var GREEN$7 = '#1DE6B9';
|
|
952
|
-
var YELLOW$
|
|
953
|
-
var RED$
|
|
954
|
-
var ACCENT$1 = '#FFF';
|
|
1714
|
+
var YELLOW$6 = '#F7A14D';
|
|
1715
|
+
var RED$6 = '#FB2E4B';
|
|
955
1716
|
var WHITE$7 = '#FFF';
|
|
956
|
-
var BLUE$
|
|
957
|
-
|
|
958
|
-
var
|
|
959
|
-
var
|
|
1717
|
+
var BLUE$6 = '#1DC5E6';
|
|
1718
|
+
var PURPLE$7 = '#703A96';
|
|
1719
|
+
var brightGreenSwatch$1 = computeColorSwatch(BRIGHT_GREEN$1);
|
|
1720
|
+
var lightBlueSwatch$1 = computeColorSwatch(LIGHT_BLUE$2);
|
|
1721
|
+
var baseGraySwatch$5 = computeColorSwatch(BASE_GRAY$6);
|
|
960
1722
|
var greenSwatch$7 = computeColorSwatch(GREEN$7);
|
|
961
|
-
var yellowSwatch$7 = computeColorSwatch(YELLOW$
|
|
962
|
-
var redSwatch$7 = computeColorSwatch(RED$
|
|
963
|
-
var
|
|
964
|
-
var blueSwatch$
|
|
965
|
-
var
|
|
1723
|
+
var yellowSwatch$7 = computeColorSwatch(YELLOW$6);
|
|
1724
|
+
var redSwatch$7 = computeColorSwatch(RED$6);
|
|
1725
|
+
var copperSwatch = computeColorSwatch(COPPER);
|
|
1726
|
+
var blueSwatch$6 = computeColorSwatch(BLUE$6);
|
|
1727
|
+
var purpleSwatch$7 = computeColorSwatch(PURPLE$7);
|
|
1728
|
+
var BASE$6 = '#FBF9F4';
|
|
966
1729
|
var colors$f = {
|
|
967
|
-
|
|
968
|
-
|
|
1730
|
+
brightGreenSwatch: brightGreenSwatch$1,
|
|
1731
|
+
lightBlueSwatch: lightBlueSwatch$1,
|
|
969
1732
|
greenSwatch: greenSwatch$7,
|
|
1733
|
+
copperSwatch: copperSwatch,
|
|
1734
|
+
baseGraySwatch: baseGraySwatch$5,
|
|
970
1735
|
redSwatch: redSwatch$7,
|
|
971
1736
|
yellowSwatch: yellowSwatch$7,
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
};
|
|
977
|
-
|
|
978
|
-
var radius = {
|
|
979
|
-
none: '0px',
|
|
980
|
-
small: '6px',
|
|
981
|
-
smallMedium: '8px',
|
|
982
|
-
medium: '12px',
|
|
983
|
-
mediumLarge: '16px',
|
|
984
|
-
large: '28px',
|
|
985
|
-
circle: '1000rem'
|
|
986
|
-
};
|
|
987
|
-
|
|
988
|
-
var SHADOW_DEFAULT_COLOR = '#000000';
|
|
989
|
-
|
|
990
|
-
var borders$8 = {
|
|
991
|
-
xSmall: 1,
|
|
992
|
-
small: 1.5,
|
|
993
|
-
medium: 2,
|
|
994
|
-
large: 2.5,
|
|
995
|
-
xLarge: 3
|
|
996
|
-
};
|
|
997
|
-
|
|
998
|
-
var BASE_VALUE$8 = 0.5;
|
|
999
|
-
var BASE_UNITS$8 = 'rem';
|
|
1000
|
-
|
|
1001
|
-
var mediaQuerySizes = {
|
|
1002
|
-
small: 576,
|
|
1003
|
-
medium: 768,
|
|
1004
|
-
large: 992,
|
|
1005
|
-
xLarge: 1200
|
|
1737
|
+
blueSwatch: blueSwatch$6,
|
|
1738
|
+
purpleSwatch: purpleSwatch$7,
|
|
1739
|
+
BASE: BASE$6,
|
|
1740
|
+
WHITE: WHITE$7
|
|
1006
1741
|
};
|
|
1007
1742
|
|
|
1008
1743
|
var BASE_VALUE$7 = 1;
|
|
@@ -1034,32 +1769,18 @@ var WEIGHT_SEMI_BOLD$7 = 600;
|
|
|
1034
1769
|
var WEIGHT_BOLD$7 = 700;
|
|
1035
1770
|
var WEIGHT_EXTRA_BOLD$7 = 800;
|
|
1036
1771
|
|
|
1037
|
-
var icons$8 = {
|
|
1038
|
-
xSmall: 18,
|
|
1039
|
-
small: 24,
|
|
1040
|
-
medium: 32,
|
|
1041
|
-
large: 64,
|
|
1042
|
-
xLarge: 88
|
|
1043
|
-
};
|
|
1044
|
-
var sphere$8 = {
|
|
1045
|
-
xSmall: 64,
|
|
1046
|
-
small: 80,
|
|
1047
|
-
medium: 96,
|
|
1048
|
-
large: 104,
|
|
1049
|
-
xLarge: 128
|
|
1050
|
-
};
|
|
1051
|
-
|
|
1052
1772
|
var colors$e = {
|
|
1053
|
-
primaryBrand: colors$f.
|
|
1054
|
-
secondaryBrand: colors$f.
|
|
1055
|
-
accent: colors$f.
|
|
1773
|
+
primaryBrand: colors$f.brightGreenSwatch,
|
|
1774
|
+
secondaryBrand: colors$f.lightBlueSwatch,
|
|
1775
|
+
accent: colors$f.copperSwatch,
|
|
1056
1776
|
success: colors$f.greenSwatch,
|
|
1057
1777
|
warning: colors$f.yellowSwatch,
|
|
1058
1778
|
danger: colors$f.redSwatch,
|
|
1059
|
-
background: colors$f.
|
|
1779
|
+
background: colors$f.BASE,
|
|
1060
1780
|
foreground: colors$f.WHITE,
|
|
1061
|
-
grayScale:
|
|
1781
|
+
grayScale: colors$f.baseGraySwatch,
|
|
1062
1782
|
blueScale: colors$f.blueSwatch,
|
|
1783
|
+
purpleScale: colors$f.purpleSwatch,
|
|
1063
1784
|
white: colors$f.WHITE,
|
|
1064
1785
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
1065
1786
|
};
|
|
@@ -1121,15 +1842,15 @@ var concepts$7 = {
|
|
|
1121
1842
|
}
|
|
1122
1843
|
},
|
|
1123
1844
|
borders: {
|
|
1124
|
-
thin: borders$
|
|
1125
|
-
small: borders$
|
|
1126
|
-
default: borders$
|
|
1127
|
-
large: borders$
|
|
1128
|
-
bold: borders$
|
|
1845
|
+
thin: borders$9.xSmall,
|
|
1846
|
+
small: borders$9.small,
|
|
1847
|
+
default: borders$9.medium,
|
|
1848
|
+
large: borders$9.large,
|
|
1849
|
+
bold: borders$9.xLarge
|
|
1129
1850
|
},
|
|
1130
1851
|
spacing: {
|
|
1131
|
-
baseValue: BASE_VALUE$
|
|
1132
|
-
baseUnits: BASE_UNITS$
|
|
1852
|
+
baseValue: BASE_VALUE$9,
|
|
1853
|
+
baseUnits: BASE_UNITS$9
|
|
1133
1854
|
},
|
|
1134
1855
|
mediaQueries: {
|
|
1135
1856
|
small: mediaQuerySizes.small,
|
|
@@ -1139,18 +1860,18 @@ var concepts$7 = {
|
|
|
1139
1860
|
},
|
|
1140
1861
|
sizing: {
|
|
1141
1862
|
icons: {
|
|
1142
|
-
xSmall: icons$
|
|
1143
|
-
small: icons$
|
|
1144
|
-
medium: icons$
|
|
1145
|
-
large: icons$
|
|
1146
|
-
xLarge: icons$
|
|
1863
|
+
xSmall: icons$9.xSmall,
|
|
1864
|
+
small: icons$9.small,
|
|
1865
|
+
medium: icons$9.medium,
|
|
1866
|
+
large: icons$9.large,
|
|
1867
|
+
xLarge: icons$9.xLarge
|
|
1147
1868
|
},
|
|
1148
1869
|
sphere: {
|
|
1149
|
-
xSmall: sphere$
|
|
1150
|
-
small: sphere$
|
|
1151
|
-
medium: sphere$
|
|
1152
|
-
large: sphere$
|
|
1153
|
-
xLarge: sphere$
|
|
1870
|
+
xSmall: sphere$9.xSmall,
|
|
1871
|
+
small: sphere$9.small,
|
|
1872
|
+
medium: sphere$9.medium,
|
|
1873
|
+
large: sphere$9.large,
|
|
1874
|
+
xLarge: sphere$9.xLarge
|
|
1154
1875
|
}
|
|
1155
1876
|
}
|
|
1156
1877
|
};
|
|
@@ -1289,7 +2010,8 @@ var hocs$7 = {
|
|
|
1289
2010
|
warning: concepts$7.colors.warning,
|
|
1290
2011
|
accent: concepts$7.colors.accent,
|
|
1291
2012
|
grayScale: concepts$7.colors.grayScale,
|
|
1292
|
-
blueScale: concepts$7.colors.blueScale
|
|
2013
|
+
blueScale: concepts$7.colors.blueScale,
|
|
2014
|
+
purpleScale: concepts$7.colors.purpleScale
|
|
1293
2015
|
},
|
|
1294
2016
|
background: concepts$7.colors.background,
|
|
1295
2017
|
foreground: concepts$7.colors.foreground
|
|
@@ -1394,11 +2116,18 @@ var buttons$7 = {
|
|
|
1394
2116
|
fontFamily: concepts$7.typography.families.body
|
|
1395
2117
|
}
|
|
1396
2118
|
};
|
|
2119
|
+
var slider$7 = {
|
|
2120
|
+
backgroundColor: concepts$7.colors.background,
|
|
2121
|
+
borderRadius: concepts$7.radius.small,
|
|
2122
|
+
handleRadius: concepts$7.radius.circle,
|
|
2123
|
+
handleColor: concepts$7.colors.foreground,
|
|
2124
|
+
handleShadow: concepts$7.shadows.light
|
|
2125
|
+
};
|
|
1397
2126
|
var inputs$7 = {
|
|
1398
2127
|
checkbox: {
|
|
1399
2128
|
border: borders$7.default,
|
|
1400
2129
|
borderRadius: concepts$7.radius.small,
|
|
1401
|
-
unCheckedBackgroundColor: concepts$7.colors.grayScale.
|
|
2130
|
+
unCheckedBackgroundColor: concepts$7.colors.grayScale._800,
|
|
1402
2131
|
checkmarkColor: concepts$7.typography.colors.inverseBody,
|
|
1403
2132
|
labelColor: concepts$7.typography.colors.primaryBody
|
|
1404
2133
|
},
|
|
@@ -1485,13 +2214,13 @@ var animatedCheckmark$7 = {
|
|
|
1485
2214
|
};
|
|
1486
2215
|
var avatar$7 = {
|
|
1487
2216
|
borderWidth: borders$7.thin,
|
|
1488
|
-
borderColor: concepts$7.colors.grayScale.
|
|
2217
|
+
borderColor: concepts$7.colors.grayScale._800,
|
|
1489
2218
|
borderRadius: concepts$7.radius.circle,
|
|
1490
2219
|
boxShadow: concepts$7.shadows.mediumLight,
|
|
1491
2220
|
backgroundColor: concepts$7.colors.foreground,
|
|
1492
2221
|
bubbleBackgroundColors: {
|
|
1493
2222
|
isActive: concepts$7.colors.success.base,
|
|
1494
|
-
default: concepts$7.colors.grayScale.
|
|
2223
|
+
default: concepts$7.colors.grayScale._800
|
|
1495
2224
|
},
|
|
1496
2225
|
defaultBackgroundColors: {
|
|
1497
2226
|
primary: concepts$7.colors.primaryBrand.base,
|
|
@@ -1545,16 +2274,9 @@ var loadingSpinner$7 = {
|
|
|
1545
2274
|
danger: concepts$7.colors.danger.base
|
|
1546
2275
|
}
|
|
1547
2276
|
};
|
|
1548
|
-
var slider$7 = {
|
|
1549
|
-
backgroundColor: concepts$7.colors.background,
|
|
1550
|
-
borderRadius: concepts$7.radius.small,
|
|
1551
|
-
handleRadius: concepts$7.radius.circle,
|
|
1552
|
-
handleColor: concepts$7.colors.foreground,
|
|
1553
|
-
handleShadow: concepts$7.shadows.light
|
|
1554
|
-
};
|
|
1555
2277
|
var separator$7 = {
|
|
1556
2278
|
border: borders$7.default,
|
|
1557
|
-
color: concepts$7.colors.grayScale.
|
|
2279
|
+
color: concepts$7.colors.grayScale._800
|
|
1558
2280
|
};
|
|
1559
2281
|
var card$7 = {
|
|
1560
2282
|
backgroundColor: concepts$7.colors.warning.base,
|
|
@@ -1571,7 +2293,7 @@ var dialog$7 = {
|
|
|
1571
2293
|
var navigation$7 = {
|
|
1572
2294
|
backgroundColor: concepts$7.colors.foreground,
|
|
1573
2295
|
border: borders$7.thin,
|
|
1574
|
-
borderColor: concepts$7.colors.grayScale.
|
|
2296
|
+
borderColor: concepts$7.colors.grayScale._800
|
|
1575
2297
|
};
|
|
1576
2298
|
var drawer$7 = {
|
|
1577
2299
|
backgroundColor: concepts$7.colors.foreground,
|
|
@@ -1647,7 +2369,7 @@ var widget$7 = {
|
|
|
1647
2369
|
},
|
|
1648
2370
|
warning: {
|
|
1649
2371
|
backgroundColor: concepts$7.colors.warning.base,
|
|
1650
|
-
fontColor: '
|
|
2372
|
+
fontColor: 'primaryBody'
|
|
1651
2373
|
},
|
|
1652
2374
|
success: {
|
|
1653
2375
|
backgroundColor: concepts$7.colors.success.base,
|
|
@@ -1663,7 +2385,7 @@ var widget$7 = {
|
|
|
1663
2385
|
},
|
|
1664
2386
|
accent: {
|
|
1665
2387
|
backgroundColor: concepts$7.colors.accent.base,
|
|
1666
|
-
fontColor: '
|
|
2388
|
+
fontColor: 'inverseBody'
|
|
1667
2389
|
}
|
|
1668
2390
|
};
|
|
1669
2391
|
var colorOption$7 = {
|
|
@@ -1699,33 +2421,40 @@ var entities$7 = {
|
|
|
1699
2421
|
colorOption: colorOption$7
|
|
1700
2422
|
};
|
|
1701
2423
|
|
|
1702
|
-
var
|
|
1703
|
-
|
|
1704
|
-
var BASE_GRAY$5 = '#
|
|
1705
|
-
|
|
2424
|
+
var CARAMEL$1 = '#CE8E47'; // primary
|
|
2425
|
+
|
|
2426
|
+
var BASE_GRAY$5 = '#525A59'; // secondary
|
|
2427
|
+
|
|
2428
|
+
var TAN = '#E0D5C0'; // accent
|
|
2429
|
+
|
|
2430
|
+
var OFF_WHITE = '#FBF9F4'; //base
|
|
2431
|
+
|
|
1706
2432
|
var GREEN$6 = '#1DE6B9';
|
|
1707
|
-
var YELLOW$
|
|
1708
|
-
var RED$
|
|
2433
|
+
var YELLOW$5 = '#F7A14D';
|
|
2434
|
+
var RED$5 = '#FB2E4B';
|
|
1709
2435
|
var WHITE$6 = '#FFF';
|
|
1710
|
-
var BLUE$
|
|
1711
|
-
var
|
|
1712
|
-
var
|
|
1713
|
-
var baseGraySwatch$
|
|
2436
|
+
var BLUE$5 = '#1DC5E6';
|
|
2437
|
+
var PURPLE$6 = '#703A96';
|
|
2438
|
+
var caramelSwatch$1 = computeColorSwatch(CARAMEL$1);
|
|
2439
|
+
var baseGraySwatch$4 = computeColorSwatch(BASE_GRAY$5);
|
|
2440
|
+
var tanSwatch = computeColorSwatch(TAN);
|
|
1714
2441
|
var greenSwatch$6 = computeColorSwatch(GREEN$6);
|
|
1715
|
-
var yellowSwatch$6 = computeColorSwatch(YELLOW$
|
|
1716
|
-
var redSwatch$6 = computeColorSwatch(RED$
|
|
1717
|
-
var
|
|
1718
|
-
var
|
|
1719
|
-
var BASE$5 =
|
|
2442
|
+
var yellowSwatch$6 = computeColorSwatch(YELLOW$5);
|
|
2443
|
+
var redSwatch$6 = computeColorSwatch(RED$5);
|
|
2444
|
+
var blueSwatch$5 = computeColorSwatch(BLUE$5);
|
|
2445
|
+
var purpleSwatch$6 = computeColorSwatch(PURPLE$6);
|
|
2446
|
+
var BASE$5 = OFF_WHITE;
|
|
2447
|
+
var baseGray$4 = BASE_GRAY$5;
|
|
1720
2448
|
var colors$d = {
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
baseGraySwatch: baseGraySwatch$5,
|
|
2449
|
+
caramelSwatch: caramelSwatch$1,
|
|
2450
|
+
tanSwatch: tanSwatch,
|
|
2451
|
+
baseGraySwatch: baseGraySwatch$4,
|
|
2452
|
+
greenSwatch: greenSwatch$6,
|
|
1726
2453
|
redSwatch: redSwatch$6,
|
|
1727
2454
|
yellowSwatch: yellowSwatch$6,
|
|
1728
|
-
blueSwatch: blueSwatch$
|
|
2455
|
+
blueSwatch: blueSwatch$5,
|
|
2456
|
+
baseGray: baseGray$4,
|
|
2457
|
+
purpleSwatch: purpleSwatch$6,
|
|
1729
2458
|
BASE: BASE$5,
|
|
1730
2459
|
WHITE: WHITE$6
|
|
1731
2460
|
};
|
|
@@ -1760,9 +2489,9 @@ var WEIGHT_BOLD$6 = 700;
|
|
|
1760
2489
|
var WEIGHT_EXTRA_BOLD$6 = 800;
|
|
1761
2490
|
|
|
1762
2491
|
var colors$c = {
|
|
1763
|
-
primaryBrand: colors$d.
|
|
1764
|
-
secondaryBrand: colors$d.
|
|
1765
|
-
accent: colors$d.
|
|
2492
|
+
primaryBrand: colors$d.caramelSwatch,
|
|
2493
|
+
secondaryBrand: colors$d.baseGraySwatch,
|
|
2494
|
+
accent: colors$d.tanSwatch,
|
|
1766
2495
|
success: colors$d.greenSwatch,
|
|
1767
2496
|
warning: colors$d.yellowSwatch,
|
|
1768
2497
|
danger: colors$d.redSwatch,
|
|
@@ -1770,6 +2499,7 @@ var colors$c = {
|
|
|
1770
2499
|
foreground: colors$d.WHITE,
|
|
1771
2500
|
grayScale: colors$d.baseGraySwatch,
|
|
1772
2501
|
blueScale: colors$d.blueSwatch,
|
|
2502
|
+
purpleScale: colors$d.purpleSwatch,
|
|
1773
2503
|
white: colors$d.WHITE,
|
|
1774
2504
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
1775
2505
|
};
|
|
@@ -1831,15 +2561,15 @@ var concepts$6 = {
|
|
|
1831
2561
|
}
|
|
1832
2562
|
},
|
|
1833
2563
|
borders: {
|
|
1834
|
-
thin: borders$
|
|
1835
|
-
small: borders$
|
|
1836
|
-
default: borders$
|
|
1837
|
-
large: borders$
|
|
1838
|
-
bold: borders$
|
|
2564
|
+
thin: borders$9.xSmall,
|
|
2565
|
+
small: borders$9.small,
|
|
2566
|
+
default: borders$9.medium,
|
|
2567
|
+
large: borders$9.large,
|
|
2568
|
+
bold: borders$9.xLarge
|
|
1839
2569
|
},
|
|
1840
2570
|
spacing: {
|
|
1841
|
-
baseValue: BASE_VALUE$
|
|
1842
|
-
baseUnits: BASE_UNITS$
|
|
2571
|
+
baseValue: BASE_VALUE$9,
|
|
2572
|
+
baseUnits: BASE_UNITS$9
|
|
1843
2573
|
},
|
|
1844
2574
|
mediaQueries: {
|
|
1845
2575
|
small: mediaQuerySizes.small,
|
|
@@ -1849,18 +2579,18 @@ var concepts$6 = {
|
|
|
1849
2579
|
},
|
|
1850
2580
|
sizing: {
|
|
1851
2581
|
icons: {
|
|
1852
|
-
xSmall: icons$
|
|
1853
|
-
small: icons$
|
|
1854
|
-
medium: icons$
|
|
1855
|
-
large: icons$
|
|
1856
|
-
xLarge: icons$
|
|
2582
|
+
xSmall: icons$9.xSmall,
|
|
2583
|
+
small: icons$9.small,
|
|
2584
|
+
medium: icons$9.medium,
|
|
2585
|
+
large: icons$9.large,
|
|
2586
|
+
xLarge: icons$9.xLarge
|
|
1857
2587
|
},
|
|
1858
2588
|
sphere: {
|
|
1859
|
-
xSmall: sphere$
|
|
1860
|
-
small: sphere$
|
|
1861
|
-
medium: sphere$
|
|
1862
|
-
large: sphere$
|
|
1863
|
-
xLarge: sphere$
|
|
2589
|
+
xSmall: sphere$9.xSmall,
|
|
2590
|
+
small: sphere$9.small,
|
|
2591
|
+
medium: sphere$9.medium,
|
|
2592
|
+
large: sphere$9.large,
|
|
2593
|
+
xLarge: sphere$9.xLarge
|
|
1864
2594
|
}
|
|
1865
2595
|
}
|
|
1866
2596
|
};
|
|
@@ -1999,7 +2729,8 @@ var hocs$6 = {
|
|
|
1999
2729
|
warning: concepts$6.colors.warning,
|
|
2000
2730
|
accent: concepts$6.colors.accent,
|
|
2001
2731
|
grayScale: concepts$6.colors.grayScale,
|
|
2002
|
-
blueScale: concepts$6.colors.blueScale
|
|
2732
|
+
blueScale: concepts$6.colors.blueScale,
|
|
2733
|
+
purpleScale: concepts$6.colors.purpleScale
|
|
2003
2734
|
},
|
|
2004
2735
|
background: concepts$6.colors.background,
|
|
2005
2736
|
foreground: concepts$6.colors.foreground
|
|
@@ -2373,7 +3104,7 @@ var widget$6 = {
|
|
|
2373
3104
|
},
|
|
2374
3105
|
accent: {
|
|
2375
3106
|
backgroundColor: concepts$6.colors.accent.base,
|
|
2376
|
-
fontColor: '
|
|
3107
|
+
fontColor: 'primaryBody'
|
|
2377
3108
|
}
|
|
2378
3109
|
};
|
|
2379
3110
|
var colorOption$6 = {
|
|
@@ -2409,37 +3140,38 @@ var entities$6 = {
|
|
|
2409
3140
|
colorOption: colorOption$6
|
|
2410
3141
|
};
|
|
2411
3142
|
|
|
2412
|
-
var
|
|
2413
|
-
|
|
2414
|
-
var
|
|
2415
|
-
|
|
2416
|
-
var TAN = '#E0D5C0'; // accent
|
|
2417
|
-
|
|
2418
|
-
var OFF_WHITE = '#FBF9F4'; //base
|
|
2419
|
-
|
|
3143
|
+
var BRIGHT_BLUE = '#140FEE';
|
|
3144
|
+
var TEAL$2 = '#35A4BC';
|
|
3145
|
+
var BRIGHT_GREEN = '#74C468';
|
|
3146
|
+
var BASE_GRAY$4 = '#696767';
|
|
2420
3147
|
var GREEN$5 = '#1DE6B9';
|
|
2421
|
-
var YELLOW$
|
|
2422
|
-
var RED$
|
|
3148
|
+
var YELLOW$4 = '#F7A14D';
|
|
3149
|
+
var RED$4 = '#FB2E4B';
|
|
2423
3150
|
var WHITE$5 = '#FFF';
|
|
2424
|
-
var BLUE$
|
|
2425
|
-
var
|
|
2426
|
-
var
|
|
2427
|
-
var
|
|
3151
|
+
var BLUE$4 = '#1DC5E6';
|
|
3152
|
+
var PURPLE$5 = '#703A96';
|
|
3153
|
+
var brightBlueSwatch$1 = computeColorSwatch(BRIGHT_BLUE);
|
|
3154
|
+
var tealSwatch$2 = computeColorSwatch(TEAL$2);
|
|
3155
|
+
var brightGreenSwatch = computeColorSwatch(BRIGHT_GREEN);
|
|
3156
|
+
var baseGraySwatch$3 = computeColorSwatch(BASE_GRAY$4);
|
|
2428
3157
|
var greenSwatch$5 = computeColorSwatch(GREEN$5);
|
|
2429
|
-
var yellowSwatch$5 = computeColorSwatch(YELLOW$
|
|
2430
|
-
var redSwatch$5 = computeColorSwatch(RED$
|
|
2431
|
-
var blueSwatch$
|
|
2432
|
-
var
|
|
2433
|
-
var
|
|
3158
|
+
var yellowSwatch$5 = computeColorSwatch(YELLOW$4);
|
|
3159
|
+
var redSwatch$5 = computeColorSwatch(RED$4);
|
|
3160
|
+
var blueSwatch$4 = computeColorSwatch(BLUE$4);
|
|
3161
|
+
var purpleSwatch$5 = computeColorSwatch(PURPLE$5);
|
|
3162
|
+
var BASE$4 = '#F5F6F7';
|
|
3163
|
+
var baseGray$3 = BASE_GRAY$4;
|
|
2434
3164
|
var colors$b = {
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
baseGraySwatch: baseGraySwatch$4,
|
|
3165
|
+
brightBlueSwatch: brightBlueSwatch$1,
|
|
3166
|
+
tealSwatch: tealSwatch$2,
|
|
2438
3167
|
greenSwatch: greenSwatch$5,
|
|
2439
3168
|
redSwatch: redSwatch$5,
|
|
2440
3169
|
yellowSwatch: yellowSwatch$5,
|
|
2441
|
-
|
|
2442
|
-
|
|
3170
|
+
brightGreenSwatch: brightGreenSwatch,
|
|
3171
|
+
blueSwatch: blueSwatch$4,
|
|
3172
|
+
baseGraySwatch: baseGraySwatch$3,
|
|
3173
|
+
baseGray: baseGray$3,
|
|
3174
|
+
purpleSwatch: purpleSwatch$5,
|
|
2443
3175
|
BASE: BASE$4,
|
|
2444
3176
|
WHITE: WHITE$5
|
|
2445
3177
|
};
|
|
@@ -2474,9 +3206,9 @@ var WEIGHT_BOLD$5 = 700;
|
|
|
2474
3206
|
var WEIGHT_EXTRA_BOLD$5 = 800;
|
|
2475
3207
|
|
|
2476
3208
|
var colors$a = {
|
|
2477
|
-
primaryBrand: colors$b.
|
|
2478
|
-
secondaryBrand: colors$b.
|
|
2479
|
-
accent: colors$b.
|
|
3209
|
+
primaryBrand: colors$b.brightBlueSwatch,
|
|
3210
|
+
secondaryBrand: colors$b.tealSwatch,
|
|
3211
|
+
accent: colors$b.brightGreenSwatch,
|
|
2480
3212
|
success: colors$b.greenSwatch,
|
|
2481
3213
|
warning: colors$b.yellowSwatch,
|
|
2482
3214
|
danger: colors$b.redSwatch,
|
|
@@ -2484,6 +3216,7 @@ var colors$a = {
|
|
|
2484
3216
|
foreground: colors$b.WHITE,
|
|
2485
3217
|
grayScale: colors$b.baseGraySwatch,
|
|
2486
3218
|
blueScale: colors$b.blueSwatch,
|
|
3219
|
+
purpleScale: colors$b.purpleSwatch,
|
|
2487
3220
|
white: colors$b.WHITE,
|
|
2488
3221
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
2489
3222
|
};
|
|
@@ -2545,15 +3278,15 @@ var concepts$5 = {
|
|
|
2545
3278
|
}
|
|
2546
3279
|
},
|
|
2547
3280
|
borders: {
|
|
2548
|
-
thin: borders$
|
|
2549
|
-
small: borders$
|
|
2550
|
-
default: borders$
|
|
2551
|
-
large: borders$
|
|
2552
|
-
bold: borders$
|
|
3281
|
+
thin: borders$9.xSmall,
|
|
3282
|
+
small: borders$9.small,
|
|
3283
|
+
default: borders$9.medium,
|
|
3284
|
+
large: borders$9.large,
|
|
3285
|
+
bold: borders$9.xLarge
|
|
2553
3286
|
},
|
|
2554
3287
|
spacing: {
|
|
2555
|
-
baseValue: BASE_VALUE$
|
|
2556
|
-
baseUnits: BASE_UNITS$
|
|
3288
|
+
baseValue: BASE_VALUE$9,
|
|
3289
|
+
baseUnits: BASE_UNITS$9
|
|
2557
3290
|
},
|
|
2558
3291
|
mediaQueries: {
|
|
2559
3292
|
small: mediaQuerySizes.small,
|
|
@@ -2563,18 +3296,18 @@ var concepts$5 = {
|
|
|
2563
3296
|
},
|
|
2564
3297
|
sizing: {
|
|
2565
3298
|
icons: {
|
|
2566
|
-
xSmall: icons$
|
|
2567
|
-
small: icons$
|
|
2568
|
-
medium: icons$
|
|
2569
|
-
large: icons$
|
|
2570
|
-
xLarge: icons$
|
|
3299
|
+
xSmall: icons$9.xSmall,
|
|
3300
|
+
small: icons$9.small,
|
|
3301
|
+
medium: icons$9.medium,
|
|
3302
|
+
large: icons$9.large,
|
|
3303
|
+
xLarge: icons$9.xLarge
|
|
2571
3304
|
},
|
|
2572
3305
|
sphere: {
|
|
2573
|
-
xSmall: sphere$
|
|
2574
|
-
small: sphere$
|
|
2575
|
-
medium: sphere$
|
|
2576
|
-
large: sphere$
|
|
2577
|
-
xLarge: sphere$
|
|
3306
|
+
xSmall: sphere$9.xSmall,
|
|
3307
|
+
small: sphere$9.small,
|
|
3308
|
+
medium: sphere$9.medium,
|
|
3309
|
+
large: sphere$9.large,
|
|
3310
|
+
xLarge: sphere$9.xLarge
|
|
2578
3311
|
}
|
|
2579
3312
|
}
|
|
2580
3313
|
};
|
|
@@ -2713,7 +3446,8 @@ var hocs$5 = {
|
|
|
2713
3446
|
warning: concepts$5.colors.warning,
|
|
2714
3447
|
accent: concepts$5.colors.accent,
|
|
2715
3448
|
grayScale: concepts$5.colors.grayScale,
|
|
2716
|
-
blueScale: concepts$5.colors.blueScale
|
|
3449
|
+
blueScale: concepts$5.colors.blueScale,
|
|
3450
|
+
purpleScale: concepts$5.colors.purpleScale
|
|
2717
3451
|
},
|
|
2718
3452
|
background: concepts$5.colors.background,
|
|
2719
3453
|
foreground: concepts$5.colors.foreground
|
|
@@ -3123,35 +3857,38 @@ var entities$5 = {
|
|
|
3123
3857
|
colorOption: colorOption$5
|
|
3124
3858
|
};
|
|
3125
3859
|
|
|
3126
|
-
var
|
|
3127
|
-
var
|
|
3128
|
-
var
|
|
3129
|
-
var
|
|
3860
|
+
var DARK_BLUE$2 = '#1F4177';
|
|
3861
|
+
var GOLD$1 = '#A99A67';
|
|
3862
|
+
var BASE_GRAY$3 = '#313438';
|
|
3863
|
+
var ORANGE = '#E49944';
|
|
3130
3864
|
var GREEN$4 = '#1DE6B9';
|
|
3131
|
-
var YELLOW$
|
|
3132
|
-
var RED$
|
|
3865
|
+
var YELLOW$3 = '#F7A14D';
|
|
3866
|
+
var RED$3 = '#FB2E4B';
|
|
3133
3867
|
var WHITE$4 = '#FFF';
|
|
3134
|
-
var BLUE$
|
|
3135
|
-
var
|
|
3136
|
-
var
|
|
3137
|
-
var
|
|
3138
|
-
var baseGraySwatch$
|
|
3868
|
+
var BLUE$3 = '#1DC5E6';
|
|
3869
|
+
var PURPLE$4 = '#703A96';
|
|
3870
|
+
var darkBlueSwatch$2 = computeColorSwatch(DARK_BLUE$2);
|
|
3871
|
+
var goldSwatch = computeColorSwatch(GOLD$1);
|
|
3872
|
+
var baseGraySwatch$2 = computeColorSwatch(BASE_GRAY$3);
|
|
3873
|
+
var orangeSwatch = computeColorSwatch(ORANGE);
|
|
3139
3874
|
var greenSwatch$4 = computeColorSwatch(GREEN$4);
|
|
3140
|
-
var yellowSwatch$4 = computeColorSwatch(YELLOW$
|
|
3141
|
-
var redSwatch$4 = computeColorSwatch(RED$
|
|
3142
|
-
var blueSwatch$
|
|
3143
|
-
var
|
|
3144
|
-
var
|
|
3875
|
+
var yellowSwatch$4 = computeColorSwatch(YELLOW$3);
|
|
3876
|
+
var redSwatch$4 = computeColorSwatch(RED$3);
|
|
3877
|
+
var blueSwatch$3 = computeColorSwatch(BLUE$3);
|
|
3878
|
+
var purpleSwatch$4 = computeColorSwatch(PURPLE$4);
|
|
3879
|
+
var BASE$3 = '#EAEAEA';
|
|
3880
|
+
var baseGray$2 = BASE_GRAY$3;
|
|
3145
3881
|
var colors$9 = {
|
|
3146
|
-
|
|
3147
|
-
|
|
3882
|
+
darkBlueSwatch: darkBlueSwatch$2,
|
|
3883
|
+
goldSwatch: goldSwatch,
|
|
3884
|
+
baseGraySwatch: baseGraySwatch$2,
|
|
3885
|
+
orangeSwatch: orangeSwatch,
|
|
3148
3886
|
greenSwatch: greenSwatch$4,
|
|
3149
3887
|
redSwatch: redSwatch$4,
|
|
3150
3888
|
yellowSwatch: yellowSwatch$4,
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
baseGray: baseGray$3,
|
|
3889
|
+
blueSwatch: blueSwatch$3,
|
|
3890
|
+
baseGray: baseGray$2,
|
|
3891
|
+
purpleSwatch: purpleSwatch$4,
|
|
3155
3892
|
BASE: BASE$3,
|
|
3156
3893
|
WHITE: WHITE$4
|
|
3157
3894
|
};
|
|
@@ -3186,9 +3923,9 @@ var WEIGHT_BOLD$4 = 700;
|
|
|
3186
3923
|
var WEIGHT_EXTRA_BOLD$4 = 800;
|
|
3187
3924
|
|
|
3188
3925
|
var colors$8 = {
|
|
3189
|
-
primaryBrand: colors$9.
|
|
3190
|
-
secondaryBrand: colors$9.
|
|
3191
|
-
accent: colors$9.
|
|
3926
|
+
primaryBrand: colors$9.darkBlueSwatch,
|
|
3927
|
+
secondaryBrand: colors$9.goldSwatch,
|
|
3928
|
+
accent: colors$9.orangeSwatch,
|
|
3192
3929
|
success: colors$9.greenSwatch,
|
|
3193
3930
|
warning: colors$9.yellowSwatch,
|
|
3194
3931
|
danger: colors$9.redSwatch,
|
|
@@ -3196,6 +3933,7 @@ var colors$8 = {
|
|
|
3196
3933
|
foreground: colors$9.WHITE,
|
|
3197
3934
|
grayScale: colors$9.baseGraySwatch,
|
|
3198
3935
|
blueScale: colors$9.blueSwatch,
|
|
3936
|
+
purpleScale: colors$9.purpleSwatch,
|
|
3199
3937
|
white: colors$9.WHITE,
|
|
3200
3938
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
3201
3939
|
};
|
|
@@ -3257,15 +3995,15 @@ var concepts$4 = {
|
|
|
3257
3995
|
}
|
|
3258
3996
|
},
|
|
3259
3997
|
borders: {
|
|
3260
|
-
thin: borders$
|
|
3261
|
-
small: borders$
|
|
3262
|
-
default: borders$
|
|
3263
|
-
large: borders$
|
|
3264
|
-
bold: borders$
|
|
3998
|
+
thin: borders$9.xSmall,
|
|
3999
|
+
small: borders$9.small,
|
|
4000
|
+
default: borders$9.medium,
|
|
4001
|
+
large: borders$9.large,
|
|
4002
|
+
bold: borders$9.xLarge
|
|
3265
4003
|
},
|
|
3266
4004
|
spacing: {
|
|
3267
|
-
baseValue: BASE_VALUE$
|
|
3268
|
-
baseUnits: BASE_UNITS$
|
|
4005
|
+
baseValue: BASE_VALUE$9,
|
|
4006
|
+
baseUnits: BASE_UNITS$9
|
|
3269
4007
|
},
|
|
3270
4008
|
mediaQueries: {
|
|
3271
4009
|
small: mediaQuerySizes.small,
|
|
@@ -3275,18 +4013,18 @@ var concepts$4 = {
|
|
|
3275
4013
|
},
|
|
3276
4014
|
sizing: {
|
|
3277
4015
|
icons: {
|
|
3278
|
-
xSmall: icons$
|
|
3279
|
-
small: icons$
|
|
3280
|
-
medium: icons$
|
|
3281
|
-
large: icons$
|
|
3282
|
-
xLarge: icons$
|
|
4016
|
+
xSmall: icons$9.xSmall,
|
|
4017
|
+
small: icons$9.small,
|
|
4018
|
+
medium: icons$9.medium,
|
|
4019
|
+
large: icons$9.large,
|
|
4020
|
+
xLarge: icons$9.xLarge
|
|
3283
4021
|
},
|
|
3284
4022
|
sphere: {
|
|
3285
|
-
xSmall: sphere$
|
|
3286
|
-
small: sphere$
|
|
3287
|
-
medium: sphere$
|
|
3288
|
-
large: sphere$
|
|
3289
|
-
xLarge: sphere$
|
|
4023
|
+
xSmall: sphere$9.xSmall,
|
|
4024
|
+
small: sphere$9.small,
|
|
4025
|
+
medium: sphere$9.medium,
|
|
4026
|
+
large: sphere$9.large,
|
|
4027
|
+
xLarge: sphere$9.xLarge
|
|
3290
4028
|
}
|
|
3291
4029
|
}
|
|
3292
4030
|
};
|
|
@@ -3425,7 +4163,8 @@ var hocs$4 = {
|
|
|
3425
4163
|
warning: concepts$4.colors.warning,
|
|
3426
4164
|
accent: concepts$4.colors.accent,
|
|
3427
4165
|
grayScale: concepts$4.colors.grayScale,
|
|
3428
|
-
blueScale: concepts$4.colors.blueScale
|
|
4166
|
+
blueScale: concepts$4.colors.blueScale,
|
|
4167
|
+
purpleScale: concepts$4.colors.purpleScale
|
|
3429
4168
|
},
|
|
3430
4169
|
background: concepts$4.colors.background,
|
|
3431
4170
|
foreground: concepts$4.colors.foreground
|
|
@@ -3835,35 +4574,38 @@ var entities$4 = {
|
|
|
3835
4574
|
colorOption: colorOption$4
|
|
3836
4575
|
};
|
|
3837
4576
|
|
|
3838
|
-
var
|
|
3839
|
-
var
|
|
3840
|
-
var
|
|
3841
|
-
var
|
|
4577
|
+
var CARAMEL = '#B38048';
|
|
4578
|
+
var DARK_TEAL = '#314A51';
|
|
4579
|
+
var BEIGE = '#E0D5C0';
|
|
4580
|
+
var BASE_GRAY$2 = '#696767';
|
|
3842
4581
|
var GREEN$3 = '#1DE6B9';
|
|
3843
|
-
var YELLOW$
|
|
3844
|
-
var RED$
|
|
4582
|
+
var YELLOW$2 = '#F7A14D';
|
|
4583
|
+
var RED$2 = '#FB2E4B';
|
|
3845
4584
|
var WHITE$3 = '#FFF';
|
|
3846
|
-
var BLUE$
|
|
3847
|
-
var
|
|
3848
|
-
var
|
|
3849
|
-
var
|
|
3850
|
-
var
|
|
4585
|
+
var BLUE$2 = '#1DC5E6';
|
|
4586
|
+
var PURPLE$3 = '#703A96';
|
|
4587
|
+
var caramelSwatch = computeColorSwatch(CARAMEL);
|
|
4588
|
+
var darkTealSwatch = computeColorSwatch(DARK_TEAL);
|
|
4589
|
+
var beigeSwatch = computeColorSwatch(BEIGE);
|
|
4590
|
+
var baseGraySwatch$1 = computeColorSwatch(BASE_GRAY$2);
|
|
3851
4591
|
var greenSwatch$3 = computeColorSwatch(GREEN$3);
|
|
3852
|
-
var yellowSwatch$3 = computeColorSwatch(YELLOW$
|
|
3853
|
-
var redSwatch$3 = computeColorSwatch(RED$
|
|
3854
|
-
var blueSwatch$
|
|
3855
|
-
var
|
|
3856
|
-
var
|
|
4592
|
+
var yellowSwatch$3 = computeColorSwatch(YELLOW$2);
|
|
4593
|
+
var redSwatch$3 = computeColorSwatch(RED$2);
|
|
4594
|
+
var blueSwatch$2 = computeColorSwatch(BLUE$2);
|
|
4595
|
+
var purpleSwatch$3 = computeColorSwatch(PURPLE$3);
|
|
4596
|
+
var BASE$2 = '#FBF9F4';
|
|
4597
|
+
var baseGray$1 = BASE_GRAY$2;
|
|
3857
4598
|
var colors$7 = {
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
orangeSwatch: orangeSwatch,
|
|
4599
|
+
caramelSwatch: caramelSwatch,
|
|
4600
|
+
beigeSwatch: beigeSwatch,
|
|
4601
|
+
darkTealSwatch: darkTealSwatch,
|
|
3862
4602
|
greenSwatch: greenSwatch$3,
|
|
3863
4603
|
redSwatch: redSwatch$3,
|
|
3864
4604
|
yellowSwatch: yellowSwatch$3,
|
|
3865
|
-
blueSwatch: blueSwatch$
|
|
3866
|
-
|
|
4605
|
+
blueSwatch: blueSwatch$2,
|
|
4606
|
+
baseGraySwatch: baseGraySwatch$1,
|
|
4607
|
+
baseGray: baseGray$1,
|
|
4608
|
+
purpleSwatch: purpleSwatch$3,
|
|
3867
4609
|
BASE: BASE$2,
|
|
3868
4610
|
WHITE: WHITE$3
|
|
3869
4611
|
};
|
|
@@ -3898,9 +4640,9 @@ var WEIGHT_BOLD$3 = 700;
|
|
|
3898
4640
|
var WEIGHT_EXTRA_BOLD$3 = 800;
|
|
3899
4641
|
|
|
3900
4642
|
var colors$6 = {
|
|
3901
|
-
primaryBrand: colors$7.
|
|
3902
|
-
secondaryBrand: colors$7.
|
|
3903
|
-
accent: colors$7.
|
|
4643
|
+
primaryBrand: colors$7.caramelSwatch,
|
|
4644
|
+
secondaryBrand: colors$7.darkTealSwatch,
|
|
4645
|
+
accent: colors$7.beigeSwatch,
|
|
3904
4646
|
success: colors$7.greenSwatch,
|
|
3905
4647
|
warning: colors$7.yellowSwatch,
|
|
3906
4648
|
danger: colors$7.redSwatch,
|
|
@@ -3908,6 +4650,7 @@ var colors$6 = {
|
|
|
3908
4650
|
foreground: colors$7.WHITE,
|
|
3909
4651
|
grayScale: colors$7.baseGraySwatch,
|
|
3910
4652
|
blueScale: colors$7.blueSwatch,
|
|
4653
|
+
purpleScale: colors$7.purpleSwatch,
|
|
3911
4654
|
white: colors$7.WHITE,
|
|
3912
4655
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
3913
4656
|
};
|
|
@@ -3969,15 +4712,15 @@ var concepts$3 = {
|
|
|
3969
4712
|
}
|
|
3970
4713
|
},
|
|
3971
4714
|
borders: {
|
|
3972
|
-
thin: borders$
|
|
3973
|
-
small: borders$
|
|
3974
|
-
default: borders$
|
|
3975
|
-
large: borders$
|
|
3976
|
-
bold: borders$
|
|
4715
|
+
thin: borders$9.xSmall,
|
|
4716
|
+
small: borders$9.small,
|
|
4717
|
+
default: borders$9.medium,
|
|
4718
|
+
large: borders$9.large,
|
|
4719
|
+
bold: borders$9.xLarge
|
|
3977
4720
|
},
|
|
3978
4721
|
spacing: {
|
|
3979
|
-
baseValue: BASE_VALUE$
|
|
3980
|
-
baseUnits: BASE_UNITS$
|
|
4722
|
+
baseValue: BASE_VALUE$9,
|
|
4723
|
+
baseUnits: BASE_UNITS$9
|
|
3981
4724
|
},
|
|
3982
4725
|
mediaQueries: {
|
|
3983
4726
|
small: mediaQuerySizes.small,
|
|
@@ -3987,18 +4730,18 @@ var concepts$3 = {
|
|
|
3987
4730
|
},
|
|
3988
4731
|
sizing: {
|
|
3989
4732
|
icons: {
|
|
3990
|
-
xSmall: icons$
|
|
3991
|
-
small: icons$
|
|
3992
|
-
medium: icons$
|
|
3993
|
-
large: icons$
|
|
3994
|
-
xLarge: icons$
|
|
4733
|
+
xSmall: icons$9.xSmall,
|
|
4734
|
+
small: icons$9.small,
|
|
4735
|
+
medium: icons$9.medium,
|
|
4736
|
+
large: icons$9.large,
|
|
4737
|
+
xLarge: icons$9.xLarge
|
|
3995
4738
|
},
|
|
3996
4739
|
sphere: {
|
|
3997
|
-
xSmall: sphere$
|
|
3998
|
-
small: sphere$
|
|
3999
|
-
medium: sphere$
|
|
4000
|
-
large: sphere$
|
|
4001
|
-
xLarge: sphere$
|
|
4740
|
+
xSmall: sphere$9.xSmall,
|
|
4741
|
+
small: sphere$9.small,
|
|
4742
|
+
medium: sphere$9.medium,
|
|
4743
|
+
large: sphere$9.large,
|
|
4744
|
+
xLarge: sphere$9.xLarge
|
|
4002
4745
|
}
|
|
4003
4746
|
}
|
|
4004
4747
|
};
|
|
@@ -4137,7 +4880,8 @@ var hocs$3 = {
|
|
|
4137
4880
|
warning: concepts$3.colors.warning,
|
|
4138
4881
|
accent: concepts$3.colors.accent,
|
|
4139
4882
|
grayScale: concepts$3.colors.grayScale,
|
|
4140
|
-
blueScale: concepts$3.colors.blueScale
|
|
4883
|
+
blueScale: concepts$3.colors.blueScale,
|
|
4884
|
+
purpleScale: concepts$3.colors.purpleScale
|
|
4141
4885
|
},
|
|
4142
4886
|
background: concepts$3.colors.background,
|
|
4143
4887
|
foreground: concepts$3.colors.foreground
|
|
@@ -4547,35 +5291,38 @@ var entities$3 = {
|
|
|
4547
5291
|
colorOption: colorOption$3
|
|
4548
5292
|
};
|
|
4549
5293
|
|
|
4550
|
-
var
|
|
4551
|
-
var
|
|
4552
|
-
var
|
|
4553
|
-
var BASE_GRAY$1 = '#
|
|
5294
|
+
var AQUA = '#61DCE8';
|
|
5295
|
+
var DARK_BLUE$1 = '#1F4177';
|
|
5296
|
+
var TEAL$1 = '#309D8E';
|
|
5297
|
+
var BASE_GRAY$1 = '#313438';
|
|
4554
5298
|
var GREEN$2 = '#1DE6B9';
|
|
4555
|
-
var YELLOW$
|
|
4556
|
-
var RED$
|
|
5299
|
+
var YELLOW$1 = '#F7A14D';
|
|
5300
|
+
var RED$1 = '#FB2E4B';
|
|
4557
5301
|
var WHITE$2 = '#FFF';
|
|
4558
|
-
var BLUE$
|
|
4559
|
-
var
|
|
4560
|
-
var
|
|
4561
|
-
var
|
|
4562
|
-
var
|
|
5302
|
+
var BLUE$1 = '#1DC5E6';
|
|
5303
|
+
var PURPLE$2 = '#703A96';
|
|
5304
|
+
var aquaSwatch = computeColorSwatch(AQUA);
|
|
5305
|
+
var darkBlueSwatch$1 = computeColorSwatch(DARK_BLUE$1);
|
|
5306
|
+
var tealSwatch$1 = computeColorSwatch(TEAL$1);
|
|
5307
|
+
var baseGraySwatch = computeColorSwatch(BASE_GRAY$1);
|
|
4563
5308
|
var greenSwatch$2 = computeColorSwatch(GREEN$2);
|
|
4564
|
-
var yellowSwatch$2 = computeColorSwatch(YELLOW$
|
|
4565
|
-
var redSwatch$2 = computeColorSwatch(RED$
|
|
4566
|
-
var blueSwatch$
|
|
4567
|
-
var
|
|
4568
|
-
var
|
|
5309
|
+
var yellowSwatch$2 = computeColorSwatch(YELLOW$1);
|
|
5310
|
+
var redSwatch$2 = computeColorSwatch(RED$1);
|
|
5311
|
+
var blueSwatch$1 = computeColorSwatch(BLUE$1);
|
|
5312
|
+
var purpleSwatch$2 = computeColorSwatch(PURPLE$2);
|
|
5313
|
+
var BASE$1 = '#F5F6F7';
|
|
5314
|
+
var baseGray = BASE_GRAY$1;
|
|
4569
5315
|
var colors$5 = {
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
5316
|
+
darkBlueSwatch: darkBlueSwatch$1,
|
|
5317
|
+
aquaSwatch: aquaSwatch,
|
|
5318
|
+
tealSwatch: tealSwatch$1,
|
|
4573
5319
|
greenSwatch: greenSwatch$2,
|
|
4574
5320
|
redSwatch: redSwatch$2,
|
|
4575
5321
|
yellowSwatch: yellowSwatch$2,
|
|
4576
|
-
blueSwatch: blueSwatch$
|
|
4577
|
-
baseGraySwatch: baseGraySwatch
|
|
4578
|
-
baseGray: baseGray
|
|
5322
|
+
blueSwatch: blueSwatch$1,
|
|
5323
|
+
baseGraySwatch: baseGraySwatch,
|
|
5324
|
+
baseGray: baseGray,
|
|
5325
|
+
purpleSwatch: purpleSwatch$2,
|
|
4579
5326
|
BASE: BASE$1,
|
|
4580
5327
|
WHITE: WHITE$2
|
|
4581
5328
|
};
|
|
@@ -4610,9 +5357,9 @@ var WEIGHT_BOLD$2 = 700;
|
|
|
4610
5357
|
var WEIGHT_EXTRA_BOLD$2 = 800;
|
|
4611
5358
|
|
|
4612
5359
|
var colors$4 = {
|
|
4613
|
-
primaryBrand: colors$5.
|
|
4614
|
-
secondaryBrand: colors$5.
|
|
4615
|
-
accent: colors$5.
|
|
5360
|
+
primaryBrand: colors$5.aquaSwatch,
|
|
5361
|
+
secondaryBrand: colors$5.darkBlueSwatch,
|
|
5362
|
+
accent: colors$5.tealSwatch,
|
|
4616
5363
|
success: colors$5.greenSwatch,
|
|
4617
5364
|
warning: colors$5.yellowSwatch,
|
|
4618
5365
|
danger: colors$5.redSwatch,
|
|
@@ -4620,6 +5367,7 @@ var colors$4 = {
|
|
|
4620
5367
|
foreground: colors$5.WHITE,
|
|
4621
5368
|
grayScale: colors$5.baseGraySwatch,
|
|
4622
5369
|
blueScale: colors$5.blueSwatch,
|
|
5370
|
+
purpleScale: colors$5.purpleSwatch,
|
|
4623
5371
|
white: colors$5.WHITE,
|
|
4624
5372
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
4625
5373
|
};
|
|
@@ -4681,15 +5429,15 @@ var concepts$2 = {
|
|
|
4681
5429
|
}
|
|
4682
5430
|
},
|
|
4683
5431
|
borders: {
|
|
4684
|
-
thin: borders$
|
|
4685
|
-
small: borders$
|
|
4686
|
-
default: borders$
|
|
4687
|
-
large: borders$
|
|
4688
|
-
bold: borders$
|
|
5432
|
+
thin: borders$9.xSmall,
|
|
5433
|
+
small: borders$9.small,
|
|
5434
|
+
default: borders$9.medium,
|
|
5435
|
+
large: borders$9.large,
|
|
5436
|
+
bold: borders$9.xLarge
|
|
4689
5437
|
},
|
|
4690
5438
|
spacing: {
|
|
4691
|
-
baseValue: BASE_VALUE$
|
|
4692
|
-
baseUnits: BASE_UNITS$
|
|
5439
|
+
baseValue: BASE_VALUE$9,
|
|
5440
|
+
baseUnits: BASE_UNITS$9
|
|
4693
5441
|
},
|
|
4694
5442
|
mediaQueries: {
|
|
4695
5443
|
small: mediaQuerySizes.small,
|
|
@@ -4699,18 +5447,18 @@ var concepts$2 = {
|
|
|
4699
5447
|
},
|
|
4700
5448
|
sizing: {
|
|
4701
5449
|
icons: {
|
|
4702
|
-
xSmall: icons$
|
|
4703
|
-
small: icons$
|
|
4704
|
-
medium: icons$
|
|
4705
|
-
large: icons$
|
|
4706
|
-
xLarge: icons$
|
|
5450
|
+
xSmall: icons$9.xSmall,
|
|
5451
|
+
small: icons$9.small,
|
|
5452
|
+
medium: icons$9.medium,
|
|
5453
|
+
large: icons$9.large,
|
|
5454
|
+
xLarge: icons$9.xLarge
|
|
4707
5455
|
},
|
|
4708
5456
|
sphere: {
|
|
4709
|
-
xSmall: sphere$
|
|
4710
|
-
small: sphere$
|
|
4711
|
-
medium: sphere$
|
|
4712
|
-
large: sphere$
|
|
4713
|
-
xLarge: sphere$
|
|
5457
|
+
xSmall: sphere$9.xSmall,
|
|
5458
|
+
small: sphere$9.small,
|
|
5459
|
+
medium: sphere$9.medium,
|
|
5460
|
+
large: sphere$9.large,
|
|
5461
|
+
xLarge: sphere$9.xLarge
|
|
4714
5462
|
}
|
|
4715
5463
|
}
|
|
4716
5464
|
};
|
|
@@ -4849,7 +5597,8 @@ var hocs$2 = {
|
|
|
4849
5597
|
warning: concepts$2.colors.warning,
|
|
4850
5598
|
accent: concepts$2.colors.accent,
|
|
4851
5599
|
grayScale: concepts$2.colors.grayScale,
|
|
4852
|
-
blueScale: concepts$2.colors.blueScale
|
|
5600
|
+
blueScale: concepts$2.colors.blueScale,
|
|
5601
|
+
purpleScale: concepts$2.colors.purpleScale
|
|
4853
5602
|
},
|
|
4854
5603
|
background: concepts$2.colors.background,
|
|
4855
5604
|
foreground: concepts$2.colors.foreground
|
|
@@ -5259,79 +6008,80 @@ var entities$2 = {
|
|
|
5259
6008
|
colorOption: colorOption$2
|
|
5260
6009
|
};
|
|
5261
6010
|
|
|
5262
|
-
var
|
|
5263
|
-
var
|
|
5264
|
-
var
|
|
5265
|
-
var
|
|
5266
|
-
var
|
|
5267
|
-
|
|
5268
|
-
var
|
|
6011
|
+
var PINK = '#FF04A0';
|
|
6012
|
+
var LIGHT_BLUE$1 = '#02C3E2';
|
|
6013
|
+
var GREEN$1 = '#44D5A4';
|
|
6014
|
+
var YELLOW = '#F4E467';
|
|
6015
|
+
var RED = '#F26666'; // TODO change ACCENT
|
|
6016
|
+
|
|
6017
|
+
var ACCENT = '#FFF';
|
|
5269
6018
|
var WHITE$1 = '#FFF';
|
|
5270
|
-
var BLUE
|
|
5271
|
-
var
|
|
5272
|
-
var
|
|
5273
|
-
var
|
|
5274
|
-
var baseGraySwatch = computeColorSwatch(BASE_GRAY);
|
|
6019
|
+
var BLUE = '#32abe4';
|
|
6020
|
+
var PURPLE$1 = '#703A96';
|
|
6021
|
+
var pinkSwatch = computeColorSwatch(PINK);
|
|
6022
|
+
var brightBlueSwatch = computeColorSwatch(LIGHT_BLUE$1);
|
|
5275
6023
|
var greenSwatch$1 = computeColorSwatch(GREEN$1);
|
|
5276
|
-
var yellowSwatch$1 = computeColorSwatch(YELLOW
|
|
5277
|
-
var redSwatch$1 = computeColorSwatch(RED
|
|
5278
|
-
var
|
|
5279
|
-
var
|
|
5280
|
-
var
|
|
6024
|
+
var yellowSwatch$1 = computeColorSwatch(YELLOW);
|
|
6025
|
+
var redSwatch$1 = computeColorSwatch(RED);
|
|
6026
|
+
var accentSwatch = computeColorSwatch(ACCENT);
|
|
6027
|
+
var blueSwatch = computeColorSwatch(BLUE);
|
|
6028
|
+
var purpleSwatch$1 = computeColorSwatch(PURPLE$1);
|
|
6029
|
+
var lightGray = '#f5f6f7';
|
|
5281
6030
|
var colors$3 = {
|
|
5282
|
-
|
|
5283
|
-
|
|
5284
|
-
tealSwatch: tealSwatch,
|
|
6031
|
+
pinkSwatch: pinkSwatch,
|
|
6032
|
+
brightBlueSwatch: brightBlueSwatch,
|
|
5285
6033
|
greenSwatch: greenSwatch$1,
|
|
5286
6034
|
redSwatch: redSwatch$1,
|
|
5287
6035
|
yellowSwatch: yellowSwatch$1,
|
|
5288
|
-
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
6036
|
+
accentSwatch: accentSwatch,
|
|
6037
|
+
WHITE: WHITE$1,
|
|
6038
|
+
blueSwatch: blueSwatch,
|
|
6039
|
+
lightGray: lightGray,
|
|
6040
|
+
purpleSwatch: purpleSwatch$1
|
|
5293
6041
|
};
|
|
5294
6042
|
|
|
5295
6043
|
var BASE_VALUE$1 = 1;
|
|
5296
|
-
var BASE_UNITS$1 = 'rem';
|
|
6044
|
+
var BASE_UNITS$1 = 'rem';
|
|
5297
6045
|
|
|
5298
6046
|
var computeFontSize$1 = function (multiplier) {
|
|
5299
6047
|
return BASE_VALUE$1 * multiplier;
|
|
5300
6048
|
};
|
|
6049
|
+
|
|
5301
6050
|
var XSMALL_FONT$1 = computeFontSize$1(0.75) + BASE_UNITS$1;
|
|
5302
6051
|
var SMALL_FONT$1 = computeFontSize$1(0.875) + BASE_UNITS$1;
|
|
5303
6052
|
var MEDIUM_FONT$1 = computeFontSize$1(1) + BASE_UNITS$1;
|
|
5304
|
-
var MEDIUM_PLUS_FONT$1 = computeFontSize$1(1.
|
|
5305
|
-
var LARGE_FONT$1 = computeFontSize$1(1.
|
|
5306
|
-
var XLARGE_FONT$1 = computeFontSize$1(2
|
|
5307
|
-
var XXLARGE_FONT$1 = computeFontSize$1(
|
|
6053
|
+
var MEDIUM_PLUS_FONT$1 = computeFontSize$1(1.125) + BASE_UNITS$1;
|
|
6054
|
+
var LARGE_FONT$1 = computeFontSize$1(1.5) + BASE_UNITS$1;
|
|
6055
|
+
var XLARGE_FONT$1 = computeFontSize$1(2) + BASE_UNITS$1;
|
|
6056
|
+
var XXLARGE_FONT$1 = computeFontSize$1(4) + BASE_UNITS$1;
|
|
5308
6057
|
var XSMALL_LINE_HEIGHT$1 = computeFontSize$1(1.5) + BASE_UNITS$1;
|
|
5309
6058
|
var SMALL_LINE_HEIGHT$1 = computeFontSize$1(1.75) + BASE_UNITS$1;
|
|
5310
6059
|
var MEDIUM_LINE_HEIGHT$1 = computeFontSize$1(2) + BASE_UNITS$1;
|
|
5311
6060
|
var LARGE_LINE_HEIGHT$1 = computeFontSize$1(2.5) + BASE_UNITS$1;
|
|
5312
6061
|
var XLARGE_LINE_HEIGHT$1 = computeFontSize$1(3) + BASE_UNITS$1;
|
|
5313
6062
|
var XXLARGE_LINE_HEIGHT$1 = computeFontSize$1(3.5) + BASE_UNITS$1;
|
|
5314
|
-
var HEADING_FONT_FAMILY$1 = "'
|
|
5315
|
-
var BODY_FONT_FAMILY$1 = "'
|
|
5316
|
-
var
|
|
5317
|
-
var
|
|
6063
|
+
var HEADING_FONT_FAMILY$1 = "'Montserrat', sans-serif";
|
|
6064
|
+
var BODY_FONT_FAMILY$1 = "'Montserrat', sans-serif";
|
|
6065
|
+
var HEADING_FONT_IMPORT$1 = 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap';
|
|
6066
|
+
var BODY_FONT_IMPORT$1 = 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap';
|
|
5318
6067
|
var WEIGHT_THIN$1 = 300;
|
|
5319
6068
|
var WEIGHT_REGULAR$1 = 400;
|
|
5320
|
-
var WEIGHT_SEMI_BOLD$1 =
|
|
5321
|
-
var WEIGHT_BOLD$1 =
|
|
6069
|
+
var WEIGHT_SEMI_BOLD$1 = 500;
|
|
6070
|
+
var WEIGHT_BOLD$1 = 600;
|
|
5322
6071
|
var WEIGHT_EXTRA_BOLD$1 = 800;
|
|
5323
6072
|
|
|
5324
6073
|
var colors$2 = {
|
|
5325
|
-
primaryBrand: colors$3.
|
|
5326
|
-
secondaryBrand: colors$3.
|
|
5327
|
-
accent: colors$3.
|
|
6074
|
+
primaryBrand: colors$3.pinkSwatch,
|
|
6075
|
+
secondaryBrand: colors$3.brightBlueSwatch,
|
|
6076
|
+
accent: colors$3.accentSwatch,
|
|
5328
6077
|
success: colors$3.greenSwatch,
|
|
5329
6078
|
warning: colors$3.yellowSwatch,
|
|
5330
6079
|
danger: colors$3.redSwatch,
|
|
5331
|
-
background: colors$3.
|
|
6080
|
+
background: colors$3.lightGray,
|
|
5332
6081
|
foreground: colors$3.WHITE,
|
|
5333
|
-
grayScale: colors$3.
|
|
6082
|
+
grayScale: computeGrayScale(colors$3.pinkSwatch),
|
|
5334
6083
|
blueScale: colors$3.blueSwatch,
|
|
6084
|
+
purpleScale: colors$3.purpleSwatch,
|
|
5335
6085
|
white: colors$3.WHITE,
|
|
5336
6086
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
5337
6087
|
};
|
|
@@ -5393,15 +6143,15 @@ var concepts$1 = {
|
|
|
5393
6143
|
}
|
|
5394
6144
|
},
|
|
5395
6145
|
borders: {
|
|
5396
|
-
thin: borders$
|
|
5397
|
-
small: borders$
|
|
5398
|
-
default: borders$
|
|
5399
|
-
large: borders$
|
|
5400
|
-
bold: borders$
|
|
6146
|
+
thin: borders$9.xSmall,
|
|
6147
|
+
small: borders$9.small,
|
|
6148
|
+
default: borders$9.medium,
|
|
6149
|
+
large: borders$9.large,
|
|
6150
|
+
bold: borders$9.xLarge
|
|
5401
6151
|
},
|
|
5402
6152
|
spacing: {
|
|
5403
|
-
baseValue: BASE_VALUE$
|
|
5404
|
-
baseUnits: BASE_UNITS$
|
|
6153
|
+
baseValue: BASE_VALUE$9,
|
|
6154
|
+
baseUnits: BASE_UNITS$9
|
|
5405
6155
|
},
|
|
5406
6156
|
mediaQueries: {
|
|
5407
6157
|
small: mediaQuerySizes.small,
|
|
@@ -5411,18 +6161,18 @@ var concepts$1 = {
|
|
|
5411
6161
|
},
|
|
5412
6162
|
sizing: {
|
|
5413
6163
|
icons: {
|
|
5414
|
-
xSmall: icons$
|
|
5415
|
-
small: icons$
|
|
5416
|
-
medium: icons$
|
|
5417
|
-
large: icons$
|
|
5418
|
-
xLarge: icons$
|
|
6164
|
+
xSmall: icons$9.xSmall,
|
|
6165
|
+
small: icons$9.small,
|
|
6166
|
+
medium: icons$9.medium,
|
|
6167
|
+
large: icons$9.large,
|
|
6168
|
+
xLarge: icons$9.xLarge
|
|
5419
6169
|
},
|
|
5420
6170
|
sphere: {
|
|
5421
|
-
xSmall: sphere$
|
|
5422
|
-
small: sphere$
|
|
5423
|
-
medium: sphere$
|
|
5424
|
-
large: sphere$
|
|
5425
|
-
xLarge: sphere$
|
|
6171
|
+
xSmall: sphere$9.xSmall,
|
|
6172
|
+
small: sphere$9.small,
|
|
6173
|
+
medium: sphere$9.medium,
|
|
6174
|
+
large: sphere$9.large,
|
|
6175
|
+
xLarge: sphere$9.xLarge
|
|
5426
6176
|
}
|
|
5427
6177
|
}
|
|
5428
6178
|
};
|
|
@@ -5561,7 +6311,8 @@ var hocs$1 = {
|
|
|
5561
6311
|
warning: concepts$1.colors.warning,
|
|
5562
6312
|
accent: concepts$1.colors.accent,
|
|
5563
6313
|
grayScale: concepts$1.colors.grayScale,
|
|
5564
|
-
blueScale: concepts$1.colors.blueScale
|
|
6314
|
+
blueScale: concepts$1.colors.blueScale,
|
|
6315
|
+
purpleScale: concepts$1.colors.purpleScale
|
|
5565
6316
|
},
|
|
5566
6317
|
background: concepts$1.colors.background,
|
|
5567
6318
|
foreground: concepts$1.colors.foreground
|
|
@@ -5666,18 +6417,11 @@ var buttons$1 = {
|
|
|
5666
6417
|
fontFamily: concepts$1.typography.families.body
|
|
5667
6418
|
}
|
|
5668
6419
|
};
|
|
5669
|
-
var slider$1 = {
|
|
5670
|
-
backgroundColor: concepts$1.colors.background,
|
|
5671
|
-
borderRadius: concepts$1.radius.small,
|
|
5672
|
-
handleRadius: concepts$1.radius.circle,
|
|
5673
|
-
handleColor: concepts$1.colors.foreground,
|
|
5674
|
-
handleShadow: concepts$1.shadows.light
|
|
5675
|
-
};
|
|
5676
6420
|
var inputs$1 = {
|
|
5677
6421
|
checkbox: {
|
|
5678
6422
|
border: borders$1.default,
|
|
5679
6423
|
borderRadius: concepts$1.radius.small,
|
|
5680
|
-
unCheckedBackgroundColor: concepts$1.colors.grayScale.
|
|
6424
|
+
unCheckedBackgroundColor: concepts$1.colors.grayScale._1000,
|
|
5681
6425
|
checkmarkColor: concepts$1.typography.colors.inverseBody,
|
|
5682
6426
|
labelColor: concepts$1.typography.colors.primaryBody
|
|
5683
6427
|
},
|
|
@@ -5764,13 +6508,13 @@ var animatedCheckmark$1 = {
|
|
|
5764
6508
|
};
|
|
5765
6509
|
var avatar$1 = {
|
|
5766
6510
|
borderWidth: borders$1.thin,
|
|
5767
|
-
borderColor: concepts$1.colors.grayScale.
|
|
6511
|
+
borderColor: concepts$1.colors.grayScale._1000,
|
|
5768
6512
|
borderRadius: concepts$1.radius.circle,
|
|
5769
6513
|
boxShadow: concepts$1.shadows.mediumLight,
|
|
5770
6514
|
backgroundColor: concepts$1.colors.foreground,
|
|
5771
6515
|
bubbleBackgroundColors: {
|
|
5772
6516
|
isActive: concepts$1.colors.success.base,
|
|
5773
|
-
default: concepts$1.colors.grayScale.
|
|
6517
|
+
default: concepts$1.colors.grayScale._1000
|
|
5774
6518
|
},
|
|
5775
6519
|
defaultBackgroundColors: {
|
|
5776
6520
|
primary: concepts$1.colors.primaryBrand.base,
|
|
@@ -5826,7 +6570,7 @@ var loadingSpinner$1 = {
|
|
|
5826
6570
|
};
|
|
5827
6571
|
var separator$1 = {
|
|
5828
6572
|
border: borders$1.default,
|
|
5829
|
-
color: concepts$1.colors.grayScale.
|
|
6573
|
+
color: concepts$1.colors.grayScale._1000
|
|
5830
6574
|
};
|
|
5831
6575
|
var card$1 = {
|
|
5832
6576
|
backgroundColor: concepts$1.colors.warning.base,
|
|
@@ -5840,11 +6584,6 @@ var dialog$1 = {
|
|
|
5840
6584
|
boxShadow: concepts$1.shadows.mediumDark,
|
|
5841
6585
|
defaultInset: spacing$1.x6 + " " + spacing$1.x4 + " " + spacing$1.x4 + " " + spacing$1.x4
|
|
5842
6586
|
};
|
|
5843
|
-
var navigation$1 = {
|
|
5844
|
-
backgroundColor: concepts$1.colors.foreground,
|
|
5845
|
-
border: borders$1.thin,
|
|
5846
|
-
borderColor: concepts$1.colors.grayScale._800
|
|
5847
|
-
};
|
|
5848
6587
|
var drawer$1 = {
|
|
5849
6588
|
backgroundColor: concepts$1.colors.foreground,
|
|
5850
6589
|
borderRadius: concepts$1.radius.small,
|
|
@@ -5864,12 +6603,24 @@ var drawer$1 = {
|
|
|
5864
6603
|
}
|
|
5865
6604
|
}
|
|
5866
6605
|
};
|
|
6606
|
+
var navigation$1 = {
|
|
6607
|
+
backgroundColor: concepts$1.colors.foreground,
|
|
6608
|
+
border: borders$1.thin,
|
|
6609
|
+
borderColor: concepts$1.colors.grayScale._1000
|
|
6610
|
+
};
|
|
5867
6611
|
var sheet$1 = {
|
|
5868
6612
|
mobileBorderRadius: concepts$1.radius.large,
|
|
5869
6613
|
desktopBorderRadius: concepts$1.radius.default,
|
|
5870
6614
|
backgroundColor: concepts$1.colors.foreground,
|
|
5871
6615
|
boxShadow: concepts$1.shadows.mediumDark
|
|
5872
6616
|
};
|
|
6617
|
+
var slider$1 = {
|
|
6618
|
+
backgroundColor: concepts$1.colors.background,
|
|
6619
|
+
borderRadius: concepts$1.radius.small,
|
|
6620
|
+
handleRadius: concepts$1.radius.circle,
|
|
6621
|
+
handleColor: concepts$1.colors.foreground,
|
|
6622
|
+
handleShadow: concepts$1.shadows.light
|
|
6623
|
+
};
|
|
5873
6624
|
var toggle$1 = {
|
|
5874
6625
|
isActiveColor: concepts$1.colors.success.base,
|
|
5875
6626
|
isNotActiveColor: concepts$1.colors.grayScale._900
|
|
@@ -5927,7 +6678,7 @@ var widget$1 = {
|
|
|
5927
6678
|
},
|
|
5928
6679
|
danger: {
|
|
5929
6680
|
backgroundColor: concepts$1.colors.danger.base,
|
|
5930
|
-
fontColor: '
|
|
6681
|
+
fontColor: 'primaryBody'
|
|
5931
6682
|
},
|
|
5932
6683
|
shadow: {
|
|
5933
6684
|
backgroundColor: concepts$1.colors.foreground,
|
|
@@ -5959,45 +6710,50 @@ var entities$1 = {
|
|
|
5959
6710
|
animatedCheckmark: animatedCheckmark$1,
|
|
5960
6711
|
avatar: avatar$1,
|
|
5961
6712
|
dialog: dialog$1,
|
|
6713
|
+
drawer: drawer$1,
|
|
5962
6714
|
sheet: sheet$1,
|
|
6715
|
+
slider: slider$1,
|
|
5963
6716
|
navigation: navigation$1,
|
|
5964
6717
|
toggle: toggle$1,
|
|
5965
6718
|
tooltip: tooltip$1,
|
|
5966
|
-
drawer: drawer$1,
|
|
5967
|
-
slider: slider$1,
|
|
5968
6719
|
colorPicker: colorPicker$1,
|
|
5969
6720
|
sphere: sphere$1,
|
|
5970
6721
|
widget: widget$1,
|
|
5971
6722
|
colorOption: colorOption$1
|
|
5972
6723
|
};
|
|
5973
6724
|
|
|
5974
|
-
var
|
|
5975
|
-
var
|
|
5976
|
-
var
|
|
5977
|
-
var
|
|
5978
|
-
var
|
|
5979
|
-
|
|
5980
|
-
var
|
|
6725
|
+
var TEAL = '#00E0E0';
|
|
6726
|
+
var DARK_BLUE = '#023473';
|
|
6727
|
+
var LIGHT_BLUE = '#00AEEF';
|
|
6728
|
+
var ACCENT_BLUE = '#02C3E2';
|
|
6729
|
+
var BASE_GRAY = '#6A7177';
|
|
6730
|
+
var GREEN = '#0A9392';
|
|
6731
|
+
var GOLD = '#DFB614';
|
|
6732
|
+
var SALMON = '#F58795';
|
|
6733
|
+
var PURPLE = '#703A96';
|
|
6734
|
+
var BASE = '#FBF9F4';
|
|
5981
6735
|
var WHITE = '#FFF';
|
|
5982
|
-
var
|
|
5983
|
-
var
|
|
5984
|
-
var
|
|
6736
|
+
var tealSwatch = computeColorSwatch(TEAL);
|
|
6737
|
+
var darkBlueSwatch = computeColorSwatch(DARK_BLUE);
|
|
6738
|
+
var graySwatch = computeColorSwatch(BASE_GRAY);
|
|
6739
|
+
var lightBlueSwatch = computeColorSwatch(LIGHT_BLUE);
|
|
6740
|
+
var accentBlueSwatch = computeColorSwatch(ACCENT_BLUE);
|
|
5985
6741
|
var greenSwatch = computeColorSwatch(GREEN);
|
|
5986
|
-
var yellowSwatch = computeColorSwatch(
|
|
5987
|
-
var redSwatch = computeColorSwatch(
|
|
5988
|
-
var
|
|
5989
|
-
var blueSwatch = computeColorSwatch(BLUE);
|
|
5990
|
-
var lightGray = '#f5f6f7';
|
|
6742
|
+
var yellowSwatch = computeColorSwatch(GOLD);
|
|
6743
|
+
var redSwatch = computeColorSwatch(SALMON);
|
|
6744
|
+
var purpleSwatch = computeColorSwatch(PURPLE);
|
|
5991
6745
|
var colors$1 = {
|
|
5992
|
-
|
|
5993
|
-
|
|
6746
|
+
tealSwatch: tealSwatch,
|
|
6747
|
+
darkBlueSwatch: darkBlueSwatch,
|
|
6748
|
+
lightBlueSwatch: lightBlueSwatch,
|
|
6749
|
+
graySwatch: graySwatch,
|
|
6750
|
+
accentBlueSwatch: accentBlueSwatch,
|
|
5994
6751
|
greenSwatch: greenSwatch,
|
|
5995
|
-
redSwatch: redSwatch,
|
|
5996
6752
|
yellowSwatch: yellowSwatch,
|
|
5997
|
-
|
|
6753
|
+
redSwatch: redSwatch,
|
|
6754
|
+
purpleSwatch: purpleSwatch,
|
|
5998
6755
|
WHITE: WHITE,
|
|
5999
|
-
|
|
6000
|
-
lightGray: lightGray
|
|
6756
|
+
BASE: BASE
|
|
6001
6757
|
};
|
|
6002
6758
|
|
|
6003
6759
|
var BASE_VALUE = 1;
|
|
@@ -6006,41 +6762,41 @@ var BASE_UNITS = 'rem';
|
|
|
6006
6762
|
var computeFontSize = function (multiplier) {
|
|
6007
6763
|
return BASE_VALUE * multiplier;
|
|
6008
6764
|
};
|
|
6009
|
-
|
|
6010
6765
|
var XSMALL_FONT = computeFontSize(0.75) + BASE_UNITS;
|
|
6011
6766
|
var SMALL_FONT = computeFontSize(0.875) + BASE_UNITS;
|
|
6012
6767
|
var MEDIUM_FONT = computeFontSize(1) + BASE_UNITS;
|
|
6013
|
-
var MEDIUM_PLUS_FONT = computeFontSize(1.
|
|
6014
|
-
var LARGE_FONT = computeFontSize(1.
|
|
6015
|
-
var XLARGE_FONT = computeFontSize(2) + BASE_UNITS;
|
|
6016
|
-
var XXLARGE_FONT = computeFontSize(
|
|
6768
|
+
var MEDIUM_PLUS_FONT = computeFontSize(1.25) + BASE_UNITS;
|
|
6769
|
+
var LARGE_FONT = computeFontSize(1.75) + BASE_UNITS;
|
|
6770
|
+
var XLARGE_FONT = computeFontSize(2.125) + BASE_UNITS;
|
|
6771
|
+
var XXLARGE_FONT = computeFontSize(3) + BASE_UNITS;
|
|
6017
6772
|
var XSMALL_LINE_HEIGHT = computeFontSize(1.5) + BASE_UNITS;
|
|
6018
6773
|
var SMALL_LINE_HEIGHT = computeFontSize(1.75) + BASE_UNITS;
|
|
6019
6774
|
var MEDIUM_LINE_HEIGHT = computeFontSize(2) + BASE_UNITS;
|
|
6020
6775
|
var LARGE_LINE_HEIGHT = computeFontSize(2.5) + BASE_UNITS;
|
|
6021
6776
|
var XLARGE_LINE_HEIGHT = computeFontSize(3) + BASE_UNITS;
|
|
6022
6777
|
var XXLARGE_LINE_HEIGHT = computeFontSize(3.5) + BASE_UNITS;
|
|
6023
|
-
var HEADING_FONT_FAMILY = "'
|
|
6024
|
-
var BODY_FONT_FAMILY = "'
|
|
6025
|
-
var
|
|
6026
|
-
var
|
|
6778
|
+
var HEADING_FONT_FAMILY = "'Poppins', 'Open Sans', sans-serif";
|
|
6779
|
+
var BODY_FONT_FAMILY = "'Poppins', 'Open Sans', sans-serif";
|
|
6780
|
+
var BODY_FONT_IMPORT = 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap';
|
|
6781
|
+
var HEADING_FONT_IMPORT = 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap';
|
|
6027
6782
|
var WEIGHT_THIN = 300;
|
|
6028
6783
|
var WEIGHT_REGULAR = 400;
|
|
6029
|
-
var WEIGHT_SEMI_BOLD =
|
|
6030
|
-
var WEIGHT_BOLD =
|
|
6784
|
+
var WEIGHT_SEMI_BOLD = 600;
|
|
6785
|
+
var WEIGHT_BOLD = 700;
|
|
6031
6786
|
var WEIGHT_EXTRA_BOLD = 800;
|
|
6032
6787
|
|
|
6033
6788
|
var colors = {
|
|
6034
|
-
primaryBrand: colors$1.
|
|
6035
|
-
secondaryBrand: colors$1.
|
|
6036
|
-
accent: colors$1.
|
|
6789
|
+
primaryBrand: colors$1.tealSwatch,
|
|
6790
|
+
secondaryBrand: colors$1.darkBlueSwatch,
|
|
6791
|
+
accent: colors$1.accentBlueSwatch,
|
|
6037
6792
|
success: colors$1.greenSwatch,
|
|
6038
6793
|
warning: colors$1.yellowSwatch,
|
|
6039
6794
|
danger: colors$1.redSwatch,
|
|
6040
|
-
background: colors$1.
|
|
6795
|
+
background: colors$1.BASE,
|
|
6041
6796
|
foreground: colors$1.WHITE,
|
|
6042
|
-
grayScale:
|
|
6043
|
-
blueScale: colors$1.
|
|
6797
|
+
grayScale: colors$1.graySwatch,
|
|
6798
|
+
blueScale: colors$1.lightBlueSwatch,
|
|
6799
|
+
purpleScale: colors$1.purpleSwatch,
|
|
6044
6800
|
white: colors$1.WHITE,
|
|
6045
6801
|
defaultShadowColor: SHADOW_DEFAULT_COLOR
|
|
6046
6802
|
};
|
|
@@ -6102,15 +6858,15 @@ var concepts = {
|
|
|
6102
6858
|
}
|
|
6103
6859
|
},
|
|
6104
6860
|
borders: {
|
|
6105
|
-
thin: borders$
|
|
6106
|
-
small: borders$
|
|
6107
|
-
default: borders$
|
|
6108
|
-
large: borders$
|
|
6109
|
-
bold: borders$
|
|
6861
|
+
thin: borders$9.xSmall,
|
|
6862
|
+
small: borders$9.small,
|
|
6863
|
+
default: borders$9.medium,
|
|
6864
|
+
large: borders$9.large,
|
|
6865
|
+
bold: borders$9.xLarge
|
|
6110
6866
|
},
|
|
6111
6867
|
spacing: {
|
|
6112
|
-
baseValue: BASE_VALUE$
|
|
6113
|
-
baseUnits: BASE_UNITS$
|
|
6868
|
+
baseValue: BASE_VALUE$9,
|
|
6869
|
+
baseUnits: BASE_UNITS$9
|
|
6114
6870
|
},
|
|
6115
6871
|
mediaQueries: {
|
|
6116
6872
|
small: mediaQuerySizes.small,
|
|
@@ -6120,18 +6876,18 @@ var concepts = {
|
|
|
6120
6876
|
},
|
|
6121
6877
|
sizing: {
|
|
6122
6878
|
icons: {
|
|
6123
|
-
xSmall: icons$
|
|
6124
|
-
small: icons$
|
|
6125
|
-
medium: icons$
|
|
6126
|
-
large: icons$
|
|
6127
|
-
xLarge: icons$
|
|
6879
|
+
xSmall: icons$9.xSmall,
|
|
6880
|
+
small: icons$9.small,
|
|
6881
|
+
medium: icons$9.medium,
|
|
6882
|
+
large: icons$9.large,
|
|
6883
|
+
xLarge: icons$9.xLarge
|
|
6128
6884
|
},
|
|
6129
6885
|
sphere: {
|
|
6130
|
-
xSmall: sphere$
|
|
6131
|
-
small: sphere$
|
|
6132
|
-
medium: sphere$
|
|
6133
|
-
large: sphere$
|
|
6134
|
-
xLarge: sphere$
|
|
6886
|
+
xSmall: sphere$9.xSmall,
|
|
6887
|
+
small: sphere$9.small,
|
|
6888
|
+
medium: sphere$9.medium,
|
|
6889
|
+
large: sphere$9.large,
|
|
6890
|
+
xLarge: sphere$9.xLarge
|
|
6135
6891
|
}
|
|
6136
6892
|
}
|
|
6137
6893
|
};
|
|
@@ -6270,7 +7026,8 @@ var hocs = {
|
|
|
6270
7026
|
warning: concepts.colors.warning,
|
|
6271
7027
|
accent: concepts.colors.accent,
|
|
6272
7028
|
grayScale: concepts.colors.grayScale,
|
|
6273
|
-
blueScale: concepts.colors.blueScale
|
|
7029
|
+
blueScale: concepts.colors.blueScale,
|
|
7030
|
+
purpleScale: concepts.colors.purpleScale
|
|
6274
7031
|
},
|
|
6275
7032
|
background: concepts.colors.background,
|
|
6276
7033
|
foreground: concepts.colors.foreground
|
|
@@ -6375,11 +7132,18 @@ var buttons = {
|
|
|
6375
7132
|
fontFamily: concepts.typography.families.body
|
|
6376
7133
|
}
|
|
6377
7134
|
};
|
|
7135
|
+
var slider = {
|
|
7136
|
+
backgroundColor: concepts.colors.background,
|
|
7137
|
+
borderRadius: concepts.radius.small,
|
|
7138
|
+
handleRadius: concepts.radius.circle,
|
|
7139
|
+
handleColor: concepts.colors.foreground,
|
|
7140
|
+
handleShadow: concepts.shadows.light
|
|
7141
|
+
};
|
|
6378
7142
|
var inputs = {
|
|
6379
7143
|
checkbox: {
|
|
6380
7144
|
border: borders.default,
|
|
6381
7145
|
borderRadius: concepts.radius.small,
|
|
6382
|
-
unCheckedBackgroundColor: concepts.colors.grayScale.
|
|
7146
|
+
unCheckedBackgroundColor: concepts.colors.grayScale._800,
|
|
6383
7147
|
checkmarkColor: concepts.typography.colors.inverseBody,
|
|
6384
7148
|
labelColor: concepts.typography.colors.primaryBody
|
|
6385
7149
|
},
|
|
@@ -6466,13 +7230,13 @@ var animatedCheckmark = {
|
|
|
6466
7230
|
};
|
|
6467
7231
|
var avatar = {
|
|
6468
7232
|
borderWidth: borders.thin,
|
|
6469
|
-
borderColor: concepts.colors.grayScale.
|
|
7233
|
+
borderColor: concepts.colors.grayScale._800,
|
|
6470
7234
|
borderRadius: concepts.radius.circle,
|
|
6471
7235
|
boxShadow: concepts.shadows.mediumLight,
|
|
6472
7236
|
backgroundColor: concepts.colors.foreground,
|
|
6473
7237
|
bubbleBackgroundColors: {
|
|
6474
7238
|
isActive: concepts.colors.success.base,
|
|
6475
|
-
default: concepts.colors.grayScale.
|
|
7239
|
+
default: concepts.colors.grayScale._800
|
|
6476
7240
|
},
|
|
6477
7241
|
defaultBackgroundColors: {
|
|
6478
7242
|
primary: concepts.colors.primaryBrand.base,
|
|
@@ -6528,7 +7292,7 @@ var loadingSpinner = {
|
|
|
6528
7292
|
};
|
|
6529
7293
|
var separator = {
|
|
6530
7294
|
border: borders.default,
|
|
6531
|
-
color: concepts.colors.grayScale.
|
|
7295
|
+
color: concepts.colors.grayScale._800
|
|
6532
7296
|
};
|
|
6533
7297
|
var card = {
|
|
6534
7298
|
backgroundColor: concepts.colors.warning.base,
|
|
@@ -6542,6 +7306,11 @@ var dialog = {
|
|
|
6542
7306
|
boxShadow: concepts.shadows.mediumDark,
|
|
6543
7307
|
defaultInset: spacing.x6 + " " + spacing.x4 + " " + spacing.x4 + " " + spacing.x4
|
|
6544
7308
|
};
|
|
7309
|
+
var navigation = {
|
|
7310
|
+
backgroundColor: concepts.colors.foreground,
|
|
7311
|
+
border: borders.thin,
|
|
7312
|
+
borderColor: concepts.colors.grayScale._800
|
|
7313
|
+
};
|
|
6545
7314
|
var drawer = {
|
|
6546
7315
|
backgroundColor: concepts.colors.foreground,
|
|
6547
7316
|
borderRadius: concepts.radius.small,
|
|
@@ -6561,24 +7330,12 @@ var drawer = {
|
|
|
6561
7330
|
}
|
|
6562
7331
|
}
|
|
6563
7332
|
};
|
|
6564
|
-
var navigation = {
|
|
6565
|
-
backgroundColor: concepts.colors.foreground,
|
|
6566
|
-
border: borders.thin,
|
|
6567
|
-
borderColor: concepts.colors.grayScale._1000
|
|
6568
|
-
};
|
|
6569
7333
|
var sheet = {
|
|
6570
7334
|
mobileBorderRadius: concepts.radius.large,
|
|
6571
7335
|
desktopBorderRadius: concepts.radius.default,
|
|
6572
7336
|
backgroundColor: concepts.colors.foreground,
|
|
6573
7337
|
boxShadow: concepts.shadows.mediumDark
|
|
6574
7338
|
};
|
|
6575
|
-
var slider = {
|
|
6576
|
-
backgroundColor: concepts.colors.background,
|
|
6577
|
-
borderRadius: concepts.radius.small,
|
|
6578
|
-
handleRadius: concepts.radius.circle,
|
|
6579
|
-
handleColor: concepts.colors.foreground,
|
|
6580
|
-
handleShadow: concepts.shadows.light
|
|
6581
|
-
};
|
|
6582
7339
|
var toggle = {
|
|
6583
7340
|
isActiveColor: concepts.colors.success.base,
|
|
6584
7341
|
isNotActiveColor: concepts.colors.grayScale._900
|
|
@@ -6636,7 +7393,7 @@ var widget = {
|
|
|
6636
7393
|
},
|
|
6637
7394
|
danger: {
|
|
6638
7395
|
backgroundColor: concepts.colors.danger.base,
|
|
6639
|
-
fontColor: '
|
|
7396
|
+
fontColor: 'inverseBody'
|
|
6640
7397
|
},
|
|
6641
7398
|
shadow: {
|
|
6642
7399
|
backgroundColor: concepts.colors.foreground,
|
|
@@ -6644,7 +7401,7 @@ var widget = {
|
|
|
6644
7401
|
},
|
|
6645
7402
|
accent: {
|
|
6646
7403
|
backgroundColor: concepts.colors.accent.base,
|
|
6647
|
-
fontColor: '
|
|
7404
|
+
fontColor: 'inverseBody'
|
|
6648
7405
|
}
|
|
6649
7406
|
};
|
|
6650
7407
|
var colorOption = {
|
|
@@ -6668,21 +7425,21 @@ var entities = {
|
|
|
6668
7425
|
animatedCheckmark: animatedCheckmark,
|
|
6669
7426
|
avatar: avatar,
|
|
6670
7427
|
dialog: dialog,
|
|
6671
|
-
drawer: drawer,
|
|
6672
7428
|
sheet: sheet,
|
|
6673
|
-
slider: slider,
|
|
6674
7429
|
navigation: navigation,
|
|
6675
7430
|
toggle: toggle,
|
|
6676
7431
|
tooltip: tooltip,
|
|
7432
|
+
drawer: drawer,
|
|
7433
|
+
slider: slider,
|
|
6677
7434
|
colorPicker: colorPicker,
|
|
6678
7435
|
sphere: sphere,
|
|
6679
7436
|
widget: widget,
|
|
6680
7437
|
colorOption: colorOption
|
|
6681
7438
|
};
|
|
6682
7439
|
|
|
6683
|
-
var _emotionSourceMap2$x = process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
7440
|
+
var _emotionSourceMap2$x = process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInF1YW50dW1UaGVtZVdyYXBwZXIudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQXFDZ0IiLCJmaWxlIjoicXVhbnR1bVRoZW1lV3JhcHBlci50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBfX21ha2VUZW1wbGF0ZU9iamVjdCB9IGZyb20gXCJ0c2xpYlwiO1xyXG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xyXG5pbXBvcnQgeyBUaGVtZVByb3ZpZGVyIH0gZnJvbSAnZW1vdGlvbi10aGVtaW5nJztcclxuaW1wb3J0IHsgR2xvYmFsLCBjc3MgfSBmcm9tICdAZW1vdGlvbi9jb3JlJztcclxuaW1wb3J0IHsgZW50aXRpZXMgfSBmcm9tICcuLi90aGVtZS90aGVtaW5nL2VudGl0aWVzJztcclxuaW1wb3J0IHsgc2VuZG9nb1RoZW1lLCBiZWxsYUNhZGFldXhUaGVtZSwgZ3JlZW5lclN0aWxsVGhlbWUsIHByb21wdGluZ1VUaGVtZSwgc3RyZWFtTWFya2V0aW5nVGhlbWUsIHN0cmVhbVZBVGhlbWUsIGJsdWU0MlRoZW1lLCBzZW5kT3V0Q2FyZHNUaGVtZSwgcHJvbXB0aW5nc1RoZW1lLCB9IGZyb20gXCIuLi9leHBvcnRzL3RoZW1lc1wiO1xyXG5leHBvcnQgdmFyIFF1YW50dW1UaGVtZVdyYXBwZXIgPSBmdW5jdGlvbiAoX2EpIHtcclxuICAgIHZhciBjaGlsZHJlbiA9IF9hLmNoaWxkcmVuLCB0aGVtZSA9IF9hLnRoZW1lO1xyXG4gICAgdmFyIGdldFRoZW1lID0gZnVuY3Rpb24gKHRoZW1lKSB7XHJcbiAgICAgICAgc3dpdGNoICh0aGVtZSkge1xyXG4gICAgICAgICAgICBjYXNlICdzZW5kb2dvJzpcclxuICAgICAgICAgICAgICAgIHJldHVybiBzZW5kb2dvVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ2JlbGxhQ2FkZWF1eCc6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gYmVsbGFDYWRhZXV4VGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ2dyZWVuZXJTdGlsbCc6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gZ3JlZW5lclN0aWxsVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ3Byb21wdGluZ1UnOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHByb21wdGluZ1VUaGVtZTtcclxuICAgICAgICAgICAgY2FzZSAnc3RyZWFtTWFya2V0aW5nJzpcclxuICAgICAgICAgICAgICAgIHJldHVybiBzdHJlYW1NYXJrZXRpbmdUaGVtZTtcclxuICAgICAgICAgICAgY2FzZSAnc3RyZWFtVkEnOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHN0cmVhbVZBVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ2JsdWU0Mic6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gYmx1ZTQyVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ3NlbmRPdXRDYXJkcyc6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gc2VuZE91dENhcmRzVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ3Byb21wdGluZ3MnOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHByb21wdGluZ3NUaGVtZTtcclxuICAgICAgICAgICAgY2FzZSAncHJvbXB0aW5nc0FjYWRlbXknOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHByb21wdGluZ1VUaGVtZTtcclxuICAgICAgICAgICAgZGVmYXVsdDpcclxuICAgICAgICAgICAgICAgIHJldHVybiBlbnRpdGllcztcclxuICAgICAgICB9XHJcbiAgICB9O1xyXG4gICAgdmFyIHNlbGVjdGVkVGhlbWUgPSBnZXRUaGVtZSh0aGVtZSk7XHJcbiAgICByZXR1cm4gKDxUaGVtZVByb3ZpZGVyIHRoZW1lPXtzZWxlY3RlZFRoZW1lfT5cbiAgICAgIDxHbG9iYWwgc3R5bGVzPXtjc3ModGVtcGxhdGVPYmplY3RfMSB8fCAodGVtcGxhdGVPYmplY3RfMSA9IF9fbWFrZVRlbXBsYXRlT2JqZWN0KFtcIlxcbiAgICAgICAgICBAaW1wb3J0IHVybChcIiwgXCIpO1xcbiAgICAgICAgICBAaW1wb3J0IHVybChcIiwgXCIpO1xcbiAgICAgICAgICBib2R5IHtcXG4gICAgICAgICAgICBmb250LWZhbWlseTogXCIsIFwiO1xcbiAgICAgICAgICAgIGZvbnQtc2l6ZTogMTZweDtcXG4gICAgICAgICAgICBsaW5lLWhlaWdodDogMS42NTtcXG4gICAgICAgICAgICAqIHtcXG4gICAgICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XFxuICAgICAgICAgICAgfVxcbiAgICAgICAgICAgIGgxLFxcbiAgICAgICAgICAgIGgyLFxcbiAgICAgICAgICAgIGgzLFxcbiAgICAgICAgICAgIGg0LFxcbiAgICAgICAgICAgIGg1LFxcbiAgICAgICAgICAgIGg2IHtcXG4gICAgICAgICAgICAgIGZvbnQtZmFtaWx5OiBcIiwgXCI7XFxuICAgICAgICAgICAgfVxcbiAgICAgICAgICAgIGJ1dHRvbiB7XFxuICAgICAgICAgICAgICBmb250LWZhbWlseTogXCIsIFwiO1xcbiAgICAgICAgICAgIH1cXG4gICAgICAgICAgfVxcbiAgICAgICAgXCJdLCBbXCJcXG4gICAgICAgICAgQGltcG9ydCB1cmwoXCIsIFwiKTtcXG4gICAgICAgICAgQGltcG9ydCB1cmwoXCIsIFwiKTtcXG4gICAgICAgICAgYm9keSB7XFxuICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiLCBcIjtcXG4gICAgICAgICAgICBmb250LXNpemU6IDE2cHg7XFxuICAgICAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjU7XFxuICAgICAgICAgICAgKiB7XFxuICAgICAgICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xcbiAgICAgICAgICAgIH1cXG4gICAgICAgICAgICBoMSxcXG4gICAgICAgICAgICBoMixcXG4gICAgICAgICAgICBoMyxcXG4gICAgICAgICAgICBoNCxcXG4gICAgICAgICAgICBoNSxcXG4gICAgICAgICAgICBoNiB7XFxuICAgICAgICAgICAgICBmb250LWZhbWlseTogXCIsIFwiO1xcbiAgICAgICAgICAgIH1cXG4gICAgICAgICAgICBidXR0b24ge1xcbiAgICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiLCBcIjtcXG4gICAgICAgICAgICB9XFxuICAgICAgICAgIH1cXG4gICAgICAgIFwiXSkpLCBzZWxlY3RlZFRoZW1lLnRleHQuaW1wb3J0cy5ib2R5LCBzZWxlY3RlZFRoZW1lLnRleHQuaW1wb3J0cy5oZWFkaW5nLCBzZWxlY3RlZFRoZW1lLnRleHQuZmFtaWxpZXMuYm9keSwgc2VsZWN0ZWRUaGVtZS50ZXh0LmZhbWlsaWVzLmhlYWRpbmcsIHNlbGVjdGVkVGhlbWUudGV4dC5mYW1pbGllcy5ib2R5KX0vPlxuICAgICAgPGRpdiBjc3M9e2Nzcyh0ZW1wbGF0ZU9iamVjdF8yIHx8ICh0ZW1wbGF0ZU9iamVjdF8yID0gX19tYWtlVGVtcGxhdGVPYmplY3QoW1wiXFxuICAgICAgICAgIGZvbnQtc2l6ZTogMTZweDtcXG4gICAgICAgICAgPiBkaXYge1xcbiAgICAgICAgICAgIGZvbnQtc2l6ZTogaW5oZXJpdDtcXG4gICAgICAgICAgfVxcbiAgICAgICAgXCJdLCBbXCJcXG4gICAgICAgICAgZm9udC1zaXplOiAxNnB4O1xcbiAgICAgICAgICA+IGRpdiB7XFxuICAgICAgICAgICAgZm9udC1zaXplOiBpbmhlcml0O1xcbiAgICAgICAgICB9XFxuICAgICAgICBcIl0pKSl9PlxuICAgICAgICB7Y2hpbGRyZW59XG4gICAgICA8L2Rpdj5cbiAgICA8L1RoZW1lUHJvdmlkZXI+KTtcclxufTtcclxudmFyIHRlbXBsYXRlT2JqZWN0XzEsIHRlbXBsYXRlT2JqZWN0XzI7XHJcbi8vIyBzb3VyY2VNYXBwaW5nVVJMPXF1YW50dW1UaGVtZVdyYXBwZXIuanN4Lm1hcCJdfQ== */";
|
|
6684
7441
|
|
|
6685
|
-
var _emotionSourceMap$Y = process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
7442
|
+
var _emotionSourceMap$Y = process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInF1YW50dW1UaGVtZVdyYXBwZXIudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQW9Dc0IiLCJmaWxlIjoicXVhbnR1bVRoZW1lV3JhcHBlci50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBfX21ha2VUZW1wbGF0ZU9iamVjdCB9IGZyb20gXCJ0c2xpYlwiO1xyXG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xyXG5pbXBvcnQgeyBUaGVtZVByb3ZpZGVyIH0gZnJvbSAnZW1vdGlvbi10aGVtaW5nJztcclxuaW1wb3J0IHsgR2xvYmFsLCBjc3MgfSBmcm9tICdAZW1vdGlvbi9jb3JlJztcclxuaW1wb3J0IHsgZW50aXRpZXMgfSBmcm9tICcuLi90aGVtZS90aGVtaW5nL2VudGl0aWVzJztcclxuaW1wb3J0IHsgc2VuZG9nb1RoZW1lLCBiZWxsYUNhZGFldXhUaGVtZSwgZ3JlZW5lclN0aWxsVGhlbWUsIHByb21wdGluZ1VUaGVtZSwgc3RyZWFtTWFya2V0aW5nVGhlbWUsIHN0cmVhbVZBVGhlbWUsIGJsdWU0MlRoZW1lLCBzZW5kT3V0Q2FyZHNUaGVtZSwgcHJvbXB0aW5nc1RoZW1lLCB9IGZyb20gXCIuLi9leHBvcnRzL3RoZW1lc1wiO1xyXG5leHBvcnQgdmFyIFF1YW50dW1UaGVtZVdyYXBwZXIgPSBmdW5jdGlvbiAoX2EpIHtcclxuICAgIHZhciBjaGlsZHJlbiA9IF9hLmNoaWxkcmVuLCB0aGVtZSA9IF9hLnRoZW1lO1xyXG4gICAgdmFyIGdldFRoZW1lID0gZnVuY3Rpb24gKHRoZW1lKSB7XHJcbiAgICAgICAgc3dpdGNoICh0aGVtZSkge1xyXG4gICAgICAgICAgICBjYXNlICdzZW5kb2dvJzpcclxuICAgICAgICAgICAgICAgIHJldHVybiBzZW5kb2dvVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ2JlbGxhQ2FkZWF1eCc6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gYmVsbGFDYWRhZXV4VGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ2dyZWVuZXJTdGlsbCc6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gZ3JlZW5lclN0aWxsVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ3Byb21wdGluZ1UnOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHByb21wdGluZ1VUaGVtZTtcclxuICAgICAgICAgICAgY2FzZSAnc3RyZWFtTWFya2V0aW5nJzpcclxuICAgICAgICAgICAgICAgIHJldHVybiBzdHJlYW1NYXJrZXRpbmdUaGVtZTtcclxuICAgICAgICAgICAgY2FzZSAnc3RyZWFtVkEnOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHN0cmVhbVZBVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ2JsdWU0Mic6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gYmx1ZTQyVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ3NlbmRPdXRDYXJkcyc6XHJcbiAgICAgICAgICAgICAgICByZXR1cm4gc2VuZE91dENhcmRzVGhlbWU7XHJcbiAgICAgICAgICAgIGNhc2UgJ3Byb21wdGluZ3MnOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHByb21wdGluZ3NUaGVtZTtcclxuICAgICAgICAgICAgY2FzZSAncHJvbXB0aW5nc0FjYWRlbXknOlxyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHByb21wdGluZ1VUaGVtZTtcclxuICAgICAgICAgICAgZGVmYXVsdDpcclxuICAgICAgICAgICAgICAgIHJldHVybiBlbnRpdGllcztcclxuICAgICAgICB9XHJcbiAgICB9O1xyXG4gICAgdmFyIHNlbGVjdGVkVGhlbWUgPSBnZXRUaGVtZSh0aGVtZSk7XHJcbiAgICByZXR1cm4gKDxUaGVtZVByb3ZpZGVyIHRoZW1lPXtzZWxlY3RlZFRoZW1lfT5cbiAgICAgIDxHbG9iYWwgc3R5bGVzPXtjc3ModGVtcGxhdGVPYmplY3RfMSB8fCAodGVtcGxhdGVPYmplY3RfMSA9IF9fbWFrZVRlbXBsYXRlT2JqZWN0KFtcIlxcbiAgICAgICAgICBAaW1wb3J0IHVybChcIiwgXCIpO1xcbiAgICAgICAgICBAaW1wb3J0IHVybChcIiwgXCIpO1xcbiAgICAgICAgICBib2R5IHtcXG4gICAgICAgICAgICBmb250LWZhbWlseTogXCIsIFwiO1xcbiAgICAgICAgICAgIGZvbnQtc2l6ZTogMTZweDtcXG4gICAgICAgICAgICBsaW5lLWhlaWdodDogMS42NTtcXG4gICAgICAgICAgICAqIHtcXG4gICAgICAgICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XFxuICAgICAgICAgICAgfVxcbiAgICAgICAgICAgIGgxLFxcbiAgICAgICAgICAgIGgyLFxcbiAgICAgICAgICAgIGgzLFxcbiAgICAgICAgICAgIGg0LFxcbiAgICAgICAgICAgIGg1LFxcbiAgICAgICAgICAgIGg2IHtcXG4gICAgICAgICAgICAgIGZvbnQtZmFtaWx5OiBcIiwgXCI7XFxuICAgICAgICAgICAgfVxcbiAgICAgICAgICAgIGJ1dHRvbiB7XFxuICAgICAgICAgICAgICBmb250LWZhbWlseTogXCIsIFwiO1xcbiAgICAgICAgICAgIH1cXG4gICAgICAgICAgfVxcbiAgICAgICAgXCJdLCBbXCJcXG4gICAgICAgICAgQGltcG9ydCB1cmwoXCIsIFwiKTtcXG4gICAgICAgICAgQGltcG9ydCB1cmwoXCIsIFwiKTtcXG4gICAgICAgICAgYm9keSB7XFxuICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiLCBcIjtcXG4gICAgICAgICAgICBmb250LXNpemU6IDE2cHg7XFxuICAgICAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjU7XFxuICAgICAgICAgICAgKiB7XFxuICAgICAgICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xcbiAgICAgICAgICAgIH1cXG4gICAgICAgICAgICBoMSxcXG4gICAgICAgICAgICBoMixcXG4gICAgICAgICAgICBoMyxcXG4gICAgICAgICAgICBoNCxcXG4gICAgICAgICAgICBoNSxcXG4gICAgICAgICAgICBoNiB7XFxuICAgICAgICAgICAgICBmb250LWZhbWlseTogXCIsIFwiO1xcbiAgICAgICAgICAgIH1cXG4gICAgICAgICAgICBidXR0b24ge1xcbiAgICAgICAgICAgICAgZm9udC1mYW1pbHk6IFwiLCBcIjtcXG4gICAgICAgICAgICB9XFxuICAgICAgICAgIH1cXG4gICAgICAgIFwiXSkpLCBzZWxlY3RlZFRoZW1lLnRleHQuaW1wb3J0cy5ib2R5LCBzZWxlY3RlZFRoZW1lLnRleHQuaW1wb3J0cy5oZWFkaW5nLCBzZWxlY3RlZFRoZW1lLnRleHQuZmFtaWxpZXMuYm9keSwgc2VsZWN0ZWRUaGVtZS50ZXh0LmZhbWlsaWVzLmhlYWRpbmcsIHNlbGVjdGVkVGhlbWUudGV4dC5mYW1pbGllcy5ib2R5KX0vPlxuICAgICAgPGRpdiBjc3M9e2Nzcyh0ZW1wbGF0ZU9iamVjdF8yIHx8ICh0ZW1wbGF0ZU9iamVjdF8yID0gX19tYWtlVGVtcGxhdGVPYmplY3QoW1wiXFxuICAgICAgICAgIGZvbnQtc2l6ZTogMTZweDtcXG4gICAgICAgICAgPiBkaXYge1xcbiAgICAgICAgICAgIGZvbnQtc2l6ZTogaW5oZXJpdDtcXG4gICAgICAgICAgfVxcbiAgICAgICAgXCJdLCBbXCJcXG4gICAgICAgICAgZm9udC1zaXplOiAxNnB4O1xcbiAgICAgICAgICA+IGRpdiB7XFxuICAgICAgICAgICAgZm9udC1zaXplOiBpbmhlcml0O1xcbiAgICAgICAgICB9XFxuICAgICAgICBcIl0pKSl9PlxuICAgICAgICB7Y2hpbGRyZW59XG4gICAgICA8L2Rpdj5cbiAgICA8L1RoZW1lUHJvdmlkZXI+KTtcclxufTtcclxudmFyIHRlbXBsYXRlT2JqZWN0XzEsIHRlbXBsYXRlT2JqZWN0XzI7XHJcbi8vIyBzb3VyY2VNYXBwaW5nVVJMPXF1YW50dW1UaGVtZVdyYXBwZXIuanN4Lm1hcCJdfQ== */";
|
|
6686
7443
|
var QuantumThemeWrapper = function (_a) {
|
|
6687
7444
|
var children = _a.children,
|
|
6688
7445
|
theme = _a.theme;
|
|
@@ -6690,37 +7447,37 @@ var QuantumThemeWrapper = function (_a) {
|
|
|
6690
7447
|
var getTheme = function (theme) {
|
|
6691
7448
|
switch (theme) {
|
|
6692
7449
|
case 'sendogo':
|
|
6693
|
-
return entities$
|
|
7450
|
+
return entities$8;
|
|
6694
7451
|
|
|
6695
7452
|
case 'bellaCadeaux':
|
|
6696
|
-
return entities$
|
|
7453
|
+
return entities$6;
|
|
6697
7454
|
|
|
6698
7455
|
case 'greenerStill':
|
|
6699
|
-
return entities$
|
|
7456
|
+
return entities$7;
|
|
6700
7457
|
|
|
6701
7458
|
case 'promptingU':
|
|
6702
|
-
return entities$
|
|
7459
|
+
return entities$4;
|
|
6703
7460
|
|
|
6704
7461
|
case 'streamMarketing':
|
|
6705
|
-
return entities$
|
|
7462
|
+
return entities$3;
|
|
6706
7463
|
|
|
6707
7464
|
case 'streamVA':
|
|
6708
|
-
return entities$
|
|
7465
|
+
return entities$2;
|
|
6709
7466
|
|
|
6710
7467
|
case 'blue42':
|
|
6711
|
-
return entities$
|
|
7468
|
+
return entities$5;
|
|
6712
7469
|
|
|
6713
7470
|
case 'sendOutCards':
|
|
6714
|
-
return entities;
|
|
7471
|
+
return entities$1;
|
|
6715
7472
|
|
|
6716
7473
|
case 'promptings':
|
|
6717
|
-
return entities
|
|
7474
|
+
return entities;
|
|
6718
7475
|
|
|
6719
7476
|
case 'promptingsAcademy':
|
|
6720
|
-
return entities$
|
|
7477
|
+
return entities$4;
|
|
6721
7478
|
|
|
6722
7479
|
default:
|
|
6723
|
-
return entities$
|
|
7480
|
+
return entities$9;
|
|
6724
7481
|
}
|
|
6725
7482
|
};
|
|
6726
7483
|
|
|
@@ -11335,7 +12092,7 @@ var styles$T = {
|
|
|
11335
12092
|
};
|
|
11336
12093
|
var templateObject_1$X, templateObject_2$w, templateObject_3$j;
|
|
11337
12094
|
|
|
11338
|
-
var mediaQueries$2 = entities$
|
|
12095
|
+
var mediaQueries$2 = entities$9.mediaQueries;
|
|
11339
12096
|
var makeResponsive = function (property, value, entity) {
|
|
11340
12097
|
var style = {};
|
|
11341
12098
|
|
|
@@ -11770,7 +12527,7 @@ var useWindowSize = function () {
|
|
|
11770
12527
|
};
|
|
11771
12528
|
};
|
|
11772
12529
|
|
|
11773
|
-
var mediaQueries$1 = entities$
|
|
12530
|
+
var mediaQueries$1 = entities$9.mediaQueries;
|
|
11774
12531
|
var makeTextResponsive = function (size, callback, windowSize) {
|
|
11775
12532
|
// TODO - Change this function to allow cases to fall through, as of now you have to specify every media query size
|
|
11776
12533
|
var lastQuery = 'body';
|
|
@@ -13374,7 +14131,7 @@ var _emotionSourceMap3$f = process.env.NODE_ENV === "production" ? "" : "/*# sou
|
|
|
13374
14131
|
var _emotionSourceMap2$n = process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNNEYiLCJmaWxlIjoic3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgX19tYWtlVGVtcGxhdGVPYmplY3QgfSBmcm9tIFwidHNsaWJcIjtcclxuaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vY29yZSc7XHJcbmltcG9ydCB7IGVudGl0aWVzIH0gZnJvbSBcIi4uLy4uL3RoZW1lL3RoZW1pbmcvZW50aXRpZXNcIjtcclxudmFyIG1lZGlhUXVlcmllcyA9IGVudGl0aWVzLm1lZGlhUXVlcmllcztcclxuZXhwb3J0IGRlZmF1bHQge1xyXG4gICAgc2hlZXRXcmFwcGVyOiBmdW5jdGlvbiAobW9iaWxlLCBsYXllcikgeyByZXR1cm4gY3NzKHRlbXBsYXRlT2JqZWN0XzEgfHwgKHRlbXBsYXRlT2JqZWN0XzEgPSBfX21ha2VUZW1wbGF0ZU9iamVjdChbXCJcXG4gICAgcG9zaXRpb246IFwiLCBcIjtcXG4gICAgYm90dG9tOiAwO1xcbiAgICBsZWZ0OiAwO1xcbiAgICB6LWluZGV4OiBcIiwgXCI7XFxuICBcIl0sIFtcIlxcbiAgICBwb3NpdGlvbjogXCIsIFwiO1xcbiAgICBib3R0b206IDA7XFxuICAgIGxlZnQ6IDA7XFxuICAgIHotaW5kZXg6IFwiLCBcIjtcXG4gIFwiXSkpLCBtb2JpbGUgPyAnYWJzb2x1dGUnIDogJ3JlbGF0aXZlJywgbGF5ZXIpOyB9LFxyXG4gICAgc2hlZXQ6IGZ1bmN0aW9uIChzaGVldEVudGl0eSwgaGFzQmFja2dyb3VuZEVsZW1lbnQsIGlzTW9iaWxlLCBiYWNrZ3JvdW5kQ29sb3IpIHsgcmV0dXJuIGNzcyh0ZW1wbGF0ZU9iamVjdF8yIHx8ICh0ZW1wbGF0ZU9iamVjdF8yID0gX19tYWtlVGVtcGxhdGVPYmplY3QoW1wiXFxuICAgIHdpZHRoOiAxMDAlO1xcbiAgICBkaXNwbGF5OiBmbGV4O1xcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiBcIiwgXCI7XFxuICAgIHBsYWNlLWl0ZW1zOiBzdGFydCBjZW50ZXI7XFxuICAgIHBsYWNlLWNvbnRlbnQ6IHN0YXJ0IGNlbnRlcjtcXG4gICAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcXG4gICAgYm9yZGVyLXJhZGl1czogXCIsIFwiO1xcbiAgICBib3gtc2hhZG93OiBcIiwgXCI7XFxuICAgIHBhZGRpbmc6IDQ4cHggMzJweCAzMnB4IDMycHg7XFxuICAgIHBvc2l0aW9uOiBcIiwgXCI7XFxuICAgIGJvdHRvbTogXCIsIFwiO1xcbiAgICB6LWluZGV4OiAzO1xcbiAgICBvcmRlcjogMjtcXG4gICAgQG1lZGlhIHNjcmVlbiBhbmQgKG1pbi13aWR0aDogXCIsIFwiKSB7XFxuICAgICAgYm9yZGVyLXJhZGl1czogXCIsIFwiO1xcbiAgICB9XFxuICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtaW4td2lkdGg6IFwiLCBcIikge1xcbiAgICAgIHdpZHRoOiBcIiwgXCI7XFxuICAgICAgb3JkZXI6IDE7XFxuICAgICAgYm9yZGVyLXJhZGl1czogXCIsIFwiO1xcbiAgICB9XFxuICBcIl0sIFtcIlxcbiAgICB3aWR0aDogMTAwJTtcXG4gICAgZGlzcGxheTogZmxleDtcXG4gICAgYmFja2dyb3VuZC1jb2xvcjogXCIsIFwiO1xcbiAgICBwbGFjZS1pdGVtczogc3RhcnQgY2VudGVyO1xcbiAgICBwbGFjZS1jb250ZW50OiBzdGFydCBjZW50ZXI7XFxuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XFxuICAgIGJvcmRlci1yYWRpdXM6IFwiLCBcIjtcXG4gICAgYm94LXNoYWRvdzogXCIsIFwiO1xcbiAgICBwYWRkaW5nOiA0OHB4IDMycHggMzJweCAzMnB4O1xcbiAgICBwb3NpdGlvbjogXCIsIFwiO1xcbiAgICBib3R0b206IFwiLCBcIjtcXG4gICAgei1pbmRleDogMztcXG4gICAgb3JkZXI6IDI7XFxuICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtaW4td2lkdGg6IFwiLCBcIikge1xcbiAgICAgIGJvcmRlci1yYWRpdXM6IFwiLFxyXG4gICAgICAgIFwiO1xcbiAgICB9XFxuICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtaW4td2lkdGg6IFwiLCBcIikge1xcbiAgICAgIHdpZHRoOiBcIiwgXCI7XFxuICAgICAgb3JkZXI6IDE7XFxuICAgICAgYm9yZGVyLXJhZGl1czogXCIsXHJcbiAgICAgICAgXCI7XFxuICAgIH1cXG4gIFwiXSkpLCBiYWNrZ3JvdW5kQ29sb3IgfHwgJ3doaXRlJywgc2hlZXRFbnRpdHkubW9iaWxlQm9yZGVyUmFkaXVzICsgXCIgXCIgKyBzaGVldEVudGl0eS5tb2JpbGVCb3JkZXJSYWRpdXMgKyBcIiAwIDBcIiwgc2hlZXRFbnRpdHkuYm94U2hhZG93LCBpc01vYmlsZSA/ICdhYnNvbHV0ZScgOiAncmVsYXRpdmUnLCBpc01vYmlsZSAmJiAwLCBtZWRpYVF1ZXJpZXMucmF3VmFsdWVzLnNtYWxsICsgXCJweFwiLCBoYXNCYWNrZ3JvdW5kRWxlbWVudFxyXG4gICAgICAgID8gc2hlZXRFbnRpdHkuZGVza3RvcEJvcmRlclJhZGl1cyArIFwiIFwiICsgc2hlZXRFbnRpdHkuZGVza3RvcEJvcmRlclJhZGl1cyArIFwiIDAgMCBcIlxyXG4gICAgICAgIDogXCJcIiArIHNoZWV0RW50aXR5LmRlc2t0b3BCb3JkZXJSYWRpdXMsIG1lZGlhUXVlcmllcy5yYXdWYWx1ZXMubWVkaXVtICsgXCJweFwiLCBoYXNCYWNrZ3JvdW5kRWxlbWVudCA/ICc1MCUnIDogJzEwMCUnLCBoYXNCYWNrZ3JvdW5kRWxlbWVudFxyXG4gICAgICAgID8gc2hlZXRFbnRpdHkuZGVza3RvcEJvcmRlclJhZGl1cyArIFwiIDAgMCBcIiArIHNoZWV0RW50aXR5LmRlc2t0b3BCb3JkZXJSYWRpdXNcclxuICAgICAgICA6IFwiXCIgKyBzaGVldEVudGl0eS5kZXNrdG9wQm9yZGVyUmFkaXVzKTsgfSxcclxuICAgIGRyYWdCYXI6IGNzcyh0ZW1wbGF0ZU9iamVjdF8zIHx8ICh0ZW1wbGF0ZU9iamVjdF8zID0gX19tYWtlVGVtcGxhdGVPYmplY3QoW1wiXFxuICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKTtcXG4gIFwiXSwgW1wiXFxuICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKTtcXG4gIFwiXSkpKSxcclxuICAgIGNoaWxkV3JhcHBlcjogY3NzKHRlbXBsYXRlT2JqZWN0XzQgfHwgKHRlbXBsYXRlT2JqZWN0XzQgPSBfX21ha2VUZW1wbGF0ZU9iamVjdChbXCJcXG4gICAgOjotd2Via2l0LXNjcm9sbGJhciB7XFxuICAgICAgd2lkdGg6IDBweDtcXG4gICAgICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDsgLyogbWFrZSBzY3JvbGxiYXIgdHJhbnNwYXJlbnQgKi9cXG4gICAgfVxcbiAgXCJdLCBbXCJcXG4gICAgOjotd2Via2l0LXNjcm9sbGJhciB7XFxuICAgICAgd2lkdGg6IDBweDtcXG4gICAgICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDsgLyogbWFrZSBzY3JvbGxiYXIgdHJhbnNwYXJlbnQgKi9cXG4gICAgfVxcbiAgXCJdKSkpLFxyXG59O1xyXG52YXIgdGVtcGxhdGVPYmplY3RfMSwgdGVtcGxhdGVPYmplY3RfMiwgdGVtcGxhdGVPYmplY3RfMywgdGVtcGxhdGVPYmplY3RfNDtcclxuLy8jIHNvdXJjZU1hcHBpbmdVUkw9c3R5bGVzLmpzLm1hcCJdfQ== */";
|
|
13375
14132
|
|
|
13376
14133
|
var _emotionSourceMap$C = process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFLb0QiLCJmaWxlIjoic3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgX19tYWtlVGVtcGxhdGVPYmplY3QgfSBmcm9tIFwidHNsaWJcIjtcclxuaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vY29yZSc7XHJcbmltcG9ydCB7IGVudGl0aWVzIH0gZnJvbSBcIi4uLy4uL3RoZW1lL3RoZW1pbmcvZW50aXRpZXNcIjtcclxudmFyIG1lZGlhUXVlcmllcyA9IGVudGl0aWVzLm1lZGlhUXVlcmllcztcclxuZXhwb3J0IGRlZmF1bHQge1xyXG4gICAgc2hlZXRXcmFwcGVyOiBmdW5jdGlvbiAobW9iaWxlLCBsYXllcikgeyByZXR1cm4gY3NzKHRlbXBsYXRlT2JqZWN0XzEgfHwgKHRlbXBsYXRlT2JqZWN0XzEgPSBfX21ha2VUZW1wbGF0ZU9iamVjdChbXCJcXG4gICAgcG9zaXRpb246IFwiLCBcIjtcXG4gICAgYm90dG9tOiAwO1xcbiAgICBsZWZ0OiAwO1xcbiAgICB6LWluZGV4OiBcIiwgXCI7XFxuICBcIl0sIFtcIlxcbiAgICBwb3NpdGlvbjogXCIsIFwiO1xcbiAgICBib3R0b206IDA7XFxuICAgIGxlZnQ6IDA7XFxuICAgIHotaW5kZXg6IFwiLCBcIjtcXG4gIFwiXSkpLCBtb2JpbGUgPyAnYWJzb2x1dGUnIDogJ3JlbGF0aXZlJywgbGF5ZXIpOyB9LFxyXG4gICAgc2hlZXQ6IGZ1bmN0aW9uIChzaGVldEVudGl0eSwgaGFzQmFja2dyb3VuZEVsZW1lbnQsIGlzTW9iaWxlLCBiYWNrZ3JvdW5kQ29sb3IpIHsgcmV0dXJuIGNzcyh0ZW1wbGF0ZU9iamVjdF8yIHx8ICh0ZW1wbGF0ZU9iamVjdF8yID0gX19tYWtlVGVtcGxhdGVPYmplY3QoW1wiXFxuICAgIHdpZHRoOiAxMDAlO1xcbiAgICBkaXNwbGF5OiBmbGV4O1xcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiBcIiwgXCI7XFxuICAgIHBsYWNlLWl0ZW1zOiBzdGFydCBjZW50ZXI7XFxuICAgIHBsYWNlLWNvbnRlbnQ6IHN0YXJ0IGNlbnRlcjtcXG4gICAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcXG4gICAgYm9yZGVyLXJhZGl1czogXCIsIFwiO1xcbiAgICBib3gtc2hhZG93OiBcIiwgXCI7XFxuICAgIHBhZGRpbmc6IDQ4cHggMzJweCAzMnB4IDMycHg7XFxuICAgIHBvc2l0aW9uOiBcIiwgXCI7XFxuICAgIGJvdHRvbTogXCIsIFwiO1xcbiAgICB6LWluZGV4OiAzO1xcbiAgICBvcmRlcjogMjtcXG4gICAgQG1lZGlhIHNjcmVlbiBhbmQgKG1pbi13aWR0aDogXCIsIFwiKSB7XFxuICAgICAgYm9yZGVyLXJhZGl1czogXCIsIFwiO1xcbiAgICB9XFxuICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtaW4td2lkdGg6IFwiLCBcIikge1xcbiAgICAgIHdpZHRoOiBcIiwgXCI7XFxuICAgICAgb3JkZXI6IDE7XFxuICAgICAgYm9yZGVyLXJhZGl1czogXCIsIFwiO1xcbiAgICB9XFxuICBcIl0sIFtcIlxcbiAgICB3aWR0aDogMTAwJTtcXG4gICAgZGlzcGxheTogZmxleDtcXG4gICAgYmFja2dyb3VuZC1jb2xvcjogXCIsIFwiO1xcbiAgICBwbGFjZS1pdGVtczogc3RhcnQgY2VudGVyO1xcbiAgICBwbGFjZS1jb250ZW50OiBzdGFydCBjZW50ZXI7XFxuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XFxuICAgIGJvcmRlci1yYWRpdXM6IFwiLCBcIjtcXG4gICAgYm94LXNoYWRvdzogXCIsIFwiO1xcbiAgICBwYWRkaW5nOiA0OHB4IDMycHggMzJweCAzMnB4O1xcbiAgICBwb3NpdGlvbjogXCIsIFwiO1xcbiAgICBib3R0b206IFwiLCBcIjtcXG4gICAgei1pbmRleDogMztcXG4gICAgb3JkZXI6IDI7XFxuICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtaW4td2lkdGg6IFwiLCBcIikge1xcbiAgICAgIGJvcmRlci1yYWRpdXM6IFwiLFxyXG4gICAgICAgIFwiO1xcbiAgICB9XFxuICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtaW4td2lkdGg6IFwiLCBcIikge1xcbiAgICAgIHdpZHRoOiBcIiwgXCI7XFxuICAgICAgb3JkZXI6IDE7XFxuICAgICAgYm9yZGVyLXJhZGl1czogXCIsXHJcbiAgICAgICAgXCI7XFxuICAgIH1cXG4gIFwiXSkpLCBiYWNrZ3JvdW5kQ29sb3IgfHwgJ3doaXRlJywgc2hlZXRFbnRpdHkubW9iaWxlQm9yZGVyUmFkaXVzICsgXCIgXCIgKyBzaGVldEVudGl0eS5tb2JpbGVCb3JkZXJSYWRpdXMgKyBcIiAwIDBcIiwgc2hlZXRFbnRpdHkuYm94U2hhZG93LCBpc01vYmlsZSA/ICdhYnNvbHV0ZScgOiAncmVsYXRpdmUnLCBpc01vYmlsZSAmJiAwLCBtZWRpYVF1ZXJpZXMucmF3VmFsdWVzLnNtYWxsICsgXCJweFwiLCBoYXNCYWNrZ3JvdW5kRWxlbWVudFxyXG4gICAgICAgID8gc2hlZXRFbnRpdHkuZGVza3RvcEJvcmRlclJhZGl1cyArIFwiIFwiICsgc2hlZXRFbnRpdHkuZGVza3RvcEJvcmRlclJhZGl1cyArIFwiIDAgMCBcIlxyXG4gICAgICAgIDogXCJcIiArIHNoZWV0RW50aXR5LmRlc2t0b3BCb3JkZXJSYWRpdXMsIG1lZGlhUXVlcmllcy5yYXdWYWx1ZXMubWVkaXVtICsgXCJweFwiLCBoYXNCYWNrZ3JvdW5kRWxlbWVudCA/ICc1MCUnIDogJzEwMCUnLCBoYXNCYWNrZ3JvdW5kRWxlbWVudFxyXG4gICAgICAgID8gc2hlZXRFbnRpdHkuZGVza3RvcEJvcmRlclJhZGl1cyArIFwiIDAgMCBcIiArIHNoZWV0RW50aXR5LmRlc2t0b3BCb3JkZXJSYWRpdXNcclxuICAgICAgICA6IFwiXCIgKyBzaGVldEVudGl0eS5kZXNrdG9wQm9yZGVyUmFkaXVzKTsgfSxcclxuICAgIGRyYWdCYXI6IGNzcyh0ZW1wbGF0ZU9iamVjdF8zIHx8ICh0ZW1wbGF0ZU9iamVjdF8zID0gX19tYWtlVGVtcGxhdGVPYmplY3QoW1wiXFxuICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKTtcXG4gIFwiXSwgW1wiXFxuICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKTtcXG4gIFwiXSkpKSxcclxuICAgIGNoaWxkV3JhcHBlcjogY3NzKHRlbXBsYXRlT2JqZWN0XzQgfHwgKHRlbXBsYXRlT2JqZWN0XzQgPSBfX21ha2VUZW1wbGF0ZU9iamVjdChbXCJcXG4gICAgOjotd2Via2l0LXNjcm9sbGJhciB7XFxuICAgICAgd2lkdGg6IDBweDtcXG4gICAgICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDsgLyogbWFrZSBzY3JvbGxiYXIgdHJhbnNwYXJlbnQgKi9cXG4gICAgfVxcbiAgXCJdLCBbXCJcXG4gICAgOjotd2Via2l0LXNjcm9sbGJhciB7XFxuICAgICAgd2lkdGg6IDBweDtcXG4gICAgICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDsgLyogbWFrZSBzY3JvbGxiYXIgdHJhbnNwYXJlbnQgKi9cXG4gICAgfVxcbiAgXCJdKSkpLFxyXG59O1xyXG52YXIgdGVtcGxhdGVPYmplY3RfMSwgdGVtcGxhdGVPYmplY3RfMiwgdGVtcGxhdGVPYmplY3RfMywgdGVtcGxhdGVPYmplY3RfNDtcclxuLy8jIHNvdXJjZU1hcHBpbmdVUkw9c3R5bGVzLmpzLm1hcCJdfQ== */";
|
|
13377
|
-
var mediaQueries = entities$
|
|
14134
|
+
var mediaQueries = entities$9.mediaQueries;
|
|
13378
14135
|
var styles$A = {
|
|
13379
14136
|
sheetWrapper: function (mobile, layer) {
|
|
13380
14137
|
return /*#__PURE__*/css(templateObject_1$C || (templateObject_1$C = __makeTemplateObject(["\n position: ", ";\n bottom: 0;\n left: 0;\n z-index: ", ";\n " + _emotionSourceMap$C], ["\n position: ", ";\n bottom: 0;\n left: 0;\n z-index: ", ";\n " + _emotionSourceMap$C])), mobile ? 'absolute' : 'relative', layer);
|
|
@@ -24338,7 +25095,8 @@ var useColorSwatch = function () {
|
|
|
24338
25095
|
warning = _a.warning,
|
|
24339
25096
|
accent = _a.accent,
|
|
24340
25097
|
grayScale = _a.grayScale,
|
|
24341
|
-
blueScale = _a.blueScale
|
|
25098
|
+
blueScale = _a.blueScale,
|
|
25099
|
+
purpleScale = _a.purpleScale;
|
|
24342
25100
|
return {
|
|
24343
25101
|
primaryBrand: primaryBrand,
|
|
24344
25102
|
secondaryBrand: secondaryBrand,
|
|
@@ -24347,8 +25105,9 @@ var useColorSwatch = function () {
|
|
|
24347
25105
|
warning: warning,
|
|
24348
25106
|
accent: accent,
|
|
24349
25107
|
grayScale: grayScale,
|
|
24350
|
-
blueScale: blueScale
|
|
25108
|
+
blueScale: blueScale,
|
|
25109
|
+
purpleScale: purpleScale
|
|
24351
25110
|
};
|
|
24352
25111
|
};
|
|
24353
25112
|
|
|
24354
|
-
export { Accordion, AccordionBody, AccordionHeading, AccountMenu, AffiliateShareWidget, Anchor, AnimatedCheckMark, AnimatedGrid, ArticleCard, Aside, Avatar, AwardCard, AwardGroupLabel, Badge, Banner, Bar, BlockQuote, BulkSend, Button, ButtonWithMenu, Capsule, Card, CardEntryDialog, CardQuantitySlider, Checkbox, Circle, CircleMenu, Clipboard, CloseButton, ColorOption, ColorThumbnail, ComparisonIncludesList, ComparisonItem, ConfigurationCard, ConfirmDialog, Content, ContentPusher, ContextBar, CountdownTimer, Dialog, DisplayCard, Div, DownloadButton, DragBar, DragBox, Drawer, DropDownMenu, ExpandedAwardCard, FeatureAnnouncement, FeatureBadge, Flex, Grid, GridItem, HStack, Icon, IconLink, Image$1 as Image, ImageThumbnail, ImageUploadWidget, ImageUploader, IncrementSetting, InfiniteScroller, InfoBlock, Input, InviteCard, LinkColumn, List, ListItem, Loader, LoadingSpinner, Logo, MasonryGrid, Menu, MenuItem, MenuSection, Navigation, NavigationPill, Option, OrderCard, Overlay, Page, PaperTypeModal, PhoneInput, Pill, PinInput, PricingTile, Progress, PromotionWidget, QDSChrome, QuantitySlider, QuantumColorPicker, QuantumThemeWrapper, QuickLink, RadioOptionCard, RadioOptionList, ReleaseNote, ReleaseNoteDialog, RevealingContent, RowItem, Scrollable, ScrollingIndicator, Section, Select, SelectableCard, SelectableList, Separator, SettingInput, Sheet, Sidebar, Slider, SnapPoint, Spacer, Span, Sphere, StackedCards, StaticNavigation, Stepper, Stoplight, SubNavigation, SubscriptionUpsaleDialog, Tab, Table, TableRow, Tabs, Text, TitledList, Todo, Toggle, Tooltip, Transition, UploadButton, UpsaleDialog, UpsaleSheet, UserCard, UserCardLoader, VStack, VideoPlayer, Zoom, entities$
|
|
25113
|
+
export { Accordion, AccordionBody, AccordionHeading, AccountMenu, AffiliateShareWidget, Anchor, AnimatedCheckMark, AnimatedGrid, ArticleCard, Aside, Avatar, AwardCard, AwardGroupLabel, Badge, Banner, Bar, BlockQuote, BulkSend, Button, ButtonWithMenu, Capsule, Card, CardEntryDialog, CardQuantitySlider, Checkbox, Circle, CircleMenu, Clipboard, CloseButton, ColorOption, ColorThumbnail, ComparisonIncludesList, ComparisonItem, ConfigurationCard, ConfirmDialog, Content, ContentPusher, ContextBar, CountdownTimer, Dialog, DisplayCard, Div, DownloadButton, DragBar, DragBox, Drawer, DropDownMenu, ExpandedAwardCard, FeatureAnnouncement, FeatureBadge, Flex, Grid, GridItem, HStack, Icon, IconLink, Image$1 as Image, ImageThumbnail, ImageUploadWidget, ImageUploader, IncrementSetting, InfiniteScroller, InfoBlock, Input, InviteCard, LinkColumn, List, ListItem, Loader, LoadingSpinner, Logo, MasonryGrid, Menu, MenuItem, MenuSection, Navigation, NavigationPill, Option, OrderCard, Overlay, Page, PaperTypeModal, PhoneInput, Pill, PinInput, PricingTile, Progress, PromotionWidget, QDSChrome, QuantitySlider, QuantumColorPicker, QuantumThemeWrapper, QuickLink, RadioOptionCard, RadioOptionList, ReleaseNote, ReleaseNoteDialog, RevealingContent, RowItem, Scrollable, ScrollingIndicator, Section, Select, SelectableCard, SelectableList, Separator, SettingInput, Sheet, Sidebar, Slider, SnapPoint, Spacer, Span, Sphere, StackedCards, StaticNavigation, Stepper, Stoplight, SubNavigation, SubscriptionUpsaleDialog, Tab, Table, TableRow, Tabs, Text, TitledList, Todo, Toggle, Tooltip, Transition, UploadButton, UpsaleDialog, UpsaleSheet, UserCard, UserCardLoader, VStack, VideoPlayer, Zoom, entities$6 as bellaCadaeuxTheme, entities$5 as blue42Theme, getSize, entities$7 as greenerStillTheme, entities$4 as promptingUTheme, entities as promptingsTheme, entities$1 as sendOutCardsTheme, entities$8 as sendogoTheme, entities$3 as streamMarketingTheme, entities$2 as streamVATheme, useColorSwatch };
|