@carbon/themes 11.10.0 → 11.11.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 +598 -140
- package/index.scss +1 -0
- package/lib/index.js +601 -139
- package/package.json +4 -4
- package/scss/_component-tokens.scss +10 -0
- package/scss/generated/_button-tokens.scss +115 -0
- package/scss/generated/_notification-tokens.scss +88 -0
- package/scss/generated/_tag-tokens.scss +219 -0
- package/src/component-tokens/button/index.js +1 -0
- package/src/component-tokens/button/tokens.js +123 -0
- package/src/component-tokens/notification/index.js +1 -0
- package/src/component-tokens/notification/tokens.js +103 -0
- package/src/component-tokens/tag/index.js +1 -0
- package/src/component-tokens/tag/tokens.js +260 -0
- package/src/index.js +17 -1
- package/src/tools.js +40 -0
- package/src/v10/tokens.js +0 -40
- package/umd/index.js +601 -139
package/lib/index.js
CHANGED
|
@@ -540,6 +540,45 @@ function adjustLightness(token, shift) {
|
|
|
540
540
|
function adjustAlpha(token, alpha) {
|
|
541
541
|
return Color__default["default"](token).rgb().alpha(alpha).string();
|
|
542
542
|
}
|
|
543
|
+
var numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
|
|
544
|
+
/**
|
|
545
|
+
* Format a given token into the format expected in CSS/SCSS-based projects.
|
|
546
|
+
* @param {string} token
|
|
547
|
+
* @returns {string}
|
|
548
|
+
*/
|
|
549
|
+
|
|
550
|
+
function formatTokenName(token) {
|
|
551
|
+
var string = '';
|
|
552
|
+
|
|
553
|
+
for (var i = 0; i < token.length; i++) {
|
|
554
|
+
// If we run into a number, we hit the scale step at the end of a token name
|
|
555
|
+
// and can safely truncate the rest of the token
|
|
556
|
+
if (numbers.indexOf(token[i]) !== -1) {
|
|
557
|
+
string += '-' + token.slice(i);
|
|
558
|
+
break;
|
|
559
|
+
} // When encountering an uppercase name, we will want to start adding `-`
|
|
560
|
+
// between words
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
if (token[i] === token[i].toUpperCase()) {
|
|
564
|
+
// Check backwards to see if previous letter was also capitalized, if so
|
|
565
|
+
// we are in a special case like UI where each piece should be connected
|
|
566
|
+
if (token[i - 1] && token[i - 1] === token[i - 1].toUpperCase()) {
|
|
567
|
+
string += token[i].toLowerCase();
|
|
568
|
+
continue;
|
|
569
|
+
} // Otherwise, just concatenate this new part on to the existing string
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
string += '-' + token[i].toLowerCase();
|
|
573
|
+
continue;
|
|
574
|
+
} // By default, we add the current character to the output string
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
string += token[i];
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
return string;
|
|
581
|
+
}
|
|
543
582
|
|
|
544
583
|
/**
|
|
545
584
|
* Copyright IBM Corp. 2018, 2018
|
|
@@ -1795,7 +1834,7 @@ var disabled02$3 = colors$1.gray30;
|
|
|
1795
1834
|
var disabled03$3 = colors$1.gray50;
|
|
1796
1835
|
var highlight$3 = colors$1.blue20;
|
|
1797
1836
|
var decorative01$3 = colors$1.gray20;
|
|
1798
|
-
var buttonSeparator$
|
|
1837
|
+
var buttonSeparator$4 = '#e0e0e0';
|
|
1799
1838
|
var skeleton01$3 = '#e5e5e5';
|
|
1800
1839
|
var skeleton02$3 = colors$1.gray30; // New color tokens
|
|
1801
1840
|
// TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
|
|
@@ -1838,17 +1877,17 @@ var supportInfoInverse$3 = inverseSupport04$3;
|
|
|
1838
1877
|
var overlay$3 = overlay01$3;
|
|
1839
1878
|
var toggleOff$3 = ui04$3;
|
|
1840
1879
|
var shadow$3 = colors$1.rgba(colors$1.black, 0.3);
|
|
1841
|
-
var buttonPrimary$
|
|
1842
|
-
var buttonSecondary$
|
|
1843
|
-
var buttonTertiary$
|
|
1844
|
-
var buttonDangerPrimary$
|
|
1845
|
-
var buttonDangerSecondary$
|
|
1880
|
+
var buttonPrimary$4 = interactive01$3;
|
|
1881
|
+
var buttonSecondary$4 = interactive02$3;
|
|
1882
|
+
var buttonTertiary$4 = interactive03$3;
|
|
1883
|
+
var buttonDangerPrimary$4 = danger01$3;
|
|
1884
|
+
var buttonDangerSecondary$4 = danger02$3;
|
|
1846
1885
|
var backgroundActive$3 = activeUI$3;
|
|
1847
1886
|
var layerActive$3 = activeUI$3;
|
|
1848
|
-
var buttonDangerActive$
|
|
1849
|
-
var buttonPrimaryActive$
|
|
1850
|
-
var buttonSecondaryActive$
|
|
1851
|
-
var buttonTertiaryActive$
|
|
1887
|
+
var buttonDangerActive$4 = activeDanger$3;
|
|
1888
|
+
var buttonPrimaryActive$4 = activePrimary$3;
|
|
1889
|
+
var buttonSecondaryActive$4 = activeSecondary$3;
|
|
1890
|
+
var buttonTertiaryActive$4 = activeTertiary$3;
|
|
1852
1891
|
var focusInset$3 = inverse01$3;
|
|
1853
1892
|
var focusInverse$3 = inverseFocusUi$3;
|
|
1854
1893
|
var backgroundHover$3 = hoverUI$3;
|
|
@@ -1856,10 +1895,10 @@ var layerHover$3 = hoverUI$3;
|
|
|
1856
1895
|
var fieldHover$3 = hoverUI$3;
|
|
1857
1896
|
var backgroundInverseHover$3 = inverseHoverUI$3;
|
|
1858
1897
|
var linkPrimaryHover$3 = hoverPrimaryText$3;
|
|
1859
|
-
var buttonDangerHover$
|
|
1860
|
-
var buttonPrimaryHover$
|
|
1861
|
-
var buttonSecondaryHover$
|
|
1862
|
-
var buttonTertiaryHover$
|
|
1898
|
+
var buttonDangerHover$4 = hoverDanger$3;
|
|
1899
|
+
var buttonPrimaryHover$4 = hoverPrimary$3;
|
|
1900
|
+
var buttonSecondaryHover$4 = hoverSecondary$3;
|
|
1901
|
+
var buttonTertiaryHover$4 = hoverTertiary$3;
|
|
1863
1902
|
var backgroundSelected$3 = selectedUI$3;
|
|
1864
1903
|
var backgroundSelectedHover$3 = hoverSelectedUI$3;
|
|
1865
1904
|
var layerSelected$3 = selectedUI$3;
|
|
@@ -1868,7 +1907,7 @@ var layerSelectedInverse$3 = ui05$3;
|
|
|
1868
1907
|
var borderSubtleSelected$3 = activeUI$3;
|
|
1869
1908
|
var borderDisabled$3 = disabled01$3;
|
|
1870
1909
|
var textDisabled$3 = disabled02$3;
|
|
1871
|
-
var buttonDisabled$
|
|
1910
|
+
var buttonDisabled$4 = disabled02$3;
|
|
1872
1911
|
var iconDisabled$3 = disabled02$3;
|
|
1873
1912
|
var textOnColorDisabled$3 = disabled03$3;
|
|
1874
1913
|
var iconOnColorDisabled$3 = disabled03$3;
|
|
@@ -1948,7 +1987,7 @@ var white = /*#__PURE__*/Object.freeze({
|
|
|
1948
1987
|
disabled03: disabled03$3,
|
|
1949
1988
|
highlight: highlight$3,
|
|
1950
1989
|
decorative01: decorative01$3,
|
|
1951
|
-
buttonSeparator: buttonSeparator$
|
|
1990
|
+
buttonSeparator: buttonSeparator$4,
|
|
1952
1991
|
skeleton01: skeleton01$3,
|
|
1953
1992
|
skeleton02: skeleton02$3,
|
|
1954
1993
|
background: background$4,
|
|
@@ -1989,17 +2028,17 @@ var white = /*#__PURE__*/Object.freeze({
|
|
|
1989
2028
|
overlay: overlay$3,
|
|
1990
2029
|
toggleOff: toggleOff$3,
|
|
1991
2030
|
shadow: shadow$3,
|
|
1992
|
-
buttonPrimary: buttonPrimary$
|
|
1993
|
-
buttonSecondary: buttonSecondary$
|
|
1994
|
-
buttonTertiary: buttonTertiary$
|
|
1995
|
-
buttonDangerPrimary: buttonDangerPrimary$
|
|
1996
|
-
buttonDangerSecondary: buttonDangerSecondary$
|
|
2031
|
+
buttonPrimary: buttonPrimary$4,
|
|
2032
|
+
buttonSecondary: buttonSecondary$4,
|
|
2033
|
+
buttonTertiary: buttonTertiary$4,
|
|
2034
|
+
buttonDangerPrimary: buttonDangerPrimary$4,
|
|
2035
|
+
buttonDangerSecondary: buttonDangerSecondary$4,
|
|
1997
2036
|
backgroundActive: backgroundActive$3,
|
|
1998
2037
|
layerActive: layerActive$3,
|
|
1999
|
-
buttonDangerActive: buttonDangerActive$
|
|
2000
|
-
buttonPrimaryActive: buttonPrimaryActive$
|
|
2001
|
-
buttonSecondaryActive: buttonSecondaryActive$
|
|
2002
|
-
buttonTertiaryActive: buttonTertiaryActive$
|
|
2038
|
+
buttonDangerActive: buttonDangerActive$4,
|
|
2039
|
+
buttonPrimaryActive: buttonPrimaryActive$4,
|
|
2040
|
+
buttonSecondaryActive: buttonSecondaryActive$4,
|
|
2041
|
+
buttonTertiaryActive: buttonTertiaryActive$4,
|
|
2003
2042
|
focusInset: focusInset$3,
|
|
2004
2043
|
focusInverse: focusInverse$3,
|
|
2005
2044
|
backgroundHover: backgroundHover$3,
|
|
@@ -2007,10 +2046,10 @@ var white = /*#__PURE__*/Object.freeze({
|
|
|
2007
2046
|
fieldHover: fieldHover$3,
|
|
2008
2047
|
backgroundInverseHover: backgroundInverseHover$3,
|
|
2009
2048
|
linkPrimaryHover: linkPrimaryHover$3,
|
|
2010
|
-
buttonDangerHover: buttonDangerHover$
|
|
2011
|
-
buttonPrimaryHover: buttonPrimaryHover$
|
|
2012
|
-
buttonSecondaryHover: buttonSecondaryHover$
|
|
2013
|
-
buttonTertiaryHover: buttonTertiaryHover$
|
|
2049
|
+
buttonDangerHover: buttonDangerHover$4,
|
|
2050
|
+
buttonPrimaryHover: buttonPrimaryHover$4,
|
|
2051
|
+
buttonSecondaryHover: buttonSecondaryHover$4,
|
|
2052
|
+
buttonTertiaryHover: buttonTertiaryHover$4,
|
|
2014
2053
|
backgroundSelected: backgroundSelected$3,
|
|
2015
2054
|
backgroundSelectedHover: backgroundSelectedHover$3,
|
|
2016
2055
|
layerSelected: layerSelected$3,
|
|
@@ -2019,7 +2058,7 @@ var white = /*#__PURE__*/Object.freeze({
|
|
|
2019
2058
|
borderSubtleSelected: borderSubtleSelected$3,
|
|
2020
2059
|
borderDisabled: borderDisabled$3,
|
|
2021
2060
|
textDisabled: textDisabled$3,
|
|
2022
|
-
buttonDisabled: buttonDisabled$
|
|
2061
|
+
buttonDisabled: buttonDisabled$4,
|
|
2023
2062
|
iconDisabled: iconDisabled$3,
|
|
2024
2063
|
textOnColorDisabled: textOnColorDisabled$3,
|
|
2025
2064
|
iconOnColorDisabled: iconOnColorDisabled$3,
|
|
@@ -2192,7 +2231,7 @@ var disabled02$2 = colors$1.gray30;
|
|
|
2192
2231
|
var disabled03$2 = colors$1.gray50;
|
|
2193
2232
|
var highlight$2 = colors$1.blue20;
|
|
2194
2233
|
var decorative01$2 = colors$1.gray20;
|
|
2195
|
-
var buttonSeparator$
|
|
2234
|
+
var buttonSeparator$3 = '#e0e0e0';
|
|
2196
2235
|
var skeleton01$2 = '#e5e5e5';
|
|
2197
2236
|
var skeleton02$2 = colors$1.gray30; // New color tokens
|
|
2198
2237
|
// TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
|
|
@@ -2235,17 +2274,17 @@ var supportInfoInverse$2 = inverseSupport04$2;
|
|
|
2235
2274
|
var overlay$2 = overlay01$2;
|
|
2236
2275
|
var toggleOff$2 = ui04$2;
|
|
2237
2276
|
var shadow$2 = colors$1.rgba(colors$1.black, 0.3);
|
|
2238
|
-
var buttonPrimary$
|
|
2239
|
-
var buttonSecondary$
|
|
2240
|
-
var buttonTertiary$
|
|
2241
|
-
var buttonDangerPrimary$
|
|
2242
|
-
var buttonDangerSecondary$
|
|
2277
|
+
var buttonPrimary$3 = interactive01$2;
|
|
2278
|
+
var buttonSecondary$3 = interactive02$2;
|
|
2279
|
+
var buttonTertiary$3 = interactive03$2;
|
|
2280
|
+
var buttonDangerPrimary$3 = danger01$2;
|
|
2281
|
+
var buttonDangerSecondary$3 = danger02$2;
|
|
2243
2282
|
var backgroundActive$2 = activeUI$2;
|
|
2244
2283
|
var layerActive$2 = activeUI$2;
|
|
2245
|
-
var buttonDangerActive$
|
|
2246
|
-
var buttonPrimaryActive$
|
|
2247
|
-
var buttonSecondaryActive$
|
|
2248
|
-
var buttonTertiaryActive$
|
|
2284
|
+
var buttonDangerActive$3 = activeDanger$2;
|
|
2285
|
+
var buttonPrimaryActive$3 = activePrimary$2;
|
|
2286
|
+
var buttonSecondaryActive$3 = activeSecondary$2;
|
|
2287
|
+
var buttonTertiaryActive$3 = activeTertiary$2;
|
|
2249
2288
|
var focusInset$2 = inverse01$2;
|
|
2250
2289
|
var focusInverse$2 = inverseFocusUi$2;
|
|
2251
2290
|
var backgroundHover$2 = hoverUI$2;
|
|
@@ -2253,10 +2292,10 @@ var layerHover$2 = hoverUI$2;
|
|
|
2253
2292
|
var fieldHover$2 = hoverUI$2;
|
|
2254
2293
|
var backgroundInverseHover$2 = inverseHoverUI$2;
|
|
2255
2294
|
var linkPrimaryHover$2 = hoverPrimaryText$2;
|
|
2256
|
-
var buttonDangerHover$
|
|
2257
|
-
var buttonPrimaryHover$
|
|
2258
|
-
var buttonSecondaryHover$
|
|
2259
|
-
var buttonTertiaryHover$
|
|
2295
|
+
var buttonDangerHover$3 = hoverDanger$2;
|
|
2296
|
+
var buttonPrimaryHover$3 = hoverPrimary$2;
|
|
2297
|
+
var buttonSecondaryHover$3 = hoverSecondary$2;
|
|
2298
|
+
var buttonTertiaryHover$3 = hoverTertiary$2;
|
|
2260
2299
|
var backgroundSelected$2 = selectedUI$2;
|
|
2261
2300
|
var backgroundSelectedHover$2 = hoverSelectedUI$2;
|
|
2262
2301
|
var layerSelected$2 = selectedUI$2;
|
|
@@ -2265,7 +2304,7 @@ var layerSelectedInverse$2 = ui05$2;
|
|
|
2265
2304
|
var borderSubtleSelected$2 = activeUI$2;
|
|
2266
2305
|
var borderDisabled$2 = disabled01$2;
|
|
2267
2306
|
var textDisabled$2 = disabled02$2;
|
|
2268
|
-
var buttonDisabled$
|
|
2307
|
+
var buttonDisabled$3 = disabled02$2;
|
|
2269
2308
|
var iconDisabled$2 = disabled02$2;
|
|
2270
2309
|
var textOnColorDisabled$2 = disabled03$2;
|
|
2271
2310
|
var iconOnColorDisabled$2 = disabled03$2;
|
|
@@ -2345,7 +2384,7 @@ var g10 = /*#__PURE__*/Object.freeze({
|
|
|
2345
2384
|
disabled03: disabled03$2,
|
|
2346
2385
|
highlight: highlight$2,
|
|
2347
2386
|
decorative01: decorative01$2,
|
|
2348
|
-
buttonSeparator: buttonSeparator$
|
|
2387
|
+
buttonSeparator: buttonSeparator$3,
|
|
2349
2388
|
skeleton01: skeleton01$2,
|
|
2350
2389
|
skeleton02: skeleton02$2,
|
|
2351
2390
|
background: background$3,
|
|
@@ -2386,17 +2425,17 @@ var g10 = /*#__PURE__*/Object.freeze({
|
|
|
2386
2425
|
overlay: overlay$2,
|
|
2387
2426
|
toggleOff: toggleOff$2,
|
|
2388
2427
|
shadow: shadow$2,
|
|
2389
|
-
buttonPrimary: buttonPrimary$
|
|
2390
|
-
buttonSecondary: buttonSecondary$
|
|
2391
|
-
buttonTertiary: buttonTertiary$
|
|
2392
|
-
buttonDangerPrimary: buttonDangerPrimary$
|
|
2393
|
-
buttonDangerSecondary: buttonDangerSecondary$
|
|
2428
|
+
buttonPrimary: buttonPrimary$3,
|
|
2429
|
+
buttonSecondary: buttonSecondary$3,
|
|
2430
|
+
buttonTertiary: buttonTertiary$3,
|
|
2431
|
+
buttonDangerPrimary: buttonDangerPrimary$3,
|
|
2432
|
+
buttonDangerSecondary: buttonDangerSecondary$3,
|
|
2394
2433
|
backgroundActive: backgroundActive$2,
|
|
2395
2434
|
layerActive: layerActive$2,
|
|
2396
|
-
buttonDangerActive: buttonDangerActive$
|
|
2397
|
-
buttonPrimaryActive: buttonPrimaryActive$
|
|
2398
|
-
buttonSecondaryActive: buttonSecondaryActive$
|
|
2399
|
-
buttonTertiaryActive: buttonTertiaryActive$
|
|
2435
|
+
buttonDangerActive: buttonDangerActive$3,
|
|
2436
|
+
buttonPrimaryActive: buttonPrimaryActive$3,
|
|
2437
|
+
buttonSecondaryActive: buttonSecondaryActive$3,
|
|
2438
|
+
buttonTertiaryActive: buttonTertiaryActive$3,
|
|
2400
2439
|
focusInset: focusInset$2,
|
|
2401
2440
|
focusInverse: focusInverse$2,
|
|
2402
2441
|
backgroundHover: backgroundHover$2,
|
|
@@ -2404,10 +2443,10 @@ var g10 = /*#__PURE__*/Object.freeze({
|
|
|
2404
2443
|
fieldHover: fieldHover$2,
|
|
2405
2444
|
backgroundInverseHover: backgroundInverseHover$2,
|
|
2406
2445
|
linkPrimaryHover: linkPrimaryHover$2,
|
|
2407
|
-
buttonDangerHover: buttonDangerHover$
|
|
2408
|
-
buttonPrimaryHover: buttonPrimaryHover$
|
|
2409
|
-
buttonSecondaryHover: buttonSecondaryHover$
|
|
2410
|
-
buttonTertiaryHover: buttonTertiaryHover$
|
|
2446
|
+
buttonDangerHover: buttonDangerHover$3,
|
|
2447
|
+
buttonPrimaryHover: buttonPrimaryHover$3,
|
|
2448
|
+
buttonSecondaryHover: buttonSecondaryHover$3,
|
|
2449
|
+
buttonTertiaryHover: buttonTertiaryHover$3,
|
|
2411
2450
|
backgroundSelected: backgroundSelected$2,
|
|
2412
2451
|
backgroundSelectedHover: backgroundSelectedHover$2,
|
|
2413
2452
|
layerSelected: layerSelected$2,
|
|
@@ -2416,7 +2455,7 @@ var g10 = /*#__PURE__*/Object.freeze({
|
|
|
2416
2455
|
borderSubtleSelected: borderSubtleSelected$2,
|
|
2417
2456
|
borderDisabled: borderDisabled$2,
|
|
2418
2457
|
textDisabled: textDisabled$2,
|
|
2419
|
-
buttonDisabled: buttonDisabled$
|
|
2458
|
+
buttonDisabled: buttonDisabled$3,
|
|
2420
2459
|
iconDisabled: iconDisabled$2,
|
|
2421
2460
|
textOnColorDisabled: textOnColorDisabled$2,
|
|
2422
2461
|
iconOnColorDisabled: iconOnColorDisabled$2,
|
|
@@ -2589,7 +2628,7 @@ var disabled02$1 = colors$1.gray60;
|
|
|
2589
2628
|
var disabled03$1 = colors$1.gray40;
|
|
2590
2629
|
var highlight$1 = colors$1.blue70;
|
|
2591
2630
|
var decorative01$1 = colors$1.gray60;
|
|
2592
|
-
var buttonSeparator$
|
|
2631
|
+
var buttonSeparator$2 = '#161616';
|
|
2593
2632
|
var skeleton01$1 = '#353535';
|
|
2594
2633
|
var skeleton02$1 = colors$1.gray70; // New color tokens
|
|
2595
2634
|
// TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
|
|
@@ -2632,17 +2671,17 @@ var supportInfoInverse$1 = inverseSupport04$1;
|
|
|
2632
2671
|
var overlay$1 = overlay01$1;
|
|
2633
2672
|
var toggleOff$1 = ui04$1;
|
|
2634
2673
|
var shadow$1 = colors$1.rgba(colors$1.black, 0.8);
|
|
2635
|
-
var buttonPrimary$
|
|
2636
|
-
var buttonSecondary$
|
|
2637
|
-
var buttonTertiary$
|
|
2638
|
-
var buttonDangerPrimary$
|
|
2639
|
-
var buttonDangerSecondary$
|
|
2674
|
+
var buttonPrimary$2 = interactive01$1;
|
|
2675
|
+
var buttonSecondary$2 = interactive02$1;
|
|
2676
|
+
var buttonTertiary$2 = interactive03$1;
|
|
2677
|
+
var buttonDangerPrimary$2 = danger01$1;
|
|
2678
|
+
var buttonDangerSecondary$2 = danger02$1;
|
|
2640
2679
|
var backgroundActive$1 = activeUI$1;
|
|
2641
2680
|
var layerActive$1 = activeUI$1;
|
|
2642
|
-
var buttonDangerActive$
|
|
2643
|
-
var buttonPrimaryActive$
|
|
2644
|
-
var buttonSecondaryActive$
|
|
2645
|
-
var buttonTertiaryActive$
|
|
2681
|
+
var buttonDangerActive$2 = activeDanger$1;
|
|
2682
|
+
var buttonPrimaryActive$2 = activePrimary$1;
|
|
2683
|
+
var buttonSecondaryActive$2 = activeSecondary$1;
|
|
2684
|
+
var buttonTertiaryActive$2 = activeTertiary$1;
|
|
2646
2685
|
var focusInset$1 = inverse01$1;
|
|
2647
2686
|
var focusInverse$1 = inverseFocusUi$1;
|
|
2648
2687
|
var backgroundHover$1 = hoverUI$1;
|
|
@@ -2650,10 +2689,10 @@ var layerHover$1 = hoverUI$1;
|
|
|
2650
2689
|
var fieldHover$1 = hoverUI$1;
|
|
2651
2690
|
var backgroundInverseHover$1 = inverseHoverUI$1;
|
|
2652
2691
|
var linkPrimaryHover$1 = hoverPrimaryText$1;
|
|
2653
|
-
var buttonDangerHover$
|
|
2654
|
-
var buttonPrimaryHover$
|
|
2655
|
-
var buttonSecondaryHover$
|
|
2656
|
-
var buttonTertiaryHover$
|
|
2692
|
+
var buttonDangerHover$2 = hoverDanger$1;
|
|
2693
|
+
var buttonPrimaryHover$2 = hoverPrimary$1;
|
|
2694
|
+
var buttonSecondaryHover$2 = hoverSecondary$1;
|
|
2695
|
+
var buttonTertiaryHover$2 = hoverTertiary$1;
|
|
2657
2696
|
var backgroundSelected$1 = selectedUI$1;
|
|
2658
2697
|
var backgroundSelectedHover$1 = hoverSelectedUI$1;
|
|
2659
2698
|
var layerSelected$1 = selectedUI$1;
|
|
@@ -2662,7 +2701,7 @@ var layerSelectedInverse$1 = ui05$1;
|
|
|
2662
2701
|
var borderSubtleSelected$1 = activeUI$1;
|
|
2663
2702
|
var borderDisabled$1 = disabled01$1;
|
|
2664
2703
|
var textDisabled$1 = disabled02$1;
|
|
2665
|
-
var buttonDisabled$
|
|
2704
|
+
var buttonDisabled$2 = disabled02$1;
|
|
2666
2705
|
var iconDisabled$1 = disabled02$1;
|
|
2667
2706
|
var textOnColorDisabled$1 = disabled03$1;
|
|
2668
2707
|
var iconOnColorDisabled$1 = disabled03$1;
|
|
@@ -2742,7 +2781,7 @@ var g90 = /*#__PURE__*/Object.freeze({
|
|
|
2742
2781
|
disabled03: disabled03$1,
|
|
2743
2782
|
highlight: highlight$1,
|
|
2744
2783
|
decorative01: decorative01$1,
|
|
2745
|
-
buttonSeparator: buttonSeparator$
|
|
2784
|
+
buttonSeparator: buttonSeparator$2,
|
|
2746
2785
|
skeleton01: skeleton01$1,
|
|
2747
2786
|
skeleton02: skeleton02$1,
|
|
2748
2787
|
background: background$2,
|
|
@@ -2783,17 +2822,17 @@ var g90 = /*#__PURE__*/Object.freeze({
|
|
|
2783
2822
|
overlay: overlay$1,
|
|
2784
2823
|
toggleOff: toggleOff$1,
|
|
2785
2824
|
shadow: shadow$1,
|
|
2786
|
-
buttonPrimary: buttonPrimary$
|
|
2787
|
-
buttonSecondary: buttonSecondary$
|
|
2788
|
-
buttonTertiary: buttonTertiary$
|
|
2789
|
-
buttonDangerPrimary: buttonDangerPrimary$
|
|
2790
|
-
buttonDangerSecondary: buttonDangerSecondary$
|
|
2825
|
+
buttonPrimary: buttonPrimary$2,
|
|
2826
|
+
buttonSecondary: buttonSecondary$2,
|
|
2827
|
+
buttonTertiary: buttonTertiary$2,
|
|
2828
|
+
buttonDangerPrimary: buttonDangerPrimary$2,
|
|
2829
|
+
buttonDangerSecondary: buttonDangerSecondary$2,
|
|
2791
2830
|
backgroundActive: backgroundActive$1,
|
|
2792
2831
|
layerActive: layerActive$1,
|
|
2793
|
-
buttonDangerActive: buttonDangerActive$
|
|
2794
|
-
buttonPrimaryActive: buttonPrimaryActive$
|
|
2795
|
-
buttonSecondaryActive: buttonSecondaryActive$
|
|
2796
|
-
buttonTertiaryActive: buttonTertiaryActive$
|
|
2832
|
+
buttonDangerActive: buttonDangerActive$2,
|
|
2833
|
+
buttonPrimaryActive: buttonPrimaryActive$2,
|
|
2834
|
+
buttonSecondaryActive: buttonSecondaryActive$2,
|
|
2835
|
+
buttonTertiaryActive: buttonTertiaryActive$2,
|
|
2797
2836
|
focusInset: focusInset$1,
|
|
2798
2837
|
focusInverse: focusInverse$1,
|
|
2799
2838
|
backgroundHover: backgroundHover$1,
|
|
@@ -2801,10 +2840,10 @@ var g90 = /*#__PURE__*/Object.freeze({
|
|
|
2801
2840
|
fieldHover: fieldHover$1,
|
|
2802
2841
|
backgroundInverseHover: backgroundInverseHover$1,
|
|
2803
2842
|
linkPrimaryHover: linkPrimaryHover$1,
|
|
2804
|
-
buttonDangerHover: buttonDangerHover$
|
|
2805
|
-
buttonPrimaryHover: buttonPrimaryHover$
|
|
2806
|
-
buttonSecondaryHover: buttonSecondaryHover$
|
|
2807
|
-
buttonTertiaryHover: buttonTertiaryHover$
|
|
2843
|
+
buttonDangerHover: buttonDangerHover$2,
|
|
2844
|
+
buttonPrimaryHover: buttonPrimaryHover$2,
|
|
2845
|
+
buttonSecondaryHover: buttonSecondaryHover$2,
|
|
2846
|
+
buttonTertiaryHover: buttonTertiaryHover$2,
|
|
2808
2847
|
backgroundSelected: backgroundSelected$1,
|
|
2809
2848
|
backgroundSelectedHover: backgroundSelectedHover$1,
|
|
2810
2849
|
layerSelected: layerSelected$1,
|
|
@@ -2813,7 +2852,7 @@ var g90 = /*#__PURE__*/Object.freeze({
|
|
|
2813
2852
|
borderSubtleSelected: borderSubtleSelected$1,
|
|
2814
2853
|
borderDisabled: borderDisabled$1,
|
|
2815
2854
|
textDisabled: textDisabled$1,
|
|
2816
|
-
buttonDisabled: buttonDisabled$
|
|
2855
|
+
buttonDisabled: buttonDisabled$2,
|
|
2817
2856
|
iconDisabled: iconDisabled$1,
|
|
2818
2857
|
textOnColorDisabled: textOnColorDisabled$1,
|
|
2819
2858
|
iconOnColorDisabled: iconOnColorDisabled$1,
|
|
@@ -2986,7 +3025,7 @@ var disabled02 = colors$1.gray70;
|
|
|
2986
3025
|
var disabled03 = colors$1.gray50;
|
|
2987
3026
|
var highlight = colors$1.blue80;
|
|
2988
3027
|
var decorative01 = colors$1.gray70;
|
|
2989
|
-
var buttonSeparator = '#161616';
|
|
3028
|
+
var buttonSeparator$1 = '#161616';
|
|
2990
3029
|
var skeleton01 = '#353535';
|
|
2991
3030
|
var skeleton02 = colors$1.gray70; // New color tokens
|
|
2992
3031
|
// TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
|
|
@@ -3029,17 +3068,17 @@ var supportInfoInverse = inverseSupport04;
|
|
|
3029
3068
|
var overlay = overlay01;
|
|
3030
3069
|
var toggleOff = ui04;
|
|
3031
3070
|
var shadow = colors$1.rgba(colors$1.black, 0.8);
|
|
3032
|
-
var buttonPrimary = interactive01;
|
|
3033
|
-
var buttonSecondary = interactive02;
|
|
3034
|
-
var buttonTertiary = interactive03;
|
|
3035
|
-
var buttonDangerPrimary = danger01;
|
|
3036
|
-
var buttonDangerSecondary = danger02;
|
|
3071
|
+
var buttonPrimary$1 = interactive01;
|
|
3072
|
+
var buttonSecondary$1 = interactive02;
|
|
3073
|
+
var buttonTertiary$1 = interactive03;
|
|
3074
|
+
var buttonDangerPrimary$1 = danger01;
|
|
3075
|
+
var buttonDangerSecondary$1 = danger02;
|
|
3037
3076
|
var backgroundActive = activeUI;
|
|
3038
3077
|
var layerActive = activeUI;
|
|
3039
|
-
var buttonDangerActive = activeDanger;
|
|
3040
|
-
var buttonPrimaryActive = activePrimary;
|
|
3041
|
-
var buttonSecondaryActive = activeSecondary;
|
|
3042
|
-
var buttonTertiaryActive = activeTertiary;
|
|
3078
|
+
var buttonDangerActive$1 = activeDanger;
|
|
3079
|
+
var buttonPrimaryActive$1 = activePrimary;
|
|
3080
|
+
var buttonSecondaryActive$1 = activeSecondary;
|
|
3081
|
+
var buttonTertiaryActive$1 = activeTertiary;
|
|
3043
3082
|
var focusInset = inverse01;
|
|
3044
3083
|
var focusInverse = inverseFocusUi;
|
|
3045
3084
|
var backgroundHover = hoverUI;
|
|
@@ -3047,10 +3086,10 @@ var layerHover = hoverUI;
|
|
|
3047
3086
|
var fieldHover = hoverUI;
|
|
3048
3087
|
var backgroundInverseHover = inverseHoverUI;
|
|
3049
3088
|
var linkPrimaryHover = hoverPrimaryText;
|
|
3050
|
-
var buttonDangerHover = hoverDanger;
|
|
3051
|
-
var buttonPrimaryHover = hoverPrimary;
|
|
3052
|
-
var buttonSecondaryHover = hoverSecondary;
|
|
3053
|
-
var buttonTertiaryHover = hoverTertiary;
|
|
3089
|
+
var buttonDangerHover$1 = hoverDanger;
|
|
3090
|
+
var buttonPrimaryHover$1 = hoverPrimary;
|
|
3091
|
+
var buttonSecondaryHover$1 = hoverSecondary;
|
|
3092
|
+
var buttonTertiaryHover$1 = hoverTertiary;
|
|
3054
3093
|
var backgroundSelected = selectedUI;
|
|
3055
3094
|
var backgroundSelectedHover = hoverSelectedUI;
|
|
3056
3095
|
var layerSelected = selectedUI;
|
|
@@ -3059,7 +3098,7 @@ var layerSelectedInverse = ui05;
|
|
|
3059
3098
|
var borderSubtleSelected = activeUI;
|
|
3060
3099
|
var borderDisabled = disabled01;
|
|
3061
3100
|
var textDisabled = disabled02;
|
|
3062
|
-
var buttonDisabled = disabled02;
|
|
3101
|
+
var buttonDisabled$1 = disabled02;
|
|
3063
3102
|
var iconDisabled = disabled02;
|
|
3064
3103
|
var textOnColorDisabled = disabled03;
|
|
3065
3104
|
var iconOnColorDisabled = disabled03;
|
|
@@ -3139,7 +3178,7 @@ var g100 = /*#__PURE__*/Object.freeze({
|
|
|
3139
3178
|
disabled03: disabled03,
|
|
3140
3179
|
highlight: highlight,
|
|
3141
3180
|
decorative01: decorative01,
|
|
3142
|
-
buttonSeparator: buttonSeparator,
|
|
3181
|
+
buttonSeparator: buttonSeparator$1,
|
|
3143
3182
|
skeleton01: skeleton01,
|
|
3144
3183
|
skeleton02: skeleton02,
|
|
3145
3184
|
background: background$1,
|
|
@@ -3180,17 +3219,17 @@ var g100 = /*#__PURE__*/Object.freeze({
|
|
|
3180
3219
|
overlay: overlay,
|
|
3181
3220
|
toggleOff: toggleOff,
|
|
3182
3221
|
shadow: shadow,
|
|
3183
|
-
buttonPrimary: buttonPrimary,
|
|
3184
|
-
buttonSecondary: buttonSecondary,
|
|
3185
|
-
buttonTertiary: buttonTertiary,
|
|
3186
|
-
buttonDangerPrimary: buttonDangerPrimary,
|
|
3187
|
-
buttonDangerSecondary: buttonDangerSecondary,
|
|
3222
|
+
buttonPrimary: buttonPrimary$1,
|
|
3223
|
+
buttonSecondary: buttonSecondary$1,
|
|
3224
|
+
buttonTertiary: buttonTertiary$1,
|
|
3225
|
+
buttonDangerPrimary: buttonDangerPrimary$1,
|
|
3226
|
+
buttonDangerSecondary: buttonDangerSecondary$1,
|
|
3188
3227
|
backgroundActive: backgroundActive,
|
|
3189
3228
|
layerActive: layerActive,
|
|
3190
|
-
buttonDangerActive: buttonDangerActive,
|
|
3191
|
-
buttonPrimaryActive: buttonPrimaryActive,
|
|
3192
|
-
buttonSecondaryActive: buttonSecondaryActive,
|
|
3193
|
-
buttonTertiaryActive: buttonTertiaryActive,
|
|
3229
|
+
buttonDangerActive: buttonDangerActive$1,
|
|
3230
|
+
buttonPrimaryActive: buttonPrimaryActive$1,
|
|
3231
|
+
buttonSecondaryActive: buttonSecondaryActive$1,
|
|
3232
|
+
buttonTertiaryActive: buttonTertiaryActive$1,
|
|
3194
3233
|
focusInset: focusInset,
|
|
3195
3234
|
focusInverse: focusInverse,
|
|
3196
3235
|
backgroundHover: backgroundHover,
|
|
@@ -3198,10 +3237,10 @@ var g100 = /*#__PURE__*/Object.freeze({
|
|
|
3198
3237
|
fieldHover: fieldHover,
|
|
3199
3238
|
backgroundInverseHover: backgroundInverseHover,
|
|
3200
3239
|
linkPrimaryHover: linkPrimaryHover,
|
|
3201
|
-
buttonDangerHover: buttonDangerHover,
|
|
3202
|
-
buttonPrimaryHover: buttonPrimaryHover,
|
|
3203
|
-
buttonSecondaryHover: buttonSecondaryHover,
|
|
3204
|
-
buttonTertiaryHover: buttonTertiaryHover,
|
|
3240
|
+
buttonDangerHover: buttonDangerHover$1,
|
|
3241
|
+
buttonPrimaryHover: buttonPrimaryHover$1,
|
|
3242
|
+
buttonSecondaryHover: buttonSecondaryHover$1,
|
|
3243
|
+
buttonTertiaryHover: buttonTertiaryHover$1,
|
|
3205
3244
|
backgroundSelected: backgroundSelected,
|
|
3206
3245
|
backgroundSelectedHover: backgroundSelectedHover,
|
|
3207
3246
|
layerSelected: layerSelected,
|
|
@@ -3210,7 +3249,7 @@ var g100 = /*#__PURE__*/Object.freeze({
|
|
|
3210
3249
|
borderSubtleSelected: borderSubtleSelected,
|
|
3211
3250
|
borderDisabled: borderDisabled,
|
|
3212
3251
|
textDisabled: textDisabled,
|
|
3213
|
-
buttonDisabled: buttonDisabled,
|
|
3252
|
+
buttonDisabled: buttonDisabled$1,
|
|
3214
3253
|
iconDisabled: iconDisabled,
|
|
3215
3254
|
textOnColorDisabled: textOnColorDisabled,
|
|
3216
3255
|
iconOnColorDisabled: iconOnColorDisabled,
|
|
@@ -3327,7 +3366,7 @@ var colors = [// Core
|
|
|
3327
3366
|
// TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
|
|
3328
3367
|
'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', 'shadow', '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', 'borderDisabled', 'textDisabled', 'buttonDisabled', 'iconDisabled', 'textOnColorDisabled', 'iconOnColorDisabled', 'layerSelectedDisabled', 'skeletonBackground', 'skeletonElement', // Deprecated
|
|
3329
3368
|
'brand01', 'brand02', 'brand03', 'active01', 'hoverField', 'danger'];
|
|
3330
|
-
var tokens = {
|
|
3369
|
+
var tokens$3 = {
|
|
3331
3370
|
colors: colors,
|
|
3332
3371
|
type: type$2.unstable_tokens,
|
|
3333
3372
|
layout: layout$2.unstable_tokens
|
|
@@ -3346,14 +3385,14 @@ var themes$1 = {
|
|
|
3346
3385
|
g100: g100
|
|
3347
3386
|
};
|
|
3348
3387
|
|
|
3349
|
-
var index = /*#__PURE__*/Object.freeze({
|
|
3388
|
+
var index$3 = /*#__PURE__*/Object.freeze({
|
|
3350
3389
|
__proto__: null,
|
|
3351
3390
|
white: white,
|
|
3352
3391
|
g10: g10,
|
|
3353
3392
|
g90: g90,
|
|
3354
3393
|
g100: g100,
|
|
3355
3394
|
themes: themes$1,
|
|
3356
|
-
tokens: tokens,
|
|
3395
|
+
tokens: tokens$3,
|
|
3357
3396
|
caption01: type$2.caption01,
|
|
3358
3397
|
caption02: type$2.caption02,
|
|
3359
3398
|
label01: type$2.label01,
|
|
@@ -3505,7 +3544,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
3505
3544
|
disabled03: disabled03$3,
|
|
3506
3545
|
highlight: highlight$3,
|
|
3507
3546
|
decorative01: decorative01$3,
|
|
3508
|
-
buttonSeparator: buttonSeparator$
|
|
3547
|
+
buttonSeparator: buttonSeparator$4,
|
|
3509
3548
|
skeleton01: skeleton01$3,
|
|
3510
3549
|
skeleton02: skeleton02$3,
|
|
3511
3550
|
background: background$4,
|
|
@@ -3546,17 +3585,17 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
3546
3585
|
overlay: overlay$3,
|
|
3547
3586
|
toggleOff: toggleOff$3,
|
|
3548
3587
|
shadow: shadow$3,
|
|
3549
|
-
buttonPrimary: buttonPrimary$
|
|
3550
|
-
buttonSecondary: buttonSecondary$
|
|
3551
|
-
buttonTertiary: buttonTertiary$
|
|
3552
|
-
buttonDangerPrimary: buttonDangerPrimary$
|
|
3553
|
-
buttonDangerSecondary: buttonDangerSecondary$
|
|
3588
|
+
buttonPrimary: buttonPrimary$4,
|
|
3589
|
+
buttonSecondary: buttonSecondary$4,
|
|
3590
|
+
buttonTertiary: buttonTertiary$4,
|
|
3591
|
+
buttonDangerPrimary: buttonDangerPrimary$4,
|
|
3592
|
+
buttonDangerSecondary: buttonDangerSecondary$4,
|
|
3554
3593
|
backgroundActive: backgroundActive$3,
|
|
3555
3594
|
layerActive: layerActive$3,
|
|
3556
|
-
buttonDangerActive: buttonDangerActive$
|
|
3557
|
-
buttonPrimaryActive: buttonPrimaryActive$
|
|
3558
|
-
buttonSecondaryActive: buttonSecondaryActive$
|
|
3559
|
-
buttonTertiaryActive: buttonTertiaryActive$
|
|
3595
|
+
buttonDangerActive: buttonDangerActive$4,
|
|
3596
|
+
buttonPrimaryActive: buttonPrimaryActive$4,
|
|
3597
|
+
buttonSecondaryActive: buttonSecondaryActive$4,
|
|
3598
|
+
buttonTertiaryActive: buttonTertiaryActive$4,
|
|
3560
3599
|
focusInset: focusInset$3,
|
|
3561
3600
|
focusInverse: focusInverse$3,
|
|
3562
3601
|
backgroundHover: backgroundHover$3,
|
|
@@ -3564,10 +3603,10 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
3564
3603
|
fieldHover: fieldHover$3,
|
|
3565
3604
|
backgroundInverseHover: backgroundInverseHover$3,
|
|
3566
3605
|
linkPrimaryHover: linkPrimaryHover$3,
|
|
3567
|
-
buttonDangerHover: buttonDangerHover$
|
|
3568
|
-
buttonPrimaryHover: buttonPrimaryHover$
|
|
3569
|
-
buttonSecondaryHover: buttonSecondaryHover$
|
|
3570
|
-
buttonTertiaryHover: buttonTertiaryHover$
|
|
3606
|
+
buttonDangerHover: buttonDangerHover$4,
|
|
3607
|
+
buttonPrimaryHover: buttonPrimaryHover$4,
|
|
3608
|
+
buttonSecondaryHover: buttonSecondaryHover$4,
|
|
3609
|
+
buttonTertiaryHover: buttonTertiaryHover$4,
|
|
3571
3610
|
backgroundSelected: backgroundSelected$3,
|
|
3572
3611
|
backgroundSelectedHover: backgroundSelectedHover$3,
|
|
3573
3612
|
layerSelected: layerSelected$3,
|
|
@@ -3576,7 +3615,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
3576
3615
|
borderSubtleSelected: borderSubtleSelected$3,
|
|
3577
3616
|
borderDisabled: borderDisabled$3,
|
|
3578
3617
|
textDisabled: textDisabled$3,
|
|
3579
|
-
buttonDisabled: buttonDisabled$
|
|
3618
|
+
buttonDisabled: buttonDisabled$4,
|
|
3580
3619
|
iconDisabled: iconDisabled$3,
|
|
3581
3620
|
textOnColorDisabled: textOnColorDisabled$3,
|
|
3582
3621
|
iconOnColorDisabled: iconOnColorDisabled$3,
|
|
@@ -3591,6 +3630,425 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
3591
3630
|
danger: danger$3
|
|
3592
3631
|
});
|
|
3593
3632
|
|
|
3633
|
+
var buttonSeparator = {
|
|
3634
|
+
fallback: '#e0e0e0',
|
|
3635
|
+
whiteTheme: '#e0e0e0',
|
|
3636
|
+
g10: '#e0e0e0',
|
|
3637
|
+
g90: '#161616',
|
|
3638
|
+
g100: '#161616'
|
|
3639
|
+
};
|
|
3640
|
+
var buttonPrimary = {
|
|
3641
|
+
whiteTheme: '#0f62fe',
|
|
3642
|
+
g10: '#0f62fe',
|
|
3643
|
+
g90: '#0f62fe',
|
|
3644
|
+
g100: '#0f62fe'
|
|
3645
|
+
};
|
|
3646
|
+
var buttonSecondary = {
|
|
3647
|
+
whiteTheme: '#393939',
|
|
3648
|
+
g10: '#393939',
|
|
3649
|
+
g90: '#6f6f6f',
|
|
3650
|
+
g100: '#6f6f6f'
|
|
3651
|
+
};
|
|
3652
|
+
var buttonTertiary = {
|
|
3653
|
+
whiteTheme: '#0f62fe',
|
|
3654
|
+
g10: '#0f62fe',
|
|
3655
|
+
g90: '#ffffff',
|
|
3656
|
+
g100: '#ffffff'
|
|
3657
|
+
};
|
|
3658
|
+
var buttonDangerPrimary = {
|
|
3659
|
+
whiteTheme: '#da1e28',
|
|
3660
|
+
g10: '#da1e28',
|
|
3661
|
+
g90: '#da1e28',
|
|
3662
|
+
g100: '#da1e28'
|
|
3663
|
+
};
|
|
3664
|
+
var buttonDangerSecondary = {
|
|
3665
|
+
whiteTheme: '#da1e28',
|
|
3666
|
+
g10: '#da1e28',
|
|
3667
|
+
g90: '#ff8389',
|
|
3668
|
+
g100: '#fa4d56'
|
|
3669
|
+
};
|
|
3670
|
+
var buttonDangerActive = {
|
|
3671
|
+
whiteTheme: '#750e13',
|
|
3672
|
+
g10: '#750e13',
|
|
3673
|
+
g90: '#750e13',
|
|
3674
|
+
g100: '#750e13'
|
|
3675
|
+
};
|
|
3676
|
+
var buttonPrimaryActive = {
|
|
3677
|
+
whiteTheme: '#002d9c',
|
|
3678
|
+
g10: '#002d9c',
|
|
3679
|
+
g90: '#002d9c',
|
|
3680
|
+
g100: '#002d9c'
|
|
3681
|
+
};
|
|
3682
|
+
var buttonSecondaryActive = {
|
|
3683
|
+
whiteTheme: '#6f6f6f',
|
|
3684
|
+
g10: '#6f6f6f',
|
|
3685
|
+
g90: '#393939',
|
|
3686
|
+
g100: '#393939'
|
|
3687
|
+
};
|
|
3688
|
+
var buttonTertiaryActive = {
|
|
3689
|
+
whiteTheme: '#002d9c',
|
|
3690
|
+
g10: '#002d9c',
|
|
3691
|
+
g90: '#c6c6c6',
|
|
3692
|
+
g100: '#c6c6c6'
|
|
3693
|
+
};
|
|
3694
|
+
var buttonDangerHover = {
|
|
3695
|
+
whiteTheme: '#b81921',
|
|
3696
|
+
g10: '#b81921',
|
|
3697
|
+
g90: '#b81921',
|
|
3698
|
+
g100: '#b81921'
|
|
3699
|
+
};
|
|
3700
|
+
var buttonPrimaryHover = {
|
|
3701
|
+
whiteTheme: '#0050e6',
|
|
3702
|
+
g10: '#0050e6',
|
|
3703
|
+
g90: '#0050e6',
|
|
3704
|
+
g100: '#0050e6'
|
|
3705
|
+
};
|
|
3706
|
+
var buttonSecondaryHover = {
|
|
3707
|
+
whiteTheme: '#474747',
|
|
3708
|
+
g10: '#474747',
|
|
3709
|
+
g90: '#5e5e5e',
|
|
3710
|
+
g100: '#5e5e5e'
|
|
3711
|
+
};
|
|
3712
|
+
var buttonTertiaryHover = {
|
|
3713
|
+
whiteTheme: '#0050e6',
|
|
3714
|
+
g10: '#0050e6',
|
|
3715
|
+
g90: '#f4f4f4',
|
|
3716
|
+
g100: '#f4f4f4'
|
|
3717
|
+
};
|
|
3718
|
+
var buttonDisabled = {
|
|
3719
|
+
whiteTheme: '#c6c6c6',
|
|
3720
|
+
g10: '#c6c6c6',
|
|
3721
|
+
g90: 'rgb(141 141 141 / 30%)',
|
|
3722
|
+
g100: 'rgb(141 141 141 / 30%)'
|
|
3723
|
+
};
|
|
3724
|
+
|
|
3725
|
+
var tokens$2 = /*#__PURE__*/Object.freeze({
|
|
3726
|
+
__proto__: null,
|
|
3727
|
+
buttonSeparator: buttonSeparator,
|
|
3728
|
+
buttonPrimary: buttonPrimary,
|
|
3729
|
+
buttonSecondary: buttonSecondary,
|
|
3730
|
+
buttonTertiary: buttonTertiary,
|
|
3731
|
+
buttonDangerPrimary: buttonDangerPrimary,
|
|
3732
|
+
buttonDangerSecondary: buttonDangerSecondary,
|
|
3733
|
+
buttonDangerActive: buttonDangerActive,
|
|
3734
|
+
buttonPrimaryActive: buttonPrimaryActive,
|
|
3735
|
+
buttonSecondaryActive: buttonSecondaryActive,
|
|
3736
|
+
buttonTertiaryActive: buttonTertiaryActive,
|
|
3737
|
+
buttonDangerHover: buttonDangerHover,
|
|
3738
|
+
buttonPrimaryHover: buttonPrimaryHover,
|
|
3739
|
+
buttonSecondaryHover: buttonSecondaryHover,
|
|
3740
|
+
buttonTertiaryHover: buttonTertiaryHover,
|
|
3741
|
+
buttonDisabled: buttonDisabled
|
|
3742
|
+
});
|
|
3743
|
+
|
|
3744
|
+
var index$2 = /*#__PURE__*/Object.freeze({
|
|
3745
|
+
__proto__: null,
|
|
3746
|
+
buttonTokens: tokens$2
|
|
3747
|
+
});
|
|
3748
|
+
|
|
3749
|
+
var tagBackgroundRed = {
|
|
3750
|
+
whiteTheme: colors$1.red20,
|
|
3751
|
+
g10: colors$1.red20,
|
|
3752
|
+
g90: colors$1.red70,
|
|
3753
|
+
g100: colors$1.red70
|
|
3754
|
+
};
|
|
3755
|
+
var tagColorRed = {
|
|
3756
|
+
whiteTheme: colors$1.red80,
|
|
3757
|
+
g10: colors$1.red80,
|
|
3758
|
+
g90: colors$1.red20,
|
|
3759
|
+
g100: colors$1.red20
|
|
3760
|
+
};
|
|
3761
|
+
var tagHoverRed = {
|
|
3762
|
+
whiteTheme: colors$1.red30,
|
|
3763
|
+
g10: colors$1.red30,
|
|
3764
|
+
g90: colors$1.red70Hover,
|
|
3765
|
+
g100: colors$1.red70Hover
|
|
3766
|
+
};
|
|
3767
|
+
var tagBackgroundMagenta = {
|
|
3768
|
+
whiteTheme: colors$1.magenta20,
|
|
3769
|
+
g10: colors$1.magenta20,
|
|
3770
|
+
g90: colors$1.magenta70,
|
|
3771
|
+
g100: colors$1.magenta70
|
|
3772
|
+
};
|
|
3773
|
+
var tagColorMagenta = {
|
|
3774
|
+
whiteTheme: colors$1.magenta80,
|
|
3775
|
+
g10: colors$1.magenta80,
|
|
3776
|
+
g90: colors$1.magenta20,
|
|
3777
|
+
g100: colors$1.magenta20
|
|
3778
|
+
};
|
|
3779
|
+
var tagHoverMagenta = {
|
|
3780
|
+
whiteTheme: colors$1.magenta30,
|
|
3781
|
+
g10: colors$1.magenta30,
|
|
3782
|
+
g90: colors$1.magenta70Hover,
|
|
3783
|
+
g100: colors$1.magenta70Hover
|
|
3784
|
+
};
|
|
3785
|
+
var tagBackgroundPurple = {
|
|
3786
|
+
whiteTheme: colors$1.purple20,
|
|
3787
|
+
g10: colors$1.purple20,
|
|
3788
|
+
g90: colors$1.purple70,
|
|
3789
|
+
g100: colors$1.purple70
|
|
3790
|
+
};
|
|
3791
|
+
var tagColorPurple = {
|
|
3792
|
+
whiteTheme: colors$1.purple80,
|
|
3793
|
+
g10: colors$1.purple80,
|
|
3794
|
+
g90: colors$1.purple20,
|
|
3795
|
+
g100: colors$1.purple20
|
|
3796
|
+
};
|
|
3797
|
+
var tagHoverPurple = {
|
|
3798
|
+
whiteTheme: colors$1.purple30,
|
|
3799
|
+
g10: colors$1.purple30,
|
|
3800
|
+
g90: colors$1.purple70Hover,
|
|
3801
|
+
g100: colors$1.purple70Hover
|
|
3802
|
+
};
|
|
3803
|
+
var tagBackgroundBlue = {
|
|
3804
|
+
whiteTheme: colors$1.blue20,
|
|
3805
|
+
g10: colors$1.blue20,
|
|
3806
|
+
g90: colors$1.blue70,
|
|
3807
|
+
g100: colors$1.blue70
|
|
3808
|
+
};
|
|
3809
|
+
var tagColorBlue = {
|
|
3810
|
+
whiteTheme: colors$1.blue80,
|
|
3811
|
+
g10: colors$1.blue80,
|
|
3812
|
+
g90: colors$1.blue20,
|
|
3813
|
+
g100: colors$1.blue20
|
|
3814
|
+
};
|
|
3815
|
+
var tagHoverBlue = {
|
|
3816
|
+
whiteTheme: colors$1.blue30,
|
|
3817
|
+
g10: colors$1.blue30,
|
|
3818
|
+
g90: colors$1.blue70Hover,
|
|
3819
|
+
g100: colors$1.blue70Hover
|
|
3820
|
+
};
|
|
3821
|
+
var tagBackgroundCyan = {
|
|
3822
|
+
whiteTheme: colors$1.cyan20,
|
|
3823
|
+
g10: colors$1.cyan20,
|
|
3824
|
+
g90: colors$1.cyan70,
|
|
3825
|
+
g100: colors$1.cyan70
|
|
3826
|
+
};
|
|
3827
|
+
var tagColorCyan = {
|
|
3828
|
+
whiteTheme: colors$1.cyan80,
|
|
3829
|
+
g10: colors$1.cyan80,
|
|
3830
|
+
g90: colors$1.cyan20,
|
|
3831
|
+
g100: colors$1.cyan20
|
|
3832
|
+
};
|
|
3833
|
+
var tagHoverCyan = {
|
|
3834
|
+
whiteTheme: colors$1.cyan30,
|
|
3835
|
+
g10: colors$1.cyan30,
|
|
3836
|
+
g90: colors$1.cyan70Hover,
|
|
3837
|
+
g100: colors$1.cyan70Hover
|
|
3838
|
+
};
|
|
3839
|
+
var tagBackgroundTeal = {
|
|
3840
|
+
whiteTheme: colors$1.teal20,
|
|
3841
|
+
g10: colors$1.teal20,
|
|
3842
|
+
g90: colors$1.teal70,
|
|
3843
|
+
g100: colors$1.teal70
|
|
3844
|
+
};
|
|
3845
|
+
var tagColorTeal = {
|
|
3846
|
+
whiteTheme: colors$1.teal80,
|
|
3847
|
+
g10: colors$1.teal80,
|
|
3848
|
+
g90: colors$1.teal20,
|
|
3849
|
+
g100: colors$1.teal20
|
|
3850
|
+
};
|
|
3851
|
+
var tagHoverTeal = {
|
|
3852
|
+
whiteTheme: colors$1.teal30,
|
|
3853
|
+
g10: colors$1.teal30,
|
|
3854
|
+
g90: colors$1.teal70Hover,
|
|
3855
|
+
g100: colors$1.teal70Hover
|
|
3856
|
+
};
|
|
3857
|
+
var tagBackgroundGreen = {
|
|
3858
|
+
whiteTheme: colors$1.green20,
|
|
3859
|
+
g10: colors$1.green20,
|
|
3860
|
+
g90: colors$1.green70,
|
|
3861
|
+
g100: colors$1.green70
|
|
3862
|
+
};
|
|
3863
|
+
var tagColorGreen = {
|
|
3864
|
+
whiteTheme: colors$1.green80,
|
|
3865
|
+
g10: colors$1.green80,
|
|
3866
|
+
g90: colors$1.green20,
|
|
3867
|
+
g100: colors$1.green20
|
|
3868
|
+
};
|
|
3869
|
+
var tagHoverGreen = {
|
|
3870
|
+
whiteTheme: colors$1.green30,
|
|
3871
|
+
g10: colors$1.green30,
|
|
3872
|
+
g90: colors$1.green70Hover,
|
|
3873
|
+
g100: colors$1.green70Hover
|
|
3874
|
+
};
|
|
3875
|
+
var tagBackgroundGray = {
|
|
3876
|
+
whiteTheme: colors$1.gray20,
|
|
3877
|
+
g10: colors$1.gray20,
|
|
3878
|
+
g90: colors$1.gray70,
|
|
3879
|
+
g100: colors$1.gray70
|
|
3880
|
+
};
|
|
3881
|
+
var tagColorGray = {
|
|
3882
|
+
whiteTheme: colors$1.gray80,
|
|
3883
|
+
g10: colors$1.gray80,
|
|
3884
|
+
g90: colors$1.gray20,
|
|
3885
|
+
g100: colors$1.gray20
|
|
3886
|
+
};
|
|
3887
|
+
var tagHoverGray = {
|
|
3888
|
+
whiteTheme: colors$1.gray30,
|
|
3889
|
+
g10: colors$1.gray30,
|
|
3890
|
+
g90: colors$1.gray70Hover,
|
|
3891
|
+
g100: colors$1.gray70Hover
|
|
3892
|
+
};
|
|
3893
|
+
var tagBackgroundCoolGray = {
|
|
3894
|
+
whiteTheme: colors$1.coolGray20,
|
|
3895
|
+
g10: colors$1.coolGray20,
|
|
3896
|
+
g90: colors$1.coolGray70,
|
|
3897
|
+
g100: colors$1.coolGray70
|
|
3898
|
+
};
|
|
3899
|
+
var tagColorCoolGray = {
|
|
3900
|
+
whiteTheme: colors$1.coolGray80,
|
|
3901
|
+
g10: colors$1.coolGray80,
|
|
3902
|
+
g90: colors$1.coolGray20,
|
|
3903
|
+
g100: colors$1.coolGray20
|
|
3904
|
+
};
|
|
3905
|
+
var tagHoverCoolGray = {
|
|
3906
|
+
whiteTheme: colors$1.coolGray30,
|
|
3907
|
+
g10: colors$1.coolGray30,
|
|
3908
|
+
g90: colors$1.coolGray70Hover,
|
|
3909
|
+
g100: colors$1.coolGray70Hover
|
|
3910
|
+
};
|
|
3911
|
+
var tagBackgroundWarmGray = {
|
|
3912
|
+
whiteTheme: colors$1.warmGray20,
|
|
3913
|
+
g10: colors$1.warmGray20,
|
|
3914
|
+
g90: colors$1.warmGray70,
|
|
3915
|
+
g100: colors$1.warmGray70
|
|
3916
|
+
};
|
|
3917
|
+
var tagColorWarmGray = {
|
|
3918
|
+
whiteTheme: colors$1.warmGray80,
|
|
3919
|
+
g10: colors$1.warmGray80,
|
|
3920
|
+
g90: colors$1.warmGray20,
|
|
3921
|
+
g100: colors$1.warmGray20
|
|
3922
|
+
};
|
|
3923
|
+
var tagHoverWarmGray = {
|
|
3924
|
+
whiteTheme: colors$1.warmGray30,
|
|
3925
|
+
g10: colors$1.warmGray30,
|
|
3926
|
+
g90: colors$1.warmGray70Hover,
|
|
3927
|
+
g100: colors$1.warmGray70Hover
|
|
3928
|
+
};
|
|
3929
|
+
|
|
3930
|
+
var tokens$1 = /*#__PURE__*/Object.freeze({
|
|
3931
|
+
__proto__: null,
|
|
3932
|
+
tagBackgroundRed: tagBackgroundRed,
|
|
3933
|
+
tagColorRed: tagColorRed,
|
|
3934
|
+
tagHoverRed: tagHoverRed,
|
|
3935
|
+
tagBackgroundMagenta: tagBackgroundMagenta,
|
|
3936
|
+
tagColorMagenta: tagColorMagenta,
|
|
3937
|
+
tagHoverMagenta: tagHoverMagenta,
|
|
3938
|
+
tagBackgroundPurple: tagBackgroundPurple,
|
|
3939
|
+
tagColorPurple: tagColorPurple,
|
|
3940
|
+
tagHoverPurple: tagHoverPurple,
|
|
3941
|
+
tagBackgroundBlue: tagBackgroundBlue,
|
|
3942
|
+
tagColorBlue: tagColorBlue,
|
|
3943
|
+
tagHoverBlue: tagHoverBlue,
|
|
3944
|
+
tagBackgroundCyan: tagBackgroundCyan,
|
|
3945
|
+
tagColorCyan: tagColorCyan,
|
|
3946
|
+
tagHoverCyan: tagHoverCyan,
|
|
3947
|
+
tagBackgroundTeal: tagBackgroundTeal,
|
|
3948
|
+
tagColorTeal: tagColorTeal,
|
|
3949
|
+
tagHoverTeal: tagHoverTeal,
|
|
3950
|
+
tagBackgroundGreen: tagBackgroundGreen,
|
|
3951
|
+
tagColorGreen: tagColorGreen,
|
|
3952
|
+
tagHoverGreen: tagHoverGreen,
|
|
3953
|
+
tagBackgroundGray: tagBackgroundGray,
|
|
3954
|
+
tagColorGray: tagColorGray,
|
|
3955
|
+
tagHoverGray: tagHoverGray,
|
|
3956
|
+
tagBackgroundCoolGray: tagBackgroundCoolGray,
|
|
3957
|
+
tagColorCoolGray: tagColorCoolGray,
|
|
3958
|
+
tagHoverCoolGray: tagHoverCoolGray,
|
|
3959
|
+
tagBackgroundWarmGray: tagBackgroundWarmGray,
|
|
3960
|
+
tagColorWarmGray: tagColorWarmGray,
|
|
3961
|
+
tagHoverWarmGray: tagHoverWarmGray
|
|
3962
|
+
});
|
|
3963
|
+
|
|
3964
|
+
var index$1 = /*#__PURE__*/Object.freeze({
|
|
3965
|
+
__proto__: null,
|
|
3966
|
+
tagTokens: tokens$1
|
|
3967
|
+
});
|
|
3968
|
+
|
|
3969
|
+
var notificationBackgroundError = {
|
|
3970
|
+
whiteTheme: colors$1.red10,
|
|
3971
|
+
g10: colors$1.red10,
|
|
3972
|
+
g90: colors$1.gray80,
|
|
3973
|
+
g100: colors$1.gray90
|
|
3974
|
+
};
|
|
3975
|
+
var notificationBackgroundSuccess = {
|
|
3976
|
+
whiteTheme: colors$1.green10,
|
|
3977
|
+
g10: colors$1.green10,
|
|
3978
|
+
g90: colors$1.gray80,
|
|
3979
|
+
g100: colors$1.gray90
|
|
3980
|
+
};
|
|
3981
|
+
var notificationBackgroundInfo = {
|
|
3982
|
+
whiteTheme: colors$1.blue10,
|
|
3983
|
+
g10: colors$1.blue10,
|
|
3984
|
+
g90: colors$1.gray80,
|
|
3985
|
+
g100: colors$1.gray90
|
|
3986
|
+
};
|
|
3987
|
+
var colorMap = {
|
|
3988
|
+
yellow30: colors$1.yellow30,
|
|
3989
|
+
white0: colors$1.white0
|
|
3990
|
+
};
|
|
3991
|
+
var notificationBackgroundWarning = {
|
|
3992
|
+
whiteTheme: colorMap,
|
|
3993
|
+
g10: colorMap,
|
|
3994
|
+
g90: colors$1.gray80,
|
|
3995
|
+
g100: colors$1.gray90
|
|
3996
|
+
};
|
|
3997
|
+
var notificationActionHover = {
|
|
3998
|
+
whiteTheme: colors$1.white0,
|
|
3999
|
+
g10: colors$1.white0
|
|
4000
|
+
};
|
|
4001
|
+
var notificationActionTertiaryInverse = {
|
|
4002
|
+
whiteTheme: buttonTertiary.g100,
|
|
4003
|
+
g10: buttonTertiary.g90,
|
|
4004
|
+
g90: buttonTertiary.g10,
|
|
4005
|
+
g100: buttonTertiary.whiteTheme
|
|
4006
|
+
};
|
|
4007
|
+
var notificationActionTertiaryInverseActive = {
|
|
4008
|
+
whiteTheme: buttonTertiaryActive.g100,
|
|
4009
|
+
g10: buttonTertiaryActive.g90,
|
|
4010
|
+
g90: buttonTertiaryActive.g10,
|
|
4011
|
+
g100: buttonTertiaryActive.whiteTheme
|
|
4012
|
+
};
|
|
4013
|
+
var notificationActionTertiaryInverseHover = {
|
|
4014
|
+
whiteTheme: buttonTertiaryHover.g100,
|
|
4015
|
+
g10: buttonTertiaryHover.g90,
|
|
4016
|
+
g90: buttonTertiaryHover.g10,
|
|
4017
|
+
g100: buttonTertiaryHover.whiteTheme
|
|
4018
|
+
};
|
|
4019
|
+
var notificationActionTertiaryInverseText = {
|
|
4020
|
+
whiteTheme: textInverse$4,
|
|
4021
|
+
g10: textInverse$5,
|
|
4022
|
+
g90: textInverse$6,
|
|
4023
|
+
g100: textInverse$7
|
|
4024
|
+
};
|
|
4025
|
+
var notificationActionTertiaryInverseTextOnColorDisabled = {
|
|
4026
|
+
whiteTheme: textOnColorDisabled$4,
|
|
4027
|
+
g10: textOnColorDisabled$5,
|
|
4028
|
+
g90: textOnColorDisabled$6,
|
|
4029
|
+
g100: textOnColorDisabled$7
|
|
4030
|
+
};
|
|
4031
|
+
|
|
4032
|
+
var tokens = /*#__PURE__*/Object.freeze({
|
|
4033
|
+
__proto__: null,
|
|
4034
|
+
notificationBackgroundError: notificationBackgroundError,
|
|
4035
|
+
notificationBackgroundSuccess: notificationBackgroundSuccess,
|
|
4036
|
+
notificationBackgroundInfo: notificationBackgroundInfo,
|
|
4037
|
+
colorMap: colorMap,
|
|
4038
|
+
notificationBackgroundWarning: notificationBackgroundWarning,
|
|
4039
|
+
notificationActionHover: notificationActionHover,
|
|
4040
|
+
notificationActionTertiaryInverse: notificationActionTertiaryInverse,
|
|
4041
|
+
notificationActionTertiaryInverseActive: notificationActionTertiaryInverseActive,
|
|
4042
|
+
notificationActionTertiaryInverseHover: notificationActionTertiaryInverseHover,
|
|
4043
|
+
notificationActionTertiaryInverseText: notificationActionTertiaryInverseText,
|
|
4044
|
+
notificationActionTertiaryInverseTextOnColorDisabled: notificationActionTertiaryInverseTextOnColorDisabled
|
|
4045
|
+
});
|
|
4046
|
+
|
|
4047
|
+
var index = /*#__PURE__*/Object.freeze({
|
|
4048
|
+
__proto__: null,
|
|
4049
|
+
notificationTokens: tokens
|
|
4050
|
+
});
|
|
4051
|
+
|
|
3594
4052
|
/**
|
|
3595
4053
|
* Copyright IBM Corp. 2018, 2018
|
|
3596
4054
|
*
|
|
@@ -4554,6 +5012,7 @@ exports.borderSubtle03 = borderSubtle03$3;
|
|
|
4554
5012
|
exports.borderSubtleSelected01 = borderSubtleSelected01$3;
|
|
4555
5013
|
exports.borderSubtleSelected02 = borderSubtleSelected02$3;
|
|
4556
5014
|
exports.borderSubtleSelected03 = borderSubtleSelected03$3;
|
|
5015
|
+
exports.buttonTokens = index$2;
|
|
4557
5016
|
exports.field01 = field01$7;
|
|
4558
5017
|
exports.field02 = field02$7;
|
|
4559
5018
|
exports.field03 = field03$3;
|
|
@@ -4563,6 +5022,7 @@ exports.fieldHover03 = fieldHover03$3;
|
|
|
4563
5022
|
exports.focus = focus$8;
|
|
4564
5023
|
exports.focusInset = focusInset$7;
|
|
4565
5024
|
exports.focusInverse = focusInverse$7;
|
|
5025
|
+
exports.formatTokenName = formatTokenName;
|
|
4566
5026
|
exports.g10 = g10$1;
|
|
4567
5027
|
exports.g100 = g100$1;
|
|
4568
5028
|
exports.g90 = g90$1;
|
|
@@ -4607,6 +5067,7 @@ exports.linkPrimary = linkPrimary$7;
|
|
|
4607
5067
|
exports.linkPrimaryHover = linkPrimaryHover$7;
|
|
4608
5068
|
exports.linkSecondary = linkSecondary$7;
|
|
4609
5069
|
exports.linkVisited = linkVisited$7;
|
|
5070
|
+
exports.notificationTokens = index;
|
|
4610
5071
|
exports.overlay = overlay$7;
|
|
4611
5072
|
exports.shadow = shadow$7;
|
|
4612
5073
|
exports.skeletonBackground = skeletonBackground$7;
|
|
@@ -4622,6 +5083,7 @@ exports.supportSuccess = supportSuccess$7;
|
|
|
4622
5083
|
exports.supportSuccessInverse = supportSuccessInverse$7;
|
|
4623
5084
|
exports.supportWarning = supportWarning$7;
|
|
4624
5085
|
exports.supportWarningInverse = supportWarningInverse$7;
|
|
5086
|
+
exports.tagTokens = index$1;
|
|
4625
5087
|
exports.textDisabled = textDisabled$7;
|
|
4626
5088
|
exports.textError = textError$7;
|
|
4627
5089
|
exports.textHelper = textHelper$7;
|
|
@@ -4634,5 +5096,5 @@ exports.textSecondary = textSecondary$7;
|
|
|
4634
5096
|
exports.themes = themes;
|
|
4635
5097
|
exports.toggleOff = toggleOff$7;
|
|
4636
5098
|
exports.unstable_metadata = unstable_metadata;
|
|
4637
|
-
exports.v10 = index;
|
|
5099
|
+
exports.v10 = index$3;
|
|
4638
5100
|
exports.white = white$1;
|