@qasa/qds-ui 0.1.10-next.0 → 0.2.0-next.10
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/button/button-styles.d.ts +67 -40
- package/dist/cjs/types/components/heading/heading.d.ts +37 -21
- package/dist/cjs/types/components/icon/create-icon.d.ts +31 -12
- package/dist/cjs/types/components/icon-button/icon-button-styles.d.ts +50 -28
- package/dist/cjs/types/components/label/label.d.ts +29 -13
- package/dist/cjs/types/components/loading-dots/loading-dots.d.ts +23 -11
- package/dist/cjs/types/components/paragraph/paragraph.d.ts +24 -14
- package/dist/cjs/types/qds-provider.d.ts +3 -1
- package/dist/cjs/types/styles/common-styles.d.ts +23 -11
- package/dist/cjs/types/theme/foundations/colors.d.ts +21 -13
- package/dist/cjs/types/theme/foundations/index.d.ts +23 -11
- package/dist/cjs/types/theme/foundations/typography.d.ts +2 -0
- package/dist/cjs/types/theme/theme-tools.d.ts +23 -11
- package/dist/cjs/types/theme/theme.d.ts +23 -11
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/button/button-styles.d.ts +67 -40
- package/dist/esm/types/components/heading/heading.d.ts +37 -21
- package/dist/esm/types/components/icon/create-icon.d.ts +31 -12
- package/dist/esm/types/components/icon-button/icon-button-styles.d.ts +50 -28
- package/dist/esm/types/components/label/label.d.ts +29 -13
- package/dist/esm/types/components/loading-dots/loading-dots.d.ts +23 -11
- package/dist/esm/types/components/paragraph/paragraph.d.ts +24 -14
- package/dist/esm/types/qds-provider.d.ts +3 -1
- package/dist/esm/types/styles/common-styles.d.ts +23 -11
- package/dist/esm/types/theme/foundations/colors.d.ts +21 -13
- package/dist/esm/types/theme/foundations/index.d.ts +23 -11
- package/dist/esm/types/theme/foundations/typography.d.ts +2 -0
- package/dist/esm/types/theme/theme-tools.d.ts +23 -11
- package/dist/esm/types/theme/theme.d.ts +23 -11
- package/dist/index.d.ts +333 -173
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { ElementType, ComponentPropsWithoutRef, ReactNode, SVGAttributes, useLayoutEffect } from 'react';
|
|
4
|
+
import { Options } from '@emotion/cache';
|
|
4
5
|
import { CSSObject } from '@emotion/react';
|
|
5
6
|
|
|
6
7
|
declare const theme: {
|
|
@@ -61,15 +62,18 @@ declare const theme: {
|
|
|
61
62
|
gray30: string;
|
|
62
63
|
gray20: string;
|
|
63
64
|
gray10: string;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
65
|
+
uiPink: string;
|
|
66
|
+
uiPinkDark: string;
|
|
67
|
+
uiPinkLight: string;
|
|
68
|
+
brown: string;
|
|
69
|
+
brownDark: string;
|
|
70
|
+
brownLight: string;
|
|
71
|
+
offWhite: string;
|
|
72
|
+
offWhiteDark: string;
|
|
73
|
+
offWhiteLight: string;
|
|
74
|
+
softPink: string;
|
|
75
|
+
warmYellow: string;
|
|
76
|
+
softYellow: string;
|
|
73
77
|
red10: string;
|
|
74
78
|
red20: string;
|
|
75
79
|
red30: string;
|
|
@@ -116,6 +120,9 @@ declare const theme: {
|
|
|
116
120
|
brandSecondary: string;
|
|
117
121
|
brandSecondaryHover: string;
|
|
118
122
|
brandSecondaryActive: string;
|
|
123
|
+
brandTertiary: string;
|
|
124
|
+
brandTertiaryHover: string;
|
|
125
|
+
brandTertiaryActive: string;
|
|
119
126
|
negative: string;
|
|
120
127
|
warning: string;
|
|
121
128
|
positive: string;
|
|
@@ -130,7 +137,9 @@ declare const theme: {
|
|
|
130
137
|
negative: string;
|
|
131
138
|
warning: string;
|
|
132
139
|
positive: string;
|
|
133
|
-
|
|
140
|
+
onBrandPrimary: string;
|
|
141
|
+
onBrandSecondary: string;
|
|
142
|
+
onBrandTertiary: string;
|
|
134
143
|
};
|
|
135
144
|
icon: {
|
|
136
145
|
default: string;
|
|
@@ -140,7 +149,9 @@ declare const theme: {
|
|
|
140
149
|
negative: string;
|
|
141
150
|
warning: string;
|
|
142
151
|
success: string;
|
|
143
|
-
|
|
152
|
+
onBrandPrimary: string;
|
|
153
|
+
onBrandSecondary: string;
|
|
154
|
+
onBrandTertiary: string;
|
|
144
155
|
};
|
|
145
156
|
border: {
|
|
146
157
|
default: string;
|
|
@@ -209,6 +220,7 @@ declare const theme: {
|
|
|
209
220
|
fontSize: string;
|
|
210
221
|
lineHeight: string;
|
|
211
222
|
letterSpacing: string;
|
|
223
|
+
fontFeatureSettings: string;
|
|
212
224
|
};
|
|
213
225
|
md: {
|
|
214
226
|
fontFamily: string;
|
|
@@ -216,6 +228,7 @@ declare const theme: {
|
|
|
216
228
|
fontSize: string;
|
|
217
229
|
lineHeight: string;
|
|
218
230
|
letterSpacing: string;
|
|
231
|
+
fontFeatureSettings: string;
|
|
219
232
|
};
|
|
220
233
|
};
|
|
221
234
|
title: {
|
|
@@ -361,6 +374,7 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
|
|
|
361
374
|
fontSize: string;
|
|
362
375
|
lineHeight: string;
|
|
363
376
|
letterSpacing: string;
|
|
377
|
+
fontFeatureSettings: string;
|
|
364
378
|
};
|
|
365
379
|
md: {
|
|
366
380
|
fontFamily: string;
|
|
@@ -368,6 +382,7 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
|
|
|
368
382
|
fontSize: string;
|
|
369
383
|
lineHeight: string;
|
|
370
384
|
letterSpacing: string;
|
|
385
|
+
fontFeatureSettings: string;
|
|
371
386
|
};
|
|
372
387
|
};
|
|
373
388
|
title: {
|
|
@@ -497,15 +512,18 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
|
|
|
497
512
|
gray30: string;
|
|
498
513
|
gray20: string;
|
|
499
514
|
gray10: string;
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
515
|
+
uiPink: string;
|
|
516
|
+
uiPinkDark: string;
|
|
517
|
+
uiPinkLight: string;
|
|
518
|
+
brown: string;
|
|
519
|
+
brownDark: string;
|
|
520
|
+
brownLight: string;
|
|
521
|
+
offWhite: string;
|
|
522
|
+
offWhiteDark: string;
|
|
523
|
+
offWhiteLight: string;
|
|
524
|
+
softPink: string;
|
|
525
|
+
warmYellow: string;
|
|
526
|
+
softYellow: string;
|
|
509
527
|
red10: string;
|
|
510
528
|
red20: string;
|
|
511
529
|
red30: string;
|
|
@@ -552,6 +570,9 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
|
|
|
552
570
|
brandSecondary: string;
|
|
553
571
|
brandSecondaryHover: string;
|
|
554
572
|
brandSecondaryActive: string;
|
|
573
|
+
brandTertiary: string;
|
|
574
|
+
brandTertiaryHover: string;
|
|
575
|
+
brandTertiaryActive: string;
|
|
555
576
|
negative: string;
|
|
556
577
|
warning: string;
|
|
557
578
|
positive: string;
|
|
@@ -566,7 +587,9 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
|
|
|
566
587
|
negative: string;
|
|
567
588
|
warning: string;
|
|
568
589
|
positive: string;
|
|
569
|
-
|
|
590
|
+
onBrandPrimary: string;
|
|
591
|
+
onBrandSecondary: string;
|
|
592
|
+
onBrandTertiary: string;
|
|
570
593
|
};
|
|
571
594
|
icon: {
|
|
572
595
|
default: string;
|
|
@@ -576,7 +599,9 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
|
|
|
576
599
|
negative: string;
|
|
577
600
|
warning: string;
|
|
578
601
|
success: string;
|
|
579
|
-
|
|
602
|
+
onBrandPrimary: string;
|
|
603
|
+
onBrandSecondary: string;
|
|
604
|
+
onBrandTertiary: string;
|
|
580
605
|
};
|
|
581
606
|
border: {
|
|
582
607
|
default: string;
|
|
@@ -686,8 +711,9 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
|
|
|
686
711
|
interface QdsProviderProps {
|
|
687
712
|
children: ReactNode;
|
|
688
713
|
themeOverrides?: ThemeOverrides;
|
|
714
|
+
cacheOptions?: Partial<Options>;
|
|
689
715
|
}
|
|
690
|
-
declare function QdsProvider({ children, themeOverrides }: QdsProviderProps): JSX.Element;
|
|
716
|
+
declare function QdsProvider({ children, themeOverrides, cacheOptions }: QdsProviderProps): JSX.Element;
|
|
691
717
|
|
|
692
718
|
declare const SIZE_MAP: {
|
|
693
719
|
sm: number;
|
|
@@ -797,15 +823,18 @@ declare const getFormFieldBaseStyles: (theme: {
|
|
|
797
823
|
gray30: string;
|
|
798
824
|
gray20: string;
|
|
799
825
|
gray10: string;
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
826
|
+
uiPink: string;
|
|
827
|
+
uiPinkDark: string;
|
|
828
|
+
uiPinkLight: string;
|
|
829
|
+
brown: string;
|
|
830
|
+
brownDark: string;
|
|
831
|
+
brownLight: string;
|
|
832
|
+
offWhite: string;
|
|
833
|
+
offWhiteDark: string;
|
|
834
|
+
offWhiteLight: string;
|
|
835
|
+
softPink: string;
|
|
836
|
+
warmYellow: string;
|
|
837
|
+
softYellow: string;
|
|
809
838
|
red10: string;
|
|
810
839
|
red20: string;
|
|
811
840
|
red30: string;
|
|
@@ -852,6 +881,9 @@ declare const getFormFieldBaseStyles: (theme: {
|
|
|
852
881
|
brandSecondary: string;
|
|
853
882
|
brandSecondaryHover: string;
|
|
854
883
|
brandSecondaryActive: string;
|
|
884
|
+
brandTertiary: string;
|
|
885
|
+
brandTertiaryHover: string;
|
|
886
|
+
brandTertiaryActive: string;
|
|
855
887
|
negative: string;
|
|
856
888
|
warning: string;
|
|
857
889
|
positive: string;
|
|
@@ -866,7 +898,9 @@ declare const getFormFieldBaseStyles: (theme: {
|
|
|
866
898
|
negative: string;
|
|
867
899
|
warning: string;
|
|
868
900
|
positive: string;
|
|
869
|
-
|
|
901
|
+
onBrandPrimary: string;
|
|
902
|
+
onBrandSecondary: string;
|
|
903
|
+
onBrandTertiary: string;
|
|
870
904
|
};
|
|
871
905
|
icon: {
|
|
872
906
|
default: string;
|
|
@@ -876,7 +910,9 @@ declare const getFormFieldBaseStyles: (theme: {
|
|
|
876
910
|
negative: string;
|
|
877
911
|
warning: string;
|
|
878
912
|
success: string;
|
|
879
|
-
|
|
913
|
+
onBrandPrimary: string;
|
|
914
|
+
onBrandSecondary: string;
|
|
915
|
+
onBrandTertiary: string;
|
|
880
916
|
};
|
|
881
917
|
border: {
|
|
882
918
|
default: string;
|
|
@@ -945,6 +981,7 @@ declare const getFormFieldBaseStyles: (theme: {
|
|
|
945
981
|
fontSize: string;
|
|
946
982
|
lineHeight: string;
|
|
947
983
|
letterSpacing: string;
|
|
984
|
+
fontFeatureSettings: string;
|
|
948
985
|
};
|
|
949
986
|
md: {
|
|
950
987
|
fontFamily: string;
|
|
@@ -952,6 +989,7 @@ declare const getFormFieldBaseStyles: (theme: {
|
|
|
952
989
|
fontSize: string;
|
|
953
990
|
lineHeight: string;
|
|
954
991
|
letterSpacing: string;
|
|
992
|
+
fontFeatureSettings: string;
|
|
955
993
|
};
|
|
956
994
|
};
|
|
957
995
|
title: {
|
|
@@ -1207,15 +1245,18 @@ declare const getSizeStyles$6: (theme: {
|
|
|
1207
1245
|
gray30: string;
|
|
1208
1246
|
gray20: string;
|
|
1209
1247
|
gray10: string;
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1248
|
+
uiPink: string;
|
|
1249
|
+
uiPinkDark: string;
|
|
1250
|
+
uiPinkLight: string;
|
|
1251
|
+
brown: string;
|
|
1252
|
+
brownDark: string;
|
|
1253
|
+
brownLight: string;
|
|
1254
|
+
offWhite: string;
|
|
1255
|
+
offWhiteDark: string;
|
|
1256
|
+
offWhiteLight: string;
|
|
1257
|
+
softPink: string;
|
|
1258
|
+
warmYellow: string;
|
|
1259
|
+
softYellow: string;
|
|
1219
1260
|
red10: string;
|
|
1220
1261
|
red20: string;
|
|
1221
1262
|
red30: string;
|
|
@@ -1262,6 +1303,9 @@ declare const getSizeStyles$6: (theme: {
|
|
|
1262
1303
|
brandSecondary: string;
|
|
1263
1304
|
brandSecondaryHover: string;
|
|
1264
1305
|
brandSecondaryActive: string;
|
|
1306
|
+
brandTertiary: string;
|
|
1307
|
+
brandTertiaryHover: string;
|
|
1308
|
+
brandTertiaryActive: string;
|
|
1265
1309
|
negative: string;
|
|
1266
1310
|
warning: string;
|
|
1267
1311
|
positive: string;
|
|
@@ -1276,7 +1320,9 @@ declare const getSizeStyles$6: (theme: {
|
|
|
1276
1320
|
negative: string;
|
|
1277
1321
|
warning: string;
|
|
1278
1322
|
positive: string;
|
|
1279
|
-
|
|
1323
|
+
onBrandPrimary: string;
|
|
1324
|
+
onBrandSecondary: string;
|
|
1325
|
+
onBrandTertiary: string;
|
|
1280
1326
|
};
|
|
1281
1327
|
icon: {
|
|
1282
1328
|
default: string;
|
|
@@ -1286,7 +1332,9 @@ declare const getSizeStyles$6: (theme: {
|
|
|
1286
1332
|
negative: string;
|
|
1287
1333
|
warning: string;
|
|
1288
1334
|
success: string;
|
|
1289
|
-
|
|
1335
|
+
onBrandPrimary: string;
|
|
1336
|
+
onBrandSecondary: string;
|
|
1337
|
+
onBrandTertiary: string;
|
|
1290
1338
|
};
|
|
1291
1339
|
border: {
|
|
1292
1340
|
default: string;
|
|
@@ -1355,6 +1403,7 @@ declare const getSizeStyles$6: (theme: {
|
|
|
1355
1403
|
fontSize: string;
|
|
1356
1404
|
lineHeight: string;
|
|
1357
1405
|
letterSpacing: string;
|
|
1406
|
+
fontFeatureSettings: string;
|
|
1358
1407
|
};
|
|
1359
1408
|
md: {
|
|
1360
1409
|
fontFamily: string;
|
|
@@ -1362,6 +1411,7 @@ declare const getSizeStyles$6: (theme: {
|
|
|
1362
1411
|
fontSize: string;
|
|
1363
1412
|
lineHeight: string;
|
|
1364
1413
|
letterSpacing: string;
|
|
1414
|
+
fontFeatureSettings: string;
|
|
1365
1415
|
};
|
|
1366
1416
|
};
|
|
1367
1417
|
title: {
|
|
@@ -1512,6 +1562,27 @@ declare const getSizeStyles$6: (theme: {
|
|
|
1512
1562
|
paddingLeft: string;
|
|
1513
1563
|
paddingRight: string;
|
|
1514
1564
|
};
|
|
1565
|
+
lg: {
|
|
1566
|
+
fontFamily: string;
|
|
1567
|
+
fontWeight: string;
|
|
1568
|
+
fontSize: string;
|
|
1569
|
+
lineHeight: string;
|
|
1570
|
+
letterSpacing: string;
|
|
1571
|
+
height: string;
|
|
1572
|
+
minWidth: string;
|
|
1573
|
+
paddingLeft: string;
|
|
1574
|
+
paddingRight: string;
|
|
1575
|
+
};
|
|
1576
|
+
xl: {
|
|
1577
|
+
fontFamily: string;
|
|
1578
|
+
fontWeight: string;
|
|
1579
|
+
fontSize: string;
|
|
1580
|
+
lineHeight: string;
|
|
1581
|
+
letterSpacing: string;
|
|
1582
|
+
height: string;
|
|
1583
|
+
paddingLeft: string;
|
|
1584
|
+
paddingRight: string;
|
|
1585
|
+
};
|
|
1515
1586
|
};
|
|
1516
1587
|
declare const getVariantStyles$1: (theme: {
|
|
1517
1588
|
mediaQueries: {
|
|
@@ -1571,15 +1642,18 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1571
1642
|
gray30: string;
|
|
1572
1643
|
gray20: string;
|
|
1573
1644
|
gray10: string;
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1645
|
+
uiPink: string;
|
|
1646
|
+
uiPinkDark: string;
|
|
1647
|
+
uiPinkLight: string;
|
|
1648
|
+
brown: string;
|
|
1649
|
+
brownDark: string;
|
|
1650
|
+
brownLight: string;
|
|
1651
|
+
offWhite: string;
|
|
1652
|
+
offWhiteDark: string;
|
|
1653
|
+
offWhiteLight: string;
|
|
1654
|
+
softPink: string;
|
|
1655
|
+
warmYellow: string;
|
|
1656
|
+
softYellow: string;
|
|
1583
1657
|
red10: string;
|
|
1584
1658
|
red20: string;
|
|
1585
1659
|
red30: string;
|
|
@@ -1626,6 +1700,9 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1626
1700
|
brandSecondary: string;
|
|
1627
1701
|
brandSecondaryHover: string;
|
|
1628
1702
|
brandSecondaryActive: string;
|
|
1703
|
+
brandTertiary: string;
|
|
1704
|
+
brandTertiaryHover: string;
|
|
1705
|
+
brandTertiaryActive: string;
|
|
1629
1706
|
negative: string;
|
|
1630
1707
|
warning: string;
|
|
1631
1708
|
positive: string;
|
|
@@ -1640,7 +1717,9 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1640
1717
|
negative: string;
|
|
1641
1718
|
warning: string;
|
|
1642
1719
|
positive: string;
|
|
1643
|
-
|
|
1720
|
+
onBrandPrimary: string;
|
|
1721
|
+
onBrandSecondary: string;
|
|
1722
|
+
onBrandTertiary: string;
|
|
1644
1723
|
};
|
|
1645
1724
|
icon: {
|
|
1646
1725
|
default: string;
|
|
@@ -1650,7 +1729,9 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1650
1729
|
negative: string;
|
|
1651
1730
|
warning: string;
|
|
1652
1731
|
success: string;
|
|
1653
|
-
|
|
1732
|
+
onBrandPrimary: string;
|
|
1733
|
+
onBrandSecondary: string;
|
|
1734
|
+
onBrandTertiary: string;
|
|
1654
1735
|
};
|
|
1655
1736
|
border: {
|
|
1656
1737
|
default: string;
|
|
@@ -1719,6 +1800,7 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1719
1800
|
fontSize: string;
|
|
1720
1801
|
lineHeight: string;
|
|
1721
1802
|
letterSpacing: string;
|
|
1803
|
+
fontFeatureSettings: string;
|
|
1722
1804
|
};
|
|
1723
1805
|
md: {
|
|
1724
1806
|
fontFamily: string;
|
|
@@ -1726,6 +1808,7 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1726
1808
|
fontSize: string;
|
|
1727
1809
|
lineHeight: string;
|
|
1728
1810
|
letterSpacing: string;
|
|
1811
|
+
fontFeatureSettings: string;
|
|
1729
1812
|
};
|
|
1730
1813
|
};
|
|
1731
1814
|
title: {
|
|
@@ -1874,8 +1957,6 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1874
1957
|
tertiary: {
|
|
1875
1958
|
background: string;
|
|
1876
1959
|
color: string;
|
|
1877
|
-
border: string;
|
|
1878
|
-
borderColor: string;
|
|
1879
1960
|
":not([disabled])": {
|
|
1880
1961
|
'@media(hover: hover)': {
|
|
1881
1962
|
':hover': {
|
|
@@ -1887,22 +1968,6 @@ declare const getVariantStyles$1: (theme: {
|
|
|
1887
1968
|
};
|
|
1888
1969
|
};
|
|
1889
1970
|
};
|
|
1890
|
-
ghost: {
|
|
1891
|
-
background: string;
|
|
1892
|
-
color: string;
|
|
1893
|
-
textDecoration: string;
|
|
1894
|
-
textUnderlineOffset: number;
|
|
1895
|
-
":not([disabled])": {
|
|
1896
|
-
'@media(hover: hover)': {
|
|
1897
|
-
':hover': {
|
|
1898
|
-
background: string;
|
|
1899
|
-
};
|
|
1900
|
-
':active': {
|
|
1901
|
-
background: string;
|
|
1902
|
-
};
|
|
1903
|
-
};
|
|
1904
|
-
};
|
|
1905
|
-
};
|
|
1906
1971
|
};
|
|
1907
1972
|
|
|
1908
1973
|
declare type ButtonVariant = VariantProps<typeof getVariantStyles$1>;
|
|
@@ -2013,15 +2078,18 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2013
2078
|
gray30: string;
|
|
2014
2079
|
gray20: string;
|
|
2015
2080
|
gray10: string;
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2081
|
+
uiPink: string;
|
|
2082
|
+
uiPinkDark: string;
|
|
2083
|
+
uiPinkLight: string;
|
|
2084
|
+
brown: string;
|
|
2085
|
+
brownDark: string;
|
|
2086
|
+
brownLight: string;
|
|
2087
|
+
offWhite: string;
|
|
2088
|
+
offWhiteDark: string;
|
|
2089
|
+
offWhiteLight: string;
|
|
2090
|
+
softPink: string;
|
|
2091
|
+
warmYellow: string;
|
|
2092
|
+
softYellow: string;
|
|
2025
2093
|
red10: string;
|
|
2026
2094
|
red20: string;
|
|
2027
2095
|
red30: string;
|
|
@@ -2065,9 +2133,16 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2065
2133
|
brandPrimary: string;
|
|
2066
2134
|
brandPrimaryHover: string;
|
|
2067
2135
|
brandPrimaryActive: string;
|
|
2136
|
+
/**
|
|
2137
|
+
* Alignment of the heading
|
|
2138
|
+
* @default 'left'
|
|
2139
|
+
*/
|
|
2068
2140
|
brandSecondary: string;
|
|
2069
2141
|
brandSecondaryHover: string;
|
|
2070
2142
|
brandSecondaryActive: string;
|
|
2143
|
+
brandTertiary: string;
|
|
2144
|
+
brandTertiaryHover: string;
|
|
2145
|
+
brandTertiaryActive: string;
|
|
2071
2146
|
negative: string;
|
|
2072
2147
|
warning: string;
|
|
2073
2148
|
positive: string;
|
|
@@ -2082,7 +2157,9 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2082
2157
|
negative: string;
|
|
2083
2158
|
warning: string;
|
|
2084
2159
|
positive: string;
|
|
2085
|
-
|
|
2160
|
+
onBrandPrimary: string;
|
|
2161
|
+
onBrandSecondary: string;
|
|
2162
|
+
onBrandTertiary: string;
|
|
2086
2163
|
};
|
|
2087
2164
|
icon: {
|
|
2088
2165
|
default: string;
|
|
@@ -2092,7 +2169,9 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2092
2169
|
negative: string;
|
|
2093
2170
|
warning: string;
|
|
2094
2171
|
success: string;
|
|
2095
|
-
|
|
2172
|
+
onBrandPrimary: string;
|
|
2173
|
+
onBrandSecondary: string;
|
|
2174
|
+
onBrandTertiary: string;
|
|
2096
2175
|
};
|
|
2097
2176
|
border: {
|
|
2098
2177
|
default: string;
|
|
@@ -2161,6 +2240,7 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2161
2240
|
fontSize: string;
|
|
2162
2241
|
lineHeight: string;
|
|
2163
2242
|
letterSpacing: string;
|
|
2243
|
+
fontFeatureSettings: string;
|
|
2164
2244
|
};
|
|
2165
2245
|
md: {
|
|
2166
2246
|
fontFamily: string;
|
|
@@ -2168,6 +2248,7 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2168
2248
|
fontSize: string;
|
|
2169
2249
|
lineHeight: string;
|
|
2170
2250
|
letterSpacing: string;
|
|
2251
|
+
fontFeatureSettings: string;
|
|
2171
2252
|
};
|
|
2172
2253
|
};
|
|
2173
2254
|
title: {
|
|
@@ -2196,15 +2277,15 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2196
2277
|
fontFamily: string;
|
|
2197
2278
|
fontWeight: string;
|
|
2198
2279
|
fontSize: string;
|
|
2199
|
-
lineHeight: string;
|
|
2280
|
+
lineHeight: string; /**
|
|
2281
|
+
* Alignment of the heading
|
|
2282
|
+
* @default 'left'
|
|
2283
|
+
*/
|
|
2200
2284
|
letterSpacing: string;
|
|
2201
2285
|
};
|
|
2202
2286
|
'2xs': {
|
|
2203
2287
|
fontFamily: string;
|
|
2204
|
-
fontWeight: string;
|
|
2205
|
-
* Alignment of the heading
|
|
2206
|
-
* @default 'left'
|
|
2207
|
-
*/
|
|
2288
|
+
fontWeight: string;
|
|
2208
2289
|
fontSize: string;
|
|
2209
2290
|
lineHeight: string;
|
|
2210
2291
|
letterSpacing: string;
|
|
@@ -2313,15 +2394,15 @@ declare const getSizeStyles$5: (theme: {
|
|
|
2313
2394
|
fontFamily: string;
|
|
2314
2395
|
fontWeight: string;
|
|
2315
2396
|
fontSize: string;
|
|
2316
|
-
lineHeight: string;
|
|
2397
|
+
lineHeight: string; /**
|
|
2398
|
+
* Alignment of the heading
|
|
2399
|
+
* @default 'left'
|
|
2400
|
+
*/
|
|
2317
2401
|
letterSpacing: string;
|
|
2318
2402
|
};
|
|
2319
2403
|
'2xs': {
|
|
2320
2404
|
fontFamily: string;
|
|
2321
|
-
fontWeight: string;
|
|
2322
|
-
* Alignment of the heading
|
|
2323
|
-
* @default 'left'
|
|
2324
|
-
*/
|
|
2405
|
+
fontWeight: string;
|
|
2325
2406
|
fontSize: string;
|
|
2326
2407
|
lineHeight: string;
|
|
2327
2408
|
letterSpacing: string;
|
|
@@ -2404,6 +2485,9 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2404
2485
|
tooltip: number;
|
|
2405
2486
|
};
|
|
2406
2487
|
colors: {
|
|
2488
|
+
/**
|
|
2489
|
+
* The `svg`'s `viewBox` attribute
|
|
2490
|
+
*/
|
|
2407
2491
|
core: {
|
|
2408
2492
|
black: string;
|
|
2409
2493
|
white: string;
|
|
@@ -2416,15 +2500,18 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2416
2500
|
gray30: string;
|
|
2417
2501
|
gray20: string;
|
|
2418
2502
|
gray10: string;
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2503
|
+
uiPink: string;
|
|
2504
|
+
uiPinkDark: string;
|
|
2505
|
+
uiPinkLight: string;
|
|
2506
|
+
brown: string;
|
|
2507
|
+
brownDark: string;
|
|
2508
|
+
brownLight: string;
|
|
2509
|
+
offWhite: string;
|
|
2510
|
+
offWhiteDark: string;
|
|
2511
|
+
offWhiteLight: string;
|
|
2512
|
+
softPink: string;
|
|
2513
|
+
warmYellow: string;
|
|
2514
|
+
softYellow: string;
|
|
2428
2515
|
red10: string;
|
|
2429
2516
|
red20: string;
|
|
2430
2517
|
red30: string;
|
|
@@ -2436,7 +2523,11 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2436
2523
|
red90: string;
|
|
2437
2524
|
green90: string;
|
|
2438
2525
|
green80: string;
|
|
2439
|
-
green70: string;
|
|
2526
|
+
green70: string; /**
|
|
2527
|
+
* The size of the icon.
|
|
2528
|
+
*
|
|
2529
|
+
* @default 16
|
|
2530
|
+
*/
|
|
2440
2531
|
green60: string;
|
|
2441
2532
|
green50: string;
|
|
2442
2533
|
green40: string;
|
|
@@ -2471,6 +2562,9 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2471
2562
|
brandSecondary: string;
|
|
2472
2563
|
brandSecondaryHover: string;
|
|
2473
2564
|
brandSecondaryActive: string;
|
|
2565
|
+
brandTertiary: string;
|
|
2566
|
+
brandTertiaryHover: string;
|
|
2567
|
+
brandTertiaryActive: string;
|
|
2474
2568
|
negative: string;
|
|
2475
2569
|
warning: string;
|
|
2476
2570
|
positive: string;
|
|
@@ -2485,7 +2579,9 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2485
2579
|
negative: string;
|
|
2486
2580
|
warning: string;
|
|
2487
2581
|
positive: string;
|
|
2488
|
-
|
|
2582
|
+
onBrandPrimary: string;
|
|
2583
|
+
onBrandSecondary: string;
|
|
2584
|
+
onBrandTertiary: string;
|
|
2489
2585
|
};
|
|
2490
2586
|
icon: {
|
|
2491
2587
|
default: string;
|
|
@@ -2495,7 +2591,9 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2495
2591
|
negative: string;
|
|
2496
2592
|
warning: string;
|
|
2497
2593
|
success: string;
|
|
2498
|
-
|
|
2594
|
+
onBrandPrimary: string;
|
|
2595
|
+
onBrandSecondary: string;
|
|
2596
|
+
onBrandTertiary: string;
|
|
2499
2597
|
};
|
|
2500
2598
|
border: {
|
|
2501
2599
|
default: string;
|
|
@@ -2568,6 +2666,7 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2568
2666
|
fontSize: string;
|
|
2569
2667
|
lineHeight: string;
|
|
2570
2668
|
letterSpacing: string;
|
|
2669
|
+
fontFeatureSettings: string;
|
|
2571
2670
|
};
|
|
2572
2671
|
md: {
|
|
2573
2672
|
fontFamily: string;
|
|
@@ -2575,6 +2674,7 @@ declare const getSizeStyles$4: (theme: {
|
|
|
2575
2674
|
fontSize: string;
|
|
2576
2675
|
lineHeight: string;
|
|
2577
2676
|
letterSpacing: string;
|
|
2677
|
+
fontFeatureSettings: string;
|
|
2578
2678
|
};
|
|
2579
2679
|
};
|
|
2580
2680
|
title: {
|
|
@@ -2870,15 +2970,18 @@ declare const getSizeStyles$3: (theme: {
|
|
|
2870
2970
|
gray30: string;
|
|
2871
2971
|
gray20: string;
|
|
2872
2972
|
gray10: string;
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2973
|
+
uiPink: string;
|
|
2974
|
+
uiPinkDark: string;
|
|
2975
|
+
uiPinkLight: string;
|
|
2976
|
+
brown: string;
|
|
2977
|
+
brownDark: string;
|
|
2978
|
+
brownLight: string;
|
|
2979
|
+
offWhite: string;
|
|
2980
|
+
offWhiteDark: string;
|
|
2981
|
+
offWhiteLight: string;
|
|
2982
|
+
softPink: string;
|
|
2983
|
+
warmYellow: string;
|
|
2984
|
+
softYellow: string;
|
|
2882
2985
|
red10: string;
|
|
2883
2986
|
red20: string;
|
|
2884
2987
|
red30: string;
|
|
@@ -2925,6 +3028,9 @@ declare const getSizeStyles$3: (theme: {
|
|
|
2925
3028
|
brandSecondary: string;
|
|
2926
3029
|
brandSecondaryHover: string;
|
|
2927
3030
|
brandSecondaryActive: string;
|
|
3031
|
+
brandTertiary: string;
|
|
3032
|
+
brandTertiaryHover: string;
|
|
3033
|
+
brandTertiaryActive: string;
|
|
2928
3034
|
negative: string;
|
|
2929
3035
|
warning: string;
|
|
2930
3036
|
positive: string;
|
|
@@ -2939,7 +3045,9 @@ declare const getSizeStyles$3: (theme: {
|
|
|
2939
3045
|
negative: string;
|
|
2940
3046
|
warning: string;
|
|
2941
3047
|
positive: string;
|
|
2942
|
-
|
|
3048
|
+
onBrandPrimary: string;
|
|
3049
|
+
onBrandSecondary: string;
|
|
3050
|
+
onBrandTertiary: string;
|
|
2943
3051
|
};
|
|
2944
3052
|
icon: {
|
|
2945
3053
|
default: string;
|
|
@@ -2949,7 +3057,9 @@ declare const getSizeStyles$3: (theme: {
|
|
|
2949
3057
|
negative: string;
|
|
2950
3058
|
warning: string;
|
|
2951
3059
|
success: string;
|
|
2952
|
-
|
|
3060
|
+
onBrandPrimary: string;
|
|
3061
|
+
onBrandSecondary: string;
|
|
3062
|
+
onBrandTertiary: string;
|
|
2953
3063
|
};
|
|
2954
3064
|
border: {
|
|
2955
3065
|
default: string;
|
|
@@ -3018,6 +3128,7 @@ declare const getSizeStyles$3: (theme: {
|
|
|
3018
3128
|
fontSize: string;
|
|
3019
3129
|
lineHeight: string;
|
|
3020
3130
|
letterSpacing: string;
|
|
3131
|
+
fontFeatureSettings: string;
|
|
3021
3132
|
};
|
|
3022
3133
|
md: {
|
|
3023
3134
|
fontFamily: string;
|
|
@@ -3025,6 +3136,7 @@ declare const getSizeStyles$3: (theme: {
|
|
|
3025
3136
|
fontSize: string;
|
|
3026
3137
|
lineHeight: string;
|
|
3027
3138
|
letterSpacing: string;
|
|
3139
|
+
fontFeatureSettings: string;
|
|
3028
3140
|
};
|
|
3029
3141
|
};
|
|
3030
3142
|
title: {
|
|
@@ -3216,15 +3328,18 @@ declare const getVariantStyles: (theme: {
|
|
|
3216
3328
|
gray30: string;
|
|
3217
3329
|
gray20: string;
|
|
3218
3330
|
gray10: string;
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3331
|
+
uiPink: string;
|
|
3332
|
+
uiPinkDark: string;
|
|
3333
|
+
uiPinkLight: string;
|
|
3334
|
+
brown: string;
|
|
3335
|
+
brownDark: string;
|
|
3336
|
+
brownLight: string;
|
|
3337
|
+
offWhite: string;
|
|
3338
|
+
offWhiteDark: string;
|
|
3339
|
+
offWhiteLight: string;
|
|
3340
|
+
softPink: string;
|
|
3341
|
+
warmYellow: string;
|
|
3342
|
+
softYellow: string;
|
|
3228
3343
|
red10: string;
|
|
3229
3344
|
red20: string;
|
|
3230
3345
|
red30: string;
|
|
@@ -3271,6 +3386,9 @@ declare const getVariantStyles: (theme: {
|
|
|
3271
3386
|
brandSecondary: string;
|
|
3272
3387
|
brandSecondaryHover: string;
|
|
3273
3388
|
brandSecondaryActive: string;
|
|
3389
|
+
brandTertiary: string;
|
|
3390
|
+
brandTertiaryHover: string;
|
|
3391
|
+
brandTertiaryActive: string;
|
|
3274
3392
|
negative: string;
|
|
3275
3393
|
warning: string;
|
|
3276
3394
|
positive: string;
|
|
@@ -3285,7 +3403,9 @@ declare const getVariantStyles: (theme: {
|
|
|
3285
3403
|
negative: string;
|
|
3286
3404
|
warning: string;
|
|
3287
3405
|
positive: string;
|
|
3288
|
-
|
|
3406
|
+
onBrandPrimary: string;
|
|
3407
|
+
onBrandSecondary: string;
|
|
3408
|
+
onBrandTertiary: string;
|
|
3289
3409
|
};
|
|
3290
3410
|
icon: {
|
|
3291
3411
|
default: string;
|
|
@@ -3295,7 +3415,9 @@ declare const getVariantStyles: (theme: {
|
|
|
3295
3415
|
negative: string;
|
|
3296
3416
|
warning: string;
|
|
3297
3417
|
success: string;
|
|
3298
|
-
|
|
3418
|
+
onBrandPrimary: string;
|
|
3419
|
+
onBrandSecondary: string;
|
|
3420
|
+
onBrandTertiary: string;
|
|
3299
3421
|
};
|
|
3300
3422
|
border: {
|
|
3301
3423
|
default: string;
|
|
@@ -3364,6 +3486,7 @@ declare const getVariantStyles: (theme: {
|
|
|
3364
3486
|
fontSize: string;
|
|
3365
3487
|
lineHeight: string;
|
|
3366
3488
|
letterSpacing: string;
|
|
3489
|
+
fontFeatureSettings: string;
|
|
3367
3490
|
};
|
|
3368
3491
|
md: {
|
|
3369
3492
|
fontFamily: string;
|
|
@@ -3371,6 +3494,7 @@ declare const getVariantStyles: (theme: {
|
|
|
3371
3494
|
fontSize: string;
|
|
3372
3495
|
lineHeight: string;
|
|
3373
3496
|
letterSpacing: string;
|
|
3497
|
+
fontFeatureSettings: string;
|
|
3374
3498
|
};
|
|
3375
3499
|
};
|
|
3376
3500
|
title: {
|
|
@@ -3491,7 +3615,7 @@ declare const getVariantStyles: (theme: {
|
|
|
3491
3615
|
primary: {
|
|
3492
3616
|
background: string;
|
|
3493
3617
|
color: string;
|
|
3494
|
-
|
|
3618
|
+
":not([disabled])": {
|
|
3495
3619
|
'@media(hover: hover)': {
|
|
3496
3620
|
':hover': {
|
|
3497
3621
|
background: string;
|
|
@@ -3505,7 +3629,7 @@ declare const getVariantStyles: (theme: {
|
|
|
3505
3629
|
secondary: {
|
|
3506
3630
|
background: string;
|
|
3507
3631
|
color: string;
|
|
3508
|
-
|
|
3632
|
+
":not([disabled])": {
|
|
3509
3633
|
'@media(hover: hover)': {
|
|
3510
3634
|
':hover': {
|
|
3511
3635
|
background: string;
|
|
@@ -3519,9 +3643,7 @@ declare const getVariantStyles: (theme: {
|
|
|
3519
3643
|
tertiary: {
|
|
3520
3644
|
background: string;
|
|
3521
3645
|
color: string;
|
|
3522
|
-
|
|
3523
|
-
borderColor: string;
|
|
3524
|
-
':enabled': {
|
|
3646
|
+
":not([disabled])": {
|
|
3525
3647
|
'@media(hover: hover)': {
|
|
3526
3648
|
':hover': {
|
|
3527
3649
|
background: string;
|
|
@@ -3535,7 +3657,7 @@ declare const getVariantStyles: (theme: {
|
|
|
3535
3657
|
ghost: {
|
|
3536
3658
|
background: string;
|
|
3537
3659
|
color: string;
|
|
3538
|
-
|
|
3660
|
+
":not([disabled])": {
|
|
3539
3661
|
'@media(hover: hover)': {
|
|
3540
3662
|
':hover': {
|
|
3541
3663
|
background: string;
|
|
@@ -3683,15 +3805,18 @@ declare const getSizeStyles$2: (theme: {
|
|
|
3683
3805
|
gray30: string;
|
|
3684
3806
|
gray20: string;
|
|
3685
3807
|
gray10: string;
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3808
|
+
uiPink: string;
|
|
3809
|
+
uiPinkDark: string;
|
|
3810
|
+
uiPinkLight: string;
|
|
3811
|
+
brown: string;
|
|
3812
|
+
brownDark: string;
|
|
3813
|
+
brownLight: string;
|
|
3814
|
+
offWhite: string;
|
|
3815
|
+
offWhiteDark: string;
|
|
3816
|
+
offWhiteLight: string;
|
|
3817
|
+
softPink: string;
|
|
3818
|
+
warmYellow: string;
|
|
3819
|
+
softYellow: string;
|
|
3695
3820
|
red10: string;
|
|
3696
3821
|
red20: string;
|
|
3697
3822
|
red30: string;
|
|
@@ -3704,7 +3829,9 @@ declare const getSizeStyles$2: (theme: {
|
|
|
3704
3829
|
green90: string;
|
|
3705
3830
|
green80: string;
|
|
3706
3831
|
green70: string;
|
|
3707
|
-
green60: string;
|
|
3832
|
+
green60: string; /**
|
|
3833
|
+
* Size of the label
|
|
3834
|
+
*/
|
|
3708
3835
|
green50: string;
|
|
3709
3836
|
green40: string;
|
|
3710
3837
|
green30: string;
|
|
@@ -3738,6 +3865,9 @@ declare const getSizeStyles$2: (theme: {
|
|
|
3738
3865
|
brandSecondary: string;
|
|
3739
3866
|
brandSecondaryHover: string;
|
|
3740
3867
|
brandSecondaryActive: string;
|
|
3868
|
+
brandTertiary: string;
|
|
3869
|
+
brandTertiaryHover: string;
|
|
3870
|
+
brandTertiaryActive: string;
|
|
3741
3871
|
negative: string;
|
|
3742
3872
|
warning: string;
|
|
3743
3873
|
positive: string;
|
|
@@ -3752,7 +3882,9 @@ declare const getSizeStyles$2: (theme: {
|
|
|
3752
3882
|
negative: string;
|
|
3753
3883
|
warning: string;
|
|
3754
3884
|
positive: string;
|
|
3755
|
-
|
|
3885
|
+
onBrandPrimary: string;
|
|
3886
|
+
onBrandSecondary: string;
|
|
3887
|
+
onBrandTertiary: string;
|
|
3756
3888
|
};
|
|
3757
3889
|
icon: {
|
|
3758
3890
|
default: string;
|
|
@@ -3762,7 +3894,9 @@ declare const getSizeStyles$2: (theme: {
|
|
|
3762
3894
|
negative: string;
|
|
3763
3895
|
warning: string;
|
|
3764
3896
|
success: string;
|
|
3765
|
-
|
|
3897
|
+
onBrandPrimary: string;
|
|
3898
|
+
onBrandSecondary: string;
|
|
3899
|
+
onBrandTertiary: string;
|
|
3766
3900
|
};
|
|
3767
3901
|
border: {
|
|
3768
3902
|
default: string;
|
|
@@ -3831,13 +3965,17 @@ declare const getSizeStyles$2: (theme: {
|
|
|
3831
3965
|
fontSize: string;
|
|
3832
3966
|
lineHeight: string;
|
|
3833
3967
|
letterSpacing: string;
|
|
3968
|
+
fontFeatureSettings: string;
|
|
3834
3969
|
};
|
|
3835
3970
|
md: {
|
|
3836
3971
|
fontFamily: string;
|
|
3837
3972
|
fontWeight: string;
|
|
3838
3973
|
fontSize: string;
|
|
3839
|
-
lineHeight: string;
|
|
3974
|
+
lineHeight: string; /**
|
|
3975
|
+
* Size of the label
|
|
3976
|
+
*/
|
|
3840
3977
|
letterSpacing: string;
|
|
3978
|
+
fontFeatureSettings: string;
|
|
3841
3979
|
};
|
|
3842
3980
|
};
|
|
3843
3981
|
title: {
|
|
@@ -4055,15 +4193,18 @@ declare const getSizeStyles$1: (theme: {
|
|
|
4055
4193
|
gray30: string;
|
|
4056
4194
|
gray20: string;
|
|
4057
4195
|
gray10: string;
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4196
|
+
uiPink: string;
|
|
4197
|
+
uiPinkDark: string;
|
|
4198
|
+
uiPinkLight: string;
|
|
4199
|
+
brown: string;
|
|
4200
|
+
brownDark: string;
|
|
4201
|
+
brownLight: string;
|
|
4202
|
+
offWhite: string;
|
|
4203
|
+
offWhiteDark: string;
|
|
4204
|
+
offWhiteLight: string;
|
|
4205
|
+
softPink: string;
|
|
4206
|
+
warmYellow: string;
|
|
4207
|
+
softYellow: string;
|
|
4067
4208
|
red10: string;
|
|
4068
4209
|
red20: string;
|
|
4069
4210
|
red30: string;
|
|
@@ -4110,6 +4251,9 @@ declare const getSizeStyles$1: (theme: {
|
|
|
4110
4251
|
brandSecondary: string;
|
|
4111
4252
|
brandSecondaryHover: string;
|
|
4112
4253
|
brandSecondaryActive: string;
|
|
4254
|
+
brandTertiary: string;
|
|
4255
|
+
brandTertiaryHover: string;
|
|
4256
|
+
brandTertiaryActive: string;
|
|
4113
4257
|
negative: string;
|
|
4114
4258
|
warning: string;
|
|
4115
4259
|
positive: string;
|
|
@@ -4124,7 +4268,9 @@ declare const getSizeStyles$1: (theme: {
|
|
|
4124
4268
|
negative: string;
|
|
4125
4269
|
warning: string;
|
|
4126
4270
|
positive: string;
|
|
4127
|
-
|
|
4271
|
+
onBrandPrimary: string;
|
|
4272
|
+
onBrandSecondary: string;
|
|
4273
|
+
onBrandTertiary: string;
|
|
4128
4274
|
};
|
|
4129
4275
|
icon: {
|
|
4130
4276
|
default: string;
|
|
@@ -4134,7 +4280,9 @@ declare const getSizeStyles$1: (theme: {
|
|
|
4134
4280
|
negative: string;
|
|
4135
4281
|
warning: string;
|
|
4136
4282
|
success: string;
|
|
4137
|
-
|
|
4283
|
+
onBrandPrimary: string;
|
|
4284
|
+
onBrandSecondary: string;
|
|
4285
|
+
onBrandTertiary: string;
|
|
4138
4286
|
};
|
|
4139
4287
|
border: {
|
|
4140
4288
|
default: string;
|
|
@@ -4203,6 +4351,7 @@ declare const getSizeStyles$1: (theme: {
|
|
|
4203
4351
|
fontSize: string;
|
|
4204
4352
|
lineHeight: string;
|
|
4205
4353
|
letterSpacing: string;
|
|
4354
|
+
fontFeatureSettings: string;
|
|
4206
4355
|
};
|
|
4207
4356
|
md: {
|
|
4208
4357
|
fontFamily: string;
|
|
@@ -4210,6 +4359,7 @@ declare const getSizeStyles$1: (theme: {
|
|
|
4210
4359
|
fontSize: string;
|
|
4211
4360
|
lineHeight: string;
|
|
4212
4361
|
letterSpacing: string;
|
|
4362
|
+
fontFeatureSettings: string;
|
|
4213
4363
|
};
|
|
4214
4364
|
};
|
|
4215
4365
|
title: {
|
|
@@ -4400,15 +4550,18 @@ declare const getSizeStyles: (theme: {
|
|
|
4400
4550
|
gray30: string;
|
|
4401
4551
|
gray20: string;
|
|
4402
4552
|
gray10: string;
|
|
4403
|
-
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
|
|
4553
|
+
uiPink: string;
|
|
4554
|
+
uiPinkDark: string;
|
|
4555
|
+
uiPinkLight: string;
|
|
4556
|
+
brown: string;
|
|
4557
|
+
brownDark: string;
|
|
4558
|
+
brownLight: string;
|
|
4559
|
+
offWhite: string;
|
|
4560
|
+
offWhiteDark: string;
|
|
4561
|
+
offWhiteLight: string;
|
|
4562
|
+
softPink: string;
|
|
4563
|
+
warmYellow: string;
|
|
4564
|
+
softYellow: string;
|
|
4412
4565
|
red10: string;
|
|
4413
4566
|
red20: string;
|
|
4414
4567
|
red30: string;
|
|
@@ -4455,6 +4608,9 @@ declare const getSizeStyles: (theme: {
|
|
|
4455
4608
|
brandSecondary: string;
|
|
4456
4609
|
brandSecondaryHover: string;
|
|
4457
4610
|
brandSecondaryActive: string;
|
|
4611
|
+
brandTertiary: string;
|
|
4612
|
+
brandTertiaryHover: string;
|
|
4613
|
+
brandTertiaryActive: string;
|
|
4458
4614
|
negative: string;
|
|
4459
4615
|
warning: string;
|
|
4460
4616
|
positive: string;
|
|
@@ -4469,7 +4625,9 @@ declare const getSizeStyles: (theme: {
|
|
|
4469
4625
|
negative: string;
|
|
4470
4626
|
warning: string;
|
|
4471
4627
|
positive: string;
|
|
4472
|
-
|
|
4628
|
+
onBrandPrimary: string;
|
|
4629
|
+
onBrandSecondary: string;
|
|
4630
|
+
onBrandTertiary: string;
|
|
4473
4631
|
};
|
|
4474
4632
|
icon: {
|
|
4475
4633
|
default: string;
|
|
@@ -4479,7 +4637,9 @@ declare const getSizeStyles: (theme: {
|
|
|
4479
4637
|
negative: string;
|
|
4480
4638
|
warning: string;
|
|
4481
4639
|
success: string;
|
|
4482
|
-
|
|
4640
|
+
onBrandPrimary: string;
|
|
4641
|
+
onBrandSecondary: string;
|
|
4642
|
+
onBrandTertiary: string;
|
|
4483
4643
|
};
|
|
4484
4644
|
border: {
|
|
4485
4645
|
default: string;
|
|
@@ -4548,6 +4708,7 @@ declare const getSizeStyles: (theme: {
|
|
|
4548
4708
|
fontSize: string;
|
|
4549
4709
|
lineHeight: string;
|
|
4550
4710
|
letterSpacing: string;
|
|
4711
|
+
fontFeatureSettings: string;
|
|
4551
4712
|
};
|
|
4552
4713
|
md: {
|
|
4553
4714
|
fontFamily: string;
|
|
@@ -4555,6 +4716,7 @@ declare const getSizeStyles: (theme: {
|
|
|
4555
4716
|
fontSize: string;
|
|
4556
4717
|
lineHeight: string;
|
|
4557
4718
|
letterSpacing: string;
|
|
4719
|
+
fontFeatureSettings: string;
|
|
4558
4720
|
};
|
|
4559
4721
|
};
|
|
4560
4722
|
title: {
|
|
@@ -4587,9 +4749,7 @@ declare const getSizeStyles: (theme: {
|
|
|
4587
4749
|
letterSpacing: string;
|
|
4588
4750
|
};
|
|
4589
4751
|
'2xs': {
|
|
4590
|
-
fontFamily: string;
|
|
4591
|
-
* Truncates the text after a specific number of lines
|
|
4592
|
-
*/
|
|
4752
|
+
fontFamily: string;
|
|
4593
4753
|
fontWeight: string;
|
|
4594
4754
|
fontSize: string;
|
|
4595
4755
|
lineHeight: string;
|