@viasat/beam-tokens 2.71.0 → 2.72.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/components/Badge.css +164 -0
- package/components/BadgeIndicator.css +114 -0
- package/index.cjs +2 -2
- package/index.js +970 -945
- package/package.json +1 -1
- package/themes/onefi.css +1224 -758
- package/tokens.css +851 -612
- package/tokens.scss +76 -12
- package/types/lib/js/tokens.d.ts +25 -0
- package/types/lib/js/tokensObj.d.ts +240 -0
- package/types/utils/constants/theme.d.ts +2 -1
- package/types/utils/constants/token-types.d.ts +8 -1
package/tokens.scss
CHANGED
|
@@ -913,6 +913,33 @@ $bm-comp-badge-color-info-secondary-subtle-fg: var(
|
|
|
913
913
|
$bm-comp-badge-color-info-secondary-subtle-border: var(
|
|
914
914
|
--bm-comp-badge-color-info-secondary-subtle-border
|
|
915
915
|
);
|
|
916
|
+
$bm-comp-badge-color-accent-strong-bg: var(
|
|
917
|
+
--bm-comp-badge-color-accent-strong-bg
|
|
918
|
+
);
|
|
919
|
+
$bm-comp-badge-color-accent-strong-fg: var(
|
|
920
|
+
--bm-comp-badge-color-accent-strong-fg
|
|
921
|
+
);
|
|
922
|
+
$bm-comp-badge-color-accent-strong-border: var(
|
|
923
|
+
--bm-comp-badge-color-accent-strong-border
|
|
924
|
+
);
|
|
925
|
+
$bm-comp-badge-color-accent-medium-bg: var(
|
|
926
|
+
--bm-comp-badge-color-accent-medium-bg
|
|
927
|
+
);
|
|
928
|
+
$bm-comp-badge-color-accent-medium-fg: var(
|
|
929
|
+
--bm-comp-badge-color-accent-medium-fg
|
|
930
|
+
);
|
|
931
|
+
$bm-comp-badge-color-accent-medium-border: var(
|
|
932
|
+
--bm-comp-badge-color-accent-medium-border
|
|
933
|
+
);
|
|
934
|
+
$bm-comp-badge-color-accent-subtle-bg: var(
|
|
935
|
+
--bm-comp-badge-color-accent-subtle-bg
|
|
936
|
+
);
|
|
937
|
+
$bm-comp-badge-color-accent-subtle-fg: var(
|
|
938
|
+
--bm-comp-badge-color-accent-subtle-fg
|
|
939
|
+
);
|
|
940
|
+
$bm-comp-badge-color-accent-subtle-border: var(
|
|
941
|
+
--bm-comp-badge-color-accent-subtle-border
|
|
942
|
+
);
|
|
916
943
|
$bm-comp-badge-dot-color-positive-bg: var(
|
|
917
944
|
--bm-comp-badge-dot-color-positive-bg
|
|
918
945
|
);
|
|
@@ -956,6 +983,24 @@ $bm-comp-badge-dot-color-info-secondary-border: var(
|
|
|
956
983
|
$bm-comp-badge-dot-color-info-secondary-text: var(
|
|
957
984
|
--bm-comp-badge-dot-color-info-secondary-text
|
|
958
985
|
);
|
|
986
|
+
$bm-comp-badge-indicator-color-marker-accent-medium-bg: var(
|
|
987
|
+
--bm-comp-badge-indicator-color-marker-accent-medium-bg
|
|
988
|
+
);
|
|
989
|
+
$bm-comp-badge-indicator-color-marker-info-primary-medium-bg: var(
|
|
990
|
+
--bm-comp-badge-indicator-color-marker-info-primary-medium-bg
|
|
991
|
+
);
|
|
992
|
+
$bm-comp-badge-indicator-color-marker-info-secondary-medium-bg: var(
|
|
993
|
+
--bm-comp-badge-indicator-color-marker-info-secondary-medium-bg
|
|
994
|
+
);
|
|
995
|
+
$bm-comp-badge-indicator-color-marker-positive-medium-bg: var(
|
|
996
|
+
--bm-comp-badge-indicator-color-marker-positive-medium-bg
|
|
997
|
+
);
|
|
998
|
+
$bm-comp-badge-indicator-color-marker-warning-medium-bg: var(
|
|
999
|
+
--bm-comp-badge-indicator-color-marker-warning-medium-bg
|
|
1000
|
+
);
|
|
1001
|
+
$bm-comp-badge-indicator-color-marker-negative-medium-bg: var(
|
|
1002
|
+
--bm-comp-badge-indicator-color-marker-negative-medium-bg
|
|
1003
|
+
);
|
|
959
1004
|
$bm-comp-batch-actions-color-count: var(--bm-comp-batch-actions-color-count);
|
|
960
1005
|
$bm-comp-breadcrumb-color-enabled: var(--bm-comp-breadcrumb-color-enabled);
|
|
961
1006
|
$bm-comp-breadcrumb-color-hover: var(--bm-comp-breadcrumb-color-hover);
|
|
@@ -1627,6 +1672,22 @@ $bm-comp-badge-dot-space-gap: var(--bm-comp-badge-dot-space-gap);
|
|
|
1627
1672
|
$bm-comp-badge-dot-size: var(--bm-comp-badge-dot-size);
|
|
1628
1673
|
$bm-comp-badge-dot-radius: var(--bm-comp-badge-dot-radius);
|
|
1629
1674
|
$bm-comp-badge-dot-border-width: var(--bm-comp-badge-dot-border-width);
|
|
1675
|
+
$bm-comp-badge-indicator-radius: var(--bm-comp-badge-indicator-radius);
|
|
1676
|
+
$bm-comp-badge-indicator-space-x: var(--bm-comp-badge-indicator-space-x);
|
|
1677
|
+
$bm-comp-badge-indicator-size-sm: var(--bm-comp-badge-indicator-size-sm);
|
|
1678
|
+
$bm-comp-badge-indicator-size-md: var(--bm-comp-badge-indicator-size-md);
|
|
1679
|
+
$bm-comp-badge-indicator-size-marker-sm: var(
|
|
1680
|
+
--bm-comp-badge-indicator-size-marker-sm
|
|
1681
|
+
);
|
|
1682
|
+
$bm-comp-badge-indicator-size-marker-md: var(
|
|
1683
|
+
--bm-comp-badge-indicator-size-marker-md
|
|
1684
|
+
);
|
|
1685
|
+
$bm-comp-badge-indicator-size-icon-sm: var(
|
|
1686
|
+
--bm-comp-badge-indicator-size-icon-sm
|
|
1687
|
+
);
|
|
1688
|
+
$bm-comp-badge-indicator-size-icon-md: var(
|
|
1689
|
+
--bm-comp-badge-indicator-size-icon-md
|
|
1690
|
+
);
|
|
1630
1691
|
$bm-comp-batch-actions-space-gap: var(--bm-comp-batch-actions-space-gap);
|
|
1631
1692
|
$bm-comp-batch-actions-space-actions-gap: var(
|
|
1632
1693
|
--bm-comp-batch-actions-space-actions-gap
|
|
@@ -2131,6 +2192,19 @@ $bm-comp-tooltip-size-icon-trigger-lg: var(
|
|
|
2131
2192
|
$bm-comp-tooltip-size-icon-trigger-xl: var(
|
|
2132
2193
|
--bm-comp-tooltip-size-icon-trigger-xl
|
|
2133
2194
|
);
|
|
2195
|
+
$bm-alias-action-radius-container: var(--bm-alias-action-radius-container);
|
|
2196
|
+
$bm-alias-action-radius-focus: var(--bm-alias-action-radius-focus);
|
|
2197
|
+
$bm-alias-action-space-sm-x: var(--bm-alias-action-space-sm-x);
|
|
2198
|
+
$bm-alias-action-space-md-x: var(--bm-alias-action-space-md-x);
|
|
2199
|
+
$bm-alias-action-space-lg-x: var(--bm-alias-action-space-lg-x);
|
|
2200
|
+
$bm-alias-badge-radius: var(--bm-alias-badge-radius);
|
|
2201
|
+
$bm-alias-badge-space-x: var(--bm-alias-badge-space-x);
|
|
2202
|
+
$bm-alias-chip-radius-container: var(--bm-alias-chip-radius-container);
|
|
2203
|
+
$bm-alias-chip-radius-focus: var(--bm-alias-chip-radius-focus);
|
|
2204
|
+
$bm-alias-chip-space-sm-x: var(--bm-alias-chip-space-sm-x);
|
|
2205
|
+
$bm-alias-chip-space-md-x: var(--bm-alias-chip-space-md-x);
|
|
2206
|
+
$bm-alias-chip-space-lg-x: var(--bm-alias-chip-space-lg-x);
|
|
2207
|
+
|
|
2134
2208
|
$bm-primitive-text-decoration-none: var(--bm-primitive-text-decoration-none);
|
|
2135
2209
|
$bm-primitive-text-decoration-underline: var(
|
|
2136
2210
|
--bm-primitive-text-decoration-underline
|
|
@@ -2321,6 +2395,8 @@ $bm-comp-badge-typo-sm: var(--bm-comp-badge-typo-sm);
|
|
|
2321
2395
|
$bm-comp-badge-typo-md: var(--bm-comp-badge-typo-md);
|
|
2322
2396
|
$bm-comp-badge-dot-typo-subtle: var(--bm-comp-badge-dot-typo-subtle);
|
|
2323
2397
|
$bm-comp-badge-dot-typo-strong: var(--bm-comp-badge-dot-typo-strong);
|
|
2398
|
+
$bm-comp-badge-indicator-typo-sm: var(--bm-comp-badge-indicator-typo-sm);
|
|
2399
|
+
$bm-comp-badge-indicator-typo-md: var(--bm-comp-badge-indicator-typo-md);
|
|
2324
2400
|
$bm-comp-batch-actions-typo-count: var(--bm-comp-batch-actions-typo-count);
|
|
2325
2401
|
$bm-comp-breadcrumb-typo-default: var(--bm-comp-breadcrumb-typo-default);
|
|
2326
2402
|
$bm-comp-btn-typo-sm: var(--bm-comp-btn-typo-sm);
|
|
@@ -2389,18 +2465,6 @@ $bm-comp-tabs-typo-lg-selected: var(--bm-comp-tabs-typo-lg-selected);
|
|
|
2389
2465
|
$bm-comp-toast-typo-heading: var(--bm-comp-toast-typo-heading);
|
|
2390
2466
|
$bm-comp-toast-typo-body: var(--bm-comp-toast-typo-body);
|
|
2391
2467
|
$bm-comp-tooltip-typo-body: var(--bm-comp-tooltip-typo-body);
|
|
2392
|
-
$bm-alias-action-radius-container: var(--bm-alias-action-radius-container);
|
|
2393
|
-
$bm-alias-action-radius-focus: var(--bm-alias-action-radius-focus);
|
|
2394
|
-
$bm-alias-action-space-sm-x: var(--bm-alias-action-space-sm-x);
|
|
2395
|
-
$bm-alias-action-space-md-x: var(--bm-alias-action-space-md-x);
|
|
2396
|
-
$bm-alias-action-space-lg-x: var(--bm-alias-action-space-lg-x);
|
|
2397
|
-
$bm-alias-badge-radius: var(--bm-alias-badge-radius);
|
|
2398
|
-
$bm-alias-badge-space-x: var(--bm-alias-badge-space-x);
|
|
2399
|
-
$bm-alias-chip-radius-container: var(--bm-alias-chip-radius-container);
|
|
2400
|
-
$bm-alias-chip-radius-focus: var(--bm-alias-chip-radius-focus);
|
|
2401
|
-
$bm-alias-chip-space-sm-x: var(--bm-alias-chip-space-sm-x);
|
|
2402
|
-
$bm-alias-chip-space-md-x: var(--bm-alias-chip-space-md-x);
|
|
2403
|
-
$bm-alias-chip-space-lg-x: var(--bm-alias-chip-space-lg-x);
|
|
2404
2468
|
|
|
2405
2469
|
$bm-primitive-shadow-0: var(--bm-primitive-shadow-0);
|
|
2406
2470
|
$bm-primitive-shadow-1: var(--bm-primitive-shadow-1);
|
package/types/lib/js/tokens.d.ts
CHANGED
|
@@ -795,6 +795,15 @@ export declare const bmCompBadgeColorInfoSecondaryMediumBorder = "var(--bm-comp-
|
|
|
795
795
|
export declare const bmCompBadgeColorInfoSecondarySubtleBg = "var(--bm-comp-badge-color-info-secondary-subtle-bg)";
|
|
796
796
|
export declare const bmCompBadgeColorInfoSecondarySubtleFg = "var(--bm-comp-badge-color-info-secondary-subtle-fg)";
|
|
797
797
|
export declare const bmCompBadgeColorInfoSecondarySubtleBorder = "var(--bm-comp-badge-color-info-secondary-subtle-border)";
|
|
798
|
+
export declare const bmCompBadgeColorAccentStrongBg = "var(--bm-comp-badge-color-accent-strong-bg)";
|
|
799
|
+
export declare const bmCompBadgeColorAccentStrongFg = "var(--bm-comp-badge-color-accent-strong-fg)";
|
|
800
|
+
export declare const bmCompBadgeColorAccentStrongBorder = "var(--bm-comp-badge-color-accent-strong-border)";
|
|
801
|
+
export declare const bmCompBadgeColorAccentMediumBg = "var(--bm-comp-badge-color-accent-medium-bg)";
|
|
802
|
+
export declare const bmCompBadgeColorAccentMediumFg = "var(--bm-comp-badge-color-accent-medium-fg)";
|
|
803
|
+
export declare const bmCompBadgeColorAccentMediumBorder = "var(--bm-comp-badge-color-accent-medium-border)";
|
|
804
|
+
export declare const bmCompBadgeColorAccentSubtleBg = "var(--bm-comp-badge-color-accent-subtle-bg)";
|
|
805
|
+
export declare const bmCompBadgeColorAccentSubtleFg = "var(--bm-comp-badge-color-accent-subtle-fg)";
|
|
806
|
+
export declare const bmCompBadgeColorAccentSubtleBorder = "var(--bm-comp-badge-color-accent-subtle-border)";
|
|
798
807
|
export declare const bmCompBadgeSpaceGap = "var(--bm-comp-badge-space-gap)";
|
|
799
808
|
export declare const bmCompBadgeSpaceX = "var(--bm-comp-badge-space-x)";
|
|
800
809
|
export declare const bmCompBadgeSizeIcon = "var(--bm-comp-badge-size-icon)";
|
|
@@ -826,6 +835,22 @@ export declare const bmCompBadgeDotRadius = "var(--bm-comp-badge-dot-radius)";
|
|
|
826
835
|
export declare const bmCompBadgeDotBorderWidth = "var(--bm-comp-badge-dot-border-width)";
|
|
827
836
|
export declare const bmCompBadgeDotTypoSubtle = "var(--bm-comp-badge-dot-typo-subtle)";
|
|
828
837
|
export declare const bmCompBadgeDotTypoStrong = "var(--bm-comp-badge-dot-typo-strong)";
|
|
838
|
+
export declare const bmCompBadgeIndicatorRadius = "var(--bm-comp-badge-indicator-radius)";
|
|
839
|
+
export declare const bmCompBadgeIndicatorSpaceX = "var(--bm-comp-badge-indicator-space-x)";
|
|
840
|
+
export declare const bmCompBadgeIndicatorSizeSm = "var(--bm-comp-badge-indicator-size-sm)";
|
|
841
|
+
export declare const bmCompBadgeIndicatorSizeMd = "var(--bm-comp-badge-indicator-size-md)";
|
|
842
|
+
export declare const bmCompBadgeIndicatorSizeMarkerSm = "var(--bm-comp-badge-indicator-size-marker-sm)";
|
|
843
|
+
export declare const bmCompBadgeIndicatorSizeMarkerMd = "var(--bm-comp-badge-indicator-size-marker-md)";
|
|
844
|
+
export declare const bmCompBadgeIndicatorSizeIconSm = "var(--bm-comp-badge-indicator-size-icon-sm)";
|
|
845
|
+
export declare const bmCompBadgeIndicatorSizeIconMd = "var(--bm-comp-badge-indicator-size-icon-md)";
|
|
846
|
+
export declare const bmCompBadgeIndicatorTypoSm = "var(--bm-comp-badge-indicator-typo-sm)";
|
|
847
|
+
export declare const bmCompBadgeIndicatorTypoMd = "var(--bm-comp-badge-indicator-typo-md)";
|
|
848
|
+
export declare const bmCompBadgeIndicatorColorMarkerAccentMediumBg = "var(--bm-comp-badge-indicator-color-marker-accent-medium-bg)";
|
|
849
|
+
export declare const bmCompBadgeIndicatorColorMarkerInfoPrimaryMediumBg = "var(--bm-comp-badge-indicator-color-marker-info-primary-medium-bg)";
|
|
850
|
+
export declare const bmCompBadgeIndicatorColorMarkerInfoSecondaryMediumBg = "var(--bm-comp-badge-indicator-color-marker-info-secondary-medium-bg)";
|
|
851
|
+
export declare const bmCompBadgeIndicatorColorMarkerPositiveMediumBg = "var(--bm-comp-badge-indicator-color-marker-positive-medium-bg)";
|
|
852
|
+
export declare const bmCompBadgeIndicatorColorMarkerWarningMediumBg = "var(--bm-comp-badge-indicator-color-marker-warning-medium-bg)";
|
|
853
|
+
export declare const bmCompBadgeIndicatorColorMarkerNegativeMediumBg = "var(--bm-comp-badge-indicator-color-marker-negative-medium-bg)";
|
|
829
854
|
export declare const bmCompBatchActionsTypoCount = "var(--bm-comp-batch-actions-typo-count)";
|
|
830
855
|
export declare const bmCompBatchActionsColorCount = "var(--bm-comp-batch-actions-color-count)";
|
|
831
856
|
export declare const bmCompBatchActionsSpaceGap = "var(--bm-comp-batch-actions-space-gap)";
|
|
@@ -10126,6 +10126,86 @@ export declare const componentTokens: {
|
|
|
10126
10126
|
};
|
|
10127
10127
|
};
|
|
10128
10128
|
};
|
|
10129
|
+
accent: {
|
|
10130
|
+
strong: {
|
|
10131
|
+
bg: {
|
|
10132
|
+
type: string;
|
|
10133
|
+
value: string;
|
|
10134
|
+
attributes: {
|
|
10135
|
+
cssProperty: string;
|
|
10136
|
+
};
|
|
10137
|
+
path: string[];
|
|
10138
|
+
};
|
|
10139
|
+
fg: {
|
|
10140
|
+
type: string;
|
|
10141
|
+
value: string;
|
|
10142
|
+
attributes: {
|
|
10143
|
+
cssProperty: string;
|
|
10144
|
+
};
|
|
10145
|
+
path: string[];
|
|
10146
|
+
};
|
|
10147
|
+
border: {
|
|
10148
|
+
type: string;
|
|
10149
|
+
value: string;
|
|
10150
|
+
attributes: {
|
|
10151
|
+
cssProperty: string;
|
|
10152
|
+
};
|
|
10153
|
+
path: string[];
|
|
10154
|
+
};
|
|
10155
|
+
};
|
|
10156
|
+
medium: {
|
|
10157
|
+
bg: {
|
|
10158
|
+
type: string;
|
|
10159
|
+
value: string;
|
|
10160
|
+
attributes: {
|
|
10161
|
+
cssProperty: string;
|
|
10162
|
+
};
|
|
10163
|
+
path: string[];
|
|
10164
|
+
};
|
|
10165
|
+
fg: {
|
|
10166
|
+
type: string;
|
|
10167
|
+
value: string;
|
|
10168
|
+
attributes: {
|
|
10169
|
+
cssProperty: string;
|
|
10170
|
+
};
|
|
10171
|
+
path: string[];
|
|
10172
|
+
};
|
|
10173
|
+
border: {
|
|
10174
|
+
type: string;
|
|
10175
|
+
value: string;
|
|
10176
|
+
attributes: {
|
|
10177
|
+
cssProperty: string;
|
|
10178
|
+
};
|
|
10179
|
+
path: string[];
|
|
10180
|
+
};
|
|
10181
|
+
};
|
|
10182
|
+
subtle: {
|
|
10183
|
+
bg: {
|
|
10184
|
+
type: string;
|
|
10185
|
+
value: string;
|
|
10186
|
+
attributes: {
|
|
10187
|
+
cssProperty: string;
|
|
10188
|
+
};
|
|
10189
|
+
path: string[];
|
|
10190
|
+
};
|
|
10191
|
+
fg: {
|
|
10192
|
+
type: string;
|
|
10193
|
+
value: string;
|
|
10194
|
+
attributes: {
|
|
10195
|
+
cssProperty: string;
|
|
10196
|
+
};
|
|
10197
|
+
path: string[];
|
|
10198
|
+
};
|
|
10199
|
+
border: {
|
|
10200
|
+
type: string;
|
|
10201
|
+
value: string;
|
|
10202
|
+
attributes: {
|
|
10203
|
+
cssProperty: string;
|
|
10204
|
+
};
|
|
10205
|
+
path: string[];
|
|
10206
|
+
};
|
|
10207
|
+
};
|
|
10208
|
+
};
|
|
10129
10209
|
};
|
|
10130
10210
|
space: {
|
|
10131
10211
|
gap: {
|
|
@@ -10396,6 +10476,166 @@ export declare const componentTokens: {
|
|
|
10396
10476
|
};
|
|
10397
10477
|
};
|
|
10398
10478
|
};
|
|
10479
|
+
"badge-indicator": {
|
|
10480
|
+
radius: {
|
|
10481
|
+
value: string;
|
|
10482
|
+
type: string;
|
|
10483
|
+
attributes: {
|
|
10484
|
+
cssProperty: string;
|
|
10485
|
+
};
|
|
10486
|
+
path: string[];
|
|
10487
|
+
};
|
|
10488
|
+
space: {
|
|
10489
|
+
x: {
|
|
10490
|
+
value: string;
|
|
10491
|
+
type: string;
|
|
10492
|
+
attributes: {
|
|
10493
|
+
cssProperty: string;
|
|
10494
|
+
};
|
|
10495
|
+
path: string[];
|
|
10496
|
+
};
|
|
10497
|
+
};
|
|
10498
|
+
size: {
|
|
10499
|
+
sm: {
|
|
10500
|
+
value: string;
|
|
10501
|
+
type: string;
|
|
10502
|
+
attributes: {
|
|
10503
|
+
cssProperty: string;
|
|
10504
|
+
};
|
|
10505
|
+
path: string[];
|
|
10506
|
+
};
|
|
10507
|
+
md: {
|
|
10508
|
+
value: string;
|
|
10509
|
+
type: string;
|
|
10510
|
+
attributes: {
|
|
10511
|
+
cssProperty: string;
|
|
10512
|
+
};
|
|
10513
|
+
path: string[];
|
|
10514
|
+
};
|
|
10515
|
+
"marker-sm": {
|
|
10516
|
+
value: string;
|
|
10517
|
+
type: string;
|
|
10518
|
+
attributes: {
|
|
10519
|
+
cssProperty: string;
|
|
10520
|
+
};
|
|
10521
|
+
path: string[];
|
|
10522
|
+
};
|
|
10523
|
+
"marker-md": {
|
|
10524
|
+
value: string;
|
|
10525
|
+
type: string;
|
|
10526
|
+
attributes: {
|
|
10527
|
+
cssProperty: string;
|
|
10528
|
+
};
|
|
10529
|
+
path: string[];
|
|
10530
|
+
};
|
|
10531
|
+
"icon-sm": {
|
|
10532
|
+
value: string;
|
|
10533
|
+
type: string;
|
|
10534
|
+
attributes: {
|
|
10535
|
+
cssProperty: string[];
|
|
10536
|
+
};
|
|
10537
|
+
path: string[];
|
|
10538
|
+
};
|
|
10539
|
+
"icon-md": {
|
|
10540
|
+
value: string;
|
|
10541
|
+
type: string;
|
|
10542
|
+
attributes: {
|
|
10543
|
+
cssProperty: string[];
|
|
10544
|
+
};
|
|
10545
|
+
path: string[];
|
|
10546
|
+
};
|
|
10547
|
+
};
|
|
10548
|
+
typo: {
|
|
10549
|
+
sm: {
|
|
10550
|
+
value: string;
|
|
10551
|
+
type: string;
|
|
10552
|
+
attributes: {};
|
|
10553
|
+
path: string[];
|
|
10554
|
+
};
|
|
10555
|
+
md: {
|
|
10556
|
+
value: string;
|
|
10557
|
+
type: string;
|
|
10558
|
+
attributes: {};
|
|
10559
|
+
path: string[];
|
|
10560
|
+
};
|
|
10561
|
+
};
|
|
10562
|
+
color: {
|
|
10563
|
+
marker: {
|
|
10564
|
+
accent: {
|
|
10565
|
+
medium: {
|
|
10566
|
+
bg: {
|
|
10567
|
+
value: string;
|
|
10568
|
+
type: string;
|
|
10569
|
+
attributes: {
|
|
10570
|
+
cssProperty: string;
|
|
10571
|
+
};
|
|
10572
|
+
path: string[];
|
|
10573
|
+
};
|
|
10574
|
+
};
|
|
10575
|
+
};
|
|
10576
|
+
"info-primary": {
|
|
10577
|
+
medium: {
|
|
10578
|
+
bg: {
|
|
10579
|
+
value: string;
|
|
10580
|
+
type: string;
|
|
10581
|
+
attributes: {
|
|
10582
|
+
cssProperty: string;
|
|
10583
|
+
};
|
|
10584
|
+
path: string[];
|
|
10585
|
+
};
|
|
10586
|
+
};
|
|
10587
|
+
};
|
|
10588
|
+
"info-secondary": {
|
|
10589
|
+
medium: {
|
|
10590
|
+
bg: {
|
|
10591
|
+
value: string;
|
|
10592
|
+
type: string;
|
|
10593
|
+
attributes: {
|
|
10594
|
+
cssProperty: string;
|
|
10595
|
+
};
|
|
10596
|
+
path: string[];
|
|
10597
|
+
};
|
|
10598
|
+
};
|
|
10599
|
+
};
|
|
10600
|
+
positive: {
|
|
10601
|
+
medium: {
|
|
10602
|
+
bg: {
|
|
10603
|
+
value: string;
|
|
10604
|
+
type: string;
|
|
10605
|
+
attributes: {
|
|
10606
|
+
cssProperty: string;
|
|
10607
|
+
};
|
|
10608
|
+
path: string[];
|
|
10609
|
+
};
|
|
10610
|
+
};
|
|
10611
|
+
};
|
|
10612
|
+
warning: {
|
|
10613
|
+
medium: {
|
|
10614
|
+
bg: {
|
|
10615
|
+
value: string;
|
|
10616
|
+
type: string;
|
|
10617
|
+
attributes: {
|
|
10618
|
+
cssProperty: string;
|
|
10619
|
+
};
|
|
10620
|
+
path: string[];
|
|
10621
|
+
};
|
|
10622
|
+
};
|
|
10623
|
+
};
|
|
10624
|
+
negative: {
|
|
10625
|
+
medium: {
|
|
10626
|
+
bg: {
|
|
10627
|
+
value: string;
|
|
10628
|
+
type: string;
|
|
10629
|
+
attributes: {
|
|
10630
|
+
cssProperty: string;
|
|
10631
|
+
};
|
|
10632
|
+
path: string[];
|
|
10633
|
+
};
|
|
10634
|
+
};
|
|
10635
|
+
};
|
|
10636
|
+
};
|
|
10637
|
+
};
|
|
10638
|
+
};
|
|
10399
10639
|
"batch-actions": {
|
|
10400
10640
|
typo: {
|
|
10401
10641
|
count: {
|
|
@@ -19,6 +19,7 @@ export declare const SUPPORTED_LANGUAGE_CODES: {
|
|
|
19
19
|
readonly ar: "ar";
|
|
20
20
|
readonly he: "he";
|
|
21
21
|
readonly ja: "ja";
|
|
22
|
+
readonly th: "th";
|
|
22
23
|
readonly zh: "zh";
|
|
23
24
|
};
|
|
24
|
-
export declare const SUPPORT_LANGUAGES: ("ar" | "he" | "ja" | "zh")[];
|
|
25
|
+
export declare const SUPPORT_LANGUAGES: ("ar" | "he" | "ja" | "th" | "zh")[];
|
|
@@ -27,13 +27,20 @@ export declare const TOKEN_CATEGORIES: {
|
|
|
27
27
|
* @example bm-primitive, bm-sem, bm-comp, bm-utility, etc.
|
|
28
28
|
*/
|
|
29
29
|
export declare const TOKEN_CATEGORIES_PREFIXED: Record<TOKEN_CATEGORY, string>;
|
|
30
|
+
/**
|
|
31
|
+
* Order matters. `mergeOutputFiles` concatenates the generated CSS in this
|
|
32
|
+
* order, so a block listed later wins when two rules have the same specificity.
|
|
33
|
+
* `language` must stay after `typography`: a `:lang()` rule and a theme rule
|
|
34
|
+
* both score (0,3,0), so if language came first the theme's own font would
|
|
35
|
+
* override the locale font and `bm-lang-*` would do nothing.
|
|
36
|
+
*/
|
|
30
37
|
export declare const SUPPORTED_TOKEN_TYPES: {
|
|
31
38
|
readonly color: "color";
|
|
32
39
|
readonly dimension: "dimension";
|
|
33
40
|
readonly js: "js";
|
|
34
|
-
readonly language: "language";
|
|
35
41
|
readonly productType: "productType";
|
|
36
42
|
readonly typography: "typography";
|
|
43
|
+
readonly language: "language";
|
|
37
44
|
readonly shadow: "shadow";
|
|
38
45
|
readonly expressive: "expressive";
|
|
39
46
|
};
|