@razorpay/blade 9.0.2 → 9.1.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.
@@ -589,7 +589,7 @@ type Motion = Readonly<{
589
589
  easing: Easing;
590
590
  }>;
591
591
 
592
- type ElevationLevels = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
592
+ type ElevationLevels$1 = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
593
593
 
594
594
  type ElevationStyles = Readonly<{
595
595
  elevation: number;
@@ -609,7 +609,7 @@ type ElevationStyles = Readonly<{
609
609
  }>;
610
610
 
611
611
  type Elevation = Record<
612
- ElevationLevels,
612
+ ElevationLevels$1,
613
613
  Platform.Select<{
614
614
  web: string;
615
615
  native: ElevationStyles;
@@ -1369,6 +1369,8 @@ declare const validBoxAsValues$1 = [
1369
1369
 
1370
1370
  type BoxAsType$1 = typeof validBoxAsValues$1[number];
1371
1371
 
1372
+ type BrandColorString$1 = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
1373
+
1372
1374
  // Visual props that are common for both Box and BaseBox
1373
1375
  type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
1374
1376
  {
@@ -1393,17 +1395,30 @@ type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
1393
1395
  | 'backgroundPosition'
1394
1396
  | 'backgroundOrigin'
1395
1397
  | 'backgroundRepeat'
1396
- >
1398
+ > & {
1399
+ /**
1400
+ * Sets the elevation for Box
1401
+ *
1402
+ * eg: `theme.elevation.midRaised`
1403
+ *
1404
+ * @default `theme.elevation.lowRaised`
1405
+ *
1406
+ * **Links:**
1407
+ * - Docs: https://blade.razorpay.com/?path=/docs/tokens-elevation--page
1408
+ */
1409
+ elevation?: keyof Elevation;
1410
+ }
1397
1411
  >;
1398
1412
 
1399
1413
  // Visual props that are specific BaseBox
1400
1414
  // This is used to ensure some of the more flexible BaseBox props are not passed to Box
1401
- type BaseBoxVisualProps = MakeObjectResponsive$1<
1415
+ type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
1402
1416
  {
1403
1417
  backgroundColor:
1404
1418
  | BackgroundColorString$1<'feedback'>
1405
1419
  | BackgroundColorString$1<'surface'>
1406
1420
  | BackgroundColorString$1<'action'>
1421
+ | BrandColorString$1
1407
1422
  | (string & Record<never, never>);
1408
1423
  lineHeight: SpacingValueType$1;
1409
1424
  touchAction: CSSObject['touchAction'];
@@ -1421,14 +1436,14 @@ type BaseBoxVisualProps = MakeObjectResponsive$1<
1421
1436
 
1422
1437
  // Visual props that are specific to Box
1423
1438
  type BoxVisualProps$1 = MakeObjectResponsive$1<{
1424
- backgroundColor: BackgroundColorString$1<'surface'>;
1439
+ backgroundColor: BackgroundColorString$1<'surface'> | BrandColorString$1;
1425
1440
  }> & {
1426
1441
  // Intentionally keeping this outside of MakeObjectResponsive since we only want as to be string and not responsive object
1427
1442
  // styled-components do not support passing `as` prop as an object
1428
1443
  as: BoxAsType$1;
1429
1444
  };
1430
1445
 
1431
- type StyledPropsBlade = Partial<
1446
+ type StyledPropsBlade$1 = Partial<
1432
1447
  Omit<
1433
1448
  MarginProps$1 &
1434
1449
  Pick<FlexboxProps$1, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> &
@@ -1502,9 +1517,9 @@ type BoxProps$1 = Partial<
1502
1517
  // Visual props have different types for BaseBox and Box. BaseBox has more flexible types and more props exposed.
1503
1518
  // So first we Omit Visual props of Box
1504
1519
  // Then we append BaseBoxVisualProps and some other props for styled-components like class and id
1505
- type BaseBoxProps = Omit<BoxProps$1, keyof BoxVisualProps$1> &
1520
+ type BaseBoxProps$1 = Omit<BoxProps$1, keyof BoxVisualProps$1> &
1506
1521
  Partial<
1507
- BaseBoxVisualProps & {
1522
+ BaseBoxVisualProps$1 & {
1508
1523
  className?: string;
1509
1524
  id?: string;
1510
1525
  tabIndex?: number;
@@ -1860,7 +1875,7 @@ type IconProps$1 = {
1860
1875
  | BadgeIconColors$1
1861
1876
  | 'currentColor'; // currentColor is useful for letting the SVG inherit color property from its container
1862
1877
  size: IconSize$1;
1863
- } & StyledPropsBlade;
1878
+ } & StyledPropsBlade$1;
1864
1879
  type IconComponent$1 = React.ComponentType<IconProps$1>;
1865
1880
 
1866
1881
  declare type ActionListItemProps = {
@@ -2015,7 +2030,7 @@ declare type AlertProps = {
2015
2030
  */
2016
2031
  secondary?: SecondaryAction;
2017
2032
  };
2018
- } & TestID$1 & StyledPropsBlade;
2033
+ } & TestID$1 & StyledPropsBlade$1;
2019
2034
  declare const Alert: ({ description, title, isDismissible, onDismiss, contrast, isFullWidth, intent, actions, testID, ...styledProps }: AlertProps) => ReactElement | null;
2020
2035
 
2021
2036
  declare type BadgeProps = {
@@ -2054,7 +2069,7 @@ declare type BadgeProps = {
2054
2069
  * @default 'regular'
2055
2070
  */
2056
2071
  fontWeight?: 'regular' | 'bold';
2057
- } & TestID$1 & StyledPropsBlade;
2072
+ } & TestID$1 & StyledPropsBlade$1;
2058
2073
  declare const Badge: ({ children, contrast, fontWeight, icon, size, variant, testID, ...styledProps }: BadgeProps) => ReactElement;
2059
2074
 
2060
2075
  declare type BladeProviderProps = {
@@ -2131,6 +2146,8 @@ declare type MakeObjectResponsive<T, K extends keyof T = Extract<keyof T, string
2131
2146
  [P in K]: MakeValueResponsive<T[P]>;
2132
2147
  };
2133
2148
 
2149
+ declare type ElevationLevels = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
2150
+
2134
2151
  declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
2135
2152
  declare type SpaceUnits = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
2136
2153
  declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | `calc(${string})` | 'auto' | `min(${string})` | `max(${string})` | 'none' | 'initial' | 'fit-content' | 'max-content' | 'min-content';
@@ -2613,6 +2630,7 @@ declare type BackgroundColorString<T extends ColorObjects> = `${T}.background.${
2613
2630
  declare type BorderColorString<T extends ColorObjects> = `${T}.border.${DotNotationColorStringToken<Theme$1['colors'][T]['border']>}`;
2614
2631
  declare const validBoxAsValues: readonly ["div", "section", "footer", "header", "main", "aside", "nav", "span", "label"];
2615
2632
  declare type BoxAsType = typeof validBoxAsValues[number];
2633
+ declare type BrandColorString = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
2616
2634
  declare type CommonBoxVisualProps = MakeObjectResponsive<{
2617
2635
  borderRadius: keyof Border['radius'];
2618
2636
  borderWidth: keyof Border['width'];
@@ -2629,12 +2647,31 @@ declare type CommonBoxVisualProps = MakeObjectResponsive<{
2629
2647
  borderTopRightRadius: keyof Border['radius'];
2630
2648
  borderBottomRightRadius: keyof Border['radius'];
2631
2649
  borderBottomLeftRadius: keyof Border['radius'];
2632
- } & PickCSSByPlatform<'backgroundImage' | 'backgroundSize' | 'backgroundPosition' | 'backgroundOrigin' | 'backgroundRepeat'>>;
2650
+ } & PickCSSByPlatform<'backgroundImage' | 'backgroundSize' | 'backgroundPosition' | 'backgroundOrigin' | 'backgroundRepeat'> & {
2651
+ /**
2652
+ * Sets the elevation for Box
2653
+ *
2654
+ * eg: `theme.elevation.midRaised`
2655
+ *
2656
+ * @default `theme.elevation.lowRaised`
2657
+ *
2658
+ * **Links:**
2659
+ * - Docs: https://blade.razorpay.com/?path=/docs/tokens-elevation--page
2660
+ */
2661
+ elevation?: keyof Elevation;
2662
+ }>;
2663
+ declare type BaseBoxVisualProps = MakeObjectResponsive<{
2664
+ backgroundColor: BackgroundColorString<'feedback'> | BackgroundColorString<'surface'> | BackgroundColorString<'action'> | BrandColorString | (string & Record<never, never>);
2665
+ lineHeight: SpacingValueType;
2666
+ touchAction: CSSObject['touchAction'];
2667
+ userSelect: CSSObject['userSelect'];
2668
+ } & PickCSSByPlatform<'border' | 'borderLeft' | 'borderRight' | 'borderTop' | 'borderBottom' | 'opacity' | 'pointerEvents'>>;
2633
2669
  declare type BoxVisualProps = MakeObjectResponsive<{
2634
- backgroundColor: BackgroundColorString<'surface'>;
2670
+ backgroundColor: BackgroundColorString<'surface'> | BrandColorString;
2635
2671
  }> & {
2636
2672
  as: BoxAsType;
2637
2673
  };
2674
+ declare type StyledPropsBlade = Partial<Omit<MarginProps & Pick<FlexboxProps, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> & PositionProps & Pick<GridProps, 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea'>, '__brand__'>>;
2638
2675
  declare type BoxCallbackProps = Omit<Platform.Select<{
2639
2676
  web: {
2640
2677
  /**
@@ -2672,6 +2709,11 @@ declare type BoxProps = Partial<PaddingProps & MarginProps & LayoutProps & Flexb
2672
2709
  children?: React.ReactNode | React.ReactNode[];
2673
2710
  tabIndex?: number;
2674
2711
  } & TestID$1>;
2712
+ declare type BaseBoxProps = Omit<BoxProps, keyof BoxVisualProps> & Partial<BaseBoxVisualProps & {
2713
+ className?: string;
2714
+ id?: string;
2715
+ tabIndex?: number;
2716
+ }> & BladeCommonEvents$1;
2675
2717
  declare type BoxRefType = Platform.Select<{
2676
2718
  web: Omit<HTMLElement, 'style'>;
2677
2719
  native: View;
@@ -2774,152 +2816,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
2774
2816
  readonly l?: "platform-web" | undefined;
2775
2817
  readonly xl?: "platform-web" | undefined;
2776
2818
  } | undefined;
2777
- } & {
2778
- alignContent?: csstype.Property.AlignContent | {
2779
- readonly base?: csstype.Property.AlignContent | undefined;
2780
- readonly xs?: csstype.Property.AlignContent | undefined;
2781
- readonly s?: csstype.Property.AlignContent | undefined;
2782
- readonly m?: csstype.Property.AlignContent | undefined;
2783
- readonly l?: csstype.Property.AlignContent | undefined;
2784
- readonly xl?: csstype.Property.AlignContent | undefined;
2785
- } | undefined;
2786
- alignItems?: csstype.Property.AlignItems | {
2787
- readonly base?: csstype.Property.AlignItems | undefined;
2788
- readonly xs?: csstype.Property.AlignItems | undefined;
2789
- readonly s?: csstype.Property.AlignItems | undefined;
2790
- readonly m?: csstype.Property.AlignItems | undefined;
2791
- readonly l?: csstype.Property.AlignItems | undefined;
2792
- readonly xl?: csstype.Property.AlignItems | undefined;
2793
- } | undefined;
2794
- alignSelf?: csstype.Property.AlignSelf | {
2795
- readonly base?: csstype.Property.AlignSelf | undefined;
2796
- readonly xs?: csstype.Property.AlignSelf | undefined;
2797
- readonly s?: csstype.Property.AlignSelf | undefined;
2798
- readonly m?: csstype.Property.AlignSelf | undefined;
2799
- readonly l?: csstype.Property.AlignSelf | undefined;
2800
- readonly xl?: csstype.Property.AlignSelf | undefined;
2801
- } | undefined;
2802
- columnGap: SpacingValueType | {
2803
- readonly base?: SpacingValueType | undefined;
2804
- readonly xs?: SpacingValueType | undefined;
2805
- readonly s?: SpacingValueType | undefined;
2806
- readonly m?: SpacingValueType | undefined;
2807
- readonly l?: SpacingValueType | undefined;
2808
- readonly xl?: SpacingValueType | undefined;
2809
- };
2810
- flexBasis?: csstype.Property.FlexBasis<string | number> | {
2811
- readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
2812
- readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
2813
- readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
2814
- readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
2815
- readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
2816
- readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
2817
- } | undefined;
2818
- flexDirection?: csstype.Property.FlexDirection | {
2819
- readonly base?: csstype.Property.FlexDirection | undefined;
2820
- readonly xs?: csstype.Property.FlexDirection | undefined;
2821
- readonly s?: csstype.Property.FlexDirection | undefined;
2822
- readonly m?: csstype.Property.FlexDirection | undefined;
2823
- readonly l?: csstype.Property.FlexDirection | undefined;
2824
- readonly xl?: csstype.Property.FlexDirection | undefined;
2825
- } | undefined;
2826
- flexGrow?: csstype.Property.FlexGrow | {
2827
- readonly base?: csstype.Property.FlexGrow | undefined;
2828
- readonly xs?: csstype.Property.FlexGrow | undefined;
2829
- readonly s?: csstype.Property.FlexGrow | undefined;
2830
- readonly m?: csstype.Property.FlexGrow | undefined;
2831
- readonly l?: csstype.Property.FlexGrow | undefined;
2832
- readonly xl?: csstype.Property.FlexGrow | undefined;
2833
- } | undefined;
2834
- flexShrink?: csstype.Property.FlexShrink | {
2835
- readonly base?: csstype.Property.FlexShrink | undefined;
2836
- readonly xs?: csstype.Property.FlexShrink | undefined;
2837
- readonly s?: csstype.Property.FlexShrink | undefined;
2838
- readonly m?: csstype.Property.FlexShrink | undefined;
2839
- readonly l?: csstype.Property.FlexShrink | undefined;
2840
- readonly xl?: csstype.Property.FlexShrink | undefined;
2841
- } | undefined;
2842
- flexWrap?: csstype.Property.FlexWrap | {
2843
- readonly base?: csstype.Property.FlexWrap | undefined;
2844
- readonly xs?: csstype.Property.FlexWrap | undefined;
2845
- readonly s?: csstype.Property.FlexWrap | undefined;
2846
- readonly m?: csstype.Property.FlexWrap | undefined;
2847
- readonly l?: csstype.Property.FlexWrap | undefined;
2848
- readonly xl?: csstype.Property.FlexWrap | undefined;
2849
- } | undefined;
2850
- justifyContent?: csstype.Property.JustifyContent | {
2851
- readonly base?: csstype.Property.JustifyContent | undefined;
2852
- readonly xs?: csstype.Property.JustifyContent | undefined;
2853
- readonly s?: csstype.Property.JustifyContent | undefined;
2854
- readonly m?: csstype.Property.JustifyContent | undefined;
2855
- readonly l?: csstype.Property.JustifyContent | undefined;
2856
- readonly xl?: csstype.Property.JustifyContent | undefined;
2857
- } | undefined;
2858
- justifyItems?: csstype.Property.JustifyItems | {
2859
- readonly base?: csstype.Property.JustifyItems | undefined;
2860
- readonly xs?: csstype.Property.JustifyItems | undefined;
2861
- readonly s?: csstype.Property.JustifyItems | undefined;
2862
- readonly m?: csstype.Property.JustifyItems | undefined;
2863
- readonly l?: csstype.Property.JustifyItems | undefined;
2864
- readonly xl?: csstype.Property.JustifyItems | undefined;
2865
- } | undefined;
2866
- justifySelf?: csstype.Property.JustifySelf | {
2867
- readonly base?: csstype.Property.JustifySelf | undefined;
2868
- readonly xs?: csstype.Property.JustifySelf | undefined;
2869
- readonly s?: csstype.Property.JustifySelf | undefined;
2870
- readonly m?: csstype.Property.JustifySelf | undefined;
2871
- readonly l?: csstype.Property.JustifySelf | undefined;
2872
- readonly xl?: csstype.Property.JustifySelf | undefined;
2873
- } | undefined;
2874
- order?: csstype.Property.Order | {
2875
- readonly base?: csstype.Property.Order | undefined;
2876
- readonly xs?: csstype.Property.Order | undefined;
2877
- readonly s?: csstype.Property.Order | undefined;
2878
- readonly m?: csstype.Property.Order | undefined;
2879
- readonly l?: csstype.Property.Order | undefined;
2880
- readonly xl?: csstype.Property.Order | undefined;
2881
- } | undefined;
2882
- rowGap: SpacingValueType | {
2883
- readonly base?: SpacingValueType | undefined;
2884
- readonly xs?: SpacingValueType | undefined;
2885
- readonly s?: SpacingValueType | undefined;
2886
- readonly m?: SpacingValueType | undefined;
2887
- readonly l?: SpacingValueType | undefined;
2888
- readonly xl?: SpacingValueType | undefined;
2889
- };
2890
- flex: string | number | {
2891
- readonly base?: string | number | undefined;
2892
- readonly xs?: string | number | undefined;
2893
- readonly s?: string | number | undefined;
2894
- readonly m?: string | number | undefined;
2895
- readonly l?: string | number | undefined;
2896
- readonly xl?: string | number | undefined;
2897
- };
2898
- gap: SpacingValueType | {
2899
- readonly base?: SpacingValueType | undefined;
2900
- readonly xs?: SpacingValueType | undefined;
2901
- readonly s?: SpacingValueType | undefined;
2902
- readonly m?: SpacingValueType | undefined;
2903
- readonly l?: SpacingValueType | undefined;
2904
- readonly xl?: SpacingValueType | undefined;
2905
- };
2906
- placeSelf?: csstype.Property.PlaceSelf | {
2907
- readonly base?: csstype.Property.PlaceSelf | undefined;
2908
- readonly xs?: csstype.Property.PlaceSelf | undefined;
2909
- readonly s?: csstype.Property.PlaceSelf | undefined;
2910
- readonly m?: csstype.Property.PlaceSelf | undefined;
2911
- readonly l?: csstype.Property.PlaceSelf | undefined;
2912
- readonly xl?: csstype.Property.PlaceSelf | undefined;
2913
- } | undefined;
2914
- __brand__?: "platform-web" | {
2915
- readonly base?: "platform-web" | undefined;
2916
- readonly xs?: "platform-web" | undefined;
2917
- readonly s?: "platform-web" | undefined;
2918
- readonly m?: "platform-web" | undefined;
2919
- readonly l?: "platform-web" | undefined;
2920
- readonly xl?: "platform-web" | undefined;
2921
- } | undefined;
2922
- } & {
2819
+ } & FlexboxProps & {
2923
2820
  bottom: SpacingValueType | {
2924
2821
  readonly base?: SpacingValueType | undefined;
2925
2822
  readonly xs?: SpacingValueType | undefined;
@@ -3111,6 +3008,14 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
3111
3008
  onMouseLeave: React__default.MouseEventHandler<HTMLElement>;
3112
3009
  onScroll: React__default.UIEventHandler<HTMLElement>;
3113
3010
  } & {
3011
+ elevation?: ElevationLevels | {
3012
+ readonly base?: ElevationLevels | undefined;
3013
+ readonly xs?: ElevationLevels | undefined;
3014
+ readonly s?: ElevationLevels | undefined;
3015
+ readonly m?: ElevationLevels | undefined;
3016
+ readonly l?: ElevationLevels | undefined;
3017
+ readonly xl?: ElevationLevels | undefined;
3018
+ } | undefined;
3114
3019
  backgroundImage?: csstype.Property.BackgroundImage | {
3115
3020
  readonly base?: csstype.Property.BackgroundImage | undefined;
3116
3021
  readonly xs?: csstype.Property.BackgroundImage | undefined;
@@ -3280,7 +3185,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
3280
3185
  readonly xl?: "platform-web" | undefined;
3281
3186
  } | undefined;
3282
3187
  } & MakeObjectResponsive<{
3283
- backgroundColor: "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast";
3188
+ backgroundColor: "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast";
3284
3189
  }, "backgroundColor"> & {
3285
3190
  as: "aside" | "div" | "footer" | "header" | "label" | "main" | "nav" | "section" | "span";
3286
3191
  } & {
@@ -3344,7 +3249,7 @@ declare type CardProps = {
3344
3249
  * - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
3345
3250
  */
3346
3251
  padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
3347
- } & TestID$1 & StyledPropsBlade;
3252
+ } & TestID$1 & StyledPropsBlade$1;
3348
3253
  declare const Card: ({ children, surfaceLevel, elevation, testID, padding, ...styledProps }: CardProps) => React__default.ReactElement;
3349
3254
  declare type CardBodyProps = {
3350
3255
  children: React__default.ReactNode;
@@ -3389,7 +3294,7 @@ declare type BaseLinkCommonProps = {
3389
3294
  * The title of the link which is displayed as a tooltip. This is a web only prop and has no effect on react-native.
3390
3295
  */
3391
3296
  htmlTitle?: string;
3392
- } & TestID$1 & StyledPropsBlade & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
3297
+ } & TestID$1 & StyledPropsBlade$1 & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
3393
3298
  declare type BaseLinkWithoutIconProps = BaseLinkCommonProps & {
3394
3299
  icon?: undefined;
3395
3300
  children: StringChildrenType;
@@ -3430,7 +3335,7 @@ declare type LinkCommonProps = {
3430
3335
  * @default medium
3431
3336
  */
3432
3337
  size?: BaseLinkProps['size'];
3433
- } & TestID$1 & StyledPropsBlade & BladeCommonEvents$1 & Platform.Select<{
3338
+ } & TestID$1 & StyledPropsBlade$1 & BladeCommonEvents$1 & Platform.Select<{
3434
3339
  native: {
3435
3340
  /**
3436
3341
  * Defines how far your touch can start away from the link
@@ -3505,7 +3410,7 @@ declare type BaseButtonCommonProps = {
3505
3410
  variant?: 'primary' | 'secondary' | 'tertiary';
3506
3411
  contrast?: 'low' | 'high';
3507
3412
  intent?: 'positive' | 'negative' | 'notice' | 'information' | 'neutral';
3508
- } & TestID$1 & StyledPropsBlade & BladeCommonEvents$1;
3413
+ } & TestID$1 & StyledPropsBlade$1 & BladeCommonEvents$1;
3509
3414
  declare type BaseButtonWithoutIconProps = BaseButtonCommonProps & {
3510
3415
  icon?: undefined;
3511
3416
  children: StringChildrenType;
@@ -3545,7 +3450,7 @@ declare type ButtonCommonProps = {
3545
3450
  native: (event: GestureResponderEvent) => void;
3546
3451
  web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
3547
3452
  }>;
3548
- } & TestID$1 & StyledPropsBlade & BladeCommonEvents$1;
3453
+ } & TestID$1 & StyledPropsBlade$1 & BladeCommonEvents$1;
3549
3454
  declare type ButtonWithoutIconProps = ButtonCommonProps & {
3550
3455
  icon?: undefined;
3551
3456
  children: StringChildrenType;
@@ -3592,7 +3497,7 @@ declare type CounterProps = {
3592
3497
  * @default 'medium'
3593
3498
  */
3594
3499
  size?: 'small' | 'medium' | 'large';
3595
- } & TestID$1 & StyledPropsBlade;
3500
+ } & TestID$1 & StyledPropsBlade$1;
3596
3501
  declare const Counter: ({ value, max, intent, variant, contrast, size, testID, ...styledProps }: CounterProps) => React.ReactElement;
3597
3502
 
3598
3503
  type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
@@ -3609,6 +3514,8 @@ type BadgeTextColors$1 = `badge.text.${DotNotationColorStringToken<
3609
3514
  Theme$1['colors']['badge']['text']
3610
3515
  >}`;
3611
3516
 
3517
+ type BrandPrimaryColors$1 = `brand.primary.${keyof Theme$1['colors']['brand']['primary']}`;
3518
+
3612
3519
  type As$1 =
3613
3520
  | 'code'
3614
3521
  | 'h1'
@@ -3626,7 +3533,13 @@ type As$1 =
3626
3533
  | 'div';
3627
3534
  type BaseTextProps$1 = {
3628
3535
  id?: string;
3629
- color?: ActionColors$1 | FeedbackColors$1 | SurfaceColors$1 | FeedbackActionColors$1 | BadgeTextColors$1;
3536
+ color?:
3537
+ | BrandPrimaryColors$1
3538
+ | ActionColors$1
3539
+ | FeedbackColors$1
3540
+ | SurfaceColors$1
3541
+ | FeedbackActionColors$1
3542
+ | BadgeTextColors$1;
3630
3543
  fontFamily?: keyof Theme$1['typography']['fonts']['family'];
3631
3544
  fontSize?: keyof Theme$1['typography']['fonts']['size'];
3632
3545
  fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
@@ -3649,7 +3562,7 @@ type BaseTextProps$1 = {
3649
3562
  numberOfLines?: number;
3650
3563
  componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
3651
3564
  } & TestID$1 &
3652
- StyledPropsBlade;
3565
+ StyledPropsBlade$1;
3653
3566
 
3654
3567
  /* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */
3655
3568
 
@@ -3671,7 +3584,7 @@ type TextCommonProps$1 = {
3671
3584
  textAlign?: BaseTextProps$1['textAlign'];
3672
3585
  textDecorationLine?: BaseTextProps$1['textDecorationLine'];
3673
3586
  } & TestID$1 &
3674
- StyledPropsBlade;
3587
+ StyledPropsBlade$1;
3675
3588
 
3676
3589
  type TextVariant$1 = 'body' | 'caption';
3677
3590
 
@@ -3893,7 +3806,7 @@ declare type CheckboxProps = {
3893
3806
  *
3894
3807
  */
3895
3808
  tabIndex?: number;
3896
- } & TestID$1 & StyledPropsBlade;
3809
+ } & TestID$1 & StyledPropsBlade$1;
3897
3810
  declare const Checkbox: React__default.ForwardRefExoticComponent<{
3898
3811
  /**
3899
3812
  * If `true`, The checkbox will be checked. This also makes the checkbox controlled
@@ -3972,152 +3885,7 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
3972
3885
  *
3973
3886
  */
3974
3887
  tabIndex?: number | undefined;
3975
- } & TestID$1 & Partial<Omit<MarginProps & Pick<{
3976
- alignContent?: csstype.Property.AlignContent | {
3977
- readonly base?: csstype.Property.AlignContent | undefined;
3978
- readonly xs?: csstype.Property.AlignContent | undefined;
3979
- readonly s?: csstype.Property.AlignContent | undefined;
3980
- readonly m?: csstype.Property.AlignContent | undefined;
3981
- readonly l?: csstype.Property.AlignContent | undefined;
3982
- readonly xl?: csstype.Property.AlignContent | undefined;
3983
- } | undefined;
3984
- alignItems?: csstype.Property.AlignItems | {
3985
- readonly base?: csstype.Property.AlignItems | undefined;
3986
- readonly xs?: csstype.Property.AlignItems | undefined;
3987
- readonly s?: csstype.Property.AlignItems | undefined;
3988
- readonly m?: csstype.Property.AlignItems | undefined;
3989
- readonly l?: csstype.Property.AlignItems | undefined;
3990
- readonly xl?: csstype.Property.AlignItems | undefined;
3991
- } | undefined;
3992
- alignSelf?: csstype.Property.AlignSelf | {
3993
- readonly base?: csstype.Property.AlignSelf | undefined;
3994
- readonly xs?: csstype.Property.AlignSelf | undefined;
3995
- readonly s?: csstype.Property.AlignSelf | undefined;
3996
- readonly m?: csstype.Property.AlignSelf | undefined;
3997
- readonly l?: csstype.Property.AlignSelf | undefined;
3998
- readonly xl?: csstype.Property.AlignSelf | undefined;
3999
- } | undefined;
4000
- columnGap: SpacingValueType | {
4001
- readonly base?: SpacingValueType | undefined;
4002
- readonly xs?: SpacingValueType | undefined;
4003
- readonly s?: SpacingValueType | undefined;
4004
- readonly m?: SpacingValueType | undefined;
4005
- readonly l?: SpacingValueType | undefined;
4006
- readonly xl?: SpacingValueType | undefined;
4007
- };
4008
- flexBasis?: csstype.Property.FlexBasis<string | number> | {
4009
- readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
4010
- readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
4011
- readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
4012
- readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
4013
- readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
4014
- readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
4015
- } | undefined;
4016
- flexDirection?: csstype.Property.FlexDirection | {
4017
- readonly base?: csstype.Property.FlexDirection | undefined;
4018
- readonly xs?: csstype.Property.FlexDirection | undefined;
4019
- readonly s?: csstype.Property.FlexDirection | undefined;
4020
- readonly m?: csstype.Property.FlexDirection | undefined;
4021
- readonly l?: csstype.Property.FlexDirection | undefined;
4022
- readonly xl?: csstype.Property.FlexDirection | undefined;
4023
- } | undefined;
4024
- flexGrow?: csstype.Property.FlexGrow | {
4025
- readonly base?: csstype.Property.FlexGrow | undefined;
4026
- readonly xs?: csstype.Property.FlexGrow | undefined;
4027
- readonly s?: csstype.Property.FlexGrow | undefined;
4028
- readonly m?: csstype.Property.FlexGrow | undefined;
4029
- readonly l?: csstype.Property.FlexGrow | undefined;
4030
- readonly xl?: csstype.Property.FlexGrow | undefined;
4031
- } | undefined;
4032
- flexShrink?: csstype.Property.FlexShrink | {
4033
- readonly base?: csstype.Property.FlexShrink | undefined;
4034
- readonly xs?: csstype.Property.FlexShrink | undefined;
4035
- readonly s?: csstype.Property.FlexShrink | undefined;
4036
- readonly m?: csstype.Property.FlexShrink | undefined;
4037
- readonly l?: csstype.Property.FlexShrink | undefined;
4038
- readonly xl?: csstype.Property.FlexShrink | undefined;
4039
- } | undefined;
4040
- flexWrap?: csstype.Property.FlexWrap | {
4041
- readonly base?: csstype.Property.FlexWrap | undefined;
4042
- readonly xs?: csstype.Property.FlexWrap | undefined;
4043
- readonly s?: csstype.Property.FlexWrap | undefined;
4044
- readonly m?: csstype.Property.FlexWrap | undefined;
4045
- readonly l?: csstype.Property.FlexWrap | undefined;
4046
- readonly xl?: csstype.Property.FlexWrap | undefined;
4047
- } | undefined;
4048
- justifyContent?: csstype.Property.JustifyContent | {
4049
- readonly base?: csstype.Property.JustifyContent | undefined;
4050
- readonly xs?: csstype.Property.JustifyContent | undefined;
4051
- readonly s?: csstype.Property.JustifyContent | undefined;
4052
- readonly m?: csstype.Property.JustifyContent | undefined;
4053
- readonly l?: csstype.Property.JustifyContent | undefined;
4054
- readonly xl?: csstype.Property.JustifyContent | undefined;
4055
- } | undefined;
4056
- justifyItems?: csstype.Property.JustifyItems | {
4057
- readonly base?: csstype.Property.JustifyItems | undefined;
4058
- readonly xs?: csstype.Property.JustifyItems | undefined;
4059
- readonly s?: csstype.Property.JustifyItems | undefined;
4060
- readonly m?: csstype.Property.JustifyItems | undefined;
4061
- readonly l?: csstype.Property.JustifyItems | undefined;
4062
- readonly xl?: csstype.Property.JustifyItems | undefined;
4063
- } | undefined;
4064
- justifySelf?: csstype.Property.JustifySelf | {
4065
- readonly base?: csstype.Property.JustifySelf | undefined;
4066
- readonly xs?: csstype.Property.JustifySelf | undefined;
4067
- readonly s?: csstype.Property.JustifySelf | undefined;
4068
- readonly m?: csstype.Property.JustifySelf | undefined;
4069
- readonly l?: csstype.Property.JustifySelf | undefined;
4070
- readonly xl?: csstype.Property.JustifySelf | undefined;
4071
- } | undefined;
4072
- order?: csstype.Property.Order | {
4073
- readonly base?: csstype.Property.Order | undefined;
4074
- readonly xs?: csstype.Property.Order | undefined;
4075
- readonly s?: csstype.Property.Order | undefined;
4076
- readonly m?: csstype.Property.Order | undefined;
4077
- readonly l?: csstype.Property.Order | undefined;
4078
- readonly xl?: csstype.Property.Order | undefined;
4079
- } | undefined;
4080
- rowGap: SpacingValueType | {
4081
- readonly base?: SpacingValueType | undefined;
4082
- readonly xs?: SpacingValueType | undefined;
4083
- readonly s?: SpacingValueType | undefined;
4084
- readonly m?: SpacingValueType | undefined;
4085
- readonly l?: SpacingValueType | undefined;
4086
- readonly xl?: SpacingValueType | undefined;
4087
- };
4088
- flex: string | number | {
4089
- readonly base?: string | number | undefined;
4090
- readonly xs?: string | number | undefined;
4091
- readonly s?: string | number | undefined;
4092
- readonly m?: string | number | undefined;
4093
- readonly l?: string | number | undefined;
4094
- readonly xl?: string | number | undefined;
4095
- };
4096
- gap: SpacingValueType | {
4097
- readonly base?: SpacingValueType | undefined;
4098
- readonly xs?: SpacingValueType | undefined;
4099
- readonly s?: SpacingValueType | undefined;
4100
- readonly m?: SpacingValueType | undefined;
4101
- readonly l?: SpacingValueType | undefined;
4102
- readonly xl?: SpacingValueType | undefined;
4103
- };
4104
- placeSelf?: csstype.Property.PlaceSelf | {
4105
- readonly base?: csstype.Property.PlaceSelf | undefined;
4106
- readonly xs?: csstype.Property.PlaceSelf | undefined;
4107
- readonly s?: csstype.Property.PlaceSelf | undefined;
4108
- readonly m?: csstype.Property.PlaceSelf | undefined;
4109
- readonly l?: csstype.Property.PlaceSelf | undefined;
4110
- readonly xl?: csstype.Property.PlaceSelf | undefined;
4111
- } | undefined;
4112
- __brand__?: "platform-web" | {
4113
- readonly base?: "platform-web" | undefined;
4114
- readonly xs?: "platform-web" | undefined;
4115
- readonly s?: "platform-web" | undefined;
4116
- readonly m?: "platform-web" | undefined;
4117
- readonly l?: "platform-web" | undefined;
4118
- readonly xl?: "platform-web" | undefined;
4119
- } | undefined;
4120
- }, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
3888
+ } & TestID$1 & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
4121
3889
  bottom: SpacingValueType | {
4122
3890
  readonly base?: SpacingValueType | undefined;
4123
3891
  readonly xs?: SpacingValueType | undefined;
@@ -4383,7 +4151,7 @@ declare type CheckboxGroupProps = {
4383
4151
  * @default "medium"
4384
4152
  */
4385
4153
  size?: 'small' | 'medium';
4386
- } & TestID$1 & StyledPropsBlade;
4154
+ } & TestID$1 & StyledPropsBlade$1;
4387
4155
  declare const CheckboxGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
4388
4156
 
4389
4157
  declare type DividerProps = {
@@ -4434,7 +4202,7 @@ declare type DropdownProps = {
4434
4202
  selectionType?: 'single' | 'multiple';
4435
4203
  onDismiss?: () => void;
4436
4204
  children: React.ReactNode[];
4437
- } & StyledPropsBlade;
4205
+ } & StyledPropsBlade$1;
4438
4206
  declare type DropdownOverlayProps = {
4439
4207
  children: React.ReactElement[] | React.ReactElement;
4440
4208
  } & TestID$1;
@@ -5054,7 +4822,7 @@ declare type IconProps = {
5054
4822
  */
5055
4823
  color: ActionIconColors | SurfaceActionIconColors | FeedbackIconColors | FeedbackActionIconColors | TextIconColors | BadgeIconColors | 'currentColor';
5056
4824
  size: IconSize;
5057
- } & StyledPropsBlade;
4825
+ } & StyledPropsBlade$1;
5058
4826
  declare type IconComponent = React.ComponentType<IconProps>;
5059
4827
 
5060
4828
  declare type FormInputLabelProps = {
@@ -5334,7 +5102,7 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
5334
5102
  */
5335
5103
  autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
5336
5104
  };
5337
- }> & StyledPropsBlade;
5105
+ }> & StyledPropsBlade$1;
5338
5106
 
5339
5107
  declare type Type = Exclude<BaseInputProps['type'], 'password'>;
5340
5108
  declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'maxCharacters' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'onSubmit' | 'autoCapitalize' | 'testID'> & {
@@ -5368,7 +5136,7 @@ declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | '
5368
5136
  * @default text
5369
5137
  */
5370
5138
  type?: Type;
5371
- } & StyledPropsBlade;
5139
+ } & StyledPropsBlade$1;
5372
5140
  declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "autoCapitalize" | "onChange" | "onSubmit" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & {
5373
5141
  /**
5374
5142
  * Decides whether to render a clear icon button
@@ -5400,152 +5168,7 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
5400
5168
  * @default text
5401
5169
  */
5402
5170
  type?: Type;
5403
- } & Partial<Omit<MarginProps & Pick<{
5404
- alignContent?: csstype.Property.AlignContent | {
5405
- readonly base?: csstype.Property.AlignContent | undefined;
5406
- readonly xs?: csstype.Property.AlignContent | undefined;
5407
- readonly s?: csstype.Property.AlignContent | undefined;
5408
- readonly m?: csstype.Property.AlignContent | undefined;
5409
- readonly l?: csstype.Property.AlignContent | undefined;
5410
- readonly xl?: csstype.Property.AlignContent | undefined;
5411
- } | undefined;
5412
- alignItems?: csstype.Property.AlignItems | {
5413
- readonly base?: csstype.Property.AlignItems | undefined;
5414
- readonly xs?: csstype.Property.AlignItems | undefined;
5415
- readonly s?: csstype.Property.AlignItems | undefined;
5416
- readonly m?: csstype.Property.AlignItems | undefined;
5417
- readonly l?: csstype.Property.AlignItems | undefined;
5418
- readonly xl?: csstype.Property.AlignItems | undefined;
5419
- } | undefined;
5420
- alignSelf?: csstype.Property.AlignSelf | {
5421
- readonly base?: csstype.Property.AlignSelf | undefined;
5422
- readonly xs?: csstype.Property.AlignSelf | undefined;
5423
- readonly s?: csstype.Property.AlignSelf | undefined;
5424
- readonly m?: csstype.Property.AlignSelf | undefined;
5425
- readonly l?: csstype.Property.AlignSelf | undefined;
5426
- readonly xl?: csstype.Property.AlignSelf | undefined;
5427
- } | undefined;
5428
- columnGap: SpacingValueType | {
5429
- readonly base?: SpacingValueType | undefined;
5430
- readonly xs?: SpacingValueType | undefined;
5431
- readonly s?: SpacingValueType | undefined;
5432
- readonly m?: SpacingValueType | undefined;
5433
- readonly l?: SpacingValueType | undefined;
5434
- readonly xl?: SpacingValueType | undefined;
5435
- };
5436
- flexBasis?: csstype.Property.FlexBasis<string | number> | {
5437
- readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
5438
- readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
5439
- readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
5440
- readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
5441
- readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
5442
- readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
5443
- } | undefined;
5444
- flexDirection?: csstype.Property.FlexDirection | {
5445
- readonly base?: csstype.Property.FlexDirection | undefined;
5446
- readonly xs?: csstype.Property.FlexDirection | undefined;
5447
- readonly s?: csstype.Property.FlexDirection | undefined;
5448
- readonly m?: csstype.Property.FlexDirection | undefined;
5449
- readonly l?: csstype.Property.FlexDirection | undefined;
5450
- readonly xl?: csstype.Property.FlexDirection | undefined;
5451
- } | undefined;
5452
- flexGrow?: csstype.Property.FlexGrow | {
5453
- readonly base?: csstype.Property.FlexGrow | undefined;
5454
- readonly xs?: csstype.Property.FlexGrow | undefined;
5455
- readonly s?: csstype.Property.FlexGrow | undefined;
5456
- readonly m?: csstype.Property.FlexGrow | undefined;
5457
- readonly l?: csstype.Property.FlexGrow | undefined;
5458
- readonly xl?: csstype.Property.FlexGrow | undefined;
5459
- } | undefined;
5460
- flexShrink?: csstype.Property.FlexShrink | {
5461
- readonly base?: csstype.Property.FlexShrink | undefined;
5462
- readonly xs?: csstype.Property.FlexShrink | undefined;
5463
- readonly s?: csstype.Property.FlexShrink | undefined;
5464
- readonly m?: csstype.Property.FlexShrink | undefined;
5465
- readonly l?: csstype.Property.FlexShrink | undefined;
5466
- readonly xl?: csstype.Property.FlexShrink | undefined;
5467
- } | undefined;
5468
- flexWrap?: csstype.Property.FlexWrap | {
5469
- readonly base?: csstype.Property.FlexWrap | undefined;
5470
- readonly xs?: csstype.Property.FlexWrap | undefined;
5471
- readonly s?: csstype.Property.FlexWrap | undefined;
5472
- readonly m?: csstype.Property.FlexWrap | undefined;
5473
- readonly l?: csstype.Property.FlexWrap | undefined;
5474
- readonly xl?: csstype.Property.FlexWrap | undefined;
5475
- } | undefined;
5476
- justifyContent?: csstype.Property.JustifyContent | {
5477
- readonly base?: csstype.Property.JustifyContent | undefined;
5478
- readonly xs?: csstype.Property.JustifyContent | undefined;
5479
- readonly s?: csstype.Property.JustifyContent | undefined;
5480
- readonly m?: csstype.Property.JustifyContent | undefined;
5481
- readonly l?: csstype.Property.JustifyContent | undefined;
5482
- readonly xl?: csstype.Property.JustifyContent | undefined;
5483
- } | undefined;
5484
- justifyItems?: csstype.Property.JustifyItems | {
5485
- readonly base?: csstype.Property.JustifyItems | undefined;
5486
- readonly xs?: csstype.Property.JustifyItems | undefined;
5487
- readonly s?: csstype.Property.JustifyItems | undefined;
5488
- readonly m?: csstype.Property.JustifyItems | undefined;
5489
- readonly l?: csstype.Property.JustifyItems | undefined;
5490
- readonly xl?: csstype.Property.JustifyItems | undefined;
5491
- } | undefined;
5492
- justifySelf?: csstype.Property.JustifySelf | {
5493
- readonly base?: csstype.Property.JustifySelf | undefined;
5494
- readonly xs?: csstype.Property.JustifySelf | undefined;
5495
- readonly s?: csstype.Property.JustifySelf | undefined;
5496
- readonly m?: csstype.Property.JustifySelf | undefined;
5497
- readonly l?: csstype.Property.JustifySelf | undefined;
5498
- readonly xl?: csstype.Property.JustifySelf | undefined;
5499
- } | undefined;
5500
- order?: csstype.Property.Order | {
5501
- readonly base?: csstype.Property.Order | undefined;
5502
- readonly xs?: csstype.Property.Order | undefined;
5503
- readonly s?: csstype.Property.Order | undefined;
5504
- readonly m?: csstype.Property.Order | undefined;
5505
- readonly l?: csstype.Property.Order | undefined;
5506
- readonly xl?: csstype.Property.Order | undefined;
5507
- } | undefined;
5508
- rowGap: SpacingValueType | {
5509
- readonly base?: SpacingValueType | undefined;
5510
- readonly xs?: SpacingValueType | undefined;
5511
- readonly s?: SpacingValueType | undefined;
5512
- readonly m?: SpacingValueType | undefined;
5513
- readonly l?: SpacingValueType | undefined;
5514
- readonly xl?: SpacingValueType | undefined;
5515
- };
5516
- flex: string | number | {
5517
- readonly base?: string | number | undefined;
5518
- readonly xs?: string | number | undefined;
5519
- readonly s?: string | number | undefined;
5520
- readonly m?: string | number | undefined;
5521
- readonly l?: string | number | undefined;
5522
- readonly xl?: string | number | undefined;
5523
- };
5524
- gap: SpacingValueType | {
5525
- readonly base?: SpacingValueType | undefined;
5526
- readonly xs?: SpacingValueType | undefined;
5527
- readonly s?: SpacingValueType | undefined;
5528
- readonly m?: SpacingValueType | undefined;
5529
- readonly l?: SpacingValueType | undefined;
5530
- readonly xl?: SpacingValueType | undefined;
5531
- };
5532
- placeSelf?: csstype.Property.PlaceSelf | {
5533
- readonly base?: csstype.Property.PlaceSelf | undefined;
5534
- readonly xs?: csstype.Property.PlaceSelf | undefined;
5535
- readonly s?: csstype.Property.PlaceSelf | undefined;
5536
- readonly m?: csstype.Property.PlaceSelf | undefined;
5537
- readonly l?: csstype.Property.PlaceSelf | undefined;
5538
- readonly xl?: csstype.Property.PlaceSelf | undefined;
5539
- } | undefined;
5540
- __brand__?: "platform-web" | {
5541
- readonly base?: "platform-web" | undefined;
5542
- readonly xs?: "platform-web" | undefined;
5543
- readonly s?: "platform-web" | undefined;
5544
- readonly m?: "platform-web" | undefined;
5545
- readonly l?: "platform-web" | undefined;
5546
- readonly xl?: "platform-web" | undefined;
5547
- } | undefined;
5548
- }, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5171
+ } & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5549
5172
  bottom: SpacingValueType | {
5550
5173
  readonly base?: SpacingValueType | undefined;
5551
5174
  readonly xs?: SpacingValueType | undefined;
@@ -5763,153 +5386,8 @@ declare type PasswordInputExtraProps = {
5763
5386
  */
5764
5387
  autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
5765
5388
  };
5766
- declare type PasswordInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'maxCharacters' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'isDisabled' | 'defaultValue' | 'placeholder' | 'isRequired' | 'value' | 'onChange' | 'onBlur' | 'onSubmit' | 'onFocus' | 'name' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'testID'> & PasswordInputExtraProps & StyledPropsBlade;
5767
- declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "helpText" | "errorText" | "successText" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<MarginProps & Pick<{
5768
- alignContent?: csstype.Property.AlignContent | {
5769
- readonly base?: csstype.Property.AlignContent | undefined;
5770
- readonly xs?: csstype.Property.AlignContent | undefined;
5771
- readonly s?: csstype.Property.AlignContent | undefined;
5772
- readonly m?: csstype.Property.AlignContent | undefined;
5773
- readonly l?: csstype.Property.AlignContent | undefined;
5774
- readonly xl?: csstype.Property.AlignContent | undefined;
5775
- } | undefined;
5776
- alignItems?: csstype.Property.AlignItems | {
5777
- readonly base?: csstype.Property.AlignItems | undefined;
5778
- readonly xs?: csstype.Property.AlignItems | undefined;
5779
- readonly s?: csstype.Property.AlignItems | undefined;
5780
- readonly m?: csstype.Property.AlignItems | undefined;
5781
- readonly l?: csstype.Property.AlignItems | undefined;
5782
- readonly xl?: csstype.Property.AlignItems | undefined;
5783
- } | undefined;
5784
- alignSelf?: csstype.Property.AlignSelf | {
5785
- readonly base?: csstype.Property.AlignSelf | undefined;
5786
- readonly xs?: csstype.Property.AlignSelf | undefined;
5787
- readonly s?: csstype.Property.AlignSelf | undefined;
5788
- readonly m?: csstype.Property.AlignSelf | undefined;
5789
- readonly l?: csstype.Property.AlignSelf | undefined;
5790
- readonly xl?: csstype.Property.AlignSelf | undefined;
5791
- } | undefined;
5792
- columnGap: SpacingValueType | {
5793
- readonly base?: SpacingValueType | undefined;
5794
- readonly xs?: SpacingValueType | undefined;
5795
- readonly s?: SpacingValueType | undefined;
5796
- readonly m?: SpacingValueType | undefined;
5797
- readonly l?: SpacingValueType | undefined;
5798
- readonly xl?: SpacingValueType | undefined;
5799
- };
5800
- flexBasis?: csstype.Property.FlexBasis<string | number> | {
5801
- readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
5802
- readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
5803
- readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
5804
- readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
5805
- readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
5806
- readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
5807
- } | undefined;
5808
- flexDirection?: csstype.Property.FlexDirection | {
5809
- readonly base?: csstype.Property.FlexDirection | undefined;
5810
- readonly xs?: csstype.Property.FlexDirection | undefined;
5811
- readonly s?: csstype.Property.FlexDirection | undefined;
5812
- readonly m?: csstype.Property.FlexDirection | undefined;
5813
- readonly l?: csstype.Property.FlexDirection | undefined;
5814
- readonly xl?: csstype.Property.FlexDirection | undefined;
5815
- } | undefined;
5816
- flexGrow?: csstype.Property.FlexGrow | {
5817
- readonly base?: csstype.Property.FlexGrow | undefined;
5818
- readonly xs?: csstype.Property.FlexGrow | undefined;
5819
- readonly s?: csstype.Property.FlexGrow | undefined;
5820
- readonly m?: csstype.Property.FlexGrow | undefined;
5821
- readonly l?: csstype.Property.FlexGrow | undefined;
5822
- readonly xl?: csstype.Property.FlexGrow | undefined;
5823
- } | undefined;
5824
- flexShrink?: csstype.Property.FlexShrink | {
5825
- readonly base?: csstype.Property.FlexShrink | undefined;
5826
- readonly xs?: csstype.Property.FlexShrink | undefined;
5827
- readonly s?: csstype.Property.FlexShrink | undefined;
5828
- readonly m?: csstype.Property.FlexShrink | undefined;
5829
- readonly l?: csstype.Property.FlexShrink | undefined;
5830
- readonly xl?: csstype.Property.FlexShrink | undefined;
5831
- } | undefined;
5832
- flexWrap?: csstype.Property.FlexWrap | {
5833
- readonly base?: csstype.Property.FlexWrap | undefined;
5834
- readonly xs?: csstype.Property.FlexWrap | undefined;
5835
- readonly s?: csstype.Property.FlexWrap | undefined;
5836
- readonly m?: csstype.Property.FlexWrap | undefined;
5837
- readonly l?: csstype.Property.FlexWrap | undefined;
5838
- readonly xl?: csstype.Property.FlexWrap | undefined;
5839
- } | undefined;
5840
- justifyContent?: csstype.Property.JustifyContent | {
5841
- readonly base?: csstype.Property.JustifyContent | undefined;
5842
- readonly xs?: csstype.Property.JustifyContent | undefined;
5843
- readonly s?: csstype.Property.JustifyContent | undefined;
5844
- readonly m?: csstype.Property.JustifyContent | undefined;
5845
- readonly l?: csstype.Property.JustifyContent | undefined;
5846
- readonly xl?: csstype.Property.JustifyContent | undefined;
5847
- } | undefined;
5848
- justifyItems?: csstype.Property.JustifyItems | {
5849
- readonly base?: csstype.Property.JustifyItems | undefined;
5850
- readonly xs?: csstype.Property.JustifyItems | undefined;
5851
- readonly s?: csstype.Property.JustifyItems | undefined;
5852
- readonly m?: csstype.Property.JustifyItems | undefined;
5853
- readonly l?: csstype.Property.JustifyItems | undefined;
5854
- readonly xl?: csstype.Property.JustifyItems | undefined;
5855
- } | undefined;
5856
- justifySelf?: csstype.Property.JustifySelf | {
5857
- readonly base?: csstype.Property.JustifySelf | undefined;
5858
- readonly xs?: csstype.Property.JustifySelf | undefined;
5859
- readonly s?: csstype.Property.JustifySelf | undefined;
5860
- readonly m?: csstype.Property.JustifySelf | undefined;
5861
- readonly l?: csstype.Property.JustifySelf | undefined;
5862
- readonly xl?: csstype.Property.JustifySelf | undefined;
5863
- } | undefined;
5864
- order?: csstype.Property.Order | {
5865
- readonly base?: csstype.Property.Order | undefined;
5866
- readonly xs?: csstype.Property.Order | undefined;
5867
- readonly s?: csstype.Property.Order | undefined;
5868
- readonly m?: csstype.Property.Order | undefined;
5869
- readonly l?: csstype.Property.Order | undefined;
5870
- readonly xl?: csstype.Property.Order | undefined;
5871
- } | undefined;
5872
- rowGap: SpacingValueType | {
5873
- readonly base?: SpacingValueType | undefined;
5874
- readonly xs?: SpacingValueType | undefined;
5875
- readonly s?: SpacingValueType | undefined;
5876
- readonly m?: SpacingValueType | undefined;
5877
- readonly l?: SpacingValueType | undefined;
5878
- readonly xl?: SpacingValueType | undefined;
5879
- };
5880
- flex: string | number | {
5881
- readonly base?: string | number | undefined;
5882
- readonly xs?: string | number | undefined;
5883
- readonly s?: string | number | undefined;
5884
- readonly m?: string | number | undefined;
5885
- readonly l?: string | number | undefined;
5886
- readonly xl?: string | number | undefined;
5887
- };
5888
- gap: SpacingValueType | {
5889
- readonly base?: SpacingValueType | undefined;
5890
- readonly xs?: SpacingValueType | undefined;
5891
- readonly s?: SpacingValueType | undefined;
5892
- readonly m?: SpacingValueType | undefined;
5893
- readonly l?: SpacingValueType | undefined;
5894
- readonly xl?: SpacingValueType | undefined;
5895
- };
5896
- placeSelf?: csstype.Property.PlaceSelf | {
5897
- readonly base?: csstype.Property.PlaceSelf | undefined;
5898
- readonly xs?: csstype.Property.PlaceSelf | undefined;
5899
- readonly s?: csstype.Property.PlaceSelf | undefined;
5900
- readonly m?: csstype.Property.PlaceSelf | undefined;
5901
- readonly l?: csstype.Property.PlaceSelf | undefined;
5902
- readonly xl?: csstype.Property.PlaceSelf | undefined;
5903
- } | undefined;
5904
- __brand__?: "platform-web" | {
5905
- readonly base?: "platform-web" | undefined;
5906
- readonly xs?: "platform-web" | undefined;
5907
- readonly s?: "platform-web" | undefined;
5908
- readonly m?: "platform-web" | undefined;
5909
- readonly l?: "platform-web" | undefined;
5910
- readonly xl?: "platform-web" | undefined;
5911
- } | undefined;
5912
- }, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5389
+ declare type PasswordInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'maxCharacters' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'isDisabled' | 'defaultValue' | 'placeholder' | 'isRequired' | 'value' | 'onChange' | 'onBlur' | 'onSubmit' | 'onFocus' | 'name' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'testID'> & PasswordInputExtraProps & StyledPropsBlade$1;
5390
+ declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "helpText" | "errorText" | "successText" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5913
5391
  bottom: SpacingValueType | {
5914
5392
  readonly base?: SpacingValueType | undefined;
5915
5393
  readonly xs?: SpacingValueType | undefined;
@@ -6106,7 +5584,7 @@ declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'n
6106
5584
  * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
6107
5585
  */
6108
5586
  onClearButtonClick?: () => void;
6109
- } & StyledPropsBlade;
5587
+ } & StyledPropsBlade$1;
6110
5588
  declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
6111
5589
  /**
6112
5590
  * Decides whether to render a clear icon button
@@ -6116,152 +5594,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
6116
5594
  * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
6117
5595
  */
6118
5596
  onClearButtonClick?: (() => void) | undefined;
6119
- } & Partial<Omit<MarginProps & Pick<{
6120
- alignContent?: csstype.Property.AlignContent | {
6121
- readonly base?: csstype.Property.AlignContent | undefined;
6122
- readonly xs?: csstype.Property.AlignContent | undefined;
6123
- readonly s?: csstype.Property.AlignContent | undefined;
6124
- readonly m?: csstype.Property.AlignContent | undefined;
6125
- readonly l?: csstype.Property.AlignContent | undefined;
6126
- readonly xl?: csstype.Property.AlignContent | undefined;
6127
- } | undefined;
6128
- alignItems?: csstype.Property.AlignItems | {
6129
- readonly base?: csstype.Property.AlignItems | undefined;
6130
- readonly xs?: csstype.Property.AlignItems | undefined;
6131
- readonly s?: csstype.Property.AlignItems | undefined;
6132
- readonly m?: csstype.Property.AlignItems | undefined;
6133
- readonly l?: csstype.Property.AlignItems | undefined;
6134
- readonly xl?: csstype.Property.AlignItems | undefined;
6135
- } | undefined;
6136
- alignSelf?: csstype.Property.AlignSelf | {
6137
- readonly base?: csstype.Property.AlignSelf | undefined;
6138
- readonly xs?: csstype.Property.AlignSelf | undefined;
6139
- readonly s?: csstype.Property.AlignSelf | undefined;
6140
- readonly m?: csstype.Property.AlignSelf | undefined;
6141
- readonly l?: csstype.Property.AlignSelf | undefined;
6142
- readonly xl?: csstype.Property.AlignSelf | undefined;
6143
- } | undefined;
6144
- columnGap: SpacingValueType | {
6145
- readonly base?: SpacingValueType | undefined;
6146
- readonly xs?: SpacingValueType | undefined;
6147
- readonly s?: SpacingValueType | undefined;
6148
- readonly m?: SpacingValueType | undefined;
6149
- readonly l?: SpacingValueType | undefined;
6150
- readonly xl?: SpacingValueType | undefined;
6151
- };
6152
- flexBasis?: csstype.Property.FlexBasis<string | number> | {
6153
- readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
6154
- readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
6155
- readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
6156
- readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
6157
- readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
6158
- readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
6159
- } | undefined;
6160
- flexDirection?: csstype.Property.FlexDirection | {
6161
- readonly base?: csstype.Property.FlexDirection | undefined;
6162
- readonly xs?: csstype.Property.FlexDirection | undefined;
6163
- readonly s?: csstype.Property.FlexDirection | undefined;
6164
- readonly m?: csstype.Property.FlexDirection | undefined;
6165
- readonly l?: csstype.Property.FlexDirection | undefined;
6166
- readonly xl?: csstype.Property.FlexDirection | undefined;
6167
- } | undefined;
6168
- flexGrow?: csstype.Property.FlexGrow | {
6169
- readonly base?: csstype.Property.FlexGrow | undefined;
6170
- readonly xs?: csstype.Property.FlexGrow | undefined;
6171
- readonly s?: csstype.Property.FlexGrow | undefined;
6172
- readonly m?: csstype.Property.FlexGrow | undefined;
6173
- readonly l?: csstype.Property.FlexGrow | undefined;
6174
- readonly xl?: csstype.Property.FlexGrow | undefined;
6175
- } | undefined;
6176
- flexShrink?: csstype.Property.FlexShrink | {
6177
- readonly base?: csstype.Property.FlexShrink | undefined;
6178
- readonly xs?: csstype.Property.FlexShrink | undefined;
6179
- readonly s?: csstype.Property.FlexShrink | undefined;
6180
- readonly m?: csstype.Property.FlexShrink | undefined;
6181
- readonly l?: csstype.Property.FlexShrink | undefined;
6182
- readonly xl?: csstype.Property.FlexShrink | undefined;
6183
- } | undefined;
6184
- flexWrap?: csstype.Property.FlexWrap | {
6185
- readonly base?: csstype.Property.FlexWrap | undefined;
6186
- readonly xs?: csstype.Property.FlexWrap | undefined;
6187
- readonly s?: csstype.Property.FlexWrap | undefined;
6188
- readonly m?: csstype.Property.FlexWrap | undefined;
6189
- readonly l?: csstype.Property.FlexWrap | undefined;
6190
- readonly xl?: csstype.Property.FlexWrap | undefined;
6191
- } | undefined;
6192
- justifyContent?: csstype.Property.JustifyContent | {
6193
- readonly base?: csstype.Property.JustifyContent | undefined;
6194
- readonly xs?: csstype.Property.JustifyContent | undefined;
6195
- readonly s?: csstype.Property.JustifyContent | undefined;
6196
- readonly m?: csstype.Property.JustifyContent | undefined;
6197
- readonly l?: csstype.Property.JustifyContent | undefined;
6198
- readonly xl?: csstype.Property.JustifyContent | undefined;
6199
- } | undefined;
6200
- justifyItems?: csstype.Property.JustifyItems | {
6201
- readonly base?: csstype.Property.JustifyItems | undefined;
6202
- readonly xs?: csstype.Property.JustifyItems | undefined;
6203
- readonly s?: csstype.Property.JustifyItems | undefined;
6204
- readonly m?: csstype.Property.JustifyItems | undefined;
6205
- readonly l?: csstype.Property.JustifyItems | undefined;
6206
- readonly xl?: csstype.Property.JustifyItems | undefined;
6207
- } | undefined;
6208
- justifySelf?: csstype.Property.JustifySelf | {
6209
- readonly base?: csstype.Property.JustifySelf | undefined;
6210
- readonly xs?: csstype.Property.JustifySelf | undefined;
6211
- readonly s?: csstype.Property.JustifySelf | undefined;
6212
- readonly m?: csstype.Property.JustifySelf | undefined;
6213
- readonly l?: csstype.Property.JustifySelf | undefined;
6214
- readonly xl?: csstype.Property.JustifySelf | undefined;
6215
- } | undefined;
6216
- order?: csstype.Property.Order | {
6217
- readonly base?: csstype.Property.Order | undefined;
6218
- readonly xs?: csstype.Property.Order | undefined;
6219
- readonly s?: csstype.Property.Order | undefined;
6220
- readonly m?: csstype.Property.Order | undefined;
6221
- readonly l?: csstype.Property.Order | undefined;
6222
- readonly xl?: csstype.Property.Order | undefined;
6223
- } | undefined;
6224
- rowGap: SpacingValueType | {
6225
- readonly base?: SpacingValueType | undefined;
6226
- readonly xs?: SpacingValueType | undefined;
6227
- readonly s?: SpacingValueType | undefined;
6228
- readonly m?: SpacingValueType | undefined;
6229
- readonly l?: SpacingValueType | undefined;
6230
- readonly xl?: SpacingValueType | undefined;
6231
- };
6232
- flex: string | number | {
6233
- readonly base?: string | number | undefined;
6234
- readonly xs?: string | number | undefined;
6235
- readonly s?: string | number | undefined;
6236
- readonly m?: string | number | undefined;
6237
- readonly l?: string | number | undefined;
6238
- readonly xl?: string | number | undefined;
6239
- };
6240
- gap: SpacingValueType | {
6241
- readonly base?: SpacingValueType | undefined;
6242
- readonly xs?: SpacingValueType | undefined;
6243
- readonly s?: SpacingValueType | undefined;
6244
- readonly m?: SpacingValueType | undefined;
6245
- readonly l?: SpacingValueType | undefined;
6246
- readonly xl?: SpacingValueType | undefined;
6247
- };
6248
- placeSelf?: csstype.Property.PlaceSelf | {
6249
- readonly base?: csstype.Property.PlaceSelf | undefined;
6250
- readonly xs?: csstype.Property.PlaceSelf | undefined;
6251
- readonly s?: csstype.Property.PlaceSelf | undefined;
6252
- readonly m?: csstype.Property.PlaceSelf | undefined;
6253
- readonly l?: csstype.Property.PlaceSelf | undefined;
6254
- readonly xl?: csstype.Property.PlaceSelf | undefined;
6255
- } | undefined;
6256
- __brand__?: "platform-web" | {
6257
- readonly base?: "platform-web" | undefined;
6258
- readonly xs?: "platform-web" | undefined;
6259
- readonly s?: "platform-web" | undefined;
6260
- readonly m?: "platform-web" | undefined;
6261
- readonly l?: "platform-web" | undefined;
6262
- readonly xl?: "platform-web" | undefined;
6263
- } | undefined;
6264
- }, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5597
+ } & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
6265
5598
  bottom: SpacingValueType | {
6266
5599
  readonly base?: SpacingValueType | undefined;
6267
5600
  readonly xs?: SpacingValueType | undefined;
@@ -6490,7 +5823,7 @@ declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'v
6490
5823
  * The callback function to be invoked when one of the input fields is blurred
6491
5824
  */
6492
5825
  onBlur?: FormInputOnEventWithIndex;
6493
- } & StyledPropsBlade;
5826
+ } & StyledPropsBlade$1;
6494
5827
  /**
6495
5828
  * OTPInput component can be used for accepting OTPs sent to users for authentication/verification purposes.
6496
5829
  *
@@ -6582,7 +5915,7 @@ declare type IndicatorCommonProps = {
6582
5915
  * @default medium
6583
5916
  */
6584
5917
  size?: 'small' | 'medium' | 'large';
6585
- } & TestID$1 & StyledPropsBlade;
5918
+ } & TestID$1 & StyledPropsBlade$1;
6586
5919
  declare type IndicatorWithoutA11yLabel = {
6587
5920
  /**
6588
5921
  * A text label to show alongside the indicator dot
@@ -6643,7 +5976,7 @@ declare type ListCommonProps = {
6643
5976
  * @default 'medium'
6644
5977
  */
6645
5978
  size?: 'small' | 'medium';
6646
- } & TestID$1 & StyledPropsBlade;
5979
+ } & TestID$1 & StyledPropsBlade$1;
6647
5980
  declare type ListWithIconProps = ListCommonProps & {
6648
5981
  variant?: 'unordered';
6649
5982
  icon?: IconComponent;
@@ -6663,10 +5996,11 @@ declare type FeedbackActionColors = `feedback.${Feedback}.action.text.${DotNotat
6663
5996
  declare type SurfaceColors = `surface.text.${DotNotationColorStringToken<Theme$1['colors']['surface']['text']>}`;
6664
5997
  declare type ActionColors = `action.text.${DotNotationColorStringToken<Theme$1['colors']['action']['text']>}`;
6665
5998
  declare type BadgeTextColors = `badge.text.${DotNotationColorStringToken<Theme$1['colors']['badge']['text']>}`;
5999
+ declare type BrandPrimaryColors = `brand.primary.${keyof Theme$1['colors']['brand']['primary']}`;
6666
6000
  declare type As = 'code' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'abbr' | 'q' | 'cite' | 'figcaption' | 'div';
6667
6001
  declare type BaseTextProps = {
6668
6002
  id?: string;
6669
- color?: ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
6003
+ color?: BrandPrimaryColors | ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
6670
6004
  fontFamily?: keyof Theme$1['typography']['fonts']['family'];
6671
6005
  fontSize?: keyof Theme$1['typography']['fonts']['size'];
6672
6006
  fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
@@ -6688,7 +6022,7 @@ declare type BaseTextProps = {
6688
6022
  */
6689
6023
  numberOfLines?: number;
6690
6024
  componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
6691
- } & TestID$1 & StyledPropsBlade;
6025
+ } & TestID$1 & StyledPropsBlade$1;
6692
6026
 
6693
6027
  declare const validAsValues$2: readonly ["span", "h1", "h2", "h3", "h4", "h5", "h6"];
6694
6028
  declare type TitleProps = {
@@ -6705,7 +6039,7 @@ declare type TitleProps = {
6705
6039
  children: React.ReactNode;
6706
6040
  textAlign?: BaseTextProps['textAlign'];
6707
6041
  textDecorationLine?: BaseTextProps['textDecorationLine'];
6708
- } & TestID$1 & StyledPropsBlade;
6042
+ } & TestID$1 & StyledPropsBlade$1;
6709
6043
  declare const Title: ({ as, size, type, contrast, color, children, testID, textAlign, textDecorationLine, ...styledProps }: TitleProps) => ReactElement;
6710
6044
 
6711
6045
  declare type HeadingVariant = 'regular' | 'subheading';
@@ -6724,7 +6058,7 @@ declare type HeadingCommonProps = {
6724
6058
  children: React.ReactNode;
6725
6059
  textAlign?: BaseTextProps['textAlign'];
6726
6060
  textDecorationLine?: BaseTextProps['textDecorationLine'];
6727
- } & TestID$1 & StyledPropsBlade;
6061
+ } & TestID$1 & StyledPropsBlade$1;
6728
6062
  declare type HeadingNormalVariant = HeadingCommonProps & {
6729
6063
  variant?: Exclude<HeadingVariant, 'subheading'>;
6730
6064
  /**
@@ -6769,7 +6103,7 @@ declare type TextCommonProps = {
6769
6103
  color?: BaseTextProps['color'];
6770
6104
  textAlign?: BaseTextProps['textAlign'];
6771
6105
  textDecorationLine?: BaseTextProps['textDecorationLine'];
6772
- } & TestID$1 & StyledPropsBlade;
6106
+ } & TestID$1 & StyledPropsBlade$1;
6773
6107
  declare type TextVariant = 'body' | 'caption';
6774
6108
  declare type TextBodyVariant = TextCommonProps & {
6775
6109
  variant?: Extract<TextVariant, 'body'>;
@@ -6811,7 +6145,7 @@ declare type CodeCommonProps = {
6811
6145
  weight?: 'regular' | 'bold';
6812
6146
  isHighlighted?: boolean;
6813
6147
  color?: BaseTextProps['color'];
6814
- } & TestID$1 & StyledPropsBlade;
6148
+ } & TestID$1 & StyledPropsBlade$1;
6815
6149
  declare type CodeHighlightedProps = CodeCommonProps & {
6816
6150
  /**
6817
6151
  * Adds background color to highlight the text
@@ -6971,7 +6305,7 @@ declare type ProgressBarCommonProps = {
6971
6305
  * @default 100
6972
6306
  */
6973
6307
  max?: number;
6974
- } & TestID$1 & StyledPropsBlade;
6308
+ } & TestID$1 & StyledPropsBlade$1;
6975
6309
  declare type ProgressBarVariant = 'progress' | 'meter';
6976
6310
  declare type ProgressBarProgressProps = ProgressBarCommonProps & {
6977
6311
  /**
@@ -7036,7 +6370,7 @@ declare type RadioProps = {
7036
6370
  * @default "medium"
7037
6371
  */
7038
6372
  size?: 'small' | 'medium';
7039
- } & TestID$1 & StyledPropsBlade;
6373
+ } & TestID$1 & StyledPropsBlade$1;
7040
6374
  declare const Radio: React__default.ForwardRefExoticComponent<{
7041
6375
  /**
7042
6376
  * Sets the label text of the Radio
@@ -7063,152 +6397,7 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
7063
6397
  * @default "medium"
7064
6398
  */
7065
6399
  size?: "small" | "medium" | undefined;
7066
- } & TestID$1 & Partial<Omit<MarginProps & Pick<{
7067
- alignContent?: csstype.Property.AlignContent | {
7068
- readonly base?: csstype.Property.AlignContent | undefined;
7069
- readonly xs?: csstype.Property.AlignContent | undefined;
7070
- readonly s?: csstype.Property.AlignContent | undefined;
7071
- readonly m?: csstype.Property.AlignContent | undefined;
7072
- readonly l?: csstype.Property.AlignContent | undefined;
7073
- readonly xl?: csstype.Property.AlignContent | undefined;
7074
- } | undefined;
7075
- alignItems?: csstype.Property.AlignItems | {
7076
- readonly base?: csstype.Property.AlignItems | undefined;
7077
- readonly xs?: csstype.Property.AlignItems | undefined;
7078
- readonly s?: csstype.Property.AlignItems | undefined;
7079
- readonly m?: csstype.Property.AlignItems | undefined;
7080
- readonly l?: csstype.Property.AlignItems | undefined;
7081
- readonly xl?: csstype.Property.AlignItems | undefined;
7082
- } | undefined;
7083
- alignSelf?: csstype.Property.AlignSelf | {
7084
- readonly base?: csstype.Property.AlignSelf | undefined;
7085
- readonly xs?: csstype.Property.AlignSelf | undefined;
7086
- readonly s?: csstype.Property.AlignSelf | undefined;
7087
- readonly m?: csstype.Property.AlignSelf | undefined;
7088
- readonly l?: csstype.Property.AlignSelf | undefined;
7089
- readonly xl?: csstype.Property.AlignSelf | undefined;
7090
- } | undefined;
7091
- columnGap: SpacingValueType | {
7092
- readonly base?: SpacingValueType | undefined;
7093
- readonly xs?: SpacingValueType | undefined;
7094
- readonly s?: SpacingValueType | undefined;
7095
- readonly m?: SpacingValueType | undefined;
7096
- readonly l?: SpacingValueType | undefined;
7097
- readonly xl?: SpacingValueType | undefined;
7098
- };
7099
- flexBasis?: csstype.Property.FlexBasis<string | number> | {
7100
- readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
7101
- readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
7102
- readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
7103
- readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
7104
- readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
7105
- readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
7106
- } | undefined;
7107
- flexDirection?: csstype.Property.FlexDirection | {
7108
- readonly base?: csstype.Property.FlexDirection | undefined;
7109
- readonly xs?: csstype.Property.FlexDirection | undefined;
7110
- readonly s?: csstype.Property.FlexDirection | undefined;
7111
- readonly m?: csstype.Property.FlexDirection | undefined;
7112
- readonly l?: csstype.Property.FlexDirection | undefined;
7113
- readonly xl?: csstype.Property.FlexDirection | undefined;
7114
- } | undefined;
7115
- flexGrow?: csstype.Property.FlexGrow | {
7116
- readonly base?: csstype.Property.FlexGrow | undefined;
7117
- readonly xs?: csstype.Property.FlexGrow | undefined;
7118
- readonly s?: csstype.Property.FlexGrow | undefined;
7119
- readonly m?: csstype.Property.FlexGrow | undefined;
7120
- readonly l?: csstype.Property.FlexGrow | undefined;
7121
- readonly xl?: csstype.Property.FlexGrow | undefined;
7122
- } | undefined;
7123
- flexShrink?: csstype.Property.FlexShrink | {
7124
- readonly base?: csstype.Property.FlexShrink | undefined;
7125
- readonly xs?: csstype.Property.FlexShrink | undefined;
7126
- readonly s?: csstype.Property.FlexShrink | undefined;
7127
- readonly m?: csstype.Property.FlexShrink | undefined;
7128
- readonly l?: csstype.Property.FlexShrink | undefined;
7129
- readonly xl?: csstype.Property.FlexShrink | undefined;
7130
- } | undefined;
7131
- flexWrap?: csstype.Property.FlexWrap | {
7132
- readonly base?: csstype.Property.FlexWrap | undefined;
7133
- readonly xs?: csstype.Property.FlexWrap | undefined;
7134
- readonly s?: csstype.Property.FlexWrap | undefined;
7135
- readonly m?: csstype.Property.FlexWrap | undefined;
7136
- readonly l?: csstype.Property.FlexWrap | undefined;
7137
- readonly xl?: csstype.Property.FlexWrap | undefined;
7138
- } | undefined;
7139
- justifyContent?: csstype.Property.JustifyContent | {
7140
- readonly base?: csstype.Property.JustifyContent | undefined;
7141
- readonly xs?: csstype.Property.JustifyContent | undefined;
7142
- readonly s?: csstype.Property.JustifyContent | undefined;
7143
- readonly m?: csstype.Property.JustifyContent | undefined;
7144
- readonly l?: csstype.Property.JustifyContent | undefined;
7145
- readonly xl?: csstype.Property.JustifyContent | undefined;
7146
- } | undefined;
7147
- justifyItems?: csstype.Property.JustifyItems | {
7148
- readonly base?: csstype.Property.JustifyItems | undefined;
7149
- readonly xs?: csstype.Property.JustifyItems | undefined;
7150
- readonly s?: csstype.Property.JustifyItems | undefined;
7151
- readonly m?: csstype.Property.JustifyItems | undefined;
7152
- readonly l?: csstype.Property.JustifyItems | undefined;
7153
- readonly xl?: csstype.Property.JustifyItems | undefined;
7154
- } | undefined;
7155
- justifySelf?: csstype.Property.JustifySelf | {
7156
- readonly base?: csstype.Property.JustifySelf | undefined;
7157
- readonly xs?: csstype.Property.JustifySelf | undefined;
7158
- readonly s?: csstype.Property.JustifySelf | undefined;
7159
- readonly m?: csstype.Property.JustifySelf | undefined;
7160
- readonly l?: csstype.Property.JustifySelf | undefined;
7161
- readonly xl?: csstype.Property.JustifySelf | undefined;
7162
- } | undefined;
7163
- order?: csstype.Property.Order | {
7164
- readonly base?: csstype.Property.Order | undefined;
7165
- readonly xs?: csstype.Property.Order | undefined;
7166
- readonly s?: csstype.Property.Order | undefined;
7167
- readonly m?: csstype.Property.Order | undefined;
7168
- readonly l?: csstype.Property.Order | undefined;
7169
- readonly xl?: csstype.Property.Order | undefined;
7170
- } | undefined;
7171
- rowGap: SpacingValueType | {
7172
- readonly base?: SpacingValueType | undefined;
7173
- readonly xs?: SpacingValueType | undefined;
7174
- readonly s?: SpacingValueType | undefined;
7175
- readonly m?: SpacingValueType | undefined;
7176
- readonly l?: SpacingValueType | undefined;
7177
- readonly xl?: SpacingValueType | undefined;
7178
- };
7179
- flex: string | number | {
7180
- readonly base?: string | number | undefined;
7181
- readonly xs?: string | number | undefined;
7182
- readonly s?: string | number | undefined;
7183
- readonly m?: string | number | undefined;
7184
- readonly l?: string | number | undefined;
7185
- readonly xl?: string | number | undefined;
7186
- };
7187
- gap: SpacingValueType | {
7188
- readonly base?: SpacingValueType | undefined;
7189
- readonly xs?: SpacingValueType | undefined;
7190
- readonly s?: SpacingValueType | undefined;
7191
- readonly m?: SpacingValueType | undefined;
7192
- readonly l?: SpacingValueType | undefined;
7193
- readonly xl?: SpacingValueType | undefined;
7194
- };
7195
- placeSelf?: csstype.Property.PlaceSelf | {
7196
- readonly base?: csstype.Property.PlaceSelf | undefined;
7197
- readonly xs?: csstype.Property.PlaceSelf | undefined;
7198
- readonly s?: csstype.Property.PlaceSelf | undefined;
7199
- readonly m?: csstype.Property.PlaceSelf | undefined;
7200
- readonly l?: csstype.Property.PlaceSelf | undefined;
7201
- readonly xl?: csstype.Property.PlaceSelf | undefined;
7202
- } | undefined;
7203
- __brand__?: "platform-web" | {
7204
- readonly base?: "platform-web" | undefined;
7205
- readonly xs?: "platform-web" | undefined;
7206
- readonly s?: "platform-web" | undefined;
7207
- readonly m?: "platform-web" | undefined;
7208
- readonly l?: "platform-web" | undefined;
7209
- readonly xl?: "platform-web" | undefined;
7210
- } | undefined;
7211
- }, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
6400
+ } & TestID$1 & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
7212
6401
  bottom: SpacingValueType | {
7213
6402
  readonly base?: SpacingValueType | undefined;
7214
6403
  readonly xs?: SpacingValueType | undefined;
@@ -7474,7 +6663,7 @@ declare type RadioGroupProps = {
7474
6663
  * @default "medium"
7475
6664
  */
7476
6665
  size?: 'small' | 'medium';
7477
- } & TestID$1 & StyledPropsBlade;
6666
+ } & TestID$1 & StyledPropsBlade$1;
7478
6667
  declare const RadioGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: RadioGroupProps) => React__default.ReactElement;
7479
6668
 
7480
6669
  declare type BaseSpinnerProps = {
@@ -7507,7 +6696,7 @@ declare type BaseSpinnerProps = {
7507
6696
  *
7508
6697
  */
7509
6698
  accessibilityLabel: string;
7510
- } & TestID$1 & StyledPropsBlade;
6699
+ } & TestID$1 & StyledPropsBlade$1;
7511
6700
 
7512
6701
  declare type SpinnerProps = Omit<BaseSpinnerProps, 'intent'>;
7513
6702
  declare const Spinner: ({ label, labelPosition, accessibilityLabel, contrast, size, testID, ...styledProps }: SpinnerProps) => React.ReactElement;
@@ -7580,6 +6769,52 @@ declare type SwitchProps = {
7580
6769
 
7581
6770
  declare const Switch: React__default.ForwardRefExoticComponent<SwitchProps & React__default.RefAttributes<BladeElementRef>>;
7582
6771
 
6772
+ declare type BladeCommonEvents = {
6773
+ onBlur?: Platform.Select<{
6774
+ native: undefined | ((event: any) => void);
6775
+ web: React.FocusEventHandler;
6776
+ }>;
6777
+ onFocus?: Platform.Select<{
6778
+ native: undefined | ((event: any) => void);
6779
+ web: React.FocusEventHandler;
6780
+ }>;
6781
+ onMouseLeave?: Platform.Select<{
6782
+ web: React.MouseEventHandler;
6783
+ native: undefined;
6784
+ }>;
6785
+ onMouseMove?: Platform.Select<{
6786
+ web: React.MouseEventHandler;
6787
+ native: undefined;
6788
+ }>;
6789
+ onPointerDown?: Platform.Select<{
6790
+ web: React.PointerEventHandler;
6791
+ native: undefined;
6792
+ }>;
6793
+ onPointerEnter?: Platform.Select<{
6794
+ web: React.PointerEventHandler;
6795
+ native: undefined;
6796
+ }>;
6797
+ onTouchStart?: Platform.Select<{
6798
+ native: undefined | ((event: any) => void);
6799
+ web: React.TouchEventHandler;
6800
+ }>;
6801
+ onTouchEnd?: Platform.Select<{
6802
+ native: undefined | ((event: any) => void);
6803
+ web: React.TouchEventHandler;
6804
+ }>;
6805
+ };
6806
+
6807
+ declare type TestID = {
6808
+ testID?: string;
6809
+ };
6810
+
6811
+ declare type SkeletonProps = StyledPropsBlade & Pick<BaseBoxProps, 'width' | 'maxWidth' | 'minWidth' | 'height' | 'maxHeight' | 'minHeight' | 'borderRadius'> & Partial<FlexboxProps> & {
6812
+ contrast?: 'low' | 'high';
6813
+ testID?: string;
6814
+ };
6815
+
6816
+ declare const Skeleton: ({ contrast, width, maxWidth, minWidth, height, maxHeight, minHeight, borderRadius, flexWrap, flexDirection, flexGrow, flexShrink, flexBasis, alignItems, alignContent, alignSelf, justifyItems, justifyContent, justifySelf, placeSelf, order, testID, ...props }: SkeletonProps) => React.ReactElement;
6817
+
7583
6818
  declare type VisuallyHiddenProps = {
7584
6819
  children: React.ReactNode;
7585
6820
  } & TestID$1;
@@ -7635,7 +6870,7 @@ declare type AmountProps = {
7635
6870
  * @default 'INR'
7636
6871
  * */
7637
6872
  currency?: Currency;
7638
- } & TestID$1 & StyledPropsBlade;
6873
+ } & TestID$1 & StyledPropsBlade$1;
7639
6874
  declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
7640
6875
 
7641
6876
  declare type SnapPoints = [number, number, number];
@@ -7729,7 +6964,7 @@ declare type AccordionProps = {
7729
6964
  * Accepts `AccordionItem` child nodes
7730
6965
  */
7731
6966
  children: ReactElement | ReactElement[];
7732
- } & TestID$1 & StyledPropsBlade;
6967
+ } & TestID$1 & StyledPropsBlade$1;
7733
6968
  declare const Accordion: ({ defaultExpandedIndex, expandedIndex, onExpandChange, showNumberPrefix, children, testID, ...styledProps }: AccordionProps) => ReactElement;
