@box/blueprint-web-assets 4.91.6 → 4.92.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/Medium/CreditCard.js +1 -1
- package/dist/icons/MediumFilled/CreditCard.js +1 -1
- package/dist/tokens/BP2/dark_mode_value/px-tokens.d.ts +16 -0
- package/dist/tokens/BP2/dark_mode_value/px-tokens.js +21 -5
- package/dist/tokens/BP2/dark_mode_value/tokens.css +21 -5
- package/dist/tokens/BP2/dark_mode_value/tokens.d.ts +16 -0
- package/dist/tokens/BP2/dark_mode_value/tokens.js +21 -5
- package/dist/tokens/BP2/dark_mode_value/tokens.json +21 -5
- package/dist/tokens/BP2/light_mode_value/px-tokens.d.ts +16 -0
- package/dist/tokens/BP2/light_mode_value/px-tokens.js +20 -4
- package/dist/tokens/BP2/light_mode_value/tokens.css +20 -4
- package/dist/tokens/BP2/light_mode_value/tokens.d.ts +16 -0
- package/dist/tokens/BP2/light_mode_value/tokens.js +20 -4
- package/dist/tokens/BP2/light_mode_value/tokens.json +20 -4
- package/dist/tokens/mixins-modern.scss +18 -18
- package/dist/tokens/px-tokens.d.ts +16 -0
- package/dist/tokens/px-tokens.js +20 -4
- package/dist/tokens/tokens-css-vars.scss +20 -4
- package/dist/tokens/tokens.d.ts +16 -0
- package/dist/tokens/tokens.js +20 -4
- package/dist/tokens/tokens.json +20 -4
- package/package.json +2 -2
|
@@ -76,10 +76,10 @@ export const bpBorderRadioTileBorderHover = '#bcbcbc';
|
|
|
76
76
|
export const bpBorderRadioTileBorderSelected = '#0061d5';
|
|
77
77
|
export const bpBorderResizeBorderFocus = '#2486fc';
|
|
78
78
|
export const bpBorderResizeBorderHover = '#bcbcbc';
|
|
79
|
-
export const bpBorderSearchGlobalBorderHover = '
|
|
79
|
+
export const bpBorderSearchGlobalBorderHover = 'rgba(0, 0, 0, 0.12)';
|
|
80
80
|
export const bpBorderSearchInputBorderFocus = '#2486fc';
|
|
81
|
-
export const bpBorderSearchInputBorderHover = '
|
|
82
|
-
export const bpBorderSearchBorder = 'rgba(0, 0, 0, 0.
|
|
81
|
+
export const bpBorderSearchInputBorderHover = 'rgba(0, 0, 0, 0.12)';
|
|
82
|
+
export const bpBorderSearchBorder = 'rgba(0, 0, 0, 0.12)';
|
|
83
83
|
export const bpBorderSearchBorderHover = 'rgba(0, 0, 0, 0.12)';
|
|
84
84
|
export const bpBorderSelectBorder = '#bcbcbc';
|
|
85
85
|
export const bpBorderSelectBorderActive = '#2486fc';
|
|
@@ -140,15 +140,19 @@ export const bpIconNavIconOnLightHover = '#222222';
|
|
|
140
140
|
export const bpIconNavIconOnLightSelected = '#222222';
|
|
141
141
|
export const bpIconIconBlue = '#0061d5';
|
|
142
142
|
export const bpIconIconDestructiveOnLight = '#d5324e';
|
|
143
|
+
export const bpIconIconErrorOnColor = '#821e30';
|
|
143
144
|
export const bpIconIconErrorOnLight = '#d5324e';
|
|
144
145
|
export const bpIconIconIllustrator = '#ff9400';
|
|
145
146
|
export const bpIconIconIndesign = '#ff57a1';
|
|
147
|
+
export const bpIconIconInfoOnColor = '#00316b';
|
|
146
148
|
export const bpIconIconOnDark = '#ffffff';
|
|
147
149
|
export const bpIconIconOnLight = 'rgba(0, 0, 0, 0.9)';
|
|
148
150
|
export const bpIconIconOnLightSecondary = 'rgba(0, 0, 0, 0.6)';
|
|
149
151
|
export const bpIconIconOnLightTertiary = 'rgba(0, 0, 0, 0.5)';
|
|
150
152
|
export const bpIconIconPhotoshop = '#26c9ff';
|
|
151
153
|
export const bpIconIconRequiredOnLight = '#d5324e';
|
|
154
|
+
export const bpIconIconSuccessOnColor = '#0f4e34';
|
|
155
|
+
export const bpIconIconWarningOnColor = '#62480b';
|
|
152
156
|
export const bpOutlineFocusOnDark = '#ffffff';
|
|
153
157
|
export const bpOutlineFocusOnLight = '#2486fc';
|
|
154
158
|
export const bpOverlayModalOverlay = 'rgba(0, 0, 0, 0.5)';
|
|
@@ -250,6 +254,9 @@ export const bpSurfaceCtaSurfacePromoFocus = '#4826c2';
|
|
|
250
254
|
export const bpSurfaceCtaSurfacePromoFocusPressed = '#3a1e9b';
|
|
251
255
|
export const bpSurfaceCtaSurfacePromoHover = '#4826c2';
|
|
252
256
|
export const bpSurfaceCtaSurfacePromoPressed = '#3a1e9b';
|
|
257
|
+
export const bpSurfaceCtaSurfaceQuaternary = 'rgba(0, 0, 0, 0)';
|
|
258
|
+
export const bpSurfaceCtaSurfaceQuaternaryHover = 'rgba(0, 0, 0, 0.04)';
|
|
259
|
+
export const bpSurfaceCtaSurfaceQuaternaryPressed = 'rgba(0, 0, 0, 0.08)';
|
|
253
260
|
export const bpSurfaceCtaSurfaceSecondary = '#ffffff';
|
|
254
261
|
export const bpSurfaceCtaSurfaceSecondaryHover = '#f4f4f4';
|
|
255
262
|
export const bpSurfaceCtaSurfaceSecondaryPressed = '#e8e8e8';
|
|
@@ -318,7 +325,7 @@ export const bpSurfaceInlineNoticeSurfaceError = '#fdebee';
|
|
|
318
325
|
export const bpSurfaceInlineNoticeSurfaceInfo = '#e9f2fe';
|
|
319
326
|
export const bpSurfaceInlineNoticeSurfaceNote = '#ffffff';
|
|
320
327
|
export const bpSurfaceInlineNoticeSurfaceSuccess = '#e9f8f2';
|
|
321
|
-
export const bpSurfaceInlineNoticeSurfaceWarning = '#
|
|
328
|
+
export const bpSurfaceInlineNoticeSurfaceWarning = '#fef7e8';
|
|
322
329
|
export const bpSurfaceInlineTableSurface = '#ffffff';
|
|
323
330
|
export const bpSurfaceInputSurface = '#ffffff';
|
|
324
331
|
export const bpSurfaceInputSurfaceError = '#ffffff';
|
|
@@ -392,6 +399,7 @@ export const bpSurfaceStatusSurfaceDarkBlue = '#7f9dc1';
|
|
|
392
399
|
export const bpSurfaceStatusSurfaceDarkBlueFocus = '#7f9dc1';
|
|
393
400
|
export const bpSurfaceStatusSurfaceDarkBlueHover = '#7f9dc1';
|
|
394
401
|
export const bpSurfaceStatusSurfaceError = '#ed3757';
|
|
402
|
+
export const bpSurfaceStatusSurfaceErrorSecondary = '#fbd7dd';
|
|
395
403
|
export const bpSurfaceStatusSurfaceGeneric = '#a7a7a7';
|
|
396
404
|
export const bpSurfaceStatusSurfaceGray = '#e8e8e8';
|
|
397
405
|
export const bpSurfaceStatusSurfaceGrayFocus = '#e8e8e8';
|
|
@@ -399,6 +407,7 @@ export const bpSurfaceStatusSurfaceGrayHover = '#e8e8e8';
|
|
|
399
407
|
export const bpSurfaceStatusSurfaceGreen = '#92e0c0';
|
|
400
408
|
export const bpSurfaceStatusSurfaceGreenFocus = '#92e0c0';
|
|
401
409
|
export const bpSurfaceStatusSurfaceGreenHover = '#92e0c0';
|
|
410
|
+
export const bpSurfaceStatusSurfaceInfoSecondary = '#d3e7fe';
|
|
402
411
|
export const bpSurfaceStatusSurfaceInprogress = '#f5b31b';
|
|
403
412
|
export const bpSurfaceStatusSurfaceLightBlue = '#91c2fd';
|
|
404
413
|
export const bpSurfaceStatusSurfaceLightBlueFocus = '#91c2fd';
|
|
@@ -415,7 +424,10 @@ export const bpSurfaceStatusSurfaceRedFocus = '#f69bab';
|
|
|
415
424
|
export const bpSurfaceStatusSurfaceRedHover = '#f69bab';
|
|
416
425
|
export const bpSurfaceStatusSurfaceScheduled = '#9f3fed';
|
|
417
426
|
export const bpSurfaceStatusSurfaceSuccess = '#26c281';
|
|
427
|
+
export const bpSurfaceStatusSurfaceSuccessSecondary = '#d4f3e6';
|
|
418
428
|
export const bpSurfaceStatusSurfaceUploading = '#0061d5';
|
|
429
|
+
export const bpSurfaceStatusSurfaceWarning = '#f5b31b';
|
|
430
|
+
export const bpSurfaceStatusSurfaceWarningSecondary = '#fdf0d1';
|
|
419
431
|
export const bpSurfaceStatusSurfaceYellow = '#ffeb7f';
|
|
420
432
|
export const bpSurfaceStatusSurfaceYellowFocus = '#ffeb7f';
|
|
421
433
|
export const bpSurfaceStatusSurfaceYellowHover = '#ffeb7f';
|
|
@@ -483,13 +495,17 @@ export const bpTextNavTextOnLightSelected = '#ffffff';
|
|
|
483
495
|
export const bpTextToggleTextText = '#004eaa';
|
|
484
496
|
export const bpTextTextBrandOnColor = '#ffffff';
|
|
485
497
|
export const bpTextTextDestructiveOnLight = '#d5324e';
|
|
498
|
+
export const bpTextTextErrorOnColor = '#821e30';
|
|
486
499
|
export const bpTextTextErrorOnLight = '#d5324e';
|
|
500
|
+
export const bpTextTextInfoOnColor = '#00316b';
|
|
487
501
|
export const bpTextTextOnDark = '#ffffff';
|
|
488
502
|
export const bpTextTextOnLight = '#222222';
|
|
489
503
|
export const bpTextTextOnLightDisabled = '#bcbcbc';
|
|
490
504
|
export const bpTextTextOnLightSecondary = '#6f6f6f';
|
|
491
505
|
export const bpTextTextOnLightSecondaryHover = '#4e4e4e';
|
|
492
506
|
export const bpTextTextOnLightTertiary = '#909090';
|
|
507
|
+
export const bpTextTextSuccessOnColor = '#0f4e34';
|
|
508
|
+
export const bpTextTextWarningOnColor = '#62480b';
|
|
493
509
|
export const bpBoxBlue10 = '#e5effa';
|
|
494
510
|
export const bpBoxBlue20 = '#ccdff7';
|
|
495
511
|
export const bpBoxBlue30 = '#b2cff2';
|
|
@@ -647,10 +647,10 @@
|
|
|
647
647
|
--bp-border-radio-tile-border-selected: var(--bp-box-blue-100);
|
|
648
648
|
--bp-border-resize-border-focus: var(--bp-light-blue-100);
|
|
649
649
|
--bp-border-resize-border-hover: var(--bp-gray-30);
|
|
650
|
-
--bp-border-search-global-border-hover: var(--bp-
|
|
650
|
+
--bp-border-search-global-border-hover: var(--bp-black-opacity-12);
|
|
651
651
|
--bp-border-search-input-border-focus: var(--bp-light-blue-100);
|
|
652
|
-
--bp-border-search-input-border-hover: var(--bp-
|
|
653
|
-
--bp-border-search-border: var(--bp-black-opacity-
|
|
652
|
+
--bp-border-search-input-border-hover: var(--bp-black-opacity-12);
|
|
653
|
+
--bp-border-search-border: var(--bp-black-opacity-12);
|
|
654
654
|
--bp-border-search-border-hover: var(--bp-black-opacity-12);
|
|
655
655
|
--bp-border-select-border: var(--bp-gray-30);
|
|
656
656
|
--bp-border-select-border-active: var(--bp-light-blue-100);
|
|
@@ -702,12 +702,16 @@
|
|
|
702
702
|
--bp-icon-nav-icon-on-light-selected: var(--bp-gray-100);
|
|
703
703
|
--bp-icon-icon-blue: var(--bp-box-blue-100);
|
|
704
704
|
--bp-icon-icon-destructive-on-light: var(--bp-watermelon-red-110);
|
|
705
|
+
--bp-icon-icon-error-on-color: var(--bp-watermelon-red-145);
|
|
705
706
|
--bp-icon-icon-error-on-light: var(--bp-watermelon-red-110);
|
|
707
|
+
--bp-icon-icon-info-on-color: var(--bp-box-blue-150);
|
|
706
708
|
--bp-icon-icon-on-dark: var(--bp-gray-white);
|
|
707
709
|
--bp-icon-icon-on-light: var(--bp-black-opacity-90);
|
|
708
710
|
--bp-icon-icon-on-light-secondary: var(--bp-black-opacity-60);
|
|
709
711
|
--bp-icon-icon-on-light-tertiary: var(--bp-black-opacity-50);
|
|
710
712
|
--bp-icon-icon-required-on-light: var(--bp-watermelon-red-110);
|
|
713
|
+
--bp-icon-icon-success-on-color: var(--bp-green-light-160);
|
|
714
|
+
--bp-icon-icon-warning-on-color: var(--bp-yellorange-160);
|
|
711
715
|
--bp-outline-focus-on-dark: var(--bp-gray-white);
|
|
712
716
|
--bp-outline-focus-on-light: var(--bp-light-blue-100);
|
|
713
717
|
--bp-overlay-modal-overlay: var(--bp-black-opacity-50);
|
|
@@ -793,6 +797,9 @@
|
|
|
793
797
|
--bp-surface-cta-surface-promo-focus-pressed: var(--bp-grimace-120);
|
|
794
798
|
--bp-surface-cta-surface-promo-hover: var(--bp-grimace-100);
|
|
795
799
|
--bp-surface-cta-surface-promo-pressed: var(--bp-grimace-120);
|
|
800
|
+
--bp-surface-cta-surface-quaternary: var(--bp-black-opacity-00);
|
|
801
|
+
--bp-surface-cta-surface-quaternary-hover: var(--bp-black-opacity-04);
|
|
802
|
+
--bp-surface-cta-surface-quaternary-pressed: var(--bp-black-opacity-08);
|
|
796
803
|
--bp-surface-cta-surface-secondary: var(--bp-gray-white);
|
|
797
804
|
--bp-surface-cta-surface-secondary-hover: var(--bp-gray-05);
|
|
798
805
|
--bp-surface-cta-surface-secondary-pressed: var(--bp-gray-10);
|
|
@@ -860,7 +867,7 @@
|
|
|
860
867
|
--bp-surface-inline-notice-surface-info: var(--bp-light-blue-10);
|
|
861
868
|
--bp-surface-inline-notice-surface-note: var(--bp-gray-white);
|
|
862
869
|
--bp-surface-inline-notice-surface-success: var(--bp-green-light-10);
|
|
863
|
-
--bp-surface-inline-notice-surface-warning: var(--bp-
|
|
870
|
+
--bp-surface-inline-notice-surface-warning: var(--bp-yellorange-10);
|
|
864
871
|
--bp-surface-inline-table-surface: var(--bp-gray-white);
|
|
865
872
|
--bp-surface-input-surface: var(--bp-gray-white);
|
|
866
873
|
--bp-surface-input-surface-error: var(--bp-gray-white);
|
|
@@ -934,6 +941,7 @@
|
|
|
934
941
|
--bp-surface-status-surface-dark-blue-focus: var(--bp-dark-blue-50);
|
|
935
942
|
--bp-surface-status-surface-dark-blue-hover: var(--bp-dark-blue-50);
|
|
936
943
|
--bp-surface-status-surface-error: var(--bp-watermelon-red-100);
|
|
944
|
+
--bp-surface-status-surface-error-secondary: var(--bp-watermelon-red-20);
|
|
937
945
|
--bp-surface-status-surface-generic: var(--bp-gray-40);
|
|
938
946
|
--bp-surface-status-surface-gray: var(--bp-gray-10);
|
|
939
947
|
--bp-surface-status-surface-gray-focus: var(--bp-gray-10);
|
|
@@ -941,6 +949,7 @@
|
|
|
941
949
|
--bp-surface-status-surface-green: var(--bp-green-light-50);
|
|
942
950
|
--bp-surface-status-surface-green-focus: var(--bp-green-light-50);
|
|
943
951
|
--bp-surface-status-surface-green-hover: var(--bp-green-light-50);
|
|
952
|
+
--bp-surface-status-surface-info-secondary: var(--bp-light-blue-20);
|
|
944
953
|
--bp-surface-status-surface-inprogress: var(--bp-yellorange-100);
|
|
945
954
|
--bp-surface-status-surface-light-blue: var(--bp-light-blue-50);
|
|
946
955
|
--bp-surface-status-surface-light-blue-focus: var(--bp-light-blue-50);
|
|
@@ -957,7 +966,10 @@
|
|
|
957
966
|
--bp-surface-status-surface-red-hover: var(--bp-watermelon-red-50);
|
|
958
967
|
--bp-surface-status-surface-scheduled: var(--bp-purple-rain-100);
|
|
959
968
|
--bp-surface-status-surface-success: var(--bp-green-light-100);
|
|
969
|
+
--bp-surface-status-surface-success-secondary: var(--bp-green-light-20);
|
|
960
970
|
--bp-surface-status-surface-uploading: var(--bp-box-blue-100);
|
|
971
|
+
--bp-surface-status-surface-warning: var(--bp-yellorange-100);
|
|
972
|
+
--bp-surface-status-surface-warning-secondary: var(--bp-yellorange-20);
|
|
961
973
|
--bp-surface-status-surface-yellow: var(--bp-yellow-50);
|
|
962
974
|
--bp-surface-status-surface-yellow-focus: var(--bp-yellow-50);
|
|
963
975
|
--bp-surface-status-surface-yellow-hover: var(--bp-yellow-50);
|
|
@@ -1019,11 +1031,15 @@
|
|
|
1019
1031
|
--bp-text-toggle-text-text: var(--bp-box-blue-120);
|
|
1020
1032
|
--bp-text-text-brand-on-color: var(--bp-gray-white);
|
|
1021
1033
|
--bp-text-text-destructive-on-light: var(--bp-watermelon-red-110);
|
|
1034
|
+
--bp-text-text-error-on-color: var(--bp-watermelon-red-145);
|
|
1022
1035
|
--bp-text-text-error-on-light: var(--bp-watermelon-red-110);
|
|
1036
|
+
--bp-text-text-info-on-color: var(--bp-box-blue-150);
|
|
1023
1037
|
--bp-text-text-on-dark: var(--bp-gray-white);
|
|
1024
1038
|
--bp-text-text-on-light: var(--bp-gray-100);
|
|
1025
1039
|
--bp-text-text-on-light-disabled: var(--bp-gray-30);
|
|
1026
1040
|
--bp-text-text-on-light-secondary: var(--bp-gray-65);
|
|
1027
1041
|
--bp-text-text-on-light-secondary-hover: var(--bp-gray-80);
|
|
1028
1042
|
--bp-text-text-on-light-tertiary: var(--bp-gray-50);
|
|
1043
|
+
--bp-text-text-success-on-color: var(--bp-green-light-160);
|
|
1044
|
+
--bp-text-text-warning-on-color: var(--bp-yellorange-160);
|
|
1029
1045
|
}
|
|
@@ -136,15 +136,19 @@ export const bpIconNavIconOnLightHover: string;
|
|
|
136
136
|
export const bpIconNavIconOnLightSelected: string;
|
|
137
137
|
export const bpIconIconBlue: string;
|
|
138
138
|
export const bpIconIconDestructiveOnLight: string;
|
|
139
|
+
export const bpIconIconErrorOnColor: string;
|
|
139
140
|
export const bpIconIconErrorOnLight: string;
|
|
140
141
|
export const bpIconIconIllustrator: string;
|
|
141
142
|
export const bpIconIconIndesign: string;
|
|
143
|
+
export const bpIconIconInfoOnColor: string;
|
|
142
144
|
export const bpIconIconOnDark: string;
|
|
143
145
|
export const bpIconIconOnLight: string;
|
|
144
146
|
export const bpIconIconOnLightSecondary: string;
|
|
145
147
|
export const bpIconIconOnLightTertiary: string;
|
|
146
148
|
export const bpIconIconPhotoshop: string;
|
|
147
149
|
export const bpIconIconRequiredOnLight: string;
|
|
150
|
+
export const bpIconIconSuccessOnColor: string;
|
|
151
|
+
export const bpIconIconWarningOnColor: string;
|
|
148
152
|
export const bpOutlineFocusOnDark: string;
|
|
149
153
|
export const bpOutlineFocusOnLight: string;
|
|
150
154
|
export const bpOverlayModalOverlay: string;
|
|
@@ -246,6 +250,9 @@ export const bpSurfaceCtaSurfacePromoFocus: string;
|
|
|
246
250
|
export const bpSurfaceCtaSurfacePromoFocusPressed: string;
|
|
247
251
|
export const bpSurfaceCtaSurfacePromoHover: string;
|
|
248
252
|
export const bpSurfaceCtaSurfacePromoPressed: string;
|
|
253
|
+
export const bpSurfaceCtaSurfaceQuaternary: string;
|
|
254
|
+
export const bpSurfaceCtaSurfaceQuaternaryHover: string;
|
|
255
|
+
export const bpSurfaceCtaSurfaceQuaternaryPressed: string;
|
|
249
256
|
export const bpSurfaceCtaSurfaceSecondary: string;
|
|
250
257
|
export const bpSurfaceCtaSurfaceSecondaryHover: string;
|
|
251
258
|
export const bpSurfaceCtaSurfaceSecondaryPressed: string;
|
|
@@ -388,6 +395,7 @@ export const bpSurfaceStatusSurfaceDarkBlue: string;
|
|
|
388
395
|
export const bpSurfaceStatusSurfaceDarkBlueFocus: string;
|
|
389
396
|
export const bpSurfaceStatusSurfaceDarkBlueHover: string;
|
|
390
397
|
export const bpSurfaceStatusSurfaceError: string;
|
|
398
|
+
export const bpSurfaceStatusSurfaceErrorSecondary: string;
|
|
391
399
|
export const bpSurfaceStatusSurfaceGeneric: string;
|
|
392
400
|
export const bpSurfaceStatusSurfaceGray: string;
|
|
393
401
|
export const bpSurfaceStatusSurfaceGrayFocus: string;
|
|
@@ -395,6 +403,7 @@ export const bpSurfaceStatusSurfaceGrayHover: string;
|
|
|
395
403
|
export const bpSurfaceStatusSurfaceGreen: string;
|
|
396
404
|
export const bpSurfaceStatusSurfaceGreenFocus: string;
|
|
397
405
|
export const bpSurfaceStatusSurfaceGreenHover: string;
|
|
406
|
+
export const bpSurfaceStatusSurfaceInfoSecondary: string;
|
|
398
407
|
export const bpSurfaceStatusSurfaceInprogress: string;
|
|
399
408
|
export const bpSurfaceStatusSurfaceLightBlue: string;
|
|
400
409
|
export const bpSurfaceStatusSurfaceLightBlueFocus: string;
|
|
@@ -411,7 +420,10 @@ export const bpSurfaceStatusSurfaceRedFocus: string;
|
|
|
411
420
|
export const bpSurfaceStatusSurfaceRedHover: string;
|
|
412
421
|
export const bpSurfaceStatusSurfaceScheduled: string;
|
|
413
422
|
export const bpSurfaceStatusSurfaceSuccess: string;
|
|
423
|
+
export const bpSurfaceStatusSurfaceSuccessSecondary: string;
|
|
414
424
|
export const bpSurfaceStatusSurfaceUploading: string;
|
|
425
|
+
export const bpSurfaceStatusSurfaceWarning: string;
|
|
426
|
+
export const bpSurfaceStatusSurfaceWarningSecondary: string;
|
|
415
427
|
export const bpSurfaceStatusSurfaceYellow: string;
|
|
416
428
|
export const bpSurfaceStatusSurfaceYellowFocus: string;
|
|
417
429
|
export const bpSurfaceStatusSurfaceYellowHover: string;
|
|
@@ -479,13 +491,17 @@ export const bpTextNavTextOnLightSelected: string;
|
|
|
479
491
|
export const bpTextToggleTextText: string;
|
|
480
492
|
export const bpTextTextBrandOnColor: string;
|
|
481
493
|
export const bpTextTextDestructiveOnLight: string;
|
|
494
|
+
export const bpTextTextErrorOnColor: string;
|
|
482
495
|
export const bpTextTextErrorOnLight: string;
|
|
496
|
+
export const bpTextTextInfoOnColor: string;
|
|
483
497
|
export const bpTextTextOnDark: string;
|
|
484
498
|
export const bpTextTextOnLight: string;
|
|
485
499
|
export const bpTextTextOnLightDisabled: string;
|
|
486
500
|
export const bpTextTextOnLightSecondary: string;
|
|
487
501
|
export const bpTextTextOnLightSecondaryHover: string;
|
|
488
502
|
export const bpTextTextOnLightTertiary: string;
|
|
503
|
+
export const bpTextTextSuccessOnColor: string;
|
|
504
|
+
export const bpTextTextWarningOnColor: string;
|
|
489
505
|
export const bpBoxBlue10: string;
|
|
490
506
|
export const bpBoxBlue20: string;
|
|
491
507
|
export const bpBoxBlue30: string;
|
|
@@ -72,10 +72,10 @@ export const bpBorderRadioTileBorderHover = '#bcbcbc';
|
|
|
72
72
|
export const bpBorderRadioTileBorderSelected = '#0061d5';
|
|
73
73
|
export const bpBorderResizeBorderFocus = '#2486fc';
|
|
74
74
|
export const bpBorderResizeBorderHover = '#bcbcbc';
|
|
75
|
-
export const bpBorderSearchGlobalBorderHover = '
|
|
75
|
+
export const bpBorderSearchGlobalBorderHover = 'rgba(0, 0, 0, 0.12)';
|
|
76
76
|
export const bpBorderSearchInputBorderFocus = '#2486fc';
|
|
77
|
-
export const bpBorderSearchInputBorderHover = '
|
|
78
|
-
export const bpBorderSearchBorder = 'rgba(0, 0, 0, 0.
|
|
77
|
+
export const bpBorderSearchInputBorderHover = 'rgba(0, 0, 0, 0.12)';
|
|
78
|
+
export const bpBorderSearchBorder = 'rgba(0, 0, 0, 0.12)';
|
|
79
79
|
export const bpBorderSearchBorderHover = 'rgba(0, 0, 0, 0.12)';
|
|
80
80
|
export const bpBorderSelectBorder = '#bcbcbc';
|
|
81
81
|
export const bpBorderSelectBorderActive = '#2486fc';
|
|
@@ -136,15 +136,19 @@ export const bpIconNavIconOnLightHover = '#222222';
|
|
|
136
136
|
export const bpIconNavIconOnLightSelected = '#222222';
|
|
137
137
|
export const bpIconIconBlue = '#0061d5';
|
|
138
138
|
export const bpIconIconDestructiveOnLight = '#d5324e';
|
|
139
|
+
export const bpIconIconErrorOnColor = '#821e30';
|
|
139
140
|
export const bpIconIconErrorOnLight = '#d5324e';
|
|
140
141
|
export const bpIconIconIllustrator = '#ff9400';
|
|
141
142
|
export const bpIconIconIndesign = '#ff57a1';
|
|
143
|
+
export const bpIconIconInfoOnColor = '#00316b';
|
|
142
144
|
export const bpIconIconOnDark = '#ffffff';
|
|
143
145
|
export const bpIconIconOnLight = 'rgba(0, 0, 0, 0.9)';
|
|
144
146
|
export const bpIconIconOnLightSecondary = 'rgba(0, 0, 0, 0.6)';
|
|
145
147
|
export const bpIconIconOnLightTertiary = 'rgba(0, 0, 0, 0.5)';
|
|
146
148
|
export const bpIconIconPhotoshop = '#26c9ff';
|
|
147
149
|
export const bpIconIconRequiredOnLight = '#d5324e';
|
|
150
|
+
export const bpIconIconSuccessOnColor = '#0f4e34';
|
|
151
|
+
export const bpIconIconWarningOnColor = '#62480b';
|
|
148
152
|
export const bpOutlineFocusOnDark = '#ffffff';
|
|
149
153
|
export const bpOutlineFocusOnLight = '#2486fc';
|
|
150
154
|
export const bpOverlayModalOverlay = 'rgba(0, 0, 0, 0.5)';
|
|
@@ -246,6 +250,9 @@ export const bpSurfaceCtaSurfacePromoFocus = '#4826c2';
|
|
|
246
250
|
export const bpSurfaceCtaSurfacePromoFocusPressed = '#3a1e9b';
|
|
247
251
|
export const bpSurfaceCtaSurfacePromoHover = '#4826c2';
|
|
248
252
|
export const bpSurfaceCtaSurfacePromoPressed = '#3a1e9b';
|
|
253
|
+
export const bpSurfaceCtaSurfaceQuaternary = 'rgba(0, 0, 0, 0)';
|
|
254
|
+
export const bpSurfaceCtaSurfaceQuaternaryHover = 'rgba(0, 0, 0, 0.04)';
|
|
255
|
+
export const bpSurfaceCtaSurfaceQuaternaryPressed = 'rgba(0, 0, 0, 0.08)';
|
|
249
256
|
export const bpSurfaceCtaSurfaceSecondary = '#ffffff';
|
|
250
257
|
export const bpSurfaceCtaSurfaceSecondaryHover = '#f4f4f4';
|
|
251
258
|
export const bpSurfaceCtaSurfaceSecondaryPressed = '#e8e8e8';
|
|
@@ -314,7 +321,7 @@ export const bpSurfaceInlineNoticeSurfaceError = '#fdebee';
|
|
|
314
321
|
export const bpSurfaceInlineNoticeSurfaceInfo = '#e9f2fe';
|
|
315
322
|
export const bpSurfaceInlineNoticeSurfaceNote = '#ffffff';
|
|
316
323
|
export const bpSurfaceInlineNoticeSurfaceSuccess = '#e9f8f2';
|
|
317
|
-
export const bpSurfaceInlineNoticeSurfaceWarning = '#
|
|
324
|
+
export const bpSurfaceInlineNoticeSurfaceWarning = '#fef7e8';
|
|
318
325
|
export const bpSurfaceInlineTableSurface = '#ffffff';
|
|
319
326
|
export const bpSurfaceInputSurface = '#ffffff';
|
|
320
327
|
export const bpSurfaceInputSurfaceError = '#ffffff';
|
|
@@ -388,6 +395,7 @@ export const bpSurfaceStatusSurfaceDarkBlue = '#7f9dc1';
|
|
|
388
395
|
export const bpSurfaceStatusSurfaceDarkBlueFocus = '#7f9dc1';
|
|
389
396
|
export const bpSurfaceStatusSurfaceDarkBlueHover = '#7f9dc1';
|
|
390
397
|
export const bpSurfaceStatusSurfaceError = '#ed3757';
|
|
398
|
+
export const bpSurfaceStatusSurfaceErrorSecondary = '#fbd7dd';
|
|
391
399
|
export const bpSurfaceStatusSurfaceGeneric = '#a7a7a7';
|
|
392
400
|
export const bpSurfaceStatusSurfaceGray = '#e8e8e8';
|
|
393
401
|
export const bpSurfaceStatusSurfaceGrayFocus = '#e8e8e8';
|
|
@@ -395,6 +403,7 @@ export const bpSurfaceStatusSurfaceGrayHover = '#e8e8e8';
|
|
|
395
403
|
export const bpSurfaceStatusSurfaceGreen = '#92e0c0';
|
|
396
404
|
export const bpSurfaceStatusSurfaceGreenFocus = '#92e0c0';
|
|
397
405
|
export const bpSurfaceStatusSurfaceGreenHover = '#92e0c0';
|
|
406
|
+
export const bpSurfaceStatusSurfaceInfoSecondary = '#d3e7fe';
|
|
398
407
|
export const bpSurfaceStatusSurfaceInprogress = '#f5b31b';
|
|
399
408
|
export const bpSurfaceStatusSurfaceLightBlue = '#91c2fd';
|
|
400
409
|
export const bpSurfaceStatusSurfaceLightBlueFocus = '#91c2fd';
|
|
@@ -411,7 +420,10 @@ export const bpSurfaceStatusSurfaceRedFocus = '#f69bab';
|
|
|
411
420
|
export const bpSurfaceStatusSurfaceRedHover = '#f69bab';
|
|
412
421
|
export const bpSurfaceStatusSurfaceScheduled = '#9f3fed';
|
|
413
422
|
export const bpSurfaceStatusSurfaceSuccess = '#26c281';
|
|
423
|
+
export const bpSurfaceStatusSurfaceSuccessSecondary = '#d4f3e6';
|
|
414
424
|
export const bpSurfaceStatusSurfaceUploading = '#0061d5';
|
|
425
|
+
export const bpSurfaceStatusSurfaceWarning = '#f5b31b';
|
|
426
|
+
export const bpSurfaceStatusSurfaceWarningSecondary = '#fdf0d1';
|
|
415
427
|
export const bpSurfaceStatusSurfaceYellow = '#ffeb7f';
|
|
416
428
|
export const bpSurfaceStatusSurfaceYellowFocus = '#ffeb7f';
|
|
417
429
|
export const bpSurfaceStatusSurfaceYellowHover = '#ffeb7f';
|
|
@@ -479,13 +491,17 @@ export const bpTextNavTextOnLightSelected = '#ffffff';
|
|
|
479
491
|
export const bpTextToggleTextText = '#004eaa';
|
|
480
492
|
export const bpTextTextBrandOnColor = '#ffffff';
|
|
481
493
|
export const bpTextTextDestructiveOnLight = '#d5324e';
|
|
494
|
+
export const bpTextTextErrorOnColor = '#821e30';
|
|
482
495
|
export const bpTextTextErrorOnLight = '#d5324e';
|
|
496
|
+
export const bpTextTextInfoOnColor = '#00316b';
|
|
483
497
|
export const bpTextTextOnDark = '#ffffff';
|
|
484
498
|
export const bpTextTextOnLight = '#222222';
|
|
485
499
|
export const bpTextTextOnLightDisabled = '#bcbcbc';
|
|
486
500
|
export const bpTextTextOnLightSecondary = '#6f6f6f';
|
|
487
501
|
export const bpTextTextOnLightSecondaryHover = '#4e4e4e';
|
|
488
502
|
export const bpTextTextOnLightTertiary = '#909090';
|
|
503
|
+
export const bpTextTextSuccessOnColor = '#0f4e34';
|
|
504
|
+
export const bpTextTextWarningOnColor = '#62480b';
|
|
489
505
|
export const bpBoxBlue10 = '#e5effa';
|
|
490
506
|
export const bpBoxBlue20 = '#ccdff7';
|
|
491
507
|
export const bpBoxBlue30 = '#b2cff2';
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"BpBorderRadioTileBorderSelected": "#0061d5",
|
|
74
74
|
"BpBorderResizeBorderFocus": "#2486fc",
|
|
75
75
|
"BpBorderResizeBorderHover": "#bcbcbc",
|
|
76
|
-
"BpBorderSearchGlobalBorderHover": "
|
|
76
|
+
"BpBorderSearchGlobalBorderHover": "rgba(0, 0, 0, 0.12)",
|
|
77
77
|
"BpBorderSearchInputBorderFocus": "#2486fc",
|
|
78
|
-
"BpBorderSearchInputBorderHover": "
|
|
79
|
-
"BpBorderSearchBorder": "rgba(0, 0, 0, 0.
|
|
78
|
+
"BpBorderSearchInputBorderHover": "rgba(0, 0, 0, 0.12)",
|
|
79
|
+
"BpBorderSearchBorder": "rgba(0, 0, 0, 0.12)",
|
|
80
80
|
"BpBorderSearchBorderHover": "rgba(0, 0, 0, 0.12)",
|
|
81
81
|
"BpBorderSelectBorder": "#bcbcbc",
|
|
82
82
|
"BpBorderSelectBorderActive": "#2486fc",
|
|
@@ -137,15 +137,19 @@
|
|
|
137
137
|
"BpIconNavIconOnLightSelected": "#222222",
|
|
138
138
|
"BpIconIconBlue": "#0061d5",
|
|
139
139
|
"BpIconIconDestructiveOnLight": "#d5324e",
|
|
140
|
+
"BpIconIconErrorOnColor": "#821e30",
|
|
140
141
|
"BpIconIconErrorOnLight": "#d5324e",
|
|
141
142
|
"BpIconIconIllustrator": "#ff9400",
|
|
142
143
|
"BpIconIconIndesign": "#ff57a1",
|
|
144
|
+
"BpIconIconInfoOnColor": "#00316b",
|
|
143
145
|
"BpIconIconOnDark": "#ffffff",
|
|
144
146
|
"BpIconIconOnLight": "rgba(0, 0, 0, 0.9)",
|
|
145
147
|
"BpIconIconOnLightSecondary": "rgba(0, 0, 0, 0.6)",
|
|
146
148
|
"BpIconIconOnLightTertiary": "rgba(0, 0, 0, 0.5)",
|
|
147
149
|
"BpIconIconPhotoshop": "#26c9ff",
|
|
148
150
|
"BpIconIconRequiredOnLight": "#d5324e",
|
|
151
|
+
"BpIconIconSuccessOnColor": "#0f4e34",
|
|
152
|
+
"BpIconIconWarningOnColor": "#62480b",
|
|
149
153
|
"BpOutlineFocusOnDark": "#ffffff",
|
|
150
154
|
"BpOutlineFocusOnLight": "#2486fc",
|
|
151
155
|
"BpOverlayModalOverlay": "rgba(0, 0, 0, 0.5)",
|
|
@@ -247,6 +251,9 @@
|
|
|
247
251
|
"BpSurfaceCtaSurfacePromoFocusPressed": "#3a1e9b",
|
|
248
252
|
"BpSurfaceCtaSurfacePromoHover": "#4826c2",
|
|
249
253
|
"BpSurfaceCtaSurfacePromoPressed": "#3a1e9b",
|
|
254
|
+
"BpSurfaceCtaSurfaceQuaternary": "rgba(0, 0, 0, 0)",
|
|
255
|
+
"BpSurfaceCtaSurfaceQuaternaryHover": "rgba(0, 0, 0, 0.04)",
|
|
256
|
+
"BpSurfaceCtaSurfaceQuaternaryPressed": "rgba(0, 0, 0, 0.08)",
|
|
250
257
|
"BpSurfaceCtaSurfaceSecondary": "#ffffff",
|
|
251
258
|
"BpSurfaceCtaSurfaceSecondaryHover": "#f4f4f4",
|
|
252
259
|
"BpSurfaceCtaSurfaceSecondaryPressed": "#e8e8e8",
|
|
@@ -315,7 +322,7 @@
|
|
|
315
322
|
"BpSurfaceInlineNoticeSurfaceInfo": "#e9f2fe",
|
|
316
323
|
"BpSurfaceInlineNoticeSurfaceNote": "#ffffff",
|
|
317
324
|
"BpSurfaceInlineNoticeSurfaceSuccess": "#e9f8f2",
|
|
318
|
-
"BpSurfaceInlineNoticeSurfaceWarning": "#
|
|
325
|
+
"BpSurfaceInlineNoticeSurfaceWarning": "#fef7e8",
|
|
319
326
|
"BpSurfaceInlineTableSurface": "#ffffff",
|
|
320
327
|
"BpSurfaceInputSurface": "#ffffff",
|
|
321
328
|
"BpSurfaceInputSurfaceError": "#ffffff",
|
|
@@ -389,6 +396,7 @@
|
|
|
389
396
|
"BpSurfaceStatusSurfaceDarkBlueFocus": "#7f9dc1",
|
|
390
397
|
"BpSurfaceStatusSurfaceDarkBlueHover": "#7f9dc1",
|
|
391
398
|
"BpSurfaceStatusSurfaceError": "#ed3757",
|
|
399
|
+
"BpSurfaceStatusSurfaceErrorSecondary": "#fbd7dd",
|
|
392
400
|
"BpSurfaceStatusSurfaceGeneric": "#a7a7a7",
|
|
393
401
|
"BpSurfaceStatusSurfaceGray": "#e8e8e8",
|
|
394
402
|
"BpSurfaceStatusSurfaceGrayFocus": "#e8e8e8",
|
|
@@ -396,6 +404,7 @@
|
|
|
396
404
|
"BpSurfaceStatusSurfaceGreen": "#92e0c0",
|
|
397
405
|
"BpSurfaceStatusSurfaceGreenFocus": "#92e0c0",
|
|
398
406
|
"BpSurfaceStatusSurfaceGreenHover": "#92e0c0",
|
|
407
|
+
"BpSurfaceStatusSurfaceInfoSecondary": "#d3e7fe",
|
|
399
408
|
"BpSurfaceStatusSurfaceInprogress": "#f5b31b",
|
|
400
409
|
"BpSurfaceStatusSurfaceLightBlue": "#91c2fd",
|
|
401
410
|
"BpSurfaceStatusSurfaceLightBlueFocus": "#91c2fd",
|
|
@@ -412,7 +421,10 @@
|
|
|
412
421
|
"BpSurfaceStatusSurfaceRedHover": "#f69bab",
|
|
413
422
|
"BpSurfaceStatusSurfaceScheduled": "#9f3fed",
|
|
414
423
|
"BpSurfaceStatusSurfaceSuccess": "#26c281",
|
|
424
|
+
"BpSurfaceStatusSurfaceSuccessSecondary": "#d4f3e6",
|
|
415
425
|
"BpSurfaceStatusSurfaceUploading": "#0061d5",
|
|
426
|
+
"BpSurfaceStatusSurfaceWarning": "#f5b31b",
|
|
427
|
+
"BpSurfaceStatusSurfaceWarningSecondary": "#fdf0d1",
|
|
416
428
|
"BpSurfaceStatusSurfaceYellow": "#ffeb7f",
|
|
417
429
|
"BpSurfaceStatusSurfaceYellowFocus": "#ffeb7f",
|
|
418
430
|
"BpSurfaceStatusSurfaceYellowHover": "#ffeb7f",
|
|
@@ -480,13 +492,17 @@
|
|
|
480
492
|
"BpTextToggleTextText": "#004eaa",
|
|
481
493
|
"BpTextTextBrandOnColor": "#ffffff",
|
|
482
494
|
"BpTextTextDestructiveOnLight": "#d5324e",
|
|
495
|
+
"BpTextTextErrorOnColor": "#821e30",
|
|
483
496
|
"BpTextTextErrorOnLight": "#d5324e",
|
|
497
|
+
"BpTextTextInfoOnColor": "#00316b",
|
|
484
498
|
"BpTextTextOnDark": "#ffffff",
|
|
485
499
|
"BpTextTextOnLight": "#222222",
|
|
486
500
|
"BpTextTextOnLightDisabled": "#bcbcbc",
|
|
487
501
|
"BpTextTextOnLightSecondary": "#6f6f6f",
|
|
488
502
|
"BpTextTextOnLightSecondaryHover": "#4e4e4e",
|
|
489
503
|
"BpTextTextOnLightTertiary": "#909090",
|
|
504
|
+
"BpTextTextSuccessOnColor": "#0f4e34",
|
|
505
|
+
"BpTextTextWarningOnColor": "#62480b",
|
|
490
506
|
"BpBoxBlue10": "#e5effa",
|
|
491
507
|
"BpBoxBlue20": "#ccdff7",
|
|
492
508
|
"BpBoxBlue30": "#b2cff2",
|
|
@@ -270,7 +270,7 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
270
270
|
|
|
271
271
|
@mixin bp-inter-body-default-bold {
|
|
272
272
|
font-weight: 600;
|
|
273
|
-
font-size: .875rem; // 14px
|
|
273
|
+
font-size: 0.875rem; // 14px
|
|
274
274
|
font-family: $bp-inter-font-family;
|
|
275
275
|
font-style: normal;
|
|
276
276
|
line-height: 1.25rem; // 20px
|
|
@@ -281,7 +281,7 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
281
281
|
|
|
282
282
|
@mixin bp-inter-body-default-semibold {
|
|
283
283
|
font-weight: 500;
|
|
284
|
-
font-size: .875rem; // 14px
|
|
284
|
+
font-size: 0.875rem; // 14px
|
|
285
285
|
font-family: $bp-inter-font-family;
|
|
286
286
|
font-style: normal;
|
|
287
287
|
line-height: 1.25rem; // 20px
|
|
@@ -292,7 +292,7 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
292
292
|
|
|
293
293
|
@mixin bp-inter-body-default {
|
|
294
294
|
font-weight: 450;
|
|
295
|
-
font-size: .875rem; // 14px
|
|
295
|
+
font-size: 0.875rem; // 14px
|
|
296
296
|
font-family: $bp-inter-font-family;
|
|
297
297
|
font-style: normal;
|
|
298
298
|
line-height: 1.25rem; // 20px
|
|
@@ -303,7 +303,7 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
303
303
|
|
|
304
304
|
@mixin bp-inter-body-small-semibold {
|
|
305
305
|
font-weight: 500;
|
|
306
|
-
font-size: .8125rem; // 13px
|
|
306
|
+
font-size: 0.8125rem; // 13px
|
|
307
307
|
font-family: $bp-inter-font-family;
|
|
308
308
|
font-style: normal;
|
|
309
309
|
line-height: 1.125rem; // 18px
|
|
@@ -314,7 +314,7 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
314
314
|
|
|
315
315
|
@mixin bp-inter-body-small {
|
|
316
316
|
font-weight: 450;
|
|
317
|
-
font-size: .8125rem; // 13px
|
|
317
|
+
font-size: 0.8125rem; // 13px
|
|
318
318
|
font-family: $bp-inter-font-family;
|
|
319
319
|
font-style: normal;
|
|
320
320
|
line-height: 1.125rem; // 18px
|
|
@@ -325,10 +325,10 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
325
325
|
|
|
326
326
|
@mixin bp-inter-caption-bold {
|
|
327
327
|
font-weight: 550;
|
|
328
|
-
font-size: .75rem; // 12px
|
|
328
|
+
font-size: 0.75rem; // 12px
|
|
329
329
|
font-family: $bp-inter-font-family;
|
|
330
330
|
font-style: normal;
|
|
331
|
-
line-height: .9375rem; // 15px
|
|
331
|
+
line-height: 0.9375rem; // 15px
|
|
332
332
|
letter-spacing: 0;
|
|
333
333
|
text-transform: none;
|
|
334
334
|
text-decoration: none;
|
|
@@ -336,10 +336,10 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
336
336
|
|
|
337
337
|
@mixin bp-inter-caption-default {
|
|
338
338
|
font-weight: 450;
|
|
339
|
-
font-size: .75rem; // 12px
|
|
339
|
+
font-size: 0.75rem; // 12px
|
|
340
340
|
font-family: $bp-inter-font-family;
|
|
341
341
|
font-style: normal;
|
|
342
|
-
line-height: .9375rem; // 15px
|
|
342
|
+
line-height: 0.9375rem; // 15px
|
|
343
343
|
letter-spacing: 0;
|
|
344
344
|
text-transform: none;
|
|
345
345
|
text-decoration: none;
|
|
@@ -347,29 +347,29 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
347
347
|
|
|
348
348
|
@mixin bp-inter-label-bold {
|
|
349
349
|
font-weight: 550;
|
|
350
|
-
font-size: .625rem; // 10px
|
|
350
|
+
font-size: 0.625rem; // 10px
|
|
351
351
|
font-family: $bp-inter-font-family;
|
|
352
352
|
font-style: normal;
|
|
353
|
-
line-height: .875rem; // 14px
|
|
354
|
-
letter-spacing: .01875rem; // 0.3px
|
|
353
|
+
line-height: 0.875rem; // 14px
|
|
354
|
+
letter-spacing: 0.01875rem; // 0.3px
|
|
355
355
|
text-transform: none;
|
|
356
356
|
text-decoration: none;
|
|
357
357
|
}
|
|
358
358
|
|
|
359
359
|
@mixin bp-inter-label-default {
|
|
360
360
|
font-weight: 450;
|
|
361
|
-
font-size: .625rem; // 10px
|
|
361
|
+
font-size: 0.625rem; // 10px
|
|
362
362
|
font-family: $bp-inter-font-family;
|
|
363
363
|
font-style: normal;
|
|
364
|
-
line-height: .875rem; // 14px
|
|
365
|
-
letter-spacing: .01875rem; // 0.3px
|
|
364
|
+
line-height: 0.875rem; // 14px
|
|
365
|
+
letter-spacing: 0.01875rem; // 0.3px
|
|
366
366
|
text-transform: none;
|
|
367
367
|
text-decoration: none;
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
@mixin bp-inter-link-default {
|
|
371
371
|
font-weight: 500;
|
|
372
|
-
font-size: .875rem; // 14px
|
|
372
|
+
font-size: 0.875rem; // 14px
|
|
373
373
|
font-family: $bp-inter-font-family;
|
|
374
374
|
font-style: normal;
|
|
375
375
|
line-height: 1.25rem; // 20px
|
|
@@ -384,10 +384,10 @@ $bp-inter-font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'San Fr
|
|
|
384
384
|
|
|
385
385
|
@mixin bp-inter-notification-default {
|
|
386
386
|
font-weight: 550;
|
|
387
|
-
font-size: .5rem; // 8px
|
|
387
|
+
font-size: 0.5rem; // 8px
|
|
388
388
|
font-family: $bp-inter-font-family;
|
|
389
389
|
font-style: normal;
|
|
390
|
-
line-height: .75rem; // 12px
|
|
390
|
+
line-height: 0.75rem; // 12px
|
|
391
391
|
letter-spacing: 0;
|
|
392
392
|
text-transform: none;
|
|
393
393
|
text-decoration: none;
|
|
@@ -962,15 +962,19 @@ export const bpIconNavIconOnLightHover: string;
|
|
|
962
962
|
export const bpIconNavIconOnLightSelected: string;
|
|
963
963
|
export const bpIconIconBlue: string;
|
|
964
964
|
export const bpIconIconDestructiveOnLight: string;
|
|
965
|
+
export const bpIconIconErrorOnColor: string;
|
|
965
966
|
export const bpIconIconErrorOnLight: string;
|
|
966
967
|
export const bpIconIconIllustrator: string;
|
|
967
968
|
export const bpIconIconIndesign: string;
|
|
969
|
+
export const bpIconIconInfoOnColor: string;
|
|
968
970
|
export const bpIconIconOnDark: string;
|
|
969
971
|
export const bpIconIconOnLight: string;
|
|
970
972
|
export const bpIconIconOnLightSecondary: string;
|
|
971
973
|
export const bpIconIconOnLightTertiary: string;
|
|
972
974
|
export const bpIconIconPhotoshop: string;
|
|
973
975
|
export const bpIconIconRequiredOnLight: string;
|
|
976
|
+
export const bpIconIconSuccessOnColor: string;
|
|
977
|
+
export const bpIconIconWarningOnColor: string;
|
|
974
978
|
export const bpOutlineFocusOnDark: string;
|
|
975
979
|
export const bpOutlineFocusOnLight: string;
|
|
976
980
|
export const bpOverlayModalOverlay: string;
|
|
@@ -1072,6 +1076,9 @@ export const bpSurfaceCtaSurfacePromoFocus: string;
|
|
|
1072
1076
|
export const bpSurfaceCtaSurfacePromoFocusPressed: string;
|
|
1073
1077
|
export const bpSurfaceCtaSurfacePromoHover: string;
|
|
1074
1078
|
export const bpSurfaceCtaSurfacePromoPressed: string;
|
|
1079
|
+
export const bpSurfaceCtaSurfaceQuaternary: string;
|
|
1080
|
+
export const bpSurfaceCtaSurfaceQuaternaryHover: string;
|
|
1081
|
+
export const bpSurfaceCtaSurfaceQuaternaryPressed: string;
|
|
1075
1082
|
export const bpSurfaceCtaSurfaceSecondary: string;
|
|
1076
1083
|
export const bpSurfaceCtaSurfaceSecondaryHover: string;
|
|
1077
1084
|
export const bpSurfaceCtaSurfaceSecondaryPressed: string;
|
|
@@ -1214,6 +1221,7 @@ export const bpSurfaceStatusSurfaceDarkBlue: string;
|
|
|
1214
1221
|
export const bpSurfaceStatusSurfaceDarkBlueFocus: string;
|
|
1215
1222
|
export const bpSurfaceStatusSurfaceDarkBlueHover: string;
|
|
1216
1223
|
export const bpSurfaceStatusSurfaceError: string;
|
|
1224
|
+
export const bpSurfaceStatusSurfaceErrorSecondary: string;
|
|
1217
1225
|
export const bpSurfaceStatusSurfaceGeneric: string;
|
|
1218
1226
|
export const bpSurfaceStatusSurfaceGray: string;
|
|
1219
1227
|
export const bpSurfaceStatusSurfaceGrayFocus: string;
|
|
@@ -1221,6 +1229,7 @@ export const bpSurfaceStatusSurfaceGrayHover: string;
|
|
|
1221
1229
|
export const bpSurfaceStatusSurfaceGreen: string;
|
|
1222
1230
|
export const bpSurfaceStatusSurfaceGreenFocus: string;
|
|
1223
1231
|
export const bpSurfaceStatusSurfaceGreenHover: string;
|
|
1232
|
+
export const bpSurfaceStatusSurfaceInfoSecondary: string;
|
|
1224
1233
|
export const bpSurfaceStatusSurfaceInprogress: string;
|
|
1225
1234
|
export const bpSurfaceStatusSurfaceLightBlue: string;
|
|
1226
1235
|
export const bpSurfaceStatusSurfaceLightBlueFocus: string;
|
|
@@ -1237,7 +1246,10 @@ export const bpSurfaceStatusSurfaceRedFocus: string;
|
|
|
1237
1246
|
export const bpSurfaceStatusSurfaceRedHover: string;
|
|
1238
1247
|
export const bpSurfaceStatusSurfaceScheduled: string;
|
|
1239
1248
|
export const bpSurfaceStatusSurfaceSuccess: string;
|
|
1249
|
+
export const bpSurfaceStatusSurfaceSuccessSecondary: string;
|
|
1240
1250
|
export const bpSurfaceStatusSurfaceUploading: string;
|
|
1251
|
+
export const bpSurfaceStatusSurfaceWarning: string;
|
|
1252
|
+
export const bpSurfaceStatusSurfaceWarningSecondary: string;
|
|
1241
1253
|
export const bpSurfaceStatusSurfaceYellow: string;
|
|
1242
1254
|
export const bpSurfaceStatusSurfaceYellowFocus: string;
|
|
1243
1255
|
export const bpSurfaceStatusSurfaceYellowHover: string;
|
|
@@ -1305,13 +1317,17 @@ export const bpTextNavTextOnLightSelected: string;
|
|
|
1305
1317
|
export const bpTextToggleTextText: string;
|
|
1306
1318
|
export const bpTextTextBrandOnColor: string;
|
|
1307
1319
|
export const bpTextTextDestructiveOnLight: string;
|
|
1320
|
+
export const bpTextTextErrorOnColor: string;
|
|
1308
1321
|
export const bpTextTextErrorOnLight: string;
|
|
1322
|
+
export const bpTextTextInfoOnColor: string;
|
|
1309
1323
|
export const bpTextTextOnDark: string;
|
|
1310
1324
|
export const bpTextTextOnLight: string;
|
|
1311
1325
|
export const bpTextTextOnLightDisabled: string;
|
|
1312
1326
|
export const bpTextTextOnLightSecondary: string;
|
|
1313
1327
|
export const bpTextTextOnLightSecondaryHover: string;
|
|
1314
1328
|
export const bpTextTextOnLightTertiary: string;
|
|
1329
|
+
export const bpTextTextSuccessOnColor: string;
|
|
1330
|
+
export const bpTextTextWarningOnColor: string;
|
|
1315
1331
|
export const bpBoxBlue10: string;
|
|
1316
1332
|
export const bpBoxBlue20: string;
|
|
1317
1333
|
export const bpBoxBlue30: string;
|