@carbon/themes 10.34.0-rc.0 → 10.36.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/es/index.js +68 -8
- package/index.scss +1 -0
- package/lib/index.js +102 -4
- package/package.json +7 -7
- package/scss/generated/_mixins.scss +205 -0
- package/scss/generated/_themes.scss +65 -2
- package/scss/generated/_tokens.scss +82 -2
- package/scss/modules/_tokens.scss +8 -0
- package/scss/modules/generated/_themes.scss +10 -2
- package/scss/modules/generated/_tokens.scss +227 -0
- package/src/g10.js +10 -2
- package/src/g100.js +8 -0
- package/src/g80.js +8 -0
- package/src/g90.js +8 -0
- package/src/tokens.js +4 -0
- package/src/v9.js +10 -1
- package/src/white.js +10 -2
- package/umd/index.js +102 -4
package/umd/index.js
CHANGED
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
var inverse01$5 = colors$1.white;
|
|
112
112
|
var inverse02$5 = colors$1.gray80;
|
|
113
113
|
var support01$5 = colors$1.red60;
|
|
114
|
-
var support02$5 = colors$1.
|
|
114
|
+
var support02$5 = colors$1.green60;
|
|
115
115
|
var support03$5 = colors$1.yellow;
|
|
116
116
|
var support04$5 = colors$1.blue70;
|
|
117
117
|
var inverseSupport01$5 = colors$1.red50;
|
|
@@ -156,6 +156,8 @@
|
|
|
156
156
|
var background$5 = uiBackground$5;
|
|
157
157
|
var layer$5 = ui01$5;
|
|
158
158
|
var layerAccent$5 = ui03$5;
|
|
159
|
+
var layerAccentActive$5 = colors$1.gray40;
|
|
160
|
+
var layerAccentHover$5 = adjustLightness(layerAccent$5, -6);
|
|
159
161
|
var field$5 = field01$5;
|
|
160
162
|
var backgroundInverse$5 = inverse02$5;
|
|
161
163
|
var backgroundBrand$5 = interactive01$5;
|
|
@@ -306,6 +308,8 @@
|
|
|
306
308
|
background: background$5,
|
|
307
309
|
layer: layer$5,
|
|
308
310
|
layerAccent: layerAccent$5,
|
|
311
|
+
layerAccentActive: layerAccentActive$5,
|
|
312
|
+
layerAccentHover: layerAccentHover$5,
|
|
309
313
|
field: field$5,
|
|
310
314
|
backgroundInverse: backgroundInverse$5,
|
|
311
315
|
backgroundBrand: backgroundBrand$5,
|
|
@@ -446,6 +450,12 @@
|
|
|
446
450
|
container03: layout.container03,
|
|
447
451
|
container04: layout.container04,
|
|
448
452
|
container05: layout.container05,
|
|
453
|
+
sizeXSmall: layout.sizeXSmall,
|
|
454
|
+
sizeSmall: layout.sizeSmall,
|
|
455
|
+
sizeMedium: layout.sizeMedium,
|
|
456
|
+
sizeLarge: layout.sizeLarge,
|
|
457
|
+
sizeXLarge: layout.sizeXLarge,
|
|
458
|
+
size2XLarge: layout.size2XLarge,
|
|
449
459
|
iconSize01: layout.iconSize01,
|
|
450
460
|
iconSize02: layout.iconSize02
|
|
451
461
|
});
|
|
@@ -483,7 +493,7 @@
|
|
|
483
493
|
var inverse01$4 = colors$1.white;
|
|
484
494
|
var inverse02$4 = colors$1.gray80;
|
|
485
495
|
var support01$4 = colors$1.red60;
|
|
486
|
-
var support02$4 = colors$1.
|
|
496
|
+
var support02$4 = colors$1.green60;
|
|
487
497
|
var support03$4 = colors$1.yellow;
|
|
488
498
|
var support04$4 = colors$1.blue70;
|
|
489
499
|
var inverseSupport01$4 = colors$1.red50;
|
|
@@ -528,6 +538,8 @@
|
|
|
528
538
|
var background$4 = uiBackground$4;
|
|
529
539
|
var layer$4 = ui01$4;
|
|
530
540
|
var layerAccent$4 = ui03$4;
|
|
541
|
+
var layerAccentActive$4 = colors$1.gray40;
|
|
542
|
+
var layerAccentHover$4 = adjustLightness(layerAccent$4, -6);
|
|
531
543
|
var field$4 = field01$4;
|
|
532
544
|
var backgroundInverse$4 = inverse02$4;
|
|
533
545
|
var backgroundBrand$4 = interactive01$4;
|
|
@@ -678,6 +690,8 @@
|
|
|
678
690
|
background: background$4,
|
|
679
691
|
layer: layer$4,
|
|
680
692
|
layerAccent: layerAccent$4,
|
|
693
|
+
layerAccentActive: layerAccentActive$4,
|
|
694
|
+
layerAccentHover: layerAccentHover$4,
|
|
681
695
|
field: field$4,
|
|
682
696
|
backgroundInverse: backgroundInverse$4,
|
|
683
697
|
backgroundBrand: backgroundBrand$4,
|
|
@@ -818,6 +832,12 @@
|
|
|
818
832
|
container03: layout.container03,
|
|
819
833
|
container04: layout.container04,
|
|
820
834
|
container05: layout.container05,
|
|
835
|
+
sizeXSmall: layout.sizeXSmall,
|
|
836
|
+
sizeSmall: layout.sizeSmall,
|
|
837
|
+
sizeMedium: layout.sizeMedium,
|
|
838
|
+
sizeLarge: layout.sizeLarge,
|
|
839
|
+
sizeXLarge: layout.sizeXLarge,
|
|
840
|
+
size2XLarge: layout.size2XLarge,
|
|
821
841
|
iconSize01: layout.iconSize01,
|
|
822
842
|
iconSize02: layout.iconSize02
|
|
823
843
|
});
|
|
@@ -900,6 +920,8 @@
|
|
|
900
920
|
var background$3 = uiBackground$3;
|
|
901
921
|
var layer$3 = ui01$3;
|
|
902
922
|
var layerAccent$3 = ui03$3;
|
|
923
|
+
var layerAccentActive$3 = colors$1.gray60;
|
|
924
|
+
var layerAccentHover$3 = adjustLightness(layerAccent$3, +6);
|
|
903
925
|
var field$3 = field01$3;
|
|
904
926
|
var backgroundInverse$3 = inverse02$3;
|
|
905
927
|
var backgroundBrand$3 = interactive01$3;
|
|
@@ -1050,6 +1072,8 @@
|
|
|
1050
1072
|
background: background$3,
|
|
1051
1073
|
layer: layer$3,
|
|
1052
1074
|
layerAccent: layerAccent$3,
|
|
1075
|
+
layerAccentActive: layerAccentActive$3,
|
|
1076
|
+
layerAccentHover: layerAccentHover$3,
|
|
1053
1077
|
field: field$3,
|
|
1054
1078
|
backgroundInverse: backgroundInverse$3,
|
|
1055
1079
|
backgroundBrand: backgroundBrand$3,
|
|
@@ -1190,6 +1214,12 @@
|
|
|
1190
1214
|
container03: layout.container03,
|
|
1191
1215
|
container04: layout.container04,
|
|
1192
1216
|
container05: layout.container05,
|
|
1217
|
+
sizeXSmall: layout.sizeXSmall,
|
|
1218
|
+
sizeSmall: layout.sizeSmall,
|
|
1219
|
+
sizeMedium: layout.sizeMedium,
|
|
1220
|
+
sizeLarge: layout.sizeLarge,
|
|
1221
|
+
sizeXLarge: layout.sizeXLarge,
|
|
1222
|
+
size2XLarge: layout.size2XLarge,
|
|
1193
1223
|
iconSize01: layout.iconSize01,
|
|
1194
1224
|
iconSize02: layout.iconSize02
|
|
1195
1225
|
});
|
|
@@ -1205,6 +1235,8 @@
|
|
|
1205
1235
|
var background$2 = colors$1.gray80;
|
|
1206
1236
|
var layer$2 = colors$1.gray70;
|
|
1207
1237
|
var layerAccent$2 = colors$1.gray60;
|
|
1238
|
+
var layerAccentActive$2 = colors$1.gray70;
|
|
1239
|
+
var layerAccentHover$2 = adjustLightness(layerAccent$2, -7);
|
|
1208
1240
|
var field$2 = colors$1.gray70;
|
|
1209
1241
|
var backgroundInverse$2 = colors$1.gray10;
|
|
1210
1242
|
var backgroundBrand$2 = colors$1.blue60;
|
|
@@ -1359,6 +1391,8 @@
|
|
|
1359
1391
|
background: background$2,
|
|
1360
1392
|
layer: layer$2,
|
|
1361
1393
|
layerAccent: layerAccent$2,
|
|
1394
|
+
layerAccentActive: layerAccentActive$2,
|
|
1395
|
+
layerAccentHover: layerAccentHover$2,
|
|
1362
1396
|
field: field$2,
|
|
1363
1397
|
backgroundInverse: backgroundInverse$2,
|
|
1364
1398
|
backgroundBrand: backgroundBrand$2,
|
|
@@ -1565,6 +1599,12 @@
|
|
|
1565
1599
|
container03: layout.container03,
|
|
1566
1600
|
container04: layout.container04,
|
|
1567
1601
|
container05: layout.container05,
|
|
1602
|
+
sizeXSmall: layout.sizeXSmall,
|
|
1603
|
+
sizeSmall: layout.sizeSmall,
|
|
1604
|
+
sizeMedium: layout.sizeMedium,
|
|
1605
|
+
sizeLarge: layout.sizeLarge,
|
|
1606
|
+
sizeXLarge: layout.sizeXLarge,
|
|
1607
|
+
size2XLarge: layout.size2XLarge,
|
|
1568
1608
|
iconSize01: layout.iconSize01,
|
|
1569
1609
|
iconSize02: layout.iconSize02
|
|
1570
1610
|
});
|
|
@@ -1647,6 +1687,8 @@
|
|
|
1647
1687
|
var background$1 = uiBackground$1;
|
|
1648
1688
|
var layer$1 = ui01$1;
|
|
1649
1689
|
var layerAccent$1 = ui03$1;
|
|
1690
|
+
var layerAccentActive$1 = colors$1.gray50;
|
|
1691
|
+
var layerAccentHover$1 = adjustLightness(layerAccent$1, +7);
|
|
1650
1692
|
var field$1 = field01$1;
|
|
1651
1693
|
var backgroundInverse$1 = inverse02$1;
|
|
1652
1694
|
var backgroundBrand$1 = interactive01$1;
|
|
@@ -1797,6 +1839,8 @@
|
|
|
1797
1839
|
background: background$1,
|
|
1798
1840
|
layer: layer$1,
|
|
1799
1841
|
layerAccent: layerAccent$1,
|
|
1842
|
+
layerAccentActive: layerAccentActive$1,
|
|
1843
|
+
layerAccentHover: layerAccentHover$1,
|
|
1800
1844
|
field: field$1,
|
|
1801
1845
|
backgroundInverse: backgroundInverse$1,
|
|
1802
1846
|
backgroundBrand: backgroundBrand$1,
|
|
@@ -1937,6 +1981,12 @@
|
|
|
1937
1981
|
container03: layout.container03,
|
|
1938
1982
|
container04: layout.container04,
|
|
1939
1983
|
container05: layout.container05,
|
|
1984
|
+
sizeXSmall: layout.sizeXSmall,
|
|
1985
|
+
sizeSmall: layout.sizeSmall,
|
|
1986
|
+
sizeMedium: layout.sizeMedium,
|
|
1987
|
+
sizeLarge: layout.sizeLarge,
|
|
1988
|
+
sizeXLarge: layout.sizeXLarge,
|
|
1989
|
+
size2XLarge: layout.size2XLarge,
|
|
1940
1990
|
iconSize01: layout.iconSize01,
|
|
1941
1991
|
iconSize02: layout.iconSize02
|
|
1942
1992
|
});
|
|
@@ -2019,6 +2069,8 @@
|
|
|
2019
2069
|
var background = uiBackground;
|
|
2020
2070
|
var layer = ui01;
|
|
2021
2071
|
var layerAccent = ui03;
|
|
2072
|
+
var layerAccentActive = colors$1.gray40;
|
|
2073
|
+
var layerAccentHover = adjustLightness(layerAccent, -6);
|
|
2022
2074
|
var field = field01;
|
|
2023
2075
|
var backgroundInverse = inverse02;
|
|
2024
2076
|
var backgroundBrand = interactive01;
|
|
@@ -2169,6 +2221,8 @@
|
|
|
2169
2221
|
background: background,
|
|
2170
2222
|
layer: layer,
|
|
2171
2223
|
layerAccent: layerAccent,
|
|
2224
|
+
layerAccentActive: layerAccentActive,
|
|
2225
|
+
layerAccentHover: layerAccentHover,
|
|
2172
2226
|
field: field,
|
|
2173
2227
|
backgroundInverse: backgroundInverse,
|
|
2174
2228
|
backgroundBrand: backgroundBrand,
|
|
@@ -2309,6 +2363,12 @@
|
|
|
2309
2363
|
container03: layout.container03,
|
|
2310
2364
|
container04: layout.container04,
|
|
2311
2365
|
container05: layout.container05,
|
|
2366
|
+
sizeXSmall: layout.sizeXSmall,
|
|
2367
|
+
sizeSmall: layout.sizeSmall,
|
|
2368
|
+
sizeMedium: layout.sizeMedium,
|
|
2369
|
+
sizeLarge: layout.sizeLarge,
|
|
2370
|
+
sizeXLarge: layout.sizeXLarge,
|
|
2371
|
+
size2XLarge: layout.size2XLarge,
|
|
2312
2372
|
iconSize01: layout.iconSize01,
|
|
2313
2373
|
iconSize02: layout.iconSize02
|
|
2314
2374
|
});
|
|
@@ -2325,7 +2385,7 @@
|
|
|
2325
2385
|
'interactive01', 'interactive02', 'interactive03', 'interactive04', 'uiBackground', 'ui01', 'ui02', 'ui03', 'ui04', 'ui05', 'text01', 'text02', 'text03', 'text04', 'text05', 'textError', 'icon01', 'icon02', 'icon03', 'link01', 'link02', 'inverseLink', 'field01', 'field02', 'inverse01', 'inverse02', 'support01', 'support02', 'support03', 'support04', 'inverseSupport01', 'inverseSupport02', 'inverseSupport03', 'inverseSupport04', 'overlay01', 'danger01', 'danger02', // Interactive states
|
|
2326
2386
|
'focus', 'inverseFocusUi', 'hoverPrimary', 'activePrimary', 'hoverPrimaryText', 'hoverSecondary', 'activeSecondary', 'hoverTertiary', 'activeTertiary', 'hoverUI', 'hoverLightUI', 'hoverSelectedUI', 'activeUI', 'activeLightUI', 'selectedUI', 'selectedLightUI', 'inverseHoverUI', 'hoverDanger', 'activeDanger', 'hoverRow', 'visitedLink', 'disabled01', 'disabled02', 'disabled03', 'highlight', 'decorative01', 'buttonSeparator', 'skeleton01', 'skeleton02', // New color tokens
|
|
2327
2387
|
// TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
|
|
2328
|
-
'background', 'layer', 'layerAccent', 'field', 'backgroundInverse', 'backgroundBrand', 'interactive', 'borderSubtle', 'borderStrong', 'borderInverse', 'borderInteractive', 'textPrimary', 'textSecondary', 'textPlaceholder', 'textHelper', 'textOnColor', 'textInverse', 'linkPrimary', 'linkSecondary', 'linkVisited', 'linkInverse', 'iconPrimary', 'iconSecondary', 'iconOnColor', 'iconInverse', 'supportError', 'supportSuccess', 'supportWarning', 'supportInfo', 'supportErrorInverse', 'supportSuccessInverse', 'supportWarningInverse', 'supportInfoInverse', 'overlay', 'toggleOff', 'buttonPrimary', 'buttonSecondary', 'buttonTertiary', 'buttonDangerPrimary', 'buttonDangerSecondary', 'backgroundActive', 'layerActive', 'buttonDangerActive', 'buttonPrimaryActive', 'buttonSecondaryActive', 'buttonTertiaryActive', 'focusInset', 'focusInverse', 'backgroundHover', 'layerHover', 'fieldHover', 'backgroundInverseHover', 'linkPrimaryHover', 'buttonDangerHover', 'buttonPrimaryHover', 'buttonSecondaryHover', 'buttonTertiaryHover', 'backgroundSelected', 'backgroundSelectedHover', 'layerSelected', 'layerSelectedHover', 'layerSelectedInverse', 'borderSubtleSelected', 'layerDisabled', 'fieldDisabled', 'borderDisabled', 'textDisabled', 'buttonDisabled', 'iconDisabled', 'textOnColorDisabled', 'iconOnColorDisabled', 'layerSelectedDisabled', 'skeletonBackground', 'skeletonElement', // Deprecated
|
|
2388
|
+
'background', 'layer', 'layerAccent', 'layerAccentHover', 'layerAccentActive', 'field', 'backgroundInverse', 'backgroundBrand', 'interactive', 'borderSubtle', 'borderStrong', 'borderInverse', 'borderInteractive', 'textPrimary', 'textSecondary', 'textPlaceholder', 'textHelper', 'textOnColor', 'textInverse', 'linkPrimary', 'linkSecondary', 'linkVisited', 'linkInverse', 'iconPrimary', 'iconSecondary', 'iconOnColor', 'iconInverse', 'supportError', 'supportSuccess', 'supportWarning', 'supportInfo', 'supportErrorInverse', 'supportSuccessInverse', 'supportWarningInverse', 'supportInfoInverse', 'overlay', 'toggleOff', 'buttonPrimary', 'buttonSecondary', 'buttonTertiary', 'buttonDangerPrimary', 'buttonDangerSecondary', 'backgroundActive', 'layerActive', 'buttonDangerActive', 'buttonPrimaryActive', 'buttonSecondaryActive', 'buttonTertiaryActive', 'focusInset', 'focusInverse', 'backgroundHover', 'layerHover', 'fieldHover', 'backgroundInverseHover', 'linkPrimaryHover', 'buttonDangerHover', 'buttonPrimaryHover', 'buttonSecondaryHover', 'buttonTertiaryHover', 'backgroundSelected', 'backgroundSelectedHover', 'layerSelected', 'layerSelectedHover', 'layerSelectedInverse', 'borderSubtleSelected', 'layerDisabled', 'fieldDisabled', 'borderDisabled', 'textDisabled', 'buttonDisabled', 'iconDisabled', 'textOnColorDisabled', 'iconOnColorDisabled', 'layerSelectedDisabled', 'skeletonBackground', 'skeletonElement', // Deprecated
|
|
2329
2389
|
'brand01', 'brand02', 'brand03', 'active01', 'hoverField', 'danger'];
|
|
2330
2390
|
var numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
|
|
2331
2391
|
/**
|
|
@@ -2375,7 +2435,7 @@
|
|
|
2375
2435
|
colors: [{
|
|
2376
2436
|
type: 'core',
|
|
2377
2437
|
tokens: ['uiBackground', 'interactive01', 'interactive02', 'interactive03', 'interactive04', 'brand01', 'brand02', 'brand03', 'danger', 'danger01', 'danger02', 'ui01', 'ui02', 'ui03', 'ui04', 'ui05', 'text01', 'text02', 'text03', 'text04', 'text05', 'textError', 'link01', 'link02', 'icon01', 'icon02', 'icon03', 'field01', 'field02', 'inverse01', 'inverse02', 'inverseLink', 'support01', 'support02', 'support03', 'support04', 'inverseSupport01', 'inverseSupport02', 'inverseSupport03', 'inverseSupport04', 'overlay01', //new tokens
|
|
2378
|
-
'background', 'layer', 'layerAccent', 'field', 'backgroundInverse', 'backgroundBrand', 'interactive', 'borderSubtle', 'borderStrong', 'borderInverse', 'borderInteractive', 'textPrimary', 'textSecondary', 'textPlaceholder', 'textHelper', 'textOnColor', 'textInverse', 'linkPrimary', 'linkSecondary', 'linkVisited', 'linkInverse', 'iconPrimary', 'iconSecondary', 'iconOnColor', 'iconInverse', 'supportError', 'supportSuccess', 'supportWarning', 'supportInfo', 'supportErrorInverse', 'supportSuccessInverse', 'supportWarningInverse', 'supportInfoInverse', 'overlay', 'toggleOff', 'buttonPrimary', 'buttonSecondary', 'buttonTertiary', 'buttonDangerPrimary', 'buttonDangerSecondary']
|
|
2438
|
+
'background', 'layer', 'layerAccent', 'layerAccentHover', 'layerAccentActive', 'field', 'backgroundInverse', 'backgroundBrand', 'interactive', 'borderSubtle', 'borderStrong', 'borderInverse', 'borderInteractive', 'textPrimary', 'textSecondary', 'textPlaceholder', 'textHelper', 'textOnColor', 'textInverse', 'linkPrimary', 'linkSecondary', 'linkVisited', 'linkInverse', 'iconPrimary', 'iconSecondary', 'iconOnColor', 'iconInverse', 'supportError', 'supportSuccess', 'supportWarning', 'supportInfo', 'supportErrorInverse', 'supportSuccessInverse', 'supportWarningInverse', 'supportInfoInverse', 'overlay', 'toggleOff', 'buttonPrimary', 'buttonSecondary', 'buttonTertiary', 'buttonDangerPrimary', 'buttonDangerSecondary']
|
|
2379
2439
|
}, {
|
|
2380
2440
|
type: 'interactive',
|
|
2381
2441
|
tokens: ['focus', 'inverseFocusUi', 'hoverPrimary', 'hoverPrimaryText', 'hoverSecondary', 'hoverTertiary', 'hoverUI', 'hoverLightUI', 'hoverSelectedUI', 'hoverDanger', 'hoverRow', 'activePrimary', 'activeSecondary', 'activeTertiary', 'activeUI', 'activeLightUI', 'activeDanger', 'selectedUI', 'selectedLightUI', 'highlight', 'skeleton01', 'skeleton02', 'visitedLink', 'disabled01', 'disabled02', 'disabled03', 'inverseHoverUI', 'active01', 'hoverField', 'decorative01', 'buttonSeparator', // new tokens
|
|
@@ -2711,6 +2771,42 @@
|
|
|
2711
2771
|
return layout.layout07;
|
|
2712
2772
|
}
|
|
2713
2773
|
});
|
|
2774
|
+
Object.defineProperty(exports, 'size2XLarge', {
|
|
2775
|
+
enumerable: true,
|
|
2776
|
+
get: function () {
|
|
2777
|
+
return layout.size2XLarge;
|
|
2778
|
+
}
|
|
2779
|
+
});
|
|
2780
|
+
Object.defineProperty(exports, 'sizeLarge', {
|
|
2781
|
+
enumerable: true,
|
|
2782
|
+
get: function () {
|
|
2783
|
+
return layout.sizeLarge;
|
|
2784
|
+
}
|
|
2785
|
+
});
|
|
2786
|
+
Object.defineProperty(exports, 'sizeMedium', {
|
|
2787
|
+
enumerable: true,
|
|
2788
|
+
get: function () {
|
|
2789
|
+
return layout.sizeMedium;
|
|
2790
|
+
}
|
|
2791
|
+
});
|
|
2792
|
+
Object.defineProperty(exports, 'sizeSmall', {
|
|
2793
|
+
enumerable: true,
|
|
2794
|
+
get: function () {
|
|
2795
|
+
return layout.sizeSmall;
|
|
2796
|
+
}
|
|
2797
|
+
});
|
|
2798
|
+
Object.defineProperty(exports, 'sizeXLarge', {
|
|
2799
|
+
enumerable: true,
|
|
2800
|
+
get: function () {
|
|
2801
|
+
return layout.sizeXLarge;
|
|
2802
|
+
}
|
|
2803
|
+
});
|
|
2804
|
+
Object.defineProperty(exports, 'sizeXSmall', {
|
|
2805
|
+
enumerable: true,
|
|
2806
|
+
get: function () {
|
|
2807
|
+
return layout.sizeXSmall;
|
|
2808
|
+
}
|
|
2809
|
+
});
|
|
2714
2810
|
Object.defineProperty(exports, 'spacing01', {
|
|
2715
2811
|
enumerable: true,
|
|
2716
2812
|
get: function () {
|
|
@@ -2884,6 +2980,8 @@
|
|
|
2884
2980
|
exports.inverseSupport04 = inverseSupport04$5;
|
|
2885
2981
|
exports.layer = layer$5;
|
|
2886
2982
|
exports.layerAccent = layerAccent$5;
|
|
2983
|
+
exports.layerAccentActive = layerAccentActive$5;
|
|
2984
|
+
exports.layerAccentHover = layerAccentHover$5;
|
|
2887
2985
|
exports.layerActive = layerActive$5;
|
|
2888
2986
|
exports.layerDisabled = layerDisabled$5;
|
|
2889
2987
|
exports.layerHover = layerHover$5;
|