7734
6969
 
7735
6970
  declare type AccordionItemProps = {
@@ -7792,7 +7027,7 @@ declare type CollapsibleProps = {
7792
7027
  * **Internal**: used to override responsive width restrictions
7793
7028
  */
7794
7029
  _shouldApplyWidthRestrictions?: boolean;
7795
- } & TestID$1 & StyledPropsBlade;
7030
+ } & TestID$1 & StyledPropsBlade$1;
7796
7031
  declare const Collapsible: ({ children, direction, defaultIsExpanded, isExpanded, onExpandChange, testID, _shouldApplyWidthRestrictions, ...styledProps }: CollapsibleProps) => ReactElement;
7797
7032
 
7798
7033
  declare type CollapsibleLinkProps = Pick<LinkProps, 'size' | 'isDisabled' | 'testID' | 'accessibilityLabel' | 'children'>;
@@ -7806,7 +7041,7 @@ declare type CollapsibleBodyProps = {
7806
7041
  /**
7807
7042
  * **Internal**: used for React Native specific workarounds. Collapsible automatically takes care of width, you shouldn't need to configure this
7808
7043
  */
7809
- _width?: BaseBoxProps['width'];
7044
+ _width?: BaseBoxProps$1['width'];
7810
7045
  } & TestID$1;
