@qasa/qds-ui 0.2.0 → 0.4.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.
Files changed (38) hide show
  1. package/dist/cjs/index.js +1 -1
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/avatar/avatar.d.ts +1 -0
  4. package/dist/cjs/types/components/button/button-styles.d.ts +67 -40
  5. package/dist/cjs/types/components/heading/heading.d.ts +37 -21
  6. package/dist/cjs/types/components/icon/create-icon.d.ts +31 -12
  7. package/dist/cjs/types/components/icon/icons/index.d.ts +1 -0
  8. package/dist/cjs/types/components/icon/icons/minus.d.ts +2 -0
  9. package/dist/cjs/types/components/icon-button/icon-button-styles.d.ts +50 -28
  10. package/dist/cjs/types/components/label/label.d.ts +24 -14
  11. package/dist/cjs/types/components/loading-dots/loading-dots.d.ts +23 -11
  12. package/dist/cjs/types/components/paragraph/paragraph.d.ts +24 -14
  13. package/dist/cjs/types/styles/common-styles.d.ts +28 -11
  14. package/dist/cjs/types/theme/foundations/colors.d.ts +21 -13
  15. package/dist/cjs/types/theme/foundations/index.d.ts +23 -11
  16. package/dist/cjs/types/theme/foundations/typography.d.ts +2 -0
  17. package/dist/cjs/types/theme/theme-tools.d.ts +23 -11
  18. package/dist/cjs/types/theme/theme.d.ts +23 -11
  19. package/dist/esm/index.js +1 -1
  20. package/dist/esm/index.js.map +1 -1
  21. package/dist/esm/types/components/avatar/avatar.d.ts +1 -0
  22. package/dist/esm/types/components/button/button-styles.d.ts +67 -40
  23. package/dist/esm/types/components/heading/heading.d.ts +37 -21
  24. package/dist/esm/types/components/icon/create-icon.d.ts +31 -12
  25. package/dist/esm/types/components/icon/icons/index.d.ts +1 -0
  26. package/dist/esm/types/components/icon/icons/minus.d.ts +2 -0
  27. package/dist/esm/types/components/icon-button/icon-button-styles.d.ts +50 -28
  28. package/dist/esm/types/components/label/label.d.ts +24 -14
  29. package/dist/esm/types/components/loading-dots/loading-dots.d.ts +23 -11
  30. package/dist/esm/types/components/paragraph/paragraph.d.ts +24 -14
  31. package/dist/esm/types/styles/common-styles.d.ts +28 -11
  32. package/dist/esm/types/theme/foundations/colors.d.ts +21 -13
  33. package/dist/esm/types/theme/foundations/index.d.ts +23 -11
  34. package/dist/esm/types/theme/foundations/typography.d.ts +2 -0
  35. package/dist/esm/types/theme/theme-tools.d.ts +23 -11
  36. package/dist/esm/types/theme/theme.d.ts +23 -11
  37. package/dist/index.d.ts +334 -174
  38. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -62,15 +62,18 @@ declare const theme: {
62
62
  gray30: string;
63
63
  gray20: string;
64
64
  gray10: string;
65
- brand90: string;
66
- brand80: string;
67
- brand70: string;
68
- brand60: string;
69
- brand50: string;
70
- brand40: string;
71
- brand30: string;
72
- brand20: string;
73
- brand10: string;
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;
74
77
  red10: string;
75
78
  red20: string;
76
79
  red30: string;
@@ -117,6 +120,9 @@ declare const theme: {
117
120
  brandSecondary: string;
118
121
  brandSecondaryHover: string;
119
122
  brandSecondaryActive: string;
123
+ brandTertiary: string;
124
+ brandTertiaryHover: string;
125
+ brandTertiaryActive: string;
120
126
  negative: string;
121
127
  warning: string;
122
128
  positive: string;
@@ -131,7 +137,9 @@ declare const theme: {
131
137
  negative: string;
132
138
  warning: string;
133
139
  positive: string;
134
- onColor: string;
140
+ onBrandPrimary: string;
141
+ onBrandSecondary: string;
142
+ onBrandTertiary: string;
135
143
  };
136
144
  icon: {
137
145
  default: string;
@@ -141,7 +149,9 @@ declare const theme: {
141
149
  negative: string;
142
150
  warning: string;
143
151
  success: string;
144
- onColor: string;
152
+ onBrandPrimary: string;
153
+ onBrandSecondary: string;
154
+ onBrandTertiary: string;
145
155
  };
146
156
  border: {
147
157
  default: string;
@@ -210,6 +220,7 @@ declare const theme: {
210
220
  fontSize: string;
211
221
  lineHeight: string;
212
222
  letterSpacing: string;
223
+ fontFeatureSettings: string;
213
224
  };
214
225
  md: {
215
226
  fontFamily: string;
@@ -217,6 +228,7 @@ declare const theme: {
217
228
  fontSize: string;
218
229
  lineHeight: string;
219
230
  letterSpacing: string;
231
+ fontFeatureSettings: string;
220
232
  };
221
233
  };
222
234
  title: {
@@ -362,6 +374,7 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
362
374
  fontSize: string;
363
375
  lineHeight: string;
364
376
  letterSpacing: string;
377
+ fontFeatureSettings: string;
365
378
  };
366
379
  md: {
367
380
  fontFamily: string;
@@ -369,6 +382,7 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
369
382
  fontSize: string;
370
383
  lineHeight: string;
371
384
  letterSpacing: string;
385
+ fontFeatureSettings: string;
372
386
  };
373
387
  };
374
388
  title: {
@@ -498,15 +512,18 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
498
512
  gray30: string;
499
513
  gray20: string;
500
514
  gray10: string;
501
- brand90: string;
502
- brand80: string;
503
- brand70: string;
504
- brand60: string;
505
- brand50: string;
506
- brand40: string;
507
- brand30: string;
508
- brand20: string;
509
- brand10: string;
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;
510
527
  red10: string;
511
528
  red20: string;
512
529
  red30: string;
@@ -553,6 +570,9 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
553
570
  brandSecondary: string;
554
571
  brandSecondaryHover: string;
555
572
  brandSecondaryActive: string;
573
+ brandTertiary: string;
574
+ brandTertiaryHover: string;
575
+ brandTertiaryActive: string;
556
576
  negative: string;
557
577
  warning: string;
558
578
  positive: string;
@@ -567,7 +587,9 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
567
587
  negative: string;
568
588
  warning: string;
569
589
  positive: string;
570
- onColor: string;
590
+ onBrandPrimary: string;
591
+ onBrandSecondary: string;
592
+ onBrandTertiary: string;
571
593
  };
572
594
  icon: {
573
595
  default: string;
@@ -577,7 +599,9 @@ declare const overrideTheme: (overrides: ThemeOverrides) => {
577
599
  negative: string;
578
600
  warning: string;
579
601
  success: string;
580
- onColor: string;
602
+ onBrandPrimary: string;
603
+ onBrandSecondary: string;
604
+ onBrandTertiary: string;
581
605
  };
582
606
  border: {
583
607
  default: string;
@@ -692,6 +716,7 @@ interface QdsProviderProps {
692
716
  declare function QdsProvider({ children, themeOverrides, cacheOptions }: QdsProviderProps): JSX.Element;
693
717
 
694
718
  declare const SIZE_MAP: {
719
+ xs: number;
695
720
  sm: number;
696
721
  md: number;
697
722
  lg: number;
@@ -799,15 +824,18 @@ declare const getFormFieldBaseStyles: (theme: {
799
824
  gray30: string;
800
825
  gray20: string;
801
826
  gray10: string;
802
- brand90: string;
803
- brand80: string;
804
- brand70: string;
805
- brand60: string;
806
- brand50: string;
807
- brand40: string;
808
- brand30: string;
809
- brand20: string;
810
- brand10: string;
827
+ uiPink: string;
828
+ uiPinkDark: string;
829
+ uiPinkLight: string;
830
+ brown: string;
831
+ brownDark: string;
832
+ brownLight: string;
833
+ offWhite: string;
834
+ offWhiteDark: string;
835
+ offWhiteLight: string;
836
+ softPink: string;
837
+ warmYellow: string;
838
+ softYellow: string;
811
839
  red10: string;
812
840
  red20: string;
813
841
  red30: string;
@@ -854,6 +882,9 @@ declare const getFormFieldBaseStyles: (theme: {
854
882
  brandSecondary: string;
855
883
  brandSecondaryHover: string;
856
884
  brandSecondaryActive: string;
885
+ brandTertiary: string;
886
+ brandTertiaryHover: string;
887
+ brandTertiaryActive: string;
857
888
  negative: string;
858
889
  warning: string;
859
890
  positive: string;
@@ -868,7 +899,9 @@ declare const getFormFieldBaseStyles: (theme: {
868
899
  negative: string;
869
900
  warning: string;
870
901
  positive: string;
871
- onColor: string;
902
+ onBrandPrimary: string;
903
+ onBrandSecondary: string;
904
+ onBrandTertiary: string;
872
905
  };
873
906
  icon: {
874
907
  default: string;
@@ -878,7 +911,9 @@ declare const getFormFieldBaseStyles: (theme: {
878
911
  negative: string;
879
912
  warning: string;
880
913
  success: string;
881
- onColor: string;
914
+ onBrandPrimary: string;
915
+ onBrandSecondary: string;
916
+ onBrandTertiary: string;
882
917
  };
883
918
  border: {
884
919
  default: string;
@@ -947,6 +982,7 @@ declare const getFormFieldBaseStyles: (theme: {
947
982
  fontSize: string;
948
983
  lineHeight: string;
949
984
  letterSpacing: string;
985
+ fontFeatureSettings: string;
950
986
  };
951
987
  md: {
952
988
  fontFamily: string;
@@ -954,6 +990,7 @@ declare const getFormFieldBaseStyles: (theme: {
954
990
  fontSize: string;
955
991
  lineHeight: string;
956
992
  letterSpacing: string;
993
+ fontFeatureSettings: string;
957
994
  };
958
995
  };
959
996
  title: {
@@ -1108,6 +1145,11 @@ declare const getFormFieldBaseStyles: (theme: {
1108
1145
  borderRadius: string;
1109
1146
  backgroundColor: string;
1110
1147
  color: string;
1148
+ WebkitTouchCallout: "none";
1149
+ WebkitTapHighlightColor: "transparent";
1150
+ '&::-webkit-date-and-time-value': {
1151
+ textAlign: "left";
1152
+ };
1111
1153
  alignItems: "center";
1112
1154
  };
1113
1155
 
@@ -1209,15 +1251,18 @@ declare const getSizeStyles$6: (theme: {
1209
1251
  gray30: string;
1210
1252
  gray20: string;
1211
1253
  gray10: string;
1212
- brand90: string;
1213
- brand80: string;
1214
- brand70: string;
1215
- brand60: string;
1216
- brand50: string;
1217
- brand40: string;
1218
- brand30: string;
1219
- brand20: string;
1220
- brand10: string;
1254
+ uiPink: string;
1255
+ uiPinkDark: string;
1256
+ uiPinkLight: string;
1257
+ brown: string;
1258
+ brownDark: string;
1259
+ brownLight: string;
1260
+ offWhite: string;
1261
+ offWhiteDark: string;
1262
+ offWhiteLight: string;
1263
+ softPink: string;
1264
+ warmYellow: string;
1265
+ softYellow: string;
1221
1266
  red10: string;
1222
1267
  red20: string;
1223
1268
  red30: string;
@@ -1264,6 +1309,9 @@ declare const getSizeStyles$6: (theme: {
1264
1309
  brandSecondary: string;
1265
1310
  brandSecondaryHover: string;
1266
1311
  brandSecondaryActive: string;
1312
+ brandTertiary: string;
1313
+ brandTertiaryHover: string;
1314
+ brandTertiaryActive: string;
1267
1315
  negative: string;
1268
1316
  warning: string;
1269
1317
  positive: string;
@@ -1278,7 +1326,9 @@ declare const getSizeStyles$6: (theme: {
1278
1326
  negative: string;
1279
1327
  warning: string;
1280
1328
  positive: string;
1281
- onColor: string;
1329
+ onBrandPrimary: string;
1330
+ onBrandSecondary: string;
1331
+ onBrandTertiary: string;
1282
1332
  };
1283
1333
  icon: {
1284
1334
  default: string;
@@ -1288,7 +1338,9 @@ declare const getSizeStyles$6: (theme: {
1288
1338
  negative: string;
1289
1339
  warning: string;
1290
1340
  success: string;
1291
- onColor: string;
1341
+ onBrandPrimary: string;
1342
+ onBrandSecondary: string;
1343
+ onBrandTertiary: string;
1292
1344
  };
1293
1345
  border: {
1294
1346
  default: string;
@@ -1357,6 +1409,7 @@ declare const getSizeStyles$6: (theme: {
1357
1409
  fontSize: string;
1358
1410
  lineHeight: string;
1359
1411
  letterSpacing: string;
1412
+ fontFeatureSettings: string;
1360
1413
  };
1361
1414
  md: {
1362
1415
  fontFamily: string;
@@ -1364,6 +1417,7 @@ declare const getSizeStyles$6: (theme: {
1364
1417
  fontSize: string;
1365
1418
  lineHeight: string;
1366
1419
  letterSpacing: string;
1420
+ fontFeatureSettings: string;
1367
1421
  };
1368
1422
  };
1369
1423
  title: {
@@ -1514,6 +1568,27 @@ declare const getSizeStyles$6: (theme: {
1514
1568
  paddingLeft: string;
1515
1569
  paddingRight: string;
1516
1570
  };
1571
+ lg: {
1572
+ fontFamily: string;
1573
+ fontWeight: string;
1574
+ fontSize: string;
1575
+ lineHeight: string;
1576
+ letterSpacing: string;
1577
+ height: string;
1578
+ minWidth: string;
1579
+ paddingLeft: string;
1580
+ paddingRight: string;
1581
+ };
1582
+ xl: {
1583
+ fontFamily: string;
1584
+ fontWeight: string;
1585
+ fontSize: string;
1586
+ lineHeight: string;
1587
+ letterSpacing: string;
1588
+ height: string;
1589
+ paddingLeft: string;
1590
+ paddingRight: string;
1591
+ };
1517
1592
  };
1518
1593
  declare const getVariantStyles$1: (theme: {
1519
1594
  mediaQueries: {
@@ -1573,15 +1648,18 @@ declare const getVariantStyles$1: (theme: {
1573
1648
  gray30: string;
1574
1649
  gray20: string;
1575
1650
  gray10: string;
1576
- brand90: string;
1577
- brand80: string;
1578
- brand70: string;
1579
- brand60: string;
1580
- brand50: string;
1581
- brand40: string;
1582
- brand30: string;
1583
- brand20: string;
1584
- brand10: string;
1651
+ uiPink: string;
1652
+ uiPinkDark: string;
1653
+ uiPinkLight: string;
1654
+ brown: string;
1655
+ brownDark: string;
1656
+ brownLight: string;
1657
+ offWhite: string;
1658
+ offWhiteDark: string;
1659
+ offWhiteLight: string;
1660
+ softPink: string;
1661
+ warmYellow: string;
1662
+ softYellow: string;
1585
1663
  red10: string;
1586
1664
  red20: string;
1587
1665
  red30: string;
@@ -1628,6 +1706,9 @@ declare const getVariantStyles$1: (theme: {
1628
1706
  brandSecondary: string;
1629
1707
  brandSecondaryHover: string;
1630
1708
  brandSecondaryActive: string;
1709
+ brandTertiary: string;
1710
+ brandTertiaryHover: string;
1711
+ brandTertiaryActive: string;
1631
1712
  negative: string;
1632
1713
  warning: string;
1633
1714
  positive: string;
@@ -1642,7 +1723,9 @@ declare const getVariantStyles$1: (theme: {
1642
1723
  negative: string;
1643
1724
  warning: string;
1644
1725
  positive: string;
1645
- onColor: string;
1726
+ onBrandPrimary: string;
1727
+ onBrandSecondary: string;
1728
+ onBrandTertiary: string;
1646
1729
  };
1647
1730
  icon: {
1648
1731
  default: string;
@@ -1652,7 +1735,9 @@ declare const getVariantStyles$1: (theme: {
1652
1735
  negative: string;
1653
1736
  warning: string;
1654
1737
  success: string;
1655
- onColor: string;
1738
+ onBrandPrimary: string;
1739
+ onBrandSecondary: string;
1740
+ onBrandTertiary: string;
1656
1741
  };
1657
1742
  border: {
1658
1743
  default: string;
@@ -1721,6 +1806,7 @@ declare const getVariantStyles$1: (theme: {
1721
1806
  fontSize: string;
1722
1807
  lineHeight: string;
1723
1808
  letterSpacing: string;
1809
+ fontFeatureSettings: string;
1724
1810
  };
1725
1811
  md: {
1726
1812
  fontFamily: string;
@@ -1728,6 +1814,7 @@ declare const getVariantStyles$1: (theme: {
1728
1814
  fontSize: string;
1729
1815
  lineHeight: string;
1730
1816
  letterSpacing: string;
1817
+ fontFeatureSettings: string;
1731
1818
  };
1732
1819
  };
1733
1820
  title: {
@@ -1876,8 +1963,6 @@ declare const getVariantStyles$1: (theme: {
1876
1963
  tertiary: {
1877
1964
  background: string;
1878
1965
  color: string;
1879
- border: string;
1880
- borderColor: string;
1881
1966
  ":not([disabled])": {
1882
1967
  '@media(hover: hover)': {
1883
1968
  ':hover': {
@@ -1889,22 +1974,6 @@ declare const getVariantStyles$1: (theme: {
1889
1974
  };
1890
1975
  };
1891
1976
  };
1892
- ghost: {
1893
- background: string;
1894
- color: string;
1895
- textDecoration: string;
1896
- textUnderlineOffset: number;
1897
- ":not([disabled])": {
1898
- '@media(hover: hover)': {
1899
- ':hover': {
1900
- background: string;
1901
- };
1902
- ':active': {
1903
- background: string;
1904
- };
1905
- };
1906
- };
1907
- };
1908
1977
  };
1909
1978
 
1910
1979
  declare type ButtonVariant = VariantProps<typeof getVariantStyles$1>;
@@ -2015,15 +2084,18 @@ declare const getSizeStyles$5: (theme: {
2015
2084
  gray30: string;
2016
2085
  gray20: string;
2017
2086
  gray10: string;
2018
- brand90: string;
2019
- brand80: string;
2020
- brand70: string;
2021
- brand60: string;
2022
- brand50: string;
2023
- brand40: string;
2024
- brand30: string;
2025
- brand20: string;
2026
- brand10: string;
2087
+ uiPink: string;
2088
+ uiPinkDark: string;
2089
+ uiPinkLight: string;
2090
+ brown: string;
2091
+ brownDark: string;
2092
+ brownLight: string;
2093
+ offWhite: string;
2094
+ offWhiteDark: string;
2095
+ offWhiteLight: string;
2096
+ softPink: string;
2097
+ warmYellow: string;
2098
+ softYellow: string;
2027
2099
  red10: string;
2028
2100
  red20: string;
2029
2101
  red30: string;
@@ -2067,9 +2139,16 @@ declare const getSizeStyles$5: (theme: {
2067
2139
  brandPrimary: string;
2068
2140
  brandPrimaryHover: string;
2069
2141
  brandPrimaryActive: string;
2142
+ /**
2143
+ * Alignment of the heading
2144
+ * @default 'left'
2145
+ */
2070
2146
  brandSecondary: string;
2071
2147
  brandSecondaryHover: string;
2072
2148
  brandSecondaryActive: string;
2149
+ brandTertiary: string;
2150
+ brandTertiaryHover: string;
2151
+ brandTertiaryActive: string;
2073
2152
  negative: string;
2074
2153
  warning: string;
2075
2154
  positive: string;
@@ -2084,7 +2163,9 @@ declare const getSizeStyles$5: (theme: {
2084
2163
  negative: string;
2085
2164
  warning: string;
2086
2165
  positive: string;
2087
- onColor: string;
2166
+ onBrandPrimary: string;
2167
+ onBrandSecondary: string;
2168
+ onBrandTertiary: string;
2088
2169
  };
2089
2170
  icon: {
2090
2171
  default: string;
@@ -2094,7 +2175,9 @@ declare const getSizeStyles$5: (theme: {
2094
2175
  negative: string;
2095
2176
  warning: string;
2096
2177
  success: string;
2097
- onColor: string;
2178
+ onBrandPrimary: string;
2179
+ onBrandSecondary: string;
2180
+ onBrandTertiary: string;
2098
2181
  };
2099
2182
  border: {
2100
2183
  default: string;
@@ -2163,6 +2246,7 @@ declare const getSizeStyles$5: (theme: {
2163
2246
  fontSize: string;
2164
2247
  lineHeight: string;
2165
2248
  letterSpacing: string;
2249
+ fontFeatureSettings: string;
2166
2250
  };
2167
2251
  md: {
2168
2252
  fontFamily: string;
@@ -2170,6 +2254,7 @@ declare const getSizeStyles$5: (theme: {
2170
2254
  fontSize: string;
2171
2255
  lineHeight: string;
2172
2256
  letterSpacing: string;
2257
+ fontFeatureSettings: string;
2173
2258
  };
2174
2259
  };
2175
2260
  title: {
@@ -2198,15 +2283,15 @@ declare const getSizeStyles$5: (theme: {
2198
2283
  fontFamily: string;
2199
2284
  fontWeight: string;
2200
2285
  fontSize: string;
2201
- lineHeight: string;
2286
+ lineHeight: string; /**
2287
+ * Alignment of the heading
2288
+ * @default 'left'
2289
+ */
2202
2290
  letterSpacing: string;
2203
2291
  };
2204
2292
  '2xs': {
2205
2293
  fontFamily: string;
2206
- fontWeight: string; /**
2207
- * Alignment of the heading
2208
- * @default 'left'
2209
- */
2294
+ fontWeight: string;
2210
2295
  fontSize: string;
2211
2296
  lineHeight: string;
2212
2297
  letterSpacing: string;
@@ -2315,15 +2400,15 @@ declare const getSizeStyles$5: (theme: {
2315
2400
  fontFamily: string;
2316
2401
  fontWeight: string;
2317
2402
  fontSize: string;
2318
- lineHeight: string;
2403
+ lineHeight: string; /**
2404
+ * Alignment of the heading
2405
+ * @default 'left'
2406
+ */
2319
2407
  letterSpacing: string;
2320
2408
  };
2321
2409
  '2xs': {
2322
2410
  fontFamily: string;
2323
- fontWeight: string; /**
2324
- * Alignment of the heading
2325
- * @default 'left'
2326
- */
2411
+ fontWeight: string;
2327
2412
  fontSize: string;
2328
2413
  lineHeight: string;
2329
2414
  letterSpacing: string;
@@ -2406,6 +2491,9 @@ declare const getSizeStyles$4: (theme: {
2406
2491
  tooltip: number;
2407
2492
  };
2408
2493
  colors: {
2494
+ /**
2495
+ * The `svg`'s `viewBox` attribute
2496
+ */
2409
2497
  core: {
2410
2498
  black: string;
2411
2499
  white: string;
@@ -2418,15 +2506,18 @@ declare const getSizeStyles$4: (theme: {
2418
2506
  gray30: string;
2419
2507
  gray20: string;
2420
2508
  gray10: string;
2421
- brand90: string;
2422
- brand80: string;
2423
- brand70: string;
2424
- brand60: string;
2425
- brand50: string;
2426
- brand40: string;
2427
- brand30: string;
2428
- brand20: string;
2429
- brand10: string;
2509
+ uiPink: string;
2510
+ uiPinkDark: string;
2511
+ uiPinkLight: string;
2512
+ brown: string;
2513
+ brownDark: string;
2514
+ brownLight: string;
2515
+ offWhite: string;
2516
+ offWhiteDark: string;
2517
+ offWhiteLight: string;
2518
+ softPink: string;
2519
+ warmYellow: string;
2520
+ softYellow: string;
2430
2521
  red10: string;
2431
2522
  red20: string;
2432
2523
  red30: string;
@@ -2438,7 +2529,11 @@ declare const getSizeStyles$4: (theme: {
2438
2529
  red90: string;
2439
2530
  green90: string;
2440
2531
  green80: string;
2441
- green70: string;
2532
+ green70: string; /**
2533
+ * The size of the icon.
2534
+ *
2535
+ * @default 16
2536
+ */
2442
2537
  green60: string;
2443
2538
  green50: string;
2444
2539
  green40: string;
@@ -2473,6 +2568,9 @@ declare const getSizeStyles$4: (theme: {
2473
2568
  brandSecondary: string;
2474
2569
  brandSecondaryHover: string;
2475
2570
  brandSecondaryActive: string;
2571
+ brandTertiary: string;
2572
+ brandTertiaryHover: string;
2573
+ brandTertiaryActive: string;
2476
2574
  negative: string;
2477
2575
  warning: string;
2478
2576
  positive: string;
@@ -2487,7 +2585,9 @@ declare const getSizeStyles$4: (theme: {
2487
2585
  negative: string;
2488
2586
  warning: string;
2489
2587
  positive: string;
2490
- onColor: string;
2588
+ onBrandPrimary: string;
2589
+ onBrandSecondary: string;
2590
+ onBrandTertiary: string;
2491
2591
  };
2492
2592
  icon: {
2493
2593
  default: string;
@@ -2497,7 +2597,9 @@ declare const getSizeStyles$4: (theme: {
2497
2597
  negative: string;
2498
2598
  warning: string;
2499
2599
  success: string;
2500
- onColor: string;
2600
+ onBrandPrimary: string;
2601
+ onBrandSecondary: string;
2602
+ onBrandTertiary: string;
2501
2603
  };
2502
2604
  border: {
2503
2605
  default: string;
@@ -2570,6 +2672,7 @@ declare const getSizeStyles$4: (theme: {
2570
2672
  fontSize: string;
2571
2673
  lineHeight: string;
2572
2674
  letterSpacing: string;
2675
+ fontFeatureSettings: string;
2573
2676
  };
2574
2677
  md: {
2575
2678
  fontFamily: string;
@@ -2577,6 +2680,7 @@ declare const getSizeStyles$4: (theme: {
2577
2680
  fontSize: string;
2578
2681
  lineHeight: string;
2579
2682
  letterSpacing: string;
2683
+ fontFeatureSettings: string;
2580
2684
  };
2581
2685
  };
2582
2686
  title: {
@@ -2798,6 +2902,8 @@ declare const LocationDotIcon: react.ForwardRefExoticComponent<IconProps & react
2798
2902
 
2799
2903
  declare const MapIcon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
2800
2904
 
2905
+ declare const MinusIcon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
2906
+
2801
2907
  declare const PlusIcon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
2802
2908
 
2803
2909
  declare const SearchIcon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
@@ -2872,15 +2978,18 @@ declare const getSizeStyles$3: (theme: {
2872
2978
  gray30: string;
2873
2979
  gray20: string;
2874
2980
  gray10: string;
2875
- brand90: string;
2876
- brand80: string;
2877
- brand70: string;
2878
- brand60: string;
2879
- brand50: string;
2880
- brand40: string;
2881
- brand30: string;
2882
- brand20: string;
2883
- brand10: string;
2981
+ uiPink: string;
2982
+ uiPinkDark: string;
2983
+ uiPinkLight: string;
2984
+ brown: string;
2985
+ brownDark: string;
2986
+ brownLight: string;
2987
+ offWhite: string;
2988
+ offWhiteDark: string;
2989
+ offWhiteLight: string;
2990
+ softPink: string;
2991
+ warmYellow: string;
2992
+ softYellow: string;
2884
2993
  red10: string;
2885
2994
  red20: string;
2886
2995
  red30: string;
@@ -2927,6 +3036,9 @@ declare const getSizeStyles$3: (theme: {
2927
3036
  brandSecondary: string;
2928
3037
  brandSecondaryHover: string;
2929
3038
  brandSecondaryActive: string;
3039
+ brandTertiary: string;
3040
+ brandTertiaryHover: string;
3041
+ brandTertiaryActive: string;
2930
3042
  negative: string;
2931
3043
  warning: string;
2932
3044
  positive: string;
@@ -2941,7 +3053,9 @@ declare const getSizeStyles$3: (theme: {
2941
3053
  negative: string;
2942
3054
  warning: string;
2943
3055
  positive: string;
2944
- onColor: string;
3056
+ onBrandPrimary: string;
3057
+ onBrandSecondary: string;
3058
+ onBrandTertiary: string;
2945
3059
  };
2946
3060
  icon: {
2947
3061
  default: string;
@@ -2951,7 +3065,9 @@ declare const getSizeStyles$3: (theme: {
2951
3065
  negative: string;
2952
3066
  warning: string;
2953
3067
  success: string;
2954
- onColor: string;
3068
+ onBrandPrimary: string;
3069
+ onBrandSecondary: string;
3070
+ onBrandTertiary: string;
2955
3071
  };
2956
3072
  border: {
2957
3073
  default: string;
@@ -3020,6 +3136,7 @@ declare const getSizeStyles$3: (theme: {
3020
3136
  fontSize: string;
3021
3137
  lineHeight: string;
3022
3138
  letterSpacing: string;
3139
+ fontFeatureSettings: string;
3023
3140
  };
3024
3141
  md: {
3025
3142
  fontFamily: string;
@@ -3027,6 +3144,7 @@ declare const getSizeStyles$3: (theme: {
3027
3144
  fontSize: string;
3028
3145
  lineHeight: string;
3029
3146
  letterSpacing: string;
3147
+ fontFeatureSettings: string;
3030
3148
  };
3031
3149
  };
3032
3150
  title: {
@@ -3218,15 +3336,18 @@ declare const getVariantStyles: (theme: {
3218
3336
  gray30: string;
3219
3337
  gray20: string;
3220
3338
  gray10: string;
3221
- brand90: string;
3222
- brand80: string;
3223
- brand70: string;
3224
- brand60: string;
3225
- brand50: string;
3226
- brand40: string;
3227
- brand30: string;
3228
- brand20: string;
3229
- brand10: string;
3339
+ uiPink: string;
3340
+ uiPinkDark: string;
3341
+ uiPinkLight: string;
3342
+ brown: string;
3343
+ brownDark: string;
3344
+ brownLight: string;
3345
+ offWhite: string;
3346
+ offWhiteDark: string;
3347
+ offWhiteLight: string;
3348
+ softPink: string;
3349
+ warmYellow: string;
3350
+ softYellow: string;
3230
3351
  red10: string;
3231
3352
  red20: string;
3232
3353
  red30: string;
@@ -3273,6 +3394,9 @@ declare const getVariantStyles: (theme: {
3273
3394
  brandSecondary: string;
3274
3395
  brandSecondaryHover: string;
3275
3396
  brandSecondaryActive: string;
3397
+ brandTertiary: string;
3398
+ brandTertiaryHover: string;
3399
+ brandTertiaryActive: string;
3276
3400
  negative: string;
3277
3401
  warning: string;
3278
3402
  positive: string;
@@ -3287,7 +3411,9 @@ declare const getVariantStyles: (theme: {
3287
3411
  negative: string;
3288
3412
  warning: string;
3289
3413
  positive: string;
3290
- onColor: string;
3414
+ onBrandPrimary: string;
3415
+ onBrandSecondary: string;
3416
+ onBrandTertiary: string;
3291
3417
  };
3292
3418
  icon: {
3293
3419
  default: string;
@@ -3297,7 +3423,9 @@ declare const getVariantStyles: (theme: {
3297
3423
  negative: string;
3298
3424
  warning: string;
3299
3425
  success: string;
3300
- onColor: string;
3426
+ onBrandPrimary: string;
3427
+ onBrandSecondary: string;
3428
+ onBrandTertiary: string;
3301
3429
  };
3302
3430
  border: {
3303
3431
  default: string;
@@ -3366,6 +3494,7 @@ declare const getVariantStyles: (theme: {
3366
3494
  fontSize: string;
3367
3495
  lineHeight: string;
3368
3496
  letterSpacing: string;
3497
+ fontFeatureSettings: string;
3369
3498
  };
3370
3499
  md: {
3371
3500
  fontFamily: string;
@@ -3373,6 +3502,7 @@ declare const getVariantStyles: (theme: {
3373
3502
  fontSize: string;
3374
3503
  lineHeight: string;
3375
3504
  letterSpacing: string;
3505
+ fontFeatureSettings: string;
3376
3506
  };
3377
3507
  };
3378
3508
  title: {
@@ -3493,7 +3623,7 @@ declare const getVariantStyles: (theme: {
3493
3623
  primary: {
3494
3624
  background: string;
3495
3625
  color: string;
3496
- ':enabled': {
3626
+ ":not([disabled])": {
3497
3627
  '@media(hover: hover)': {
3498
3628
  ':hover': {
3499
3629
  background: string;
@@ -3507,7 +3637,7 @@ declare const getVariantStyles: (theme: {
3507
3637
  secondary: {
3508
3638
  background: string;
3509
3639
  color: string;
3510
- ':enabled': {
3640
+ ":not([disabled])": {
3511
3641
  '@media(hover: hover)': {
3512
3642
  ':hover': {
3513
3643
  background: string;
@@ -3521,9 +3651,7 @@ declare const getVariantStyles: (theme: {
3521
3651
  tertiary: {
3522
3652
  background: string;
3523
3653
  color: string;
3524
- border: string;
3525
- borderColor: string;
3526
- ':enabled': {
3654
+ ":not([disabled])": {
3527
3655
  '@media(hover: hover)': {
3528
3656
  ':hover': {
3529
3657
  background: string;
@@ -3537,7 +3665,7 @@ declare const getVariantStyles: (theme: {
3537
3665
  ghost: {
3538
3666
  background: string;
3539
3667
  color: string;
3540
- ':enabled': {
3668
+ ":not([disabled])": {
3541
3669
  '@media(hover: hover)': {
3542
3670
  ':hover': {
3543
3671
  background: string;
@@ -3685,15 +3813,18 @@ declare const getSizeStyles$2: (theme: {
3685
3813
  gray30: string;
3686
3814
  gray20: string;
3687
3815
  gray10: string;
3688
- brand90: string;
3689
- brand80: string;
3690
- brand70: string;
3691
- brand60: string;
3692
- brand50: string;
3693
- brand40: string;
3694
- brand30: string;
3695
- brand20: string;
3696
- brand10: string;
3816
+ uiPink: string;
3817
+ uiPinkDark: string;
3818
+ uiPinkLight: string;
3819
+ brown: string;
3820
+ brownDark: string;
3821
+ brownLight: string;
3822
+ offWhite: string;
3823
+ offWhiteDark: string;
3824
+ offWhiteLight: string;
3825
+ softPink: string;
3826
+ warmYellow: string;
3827
+ softYellow: string;
3697
3828
  red10: string;
3698
3829
  red20: string;
3699
3830
  red30: string;
@@ -3740,6 +3871,9 @@ declare const getSizeStyles$2: (theme: {
3740
3871
  brandSecondary: string;
3741
3872
  brandSecondaryHover: string;
3742
3873
  brandSecondaryActive: string;
3874
+ brandTertiary: string;
3875
+ brandTertiaryHover: string;
3876
+ brandTertiaryActive: string;
3743
3877
  negative: string;
3744
3878
  warning: string;
3745
3879
  positive: string;
@@ -3754,7 +3888,9 @@ declare const getSizeStyles$2: (theme: {
3754
3888
  negative: string;
3755
3889
  warning: string;
3756
3890
  positive: string;
3757
- onColor: string;
3891
+ onBrandPrimary: string;
3892
+ onBrandSecondary: string;
3893
+ onBrandTertiary: string;
3758
3894
  };
3759
3895
  icon: {
3760
3896
  default: string;
@@ -3764,7 +3900,9 @@ declare const getSizeStyles$2: (theme: {
3764
3900
  negative: string;
3765
3901
  warning: string;
3766
3902
  success: string;
3767
- onColor: string;
3903
+ onBrandPrimary: string;
3904
+ onBrandSecondary: string;
3905
+ onBrandTertiary: string;
3768
3906
  };
3769
3907
  border: {
3770
3908
  default: string;
@@ -3833,6 +3971,7 @@ declare const getSizeStyles$2: (theme: {
3833
3971
  fontSize: string;
3834
3972
  lineHeight: string;
3835
3973
  letterSpacing: string;
3974
+ fontFeatureSettings: string;
3836
3975
  };
3837
3976
  md: {
3838
3977
  fontFamily: string;
@@ -3840,6 +3979,7 @@ declare const getSizeStyles$2: (theme: {
3840
3979
  fontSize: string;
3841
3980
  lineHeight: string;
3842
3981
  letterSpacing: string;
3982
+ fontFeatureSettings: string;
3843
3983
  };
3844
3984
  };
3845
3985
  title: {
@@ -3955,9 +4095,7 @@ declare const getSizeStyles$2: (theme: {
3955
4095
  letterSpacing: string;
3956
4096
  };
3957
4097
  };
3958
- }; /**
3959
- * Size of the label
3960
- */
4098
+ };
3961
4099
  }) => {
3962
4100
  sm: {
3963
4101
  fontFamily: string;
@@ -4057,15 +4195,18 @@ declare const getSizeStyles$1: (theme: {
4057
4195
  gray30: string;
4058
4196
  gray20: string;
4059
4197
  gray10: string;
4060
- brand90: string;
4061
- brand80: string;
4062
- brand70: string;
4063
- brand60: string;
4064
- brand50: string;
4065
- brand40: string;
4066
- brand30: string;
4067
- brand20: string;
4068
- brand10: string;
4198
+ uiPink: string;
4199
+ uiPinkDark: string;
4200
+ uiPinkLight: string;
4201
+ brown: string;
4202
+ brownDark: string;
4203
+ brownLight: string;
4204
+ offWhite: string;
4205
+ offWhiteDark: string;
4206
+ offWhiteLight: string;
4207
+ softPink: string;
4208
+ warmYellow: string;
4209
+ softYellow: string;
4069
4210
  red10: string;
4070
4211
  red20: string;
4071
4212
  red30: string;
@@ -4112,6 +4253,9 @@ declare const getSizeStyles$1: (theme: {
4112
4253
  brandSecondary: string;
4113
4254
  brandSecondaryHover: string;
4114
4255
  brandSecondaryActive: string;
4256
+ brandTertiary: string;
4257
+ brandTertiaryHover: string;
4258
+ brandTertiaryActive: string;
4115
4259
  negative: string;
4116
4260
  warning: string;
4117
4261
  positive: string;
@@ -4126,7 +4270,9 @@ declare const getSizeStyles$1: (theme: {
4126
4270
  negative: string;
4127
4271
  warning: string;
4128
4272
  positive: string;
4129
- onColor: string;
4273
+ onBrandPrimary: string;
4274
+ onBrandSecondary: string;
4275
+ onBrandTertiary: string;
4130
4276
  };
4131
4277
  icon: {
4132
4278
  default: string;
@@ -4136,7 +4282,9 @@ declare const getSizeStyles$1: (theme: {
4136
4282
  negative: string;
4137
4283
  warning: string;
4138
4284
  success: string;
4139
- onColor: string;
4285
+ onBrandPrimary: string;
4286
+ onBrandSecondary: string;
4287
+ onBrandTertiary: string;
4140
4288
  };
4141
4289
  border: {
4142
4290
  default: string;
@@ -4205,6 +4353,7 @@ declare const getSizeStyles$1: (theme: {
4205
4353
  fontSize: string;
4206
4354
  lineHeight: string;
4207
4355
  letterSpacing: string;
4356
+ fontFeatureSettings: string;
4208
4357
  };
4209
4358
  md: {
4210
4359
  fontFamily: string;
@@ -4212,6 +4361,7 @@ declare const getSizeStyles$1: (theme: {
4212
4361
  fontSize: string;
4213
4362
  lineHeight: string;
4214
4363
  letterSpacing: string;
4364
+ fontFeatureSettings: string;
4215
4365
  };
4216
4366
  };
4217
4367
  title: {
@@ -4402,15 +4552,18 @@ declare const getSizeStyles: (theme: {
4402
4552
  gray30: string;
4403
4553
  gray20: string;
4404
4554
  gray10: string;
4405
- brand90: string;
4406
- brand80: string;
4407
- brand70: string;
4408
- brand60: string;
4409
- brand50: string;
4410
- brand40: string;
4411
- brand30: string;
4412
- brand20: string;
4413
- brand10: string;
4555
+ uiPink: string;
4556
+ uiPinkDark: string;
4557
+ uiPinkLight: string;
4558
+ brown: string;
4559
+ brownDark: string;
4560
+ brownLight: string;
4561
+ offWhite: string;
4562
+ offWhiteDark: string;
4563
+ offWhiteLight: string;
4564
+ softPink: string;
4565
+ warmYellow: string;
4566
+ softYellow: string;
4414
4567
  red10: string;
4415
4568
  red20: string;
4416
4569
  red30: string;
@@ -4457,6 +4610,9 @@ declare const getSizeStyles: (theme: {
4457
4610
  brandSecondary: string;
4458
4611
  brandSecondaryHover: string;
4459
4612
  brandSecondaryActive: string;
4613
+ brandTertiary: string;
4614
+ brandTertiaryHover: string;
4615
+ brandTertiaryActive: string;
4460
4616
  negative: string;
4461
4617
  warning: string;
4462
4618
  positive: string;
@@ -4471,7 +4627,9 @@ declare const getSizeStyles: (theme: {
4471
4627
  negative: string;
4472
4628
  warning: string;
4473
4629
  positive: string;
4474
- onColor: string;
4630
+ onBrandPrimary: string;
4631
+ onBrandSecondary: string;
4632
+ onBrandTertiary: string;
4475
4633
  };
4476
4634
  icon: {
4477
4635
  default: string;
@@ -4481,7 +4639,9 @@ declare const getSizeStyles: (theme: {
4481
4639
  negative: string;
4482
4640
  warning: string;
4483
4641
  success: string;
4484
- onColor: string;
4642
+ onBrandPrimary: string;
4643
+ onBrandSecondary: string;
4644
+ onBrandTertiary: string;
4485
4645
  };
4486
4646
  border: {
4487
4647
  default: string;
@@ -4550,6 +4710,7 @@ declare const getSizeStyles: (theme: {
4550
4710
  fontSize: string;
4551
4711
  lineHeight: string;
4552
4712
  letterSpacing: string;
4713
+ fontFeatureSettings: string;
4553
4714
  };
4554
4715
  md: {
4555
4716
  fontFamily: string;
@@ -4557,6 +4718,7 @@ declare const getSizeStyles: (theme: {
4557
4718
  fontSize: string;
4558
4719
  lineHeight: string;
4559
4720
  letterSpacing: string;
4721
+ fontFeatureSettings: string;
4560
4722
  };
4561
4723
  };
4562
4724
  title: {
@@ -4589,9 +4751,7 @@ declare const getSizeStyles: (theme: {
4589
4751
  letterSpacing: string;
4590
4752
  };
4591
4753
  '2xs': {
4592
- fontFamily: string; /**
4593
- * Truncates the text after a specific number of lines
4594
- */
4754
+ fontFamily: string;
4595
4755
  fontWeight: string;
4596
4756
  fontSize: string;
4597
4757
  lineHeight: string;
@@ -5001,4 +5161,4 @@ declare function useStableId(fixedId?: string | null): string;
5001
5161
  */
5002
5162
  declare const useSafeLayoutEffect: typeof useLayoutEffect;
5003
5163
 
5004
- export { ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Avatar, AvatarProps, BellIcon, BellSlashIcon, Button, ButtonProps, CalendarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CreateIconOptions, Divider, DividerProps, EllipsisIcon, EllipsisVerticalIcon, ForwardRefComponent, GlobalStyles, Heading, HeadingProps, HeartFilledIcon, HeartIcon, IconButton, IconButtonProps, IconProps, Image, ImageIcon, ImageProps, InputBase, InputBaseOptions, InputBaseProps, IntrinsicElement, Label, LabelProps, Link, LinkProps, LoadingDots, LoadingDotsProps, LocationDotIcon, MapIcon, OwnProps, Paragraph, ParagraphProps, PlusIcon, PropsOf, QdsProvider, SearchIcon, Select, SelectBase, SelectBaseOptions, SelectOptionProps, SelectProps, SettingsIcon, Spacer, SpacerProps, Stack, StackProps, StarFilledIcon, StarIcon, TextField, TextFieldProps, Textarea, TextareaBase, TextareaBaseOptions, TextareaBaseProps, TextareaProps, Theme, ThemeOverrides, TrashIcon, UseBreakpointOptions, UseBreakpointValueProps, UseFormFieldProps, UseImageProps, UserIcon, VariantProps, XmarkIcon, createIcon, createStyle, createStyleVariants, getFormFieldBaseStyles, overrideTheme, pxToRem, theme, useBreakpoint, useBreakpointValue, useFormField, useImage, useSafeLayoutEffect, useStableId };
5164
+ export { ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Avatar, AvatarProps, BellIcon, BellSlashIcon, Button, ButtonProps, CalendarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CreateIconOptions, Divider, DividerProps, EllipsisIcon, EllipsisVerticalIcon, ForwardRefComponent, GlobalStyles, Heading, HeadingProps, HeartFilledIcon, HeartIcon, IconButton, IconButtonProps, IconProps, Image, ImageIcon, ImageProps, InputBase, InputBaseOptions, InputBaseProps, IntrinsicElement, Label, LabelProps, Link, LinkProps, LoadingDots, LoadingDotsProps, LocationDotIcon, MapIcon, MinusIcon, OwnProps, Paragraph, ParagraphProps, PlusIcon, PropsOf, QdsProvider, SearchIcon, Select, SelectBase, SelectBaseOptions, SelectOptionProps, SelectProps, SettingsIcon, Spacer, SpacerProps, Stack, StackProps, StarFilledIcon, StarIcon, TextField, TextFieldProps, Textarea, TextareaBase, TextareaBaseOptions, TextareaBaseProps, TextareaProps, Theme, ThemeOverrides, TrashIcon, UseBreakpointOptions, UseBreakpointValueProps, UseFormFieldProps, UseImageProps, UserIcon, VariantProps, XmarkIcon, createIcon, createStyle, createStyleVariants, getFormFieldBaseStyles, overrideTheme, pxToRem, theme, useBreakpoint, useBreakpointValue, useFormField, useImage, useSafeLayoutEffect, useStableId };