7811
7046
  declare const CollapsibleBody: ({ children, testID, _width }: CollapsibleBodyProps) => ReactElement;
7812
7047
 
@@ -7829,45 +7064,6 @@ declare type TooltipProps = {
7829
7064
 
7830
7065
  declare const Tooltip: ({ content, children, placement, onOpenChange, }: TooltipProps) => React__default.ReactElement;
7831
7066
 
7832
- declare type BladeCommonEvents = {
7833
- onBlur?: Platform.Select<{
7834
- native: undefined | ((event: any) => void);
7835
- web: React.FocusEventHandler;
7836
- }>;
7837
- onFocus?: Platform.Select<{
7838
- native: undefined | ((event: any) => void);
7839
- web: React.FocusEventHandler;
7840
- }>;
7841
- onMouseLeave?: Platform.Select<{
7842
- web: React.MouseEventHandler;
7843
- native: undefined;
7844
- }>;
7845
- onMouseMove?: Platform.Select<{
7846
- web: React.MouseEventHandler;
7847
- native: undefined;
7848
- }>;
7849
- onPointerDown?: Platform.Select<{
7850
- web: React.PointerEventHandler;
7851
- native: undefined;
7852
- }>;
7853
- onPointerEnter?: Platform.Select<{
7854
- web: React.PointerEventHandler;
7855
- native: undefined;
7856
- }>;
7857
- onTouchStart?: Platform.Select<{
7858
- native: undefined | ((event: any) => void);
7859
- web: React.TouchEventHandler;
7860
- }>;
7861
- onTouchEnd?: Platform.Select<{
7862
- native: undefined | ((event: any) => void);
7863
- web: React.TouchEventHandler;
7864
- }>;
7865
- };
7866
-
7867
- declare type TestID = {
7868
- testID?: string;
7869
- };
7870
-
7871
7067
  declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, Omit<Partial<PaddingProps & MarginProps & {
7872
7068
  width: SpacingValueType | {
7873
7069
  readonly base?: SpacingValueType | undefined;
@@ -7965,152 +7161,7 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
7965
7161
  readonly l?: "platform-web" | undefined;
7966
7162
  readonly xl?: "platform-web" | undefined;
7967
7163
  } | undefined;
7968
- } & {
7969
- alignContent?: csstype.Property.AlignContent | {
7970
- readonly base?: csstype.Property.AlignContent | undefined;
7971
- readonly xs?: csstype.Property.AlignContent | undefined;
7972
- readonly s?: csstype.Property.AlignContent | undefined;
7973
- readonly m?: csstype.Property.AlignContent | undefined;
7974
- readonly l?: csstype.Property.AlignContent | undefined;
7975
- readonly xl?: csstype.Property.AlignContent | undefined;
7976
- } | undefined;
7977
- alignItems?: csstype.Property.AlignItems | {
7978
- readonly base?: csstype.Property.AlignItems | undefined;
7979
- readonly xs?: csstype.Property.AlignItems | undefined;
7980
- readonly s?: csstype.Property.AlignItems | undefined;
7981
- readonly m?: csstype.Property.AlignItems | undefined;
7982
- readonly l?: csstype.Property.AlignItems | undefined;
7983
- readonly xl?: csstype.Property.AlignItems | undefined;
7984
- } | undefined;
7985
- alignSelf?: csstype.Property.AlignSelf | {
7986
- readonly base?: csstype.Property.AlignSelf | undefined;
7987
- readonly xs?: csstype.Property.AlignSelf | undefined;
7988
- readonly s?: csstype.Property.AlignSelf | undefined;
7989
- readonly m?: csstype.Property.AlignSelf | undefined;
7990
- readonly l?: csstype.Property.AlignSelf | undefined;
7991
- readonly xl?: csstype.Property.AlignSelf | undefined;
7992
- } | undefined;
7993
- columnGap: SpacingValueType | {
7994
- readonly base?: SpacingValueType | undefined;
7995
- readonly xs?: SpacingValueType | undefined;
7996
- readonly s?: SpacingValueType | undefined;
7997
- readonly m?: SpacingValueType | undefined;
7998
- readonly l?: SpacingValueType | undefined;
7999
- readonly xl?: SpacingValueType | undefined;
8000
- };
8001
- flexBasis?: csstype.Property.FlexBasis<string | number> | {
8002
- readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
8003
- readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
8004
- readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
8005
- readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
8006
- readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
8007
- readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
8008
- } | undefined;
8009
- flexDirection?: csstype.Property.FlexDirection | {
8010
- readonly base?: csstype.Property.FlexDirection | undefined;
8011
- readonly xs?: csstype.Property.FlexDirection | undefined;
8012
- readonly s?: csstype.Property.FlexDirection | undefined;
8013
- readonly m?: csstype.Property.FlexDirection | undefined;
8014
- readonly l?: csstype.Property.FlexDirection | undefined;
8015
- readonly xl?: csstype.Property.FlexDirection | undefined;
8016
- } | undefined;
8017
- flexGrow?: csstype.Property.FlexGrow | {
8018
- readonly base?: csstype.Property.FlexGrow | undefined;
8019
- readonly xs?: csstype.Property.FlexGrow | undefined;
8020
- readonly s?: csstype.Property.FlexGrow | undefined;
8021
- readonly m?: csstype.Property.FlexGrow | undefined;
8022
- readonly l?: csstype.Property.FlexGrow | undefined;
8023
- readonly xl?: csstype.Property.FlexGrow | undefined;
8024
- } | undefined;
8025
- flexShrink?: csstype.Property.FlexShrink | {
8026
- readonly base?: csstype.Property.FlexShrink | undefined;
8027
- readonly xs?: csstype.Property.FlexShrink | undefined;
8028
- readonly s?: csstype.Property.FlexShrink | undefined;
8029
- readonly m?: csstype.Property.FlexShrink | undefined;
8030
- readonly l?: csstype.Property.FlexShrink | undefined;
8031
- readonly xl?: csstype.Property.FlexShrink | undefined;
8032
- } | undefined;
8033
- flexWrap?: csstype.Property.FlexWrap | {
8034
- readonly base?: csstype.Property.FlexWrap | undefined;
8035
- readonly xs?: csstype.Property.FlexWrap | undefined;
8036
- readonly s?: csstype.Property.FlexWrap | undefined;
8037
- readonly m?: csstype.Property.FlexWrap | undefined;
8038
- readonly l?: csstype.Property.FlexWrap | undefined;
8039
- readonly xl?: csstype.Property.FlexWrap | undefined;
8040
- } | undefined;
8041
- justifyContent?: csstype.Property.JustifyContent | {
8042
- readonly base?: csstype.Property.JustifyContent | undefined;
8043
- readonly xs?: csstype.Property.JustifyContent | undefined;
8044
- readonly s?: csstype.Property.JustifyContent | undefined;
8045
- readonly m?: csstype.Property.JustifyContent | undefined;
8046
- readonly l?: csstype.Property.JustifyContent | undefined;
8047
- readonly xl?: csstype.Property.JustifyContent | undefined;
8048
- } | undefined;
8049
- justifyItems?: csstype.Property.JustifyItems | {
8050
- readonly base?: csstype.Property.JustifyItems | undefined;
8051
- readonly xs?: csstype.Property.JustifyItems | undefined;
8052
- readonly s?: csstype.Property.JustifyItems | undefined;
8053
- readonly m?: csstype.Property.JustifyItems | undefined;
8054
- readonly l?: csstype.Property.JustifyItems | undefined;
8055
- readonly xl?: csstype.Property.JustifyItems | undefined;
8056
- } | undefined;
8057
- justifySelf?: csstype.Property.JustifySelf | {
8058
- readonly base?: csstype.Property.JustifySelf | undefined;
8059
- readonly xs?: csstype.Property.JustifySelf | undefined;
8060
- readonly s?: csstype.Property.JustifySelf | undefined;
8061
- readonly m?: csstype.Property.JustifySelf | undefined;
8062
- readonly l?: csstype.Property.JustifySelf | undefined;
8063
- readonly xl?: csstype.Property.JustifySelf | undefined;
8064
- } | undefined;
8065
- order?: csstype.Property.Order | {
8066
- readonly base?: csstype.Property.Order | undefined;
8067
- readonly xs?: csstype.Property.Order | undefined;
8068
- readonly s?: csstype.Property.Order | undefined;
8069
- readonly m?: csstype.Property.Order | undefined;
8070
- readonly l?: csstype.Property.Order | undefined;
8071
- readonly xl?: csstype.Property.Order | undefined;
8072
- } | undefined;
8073
- rowGap: SpacingValueType | {
8074
- readonly base?: SpacingValueType | undefined;
8075
- readonly xs?: SpacingValueType | undefined;
8076
- readonly s?: SpacingValueType | undefined;
8077
- readonly m?: SpacingValueType | undefined;
8078
- readonly l?: SpacingValueType | undefined;
8079
- readonly xl?: SpacingValueType | undefined;
8080
- };
8081
- flex: string | number | {
8082
- readonly base?: string | number | undefined;
8083
- readonly xs?: string | number | undefined;
8084
- readonly s?: string | number | undefined;
8085
- readonly m?: string | number | undefined;
8086
- readonly l?: string | number | undefined;
8087
- readonly xl?: string | number | undefined;
8088
- };
8089
- gap: SpacingValueType | {
8090
- readonly base?: SpacingValueType | undefined;
8091
- readonly xs?: SpacingValueType | undefined;
8092
- readonly s?: SpacingValueType | undefined;
8093
- readonly m?: SpacingValueType | undefined;
8094
- readonly l?: SpacingValueType | undefined;
8095
- readonly xl?: SpacingValueType | undefined;
8096
- };
8097
- placeSelf?: csstype.Property.PlaceSelf | {
8098
- readonly base?: csstype.Property.PlaceSelf | undefined;
8099
- readonly xs?: csstype.Property.PlaceSelf | undefined;
8100
- readonly s?: csstype.Property.PlaceSelf | undefined;
8101
- readonly m?: csstype.Property.PlaceSelf | undefined;
8102
- readonly l?: csstype.Property.PlaceSelf | undefined;
8103
- readonly xl?: csstype.Property.PlaceSelf | undefined;
8104
- } | undefined;
8105
- __brand__?: "platform-web" | {
8106
- readonly base?: "platform-web" | undefined;
8107
- readonly xs?: "platform-web" | undefined;
8108
- readonly s?: "platform-web" | undefined;
8109
- readonly m?: "platform-web" | undefined;
8110
- readonly l?: "platform-web" | undefined;
8111
- readonly xl?: "platform-web" | undefined;
8112
- } | undefined;
8113
- } & {
7164
+ } & FlexboxProps & {
8114
7165
  bottom: SpacingValueType | {
8115
7166
  readonly base?: SpacingValueType | undefined;
8116
7167
  readonly xs?: SpacingValueType | undefined;
@@ -8302,6 +7353,14 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
8302
7353
  onMouseLeave: React$1.MouseEventHandler<HTMLElement>;
8303
7354
  onScroll: React$1.UIEventHandler<HTMLElement>;
8304
7355
  } & {
7356
+ elevation?: ElevationLevels | {
7357
+ readonly base?: ElevationLevels | undefined;
7358
+ readonly xs?: ElevationLevels | undefined;
7359
+ readonly s?: ElevationLevels | undefined;
7360
+ readonly m?: ElevationLevels | undefined;
7361
+ readonly l?: ElevationLevels | undefined;
7362
+ readonly xl?: ElevationLevels | undefined;
7363
+ } | undefined;
8305
7364
  backgroundImage?: csstype.Property.BackgroundImage | {
8306
7365
  readonly base?: csstype.Property.BackgroundImage | undefined;
8307
7366
  readonly xs?: csstype.Property.BackgroundImage | undefined;
@@ -8471,7 +7530,7 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
8471
7530
  readonly xl?: "platform-web" | undefined;
8472
7531
  } | undefined;
8473
7532
  } & MakeObjectResponsive<{
8474
- backgroundColor: "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast";
7533
+ backgroundColor: "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast";
8475
7534
  }, "backgroundColor"> & {
8476
7535
  as: "aside" | "div" | "footer" | "header" | "label" | "main" | "nav" | "section" | "span";
8477
7536
  } & {
@@ -8486,13 +7545,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
8486
7545
  readonly l?: csstype.Property.Border<string | number> | undefined;
8487
7546
  readonly xl?: csstype.Property.Border<string | number> | undefined;
8488
7547
  } | undefined;
8489
- backgroundColor: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | {
8490
- readonly base?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
8491
- readonly xs?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
8492
- readonly s?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
8493
- readonly m?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
8494
- readonly l?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
8495
- readonly xl?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
7548
+ backgroundColor: (string & Record<never, never>) | "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | {
7549
+ readonly base?: (string & Record<never, never>) | "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
7550
+ readonly xs?: (string & Record<never, never>) | "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
7551
+ readonly s?: (string & Record<never, never>) | "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
7552
+ readonly m?: (string & Record<never, never>) | "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
7553
+ readonly l?: (string & Record<never, never>) | "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
7554
+ readonly xl?: (string & Record<never, never>) | "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.focus" | "action.background.primary.hover" | "action.background.primary.active" | "action.background.primary.disabled" | "action.background.secondary.default" | "action.background.secondary.focus" | "action.background.secondary.hover" | "action.background.secondary.active" | "action.background.secondary.disabled" | "action.background.tertiary.default" | "action.background.tertiary.focus" | "action.background.tertiary.hover" | "action.background.tertiary.active" | "action.background.tertiary.disabled" | undefined;
8496
7555
  };
8497
7556
  lineHeight: SpacingValueType | {
8498
7557
  readonly base?: SpacingValueType | undefined;
@@ -8582,4 +7641,4 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
8582
7641
  tabIndex: -1;
8583
7642
  }, "tabIndex">;
8584
7643
 
8585
- export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
7644
+ export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };