@razorpay/blade 9.0.3 → 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.
- package/build/components/index.d.ts +151 -1105
- package/build/components/index.native.d.ts +106 -756
- package/build/components/index.native.js +337 -333
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +2019 -1919
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -1395,12 +1395,24 @@ type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
|
1395
1395
|
| 'backgroundPosition'
|
|
1396
1396
|
| 'backgroundOrigin'
|
|
1397
1397
|
| 'backgroundRepeat'
|
|
1398
|
-
>
|
|
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
|
+
}
|
|
1399
1411
|
>;
|
|
1400
1412
|
|
|
1401
1413
|
// Visual props that are specific BaseBox
|
|
1402
1414
|
// This is used to ensure some of the more flexible BaseBox props are not passed to Box
|
|
1403
|
-
type BaseBoxVisualProps = MakeObjectResponsive$1<
|
|
1415
|
+
type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
1404
1416
|
{
|
|
1405
1417
|
backgroundColor:
|
|
1406
1418
|
| BackgroundColorString$1<'feedback'>
|
|
@@ -1431,7 +1443,7 @@ type BoxVisualProps$1 = MakeObjectResponsive$1<{
|
|
|
1431
1443
|
as: BoxAsType$1;
|
|
1432
1444
|
};
|
|
1433
1445
|
|
|
1434
|
-
type StyledPropsBlade = Partial<
|
|
1446
|
+
type StyledPropsBlade$1 = Partial<
|
|
1435
1447
|
Omit<
|
|
1436
1448
|
MarginProps$1 &
|
|
1437
1449
|
Pick<FlexboxProps$1, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> &
|
|
@@ -1505,9 +1517,9 @@ type BoxProps$1 = Partial<
|
|
|
1505
1517
|
// Visual props have different types for BaseBox and Box. BaseBox has more flexible types and more props exposed.
|
|
1506
1518
|
// So first we Omit Visual props of Box
|
|
1507
1519
|
// Then we append BaseBoxVisualProps and some other props for styled-components like class and id
|
|
1508
|
-
type BaseBoxProps = Omit<BoxProps$1, keyof BoxVisualProps$1> &
|
|
1520
|
+
type BaseBoxProps$1 = Omit<BoxProps$1, keyof BoxVisualProps$1> &
|
|
1509
1521
|
Partial<
|
|
1510
|
-
BaseBoxVisualProps & {
|
|
1522
|
+
BaseBoxVisualProps$1 & {
|
|
1511
1523
|
className?: string;
|
|
1512
1524
|
id?: string;
|
|
1513
1525
|
tabIndex?: number;
|
|
@@ -1863,7 +1875,7 @@ type IconProps$1 = {
|
|
|
1863
1875
|
| BadgeIconColors$1
|
|
1864
1876
|
| 'currentColor'; // currentColor is useful for letting the SVG inherit color property from its container
|
|
1865
1877
|
size: IconSize$1;
|
|
1866
|
-
} & StyledPropsBlade;
|
|
1878
|
+
} & StyledPropsBlade$1;
|
|
1867
1879
|
type IconComponent$1 = React.ComponentType<IconProps$1>;
|
|
1868
1880
|
|
|
1869
1881
|
declare type ActionListItemProps = {
|
|
@@ -2018,7 +2030,7 @@ declare type AlertProps = {
|
|
|
2018
2030
|
*/
|
|
2019
2031
|
secondary?: SecondaryAction;
|
|
2020
2032
|
};
|
|
2021
|
-
} & TestID$1 & StyledPropsBlade;
|
|
2033
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
2022
2034
|
declare const Alert: ({ description, title, isDismissible, onDismiss, contrast, isFullWidth, intent, actions, testID, ...styledProps }: AlertProps) => ReactElement | null;
|
|
2023
2035
|
|
|
2024
2036
|
declare type BadgeProps = {
|
|
@@ -2057,7 +2069,7 @@ declare type BadgeProps = {
|
|
|
2057
2069
|
* @default 'regular'
|
|
2058
2070
|
*/
|
|
2059
2071
|
fontWeight?: 'regular' | 'bold';
|
|
2060
|
-
} & TestID$1 & StyledPropsBlade;
|
|
2072
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
2061
2073
|
declare const Badge: ({ children, contrast, fontWeight, icon, size, variant, testID, ...styledProps }: BadgeProps) => ReactElement;
|
|
2062
2074
|
|
|
2063
2075
|
declare type BladeProviderProps = {
|
|
@@ -2134,6 +2146,8 @@ declare type MakeObjectResponsive<T, K extends keyof T = Extract<keyof T, string
|
|
|
2134
2146
|
[P in K]: MakeValueResponsive<T[P]>;
|
|
2135
2147
|
};
|
|
2136
2148
|
|
|
2149
|
+
declare type ElevationLevels = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
|
|
2150
|
+
|
|
2137
2151
|
declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
|
|
2138
2152
|
declare type SpaceUnits = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
2139
2153
|
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | `calc(${string})` | 'auto' | `min(${string})` | `max(${string})` | 'none' | 'initial' | 'fit-content' | 'max-content' | 'min-content';
|
|
@@ -2633,12 +2647,31 @@ declare type CommonBoxVisualProps = MakeObjectResponsive<{
|
|
|
2633
2647
|
borderTopRightRadius: keyof Border['radius'];
|
|
2634
2648
|
borderBottomRightRadius: keyof Border['radius'];
|
|
2635
2649
|
borderBottomLeftRadius: keyof Border['radius'];
|
|
2636
|
-
} & 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'>>;
|
|
2637
2669
|
declare type BoxVisualProps = MakeObjectResponsive<{
|
|
2638
2670
|
backgroundColor: BackgroundColorString<'surface'> | BrandColorString;
|
|
2639
2671
|
}> & {
|
|
2640
2672
|
as: BoxAsType;
|
|
2641
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__'>>;
|
|
2642
2675
|
declare type BoxCallbackProps = Omit<Platform.Select<{
|
|
2643
2676
|
web: {
|
|
2644
2677
|
/**
|
|
@@ -2676,6 +2709,11 @@ declare type BoxProps = Partial<PaddingProps & MarginProps & LayoutProps & Flexb
|
|
|
2676
2709
|
children?: React.ReactNode | React.ReactNode[];
|
|
2677
2710
|
tabIndex?: number;
|
|
2678
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;
|
|
2679
2717
|
declare type BoxRefType = Platform.Select<{
|
|
2680
2718
|
web: Omit<HTMLElement, 'style'>;
|
|
2681
2719
|
native: View;
|
|
@@ -2778,152 +2816,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2778
2816
|
readonly l?: "platform-web" | undefined;
|
|
2779
2817
|
readonly xl?: "platform-web" | undefined;
|
|
2780
2818
|
} | undefined;
|
|
2781
|
-
} & {
|
|
2782
|
-
alignContent?: csstype.Property.AlignContent | {
|
|
2783
|
-
readonly base?: csstype.Property.AlignContent | undefined;
|
|
2784
|
-
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
2785
|
-
readonly s?: csstype.Property.AlignContent | undefined;
|
|
2786
|
-
readonly m?: csstype.Property.AlignContent | undefined;
|
|
2787
|
-
readonly l?: csstype.Property.AlignContent | undefined;
|
|
2788
|
-
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
2789
|
-
} | undefined;
|
|
2790
|
-
alignItems?: csstype.Property.AlignItems | {
|
|
2791
|
-
readonly base?: csstype.Property.AlignItems | undefined;
|
|
2792
|
-
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
2793
|
-
readonly s?: csstype.Property.AlignItems | undefined;
|
|
2794
|
-
readonly m?: csstype.Property.AlignItems | undefined;
|
|
2795
|
-
readonly l?: csstype.Property.AlignItems | undefined;
|
|
2796
|
-
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
2797
|
-
} | undefined;
|
|
2798
|
-
alignSelf?: csstype.Property.AlignSelf | {
|
|
2799
|
-
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
2800
|
-
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
2801
|
-
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
2802
|
-
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
2803
|
-
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
2804
|
-
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
2805
|
-
} | undefined;
|
|
2806
|
-
columnGap: SpacingValueType | {
|
|
2807
|
-
readonly base?: SpacingValueType | undefined;
|
|
2808
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2809
|
-
readonly s?: SpacingValueType | undefined;
|
|
2810
|
-
readonly m?: SpacingValueType | undefined;
|
|
2811
|
-
readonly l?: SpacingValueType | undefined;
|
|
2812
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2813
|
-
};
|
|
2814
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
2815
|
-
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2816
|
-
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2817
|
-
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2818
|
-
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2819
|
-
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2820
|
-
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2821
|
-
} | undefined;
|
|
2822
|
-
flexDirection?: csstype.Property.FlexDirection | {
|
|
2823
|
-
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
2824
|
-
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
2825
|
-
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
2826
|
-
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
2827
|
-
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
2828
|
-
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
2829
|
-
} | undefined;
|
|
2830
|
-
flexGrow?: csstype.Property.FlexGrow | {
|
|
2831
|
-
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
2832
|
-
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
2833
|
-
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
2834
|
-
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
2835
|
-
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
2836
|
-
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
2837
|
-
} | undefined;
|
|
2838
|
-
flexShrink?: csstype.Property.FlexShrink | {
|
|
2839
|
-
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
2840
|
-
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
2841
|
-
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
2842
|
-
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
2843
|
-
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
2844
|
-
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
2845
|
-
} | undefined;
|
|
2846
|
-
flexWrap?: csstype.Property.FlexWrap | {
|
|
2847
|
-
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
2848
|
-
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
2849
|
-
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
2850
|
-
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
2851
|
-
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
2852
|
-
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
2853
|
-
} | undefined;
|
|
2854
|
-
justifyContent?: csstype.Property.JustifyContent | {
|
|
2855
|
-
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
2856
|
-
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
2857
|
-
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
2858
|
-
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
2859
|
-
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
2860
|
-
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
2861
|
-
} | undefined;
|
|
2862
|
-
justifyItems?: csstype.Property.JustifyItems | {
|
|
2863
|
-
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
2864
|
-
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
2865
|
-
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
2866
|
-
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
2867
|
-
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
2868
|
-
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
2869
|
-
} | undefined;
|
|
2870
|
-
justifySelf?: csstype.Property.JustifySelf | {
|
|
2871
|
-
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
2872
|
-
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
2873
|
-
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
2874
|
-
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
2875
|
-
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
2876
|
-
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
2877
|
-
} | undefined;
|
|
2878
|
-
order?: csstype.Property.Order | {
|
|
2879
|
-
readonly base?: csstype.Property.Order | undefined;
|
|
2880
|
-
readonly xs?: csstype.Property.Order | undefined;
|
|
2881
|
-
readonly s?: csstype.Property.Order | undefined;
|
|
2882
|
-
readonly m?: csstype.Property.Order | undefined;
|
|
2883
|
-
readonly l?: csstype.Property.Order | undefined;
|
|
2884
|
-
readonly xl?: csstype.Property.Order | undefined;
|
|
2885
|
-
} | undefined;
|
|
2886
|
-
rowGap: SpacingValueType | {
|
|
2887
|
-
readonly base?: SpacingValueType | undefined;
|
|
2888
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2889
|
-
readonly s?: SpacingValueType | undefined;
|
|
2890
|
-
readonly m?: SpacingValueType | undefined;
|
|
2891
|
-
readonly l?: SpacingValueType | undefined;
|
|
2892
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2893
|
-
};
|
|
2894
|
-
flex: string | number | {
|
|
2895
|
-
readonly base?: string | number | undefined;
|
|
2896
|
-
readonly xs?: string | number | undefined;
|
|
2897
|
-
readonly s?: string | number | undefined;
|
|
2898
|
-
readonly m?: string | number | undefined;
|
|
2899
|
-
readonly l?: string | number | undefined;
|
|
2900
|
-
readonly xl?: string | number | undefined;
|
|
2901
|
-
};
|
|
2902
|
-
gap: SpacingValueType | {
|
|
2903
|
-
readonly base?: SpacingValueType | undefined;
|
|
2904
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2905
|
-
readonly s?: SpacingValueType | undefined;
|
|
2906
|
-
readonly m?: SpacingValueType | undefined;
|
|
2907
|
-
readonly l?: SpacingValueType | undefined;
|
|
2908
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2909
|
-
};
|
|
2910
|
-
placeSelf?: csstype.Property.PlaceSelf | {
|
|
2911
|
-
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
2912
|
-
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
2913
|
-
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
2914
|
-
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
2915
|
-
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
2916
|
-
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
2917
|
-
} | undefined;
|
|
2918
|
-
__brand__?: "platform-web" | {
|
|
2919
|
-
readonly base?: "platform-web" | undefined;
|
|
2920
|
-
readonly xs?: "platform-web" | undefined;
|
|
2921
|
-
readonly s?: "platform-web" | undefined;
|
|
2922
|
-
readonly m?: "platform-web" | undefined;
|
|
2923
|
-
readonly l?: "platform-web" | undefined;
|
|
2924
|
-
readonly xl?: "platform-web" | undefined;
|
|
2925
|
-
} | undefined;
|
|
2926
|
-
} & {
|
|
2819
|
+
} & FlexboxProps & {
|
|
2927
2820
|
bottom: SpacingValueType | {
|
|
2928
2821
|
readonly base?: SpacingValueType | undefined;
|
|
2929
2822
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -3115,6 +3008,14 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3115
3008
|
onMouseLeave: React__default.MouseEventHandler<HTMLElement>;
|
|
3116
3009
|
onScroll: React__default.UIEventHandler<HTMLElement>;
|
|
3117
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;
|
|
3118
3019
|
backgroundImage?: csstype.Property.BackgroundImage | {
|
|
3119
3020
|
readonly base?: csstype.Property.BackgroundImage | undefined;
|
|
3120
3021
|
readonly xs?: csstype.Property.BackgroundImage | undefined;
|
|
@@ -3348,7 +3249,7 @@ declare type CardProps = {
|
|
|
3348
3249
|
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
3349
3250
|
*/
|
|
3350
3251
|
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
|
|
3351
|
-
} & TestID$1 & StyledPropsBlade;
|
|
3252
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
3352
3253
|
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3353
3254
|
declare type CardBodyProps = {
|
|
3354
3255
|
children: React__default.ReactNode;
|
|
@@ -3393,7 +3294,7 @@ declare type BaseLinkCommonProps = {
|
|
|
3393
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.
|
|
3394
3295
|
*/
|
|
3395
3296
|
htmlTitle?: string;
|
|
3396
|
-
} & TestID$1 & StyledPropsBlade & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
3297
|
+
} & TestID$1 & StyledPropsBlade$1 & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
3397
3298
|
declare type BaseLinkWithoutIconProps = BaseLinkCommonProps & {
|
|
3398
3299
|
icon?: undefined;
|
|
3399
3300
|
children: StringChildrenType;
|
|
@@ -3434,7 +3335,7 @@ declare type LinkCommonProps = {
|
|
|
3434
3335
|
* @default medium
|
|
3435
3336
|
*/
|
|
3436
3337
|
size?: BaseLinkProps['size'];
|
|
3437
|
-
} & TestID$1 & StyledPropsBlade & BladeCommonEvents$1 & Platform.Select<{
|
|
3338
|
+
} & TestID$1 & StyledPropsBlade$1 & BladeCommonEvents$1 & Platform.Select<{
|
|
3438
3339
|
native: {
|
|
3439
3340
|
/**
|
|
3440
3341
|
* Defines how far your touch can start away from the link
|
|
@@ -3509,7 +3410,7 @@ declare type BaseButtonCommonProps = {
|
|
|
3509
3410
|
variant?: 'primary' | 'secondary' | 'tertiary';
|
|
3510
3411
|
contrast?: 'low' | 'high';
|
|
3511
3412
|
intent?: 'positive' | 'negative' | 'notice' | 'information' | 'neutral';
|
|
3512
|
-
} & TestID$1 & StyledPropsBlade & BladeCommonEvents$1;
|
|
3413
|
+
} & TestID$1 & StyledPropsBlade$1 & BladeCommonEvents$1;
|
|
3513
3414
|
declare type BaseButtonWithoutIconProps = BaseButtonCommonProps & {
|
|
3514
3415
|
icon?: undefined;
|
|
3515
3416
|
children: StringChildrenType;
|
|
@@ -3549,7 +3450,7 @@ declare type ButtonCommonProps = {
|
|
|
3549
3450
|
native: (event: GestureResponderEvent) => void;
|
|
3550
3451
|
web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
3551
3452
|
}>;
|
|
3552
|
-
} & TestID$1 & StyledPropsBlade & BladeCommonEvents$1;
|
|
3453
|
+
} & TestID$1 & StyledPropsBlade$1 & BladeCommonEvents$1;
|
|
3553
3454
|
declare type ButtonWithoutIconProps = ButtonCommonProps & {
|
|
3554
3455
|
icon?: undefined;
|
|
3555
3456
|
children: StringChildrenType;
|
|
@@ -3596,7 +3497,7 @@ declare type CounterProps = {
|
|
|
3596
3497
|
* @default 'medium'
|
|
3597
3498
|
*/
|
|
3598
3499
|
size?: 'small' | 'medium' | 'large';
|
|
3599
|
-
} & TestID$1 & StyledPropsBlade;
|
|
3500
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
3600
3501
|
declare const Counter: ({ value, max, intent, variant, contrast, size, testID, ...styledProps }: CounterProps) => React.ReactElement;
|
|
3601
3502
|
|
|
3602
3503
|
type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
|
|
@@ -3661,7 +3562,7 @@ type BaseTextProps$1 = {
|
|
|
3661
3562
|
numberOfLines?: number;
|
|
3662
3563
|
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
3663
3564
|
} & TestID$1 &
|
|
3664
|
-
StyledPropsBlade;
|
|
3565
|
+
StyledPropsBlade$1;
|
|
3665
3566
|
|
|
3666
3567
|
/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */
|
|
3667
3568
|
|
|
@@ -3683,7 +3584,7 @@ type TextCommonProps$1 = {
|
|
|
3683
3584
|
textAlign?: BaseTextProps$1['textAlign'];
|
|
3684
3585
|
textDecorationLine?: BaseTextProps$1['textDecorationLine'];
|
|
3685
3586
|
} & TestID$1 &
|
|
3686
|
-
StyledPropsBlade;
|
|
3587
|
+
StyledPropsBlade$1;
|
|
3687
3588
|
|
|
3688
3589
|
type TextVariant$1 = 'body' | 'caption';
|
|
3689
3590
|
|
|
@@ -3905,7 +3806,7 @@ declare type CheckboxProps = {
|
|
|
3905
3806
|
*
|
|
3906
3807
|
*/
|
|
3907
3808
|
tabIndex?: number;
|
|
3908
|
-
} & TestID$1 & StyledPropsBlade;
|
|
3809
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
3909
3810
|
declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
3910
3811
|
/**
|
|
3911
3812
|
* If `true`, The checkbox will be checked. This also makes the checkbox controlled
|
|
@@ -3984,152 +3885,7 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
|
3984
3885
|
*
|
|
3985
3886
|
*/
|
|
3986
3887
|
tabIndex?: number | undefined;
|
|
3987
|
-
} & TestID$1 & Partial<Omit<MarginProps & Pick<{
|
|
3988
|
-
alignContent?: csstype.Property.AlignContent | {
|
|
3989
|
-
readonly base?: csstype.Property.AlignContent | undefined;
|
|
3990
|
-
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
3991
|
-
readonly s?: csstype.Property.AlignContent | undefined;
|
|
3992
|
-
readonly m?: csstype.Property.AlignContent | undefined;
|
|
3993
|
-
readonly l?: csstype.Property.AlignContent | undefined;
|
|
3994
|
-
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
3995
|
-
} | undefined;
|
|
3996
|
-
alignItems?: csstype.Property.AlignItems | {
|
|
3997
|
-
readonly base?: csstype.Property.AlignItems | undefined;
|
|
3998
|
-
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
3999
|
-
readonly s?: csstype.Property.AlignItems | undefined;
|
|
4000
|
-
readonly m?: csstype.Property.AlignItems | undefined;
|
|
4001
|
-
readonly l?: csstype.Property.AlignItems | undefined;
|
|
4002
|
-
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
4003
|
-
} | undefined;
|
|
4004
|
-
alignSelf?: csstype.Property.AlignSelf | {
|
|
4005
|
-
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
4006
|
-
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
4007
|
-
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
4008
|
-
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
4009
|
-
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
4010
|
-
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
4011
|
-
} | undefined;
|
|
4012
|
-
columnGap: SpacingValueType | {
|
|
4013
|
-
readonly base?: SpacingValueType | undefined;
|
|
4014
|
-
readonly xs?: SpacingValueType | undefined;
|
|
4015
|
-
readonly s?: SpacingValueType | undefined;
|
|
4016
|
-
readonly m?: SpacingValueType | undefined;
|
|
4017
|
-
readonly l?: SpacingValueType | undefined;
|
|
4018
|
-
readonly xl?: SpacingValueType | undefined;
|
|
4019
|
-
};
|
|
4020
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
4021
|
-
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4022
|
-
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4023
|
-
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4024
|
-
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4025
|
-
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4026
|
-
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4027
|
-
} | undefined;
|
|
4028
|
-
flexDirection?: csstype.Property.FlexDirection | {
|
|
4029
|
-
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
4030
|
-
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
4031
|
-
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
4032
|
-
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
4033
|
-
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
4034
|
-
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
4035
|
-
} | undefined;
|
|
4036
|
-
flexGrow?: csstype.Property.FlexGrow | {
|
|
4037
|
-
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
4038
|
-
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
4039
|
-
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
4040
|
-
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
4041
|
-
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
4042
|
-
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
4043
|
-
} | undefined;
|
|
4044
|
-
flexShrink?: csstype.Property.FlexShrink | {
|
|
4045
|
-
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
4046
|
-
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
4047
|
-
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
4048
|
-
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
4049
|
-
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
4050
|
-
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
4051
|
-
} | undefined;
|
|
4052
|
-
flexWrap?: csstype.Property.FlexWrap | {
|
|
4053
|
-
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
4054
|
-
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
4055
|
-
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
4056
|
-
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
4057
|
-
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
4058
|
-
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
4059
|
-
} | undefined;
|
|
4060
|
-
justifyContent?: csstype.Property.JustifyContent | {
|
|
4061
|
-
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
4062
|
-
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
4063
|
-
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
4064
|
-
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
4065
|
-
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
4066
|
-
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
4067
|
-
} | undefined;
|
|
4068
|
-
justifyItems?: csstype.Property.JustifyItems | {
|
|
4069
|
-
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
4070
|
-
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
4071
|
-
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
4072
|
-
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
4073
|
-
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
4074
|
-
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
4075
|
-
} | undefined;
|
|
4076
|
-
justifySelf?: csstype.Property.JustifySelf | {
|
|
4077
|
-
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
4078
|
-
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
4079
|
-
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
4080
|
-
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
4081
|
-
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
4082
|
-
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
4083
|
-
} | undefined;
|
|
4084
|
-
order?: csstype.Property.Order | {
|
|
4085
|
-
readonly base?: csstype.Property.Order | undefined;
|
|
4086
|
-
readonly xs?: csstype.Property.Order | undefined;
|
|
4087
|
-
readonly s?: csstype.Property.Order | undefined;
|
|
4088
|
-
readonly m?: csstype.Property.Order | undefined;
|
|
4089
|
-
readonly l?: csstype.Property.Order | undefined;
|
|
4090
|
-
readonly xl?: csstype.Property.Order | undefined;
|
|
4091
|
-
} | undefined;
|
|
4092
|
-
rowGap: SpacingValueType | {
|
|
4093
|
-
readonly base?: SpacingValueType | undefined;
|
|
4094
|
-
readonly xs?: SpacingValueType | undefined;
|
|
4095
|
-
readonly s?: SpacingValueType | undefined;
|
|
4096
|
-
readonly m?: SpacingValueType | undefined;
|
|
4097
|
-
readonly l?: SpacingValueType | undefined;
|
|
4098
|
-
readonly xl?: SpacingValueType | undefined;
|
|
4099
|
-
};
|
|
4100
|
-
flex: string | number | {
|
|
4101
|
-
readonly base?: string | number | undefined;
|
|
4102
|
-
readonly xs?: string | number | undefined;
|
|
4103
|
-
readonly s?: string | number | undefined;
|
|
4104
|
-
readonly m?: string | number | undefined;
|
|
4105
|
-
readonly l?: string | number | undefined;
|
|
4106
|
-
readonly xl?: string | number | undefined;
|
|
4107
|
-
};
|
|
4108
|
-
gap: SpacingValueType | {
|
|
4109
|
-
readonly base?: SpacingValueType | undefined;
|
|
4110
|
-
readonly xs?: SpacingValueType | undefined;
|
|
4111
|
-
readonly s?: SpacingValueType | undefined;
|
|
4112
|
-
readonly m?: SpacingValueType | undefined;
|
|
4113
|
-
readonly l?: SpacingValueType | undefined;
|
|
4114
|
-
readonly xl?: SpacingValueType | undefined;
|
|
4115
|
-
};
|
|
4116
|
-
placeSelf?: csstype.Property.PlaceSelf | {
|
|
4117
|
-
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
4118
|
-
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
4119
|
-
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
4120
|
-
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
4121
|
-
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
4122
|
-
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
4123
|
-
} | undefined;
|
|
4124
|
-
__brand__?: "platform-web" | {
|
|
4125
|
-
readonly base?: "platform-web" | undefined;
|
|
4126
|
-
readonly xs?: "platform-web" | undefined;
|
|
4127
|
-
readonly s?: "platform-web" | undefined;
|
|
4128
|
-
readonly m?: "platform-web" | undefined;
|
|
4129
|
-
readonly l?: "platform-web" | undefined;
|
|
4130
|
-
readonly xl?: "platform-web" | undefined;
|
|
4131
|
-
} | undefined;
|
|
4132
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
3888
|
+
} & TestID$1 & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
4133
3889
|
bottom: SpacingValueType | {
|
|
4134
3890
|
readonly base?: SpacingValueType | undefined;
|
|
4135
3891
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -4395,7 +4151,7 @@ declare type CheckboxGroupProps = {
|
|
|
4395
4151
|
* @default "medium"
|
|
4396
4152
|
*/
|
|
4397
4153
|
size?: 'small' | 'medium';
|
|
4398
|
-
} & TestID$1 & StyledPropsBlade;
|
|
4154
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
4399
4155
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
4400
4156
|
|
|
4401
4157
|
declare type DividerProps = {
|
|
@@ -4446,7 +4202,7 @@ declare type DropdownProps = {
|
|
|
4446
4202
|
selectionType?: 'single' | 'multiple';
|
|
4447
4203
|
onDismiss?: () => void;
|
|
4448
4204
|
children: React.ReactNode[];
|
|
4449
|
-
} & StyledPropsBlade;
|
|
4205
|
+
} & StyledPropsBlade$1;
|
|
4450
4206
|
declare type DropdownOverlayProps = {
|
|
4451
4207
|
children: React.ReactElement[] | React.ReactElement;
|
|
4452
4208
|
} & TestID$1;
|
|
@@ -5066,7 +4822,7 @@ declare type IconProps = {
|
|
|
5066
4822
|
*/
|
|
5067
4823
|
color: ActionIconColors | SurfaceActionIconColors | FeedbackIconColors | FeedbackActionIconColors | TextIconColors | BadgeIconColors | 'currentColor';
|
|
5068
4824
|
size: IconSize;
|
|
5069
|
-
} & StyledPropsBlade;
|
|
4825
|
+
} & StyledPropsBlade$1;
|
|
5070
4826
|
declare type IconComponent = React.ComponentType<IconProps>;
|
|
5071
4827
|
|
|
5072
4828
|
declare type FormInputLabelProps = {
|
|
@@ -5346,7 +5102,7 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
5346
5102
|
*/
|
|
5347
5103
|
autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
|
|
5348
5104
|
};
|
|
5349
|
-
}> & StyledPropsBlade;
|
|
5105
|
+
}> & StyledPropsBlade$1;
|
|
5350
5106
|
|
|
5351
5107
|
declare type Type = Exclude<BaseInputProps['type'], 'password'>;
|
|
5352
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'> & {
|
|
@@ -5380,7 +5136,7 @@ declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | '
|
|
|
5380
5136
|
* @default text
|
|
5381
5137
|
*/
|
|
5382
5138
|
type?: Type;
|
|
5383
|
-
} & StyledPropsBlade;
|
|
5139
|
+
} & StyledPropsBlade$1;
|
|
5384
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"> & {
|
|
5385
5141
|
/**
|
|
5386
5142
|
* Decides whether to render a clear icon button
|
|
@@ -5412,152 +5168,7 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
|
|
|
5412
5168
|
* @default text
|
|
5413
5169
|
*/
|
|
5414
5170
|
type?: Type;
|
|
5415
|
-
} & Partial<Omit<MarginProps & Pick<{
|
|
5416
|
-
alignContent?: csstype.Property.AlignContent | {
|
|
5417
|
-
readonly base?: csstype.Property.AlignContent | undefined;
|
|
5418
|
-
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
5419
|
-
readonly s?: csstype.Property.AlignContent | undefined;
|
|
5420
|
-
readonly m?: csstype.Property.AlignContent | undefined;
|
|
5421
|
-
readonly l?: csstype.Property.AlignContent | undefined;
|
|
5422
|
-
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
5423
|
-
} | undefined;
|
|
5424
|
-
alignItems?: csstype.Property.AlignItems | {
|
|
5425
|
-
readonly base?: csstype.Property.AlignItems | undefined;
|
|
5426
|
-
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
5427
|
-
readonly s?: csstype.Property.AlignItems | undefined;
|
|
5428
|
-
readonly m?: csstype.Property.AlignItems | undefined;
|
|
5429
|
-
readonly l?: csstype.Property.AlignItems | undefined;
|
|
5430
|
-
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
5431
|
-
} | undefined;
|
|
5432
|
-
alignSelf?: csstype.Property.AlignSelf | {
|
|
5433
|
-
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
5434
|
-
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
5435
|
-
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
5436
|
-
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
5437
|
-
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
5438
|
-
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
5439
|
-
} | undefined;
|
|
5440
|
-
columnGap: SpacingValueType | {
|
|
5441
|
-
readonly base?: SpacingValueType | undefined;
|
|
5442
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5443
|
-
readonly s?: SpacingValueType | undefined;
|
|
5444
|
-
readonly m?: SpacingValueType | undefined;
|
|
5445
|
-
readonly l?: SpacingValueType | undefined;
|
|
5446
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5447
|
-
};
|
|
5448
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
5449
|
-
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5450
|
-
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5451
|
-
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5452
|
-
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5453
|
-
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5454
|
-
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5455
|
-
} | undefined;
|
|
5456
|
-
flexDirection?: csstype.Property.FlexDirection | {
|
|
5457
|
-
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
5458
|
-
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
5459
|
-
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
5460
|
-
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
5461
|
-
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
5462
|
-
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
5463
|
-
} | undefined;
|
|
5464
|
-
flexGrow?: csstype.Property.FlexGrow | {
|
|
5465
|
-
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
5466
|
-
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
5467
|
-
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
5468
|
-
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
5469
|
-
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
5470
|
-
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
5471
|
-
} | undefined;
|
|
5472
|
-
flexShrink?: csstype.Property.FlexShrink | {
|
|
5473
|
-
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
5474
|
-
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
5475
|
-
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
5476
|
-
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
5477
|
-
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
5478
|
-
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
5479
|
-
} | undefined;
|
|
5480
|
-
flexWrap?: csstype.Property.FlexWrap | {
|
|
5481
|
-
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
5482
|
-
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
5483
|
-
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
5484
|
-
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
5485
|
-
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
5486
|
-
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
5487
|
-
} | undefined;
|
|
5488
|
-
justifyContent?: csstype.Property.JustifyContent | {
|
|
5489
|
-
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
5490
|
-
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
5491
|
-
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
5492
|
-
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
5493
|
-
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
5494
|
-
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
5495
|
-
} | undefined;
|
|
5496
|
-
justifyItems?: csstype.Property.JustifyItems | {
|
|
5497
|
-
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
5498
|
-
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
5499
|
-
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
5500
|
-
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
5501
|
-
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
5502
|
-
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
5503
|
-
} | undefined;
|
|
5504
|
-
justifySelf?: csstype.Property.JustifySelf | {
|
|
5505
|
-
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
5506
|
-
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
5507
|
-
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
5508
|
-
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
5509
|
-
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
5510
|
-
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
5511
|
-
} | undefined;
|
|
5512
|
-
order?: csstype.Property.Order | {
|
|
5513
|
-
readonly base?: csstype.Property.Order | undefined;
|
|
5514
|
-
readonly xs?: csstype.Property.Order | undefined;
|
|
5515
|
-
readonly s?: csstype.Property.Order | undefined;
|
|
5516
|
-
readonly m?: csstype.Property.Order | undefined;
|
|
5517
|
-
readonly l?: csstype.Property.Order | undefined;
|
|
5518
|
-
readonly xl?: csstype.Property.Order | undefined;
|
|
5519
|
-
} | undefined;
|
|
5520
|
-
rowGap: SpacingValueType | {
|
|
5521
|
-
readonly base?: SpacingValueType | undefined;
|
|
5522
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5523
|
-
readonly s?: SpacingValueType | undefined;
|
|
5524
|
-
readonly m?: SpacingValueType | undefined;
|
|
5525
|
-
readonly l?: SpacingValueType | undefined;
|
|
5526
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5527
|
-
};
|
|
5528
|
-
flex: string | number | {
|
|
5529
|
-
readonly base?: string | number | undefined;
|
|
5530
|
-
readonly xs?: string | number | undefined;
|
|
5531
|
-
readonly s?: string | number | undefined;
|
|
5532
|
-
readonly m?: string | number | undefined;
|
|
5533
|
-
readonly l?: string | number | undefined;
|
|
5534
|
-
readonly xl?: string | number | undefined;
|
|
5535
|
-
};
|
|
5536
|
-
gap: SpacingValueType | {
|
|
5537
|
-
readonly base?: SpacingValueType | undefined;
|
|
5538
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5539
|
-
readonly s?: SpacingValueType | undefined;
|
|
5540
|
-
readonly m?: SpacingValueType | undefined;
|
|
5541
|
-
readonly l?: SpacingValueType | undefined;
|
|
5542
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5543
|
-
};
|
|
5544
|
-
placeSelf?: csstype.Property.PlaceSelf | {
|
|
5545
|
-
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
5546
|
-
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
5547
|
-
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
5548
|
-
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
5549
|
-
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
5550
|
-
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
5551
|
-
} | undefined;
|
|
5552
|
-
__brand__?: "platform-web" | {
|
|
5553
|
-
readonly base?: "platform-web" | undefined;
|
|
5554
|
-
readonly xs?: "platform-web" | undefined;
|
|
5555
|
-
readonly s?: "platform-web" | undefined;
|
|
5556
|
-
readonly m?: "platform-web" | undefined;
|
|
5557
|
-
readonly l?: "platform-web" | undefined;
|
|
5558
|
-
readonly xl?: "platform-web" | undefined;
|
|
5559
|
-
} | undefined;
|
|
5560
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5171
|
+
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5561
5172
|
bottom: SpacingValueType | {
|
|
5562
5173
|
readonly base?: SpacingValueType | undefined;
|
|
5563
5174
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -5775,153 +5386,8 @@ declare type PasswordInputExtraProps = {
|
|
|
5775
5386
|
*/
|
|
5776
5387
|
autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
|
|
5777
5388
|
};
|
|
5778
|
-
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;
|
|
5779
|
-
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<{
|
|
5780
|
-
alignContent?: csstype.Property.AlignContent | {
|
|
5781
|
-
readonly base?: csstype.Property.AlignContent | undefined;
|
|
5782
|
-
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
5783
|
-
readonly s?: csstype.Property.AlignContent | undefined;
|
|
5784
|
-
readonly m?: csstype.Property.AlignContent | undefined;
|
|
5785
|
-
readonly l?: csstype.Property.AlignContent | undefined;
|
|
5786
|
-
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
5787
|
-
} | undefined;
|
|
5788
|
-
alignItems?: csstype.Property.AlignItems | {
|
|
5789
|
-
readonly base?: csstype.Property.AlignItems | undefined;
|
|
5790
|
-
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
5791
|
-
readonly s?: csstype.Property.AlignItems | undefined;
|
|
5792
|
-
readonly m?: csstype.Property.AlignItems | undefined;
|
|
5793
|
-
readonly l?: csstype.Property.AlignItems | undefined;
|
|
5794
|
-
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
5795
|
-
} | undefined;
|
|
5796
|
-
alignSelf?: csstype.Property.AlignSelf | {
|
|
5797
|
-
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
5798
|
-
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
5799
|
-
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
5800
|
-
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
5801
|
-
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
5802
|
-
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
5803
|
-
} | undefined;
|
|
5804
|
-
columnGap: SpacingValueType | {
|
|
5805
|
-
readonly base?: SpacingValueType | undefined;
|
|
5806
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5807
|
-
readonly s?: SpacingValueType | undefined;
|
|
5808
|
-
readonly m?: SpacingValueType | undefined;
|
|
5809
|
-
readonly l?: SpacingValueType | undefined;
|
|
5810
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5811
|
-
};
|
|
5812
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
5813
|
-
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5814
|
-
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5815
|
-
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5816
|
-
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5817
|
-
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5818
|
-
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5819
|
-
} | undefined;
|
|
5820
|
-
flexDirection?: csstype.Property.FlexDirection | {
|
|
5821
|
-
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
5822
|
-
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
5823
|
-
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
5824
|
-
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
5825
|
-
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
5826
|
-
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
5827
|
-
} | undefined;
|
|
5828
|
-
flexGrow?: csstype.Property.FlexGrow | {
|
|
5829
|
-
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
5830
|
-
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
5831
|
-
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
5832
|
-
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
5833
|
-
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
5834
|
-
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
5835
|
-
} | undefined;
|
|
5836
|
-
flexShrink?: csstype.Property.FlexShrink | {
|
|
5837
|
-
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
5838
|
-
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
5839
|
-
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
5840
|
-
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
5841
|
-
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
5842
|
-
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
5843
|
-
} | undefined;
|
|
5844
|
-
flexWrap?: csstype.Property.FlexWrap | {
|
|
5845
|
-
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
5846
|
-
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
5847
|
-
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
5848
|
-
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
5849
|
-
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
5850
|
-
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
5851
|
-
} | undefined;
|
|
5852
|
-
justifyContent?: csstype.Property.JustifyContent | {
|
|
5853
|
-
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
5854
|
-
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
5855
|
-
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
5856
|
-
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
5857
|
-
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
5858
|
-
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
5859
|
-
} | undefined;
|
|
5860
|
-
justifyItems?: csstype.Property.JustifyItems | {
|
|
5861
|
-
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
5862
|
-
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
5863
|
-
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
5864
|
-
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
5865
|
-
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
5866
|
-
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
5867
|
-
} | undefined;
|
|
5868
|
-
justifySelf?: csstype.Property.JustifySelf | {
|
|
5869
|
-
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
5870
|
-
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
5871
|
-
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
5872
|
-
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
5873
|
-
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
5874
|
-
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
5875
|
-
} | undefined;
|
|
5876
|
-
order?: csstype.Property.Order | {
|
|
5877
|
-
readonly base?: csstype.Property.Order | undefined;
|
|
5878
|
-
readonly xs?: csstype.Property.Order | undefined;
|
|
5879
|
-
readonly s?: csstype.Property.Order | undefined;
|
|
5880
|
-
readonly m?: csstype.Property.Order | undefined;
|
|
5881
|
-
readonly l?: csstype.Property.Order | undefined;
|
|
5882
|
-
readonly xl?: csstype.Property.Order | undefined;
|
|
5883
|
-
} | undefined;
|
|
5884
|
-
rowGap: SpacingValueType | {
|
|
5885
|
-
readonly base?: SpacingValueType | undefined;
|
|
5886
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5887
|
-
readonly s?: SpacingValueType | undefined;
|
|
5888
|
-
readonly m?: SpacingValueType | undefined;
|
|
5889
|
-
readonly l?: SpacingValueType | undefined;
|
|
5890
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5891
|
-
};
|
|
5892
|
-
flex: string | number | {
|
|
5893
|
-
readonly base?: string | number | undefined;
|
|
5894
|
-
readonly xs?: string | number | undefined;
|
|
5895
|
-
readonly s?: string | number | undefined;
|
|
5896
|
-
readonly m?: string | number | undefined;
|
|
5897
|
-
readonly l?: string | number | undefined;
|
|
5898
|
-
readonly xl?: string | number | undefined;
|
|
5899
|
-
};
|
|
5900
|
-
gap: SpacingValueType | {
|
|
5901
|
-
readonly base?: SpacingValueType | undefined;
|
|
5902
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5903
|
-
readonly s?: SpacingValueType | undefined;
|
|
5904
|
-
readonly m?: SpacingValueType | undefined;
|
|
5905
|
-
readonly l?: SpacingValueType | undefined;
|
|
5906
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5907
|
-
};
|
|
5908
|
-
placeSelf?: csstype.Property.PlaceSelf | {
|
|
5909
|
-
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
5910
|
-
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
5911
|
-
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
5912
|
-
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
5913
|
-
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
5914
|
-
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
5915
|
-
} | undefined;
|
|
5916
|
-
__brand__?: "platform-web" | {
|
|
5917
|
-
readonly base?: "platform-web" | undefined;
|
|
5918
|
-
readonly xs?: "platform-web" | undefined;
|
|
5919
|
-
readonly s?: "platform-web" | undefined;
|
|
5920
|
-
readonly m?: "platform-web" | undefined;
|
|
5921
|
-
readonly l?: "platform-web" | undefined;
|
|
5922
|
-
readonly xl?: "platform-web" | undefined;
|
|
5923
|
-
} | undefined;
|
|
5924
|
-
}, "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"> & {
|
|
5925
5391
|
bottom: SpacingValueType | {
|
|
5926
5392
|
readonly base?: SpacingValueType | undefined;
|
|
5927
5393
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -6118,7 +5584,7 @@ declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'n
|
|
|
6118
5584
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
6119
5585
|
*/
|
|
6120
5586
|
onClearButtonClick?: () => void;
|
|
6121
|
-
} & StyledPropsBlade;
|
|
5587
|
+
} & StyledPropsBlade$1;
|
|
6122
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"> & {
|
|
6123
5589
|
/**
|
|
6124
5590
|
* Decides whether to render a clear icon button
|
|
@@ -6128,152 +5594,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
6128
5594
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
6129
5595
|
*/
|
|
6130
5596
|
onClearButtonClick?: (() => void) | undefined;
|
|
6131
|
-
} & Partial<Omit<MarginProps & Pick<{
|
|
6132
|
-
alignContent?: csstype.Property.AlignContent | {
|
|
6133
|
-
readonly base?: csstype.Property.AlignContent | undefined;
|
|
6134
|
-
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
6135
|
-
readonly s?: csstype.Property.AlignContent | undefined;
|
|
6136
|
-
readonly m?: csstype.Property.AlignContent | undefined;
|
|
6137
|
-
readonly l?: csstype.Property.AlignContent | undefined;
|
|
6138
|
-
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
6139
|
-
} | undefined;
|
|
6140
|
-
alignItems?: csstype.Property.AlignItems | {
|
|
6141
|
-
readonly base?: csstype.Property.AlignItems | undefined;
|
|
6142
|
-
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
6143
|
-
readonly s?: csstype.Property.AlignItems | undefined;
|
|
6144
|
-
readonly m?: csstype.Property.AlignItems | undefined;
|
|
6145
|
-
readonly l?: csstype.Property.AlignItems | undefined;
|
|
6146
|
-
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
6147
|
-
} | undefined;
|
|
6148
|
-
alignSelf?: csstype.Property.AlignSelf | {
|
|
6149
|
-
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
6150
|
-
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
6151
|
-
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
6152
|
-
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
6153
|
-
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
6154
|
-
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
6155
|
-
} | undefined;
|
|
6156
|
-
columnGap: SpacingValueType | {
|
|
6157
|
-
readonly base?: SpacingValueType | undefined;
|
|
6158
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6159
|
-
readonly s?: SpacingValueType | undefined;
|
|
6160
|
-
readonly m?: SpacingValueType | undefined;
|
|
6161
|
-
readonly l?: SpacingValueType | undefined;
|
|
6162
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6163
|
-
};
|
|
6164
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
6165
|
-
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6166
|
-
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6167
|
-
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6168
|
-
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6169
|
-
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6170
|
-
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6171
|
-
} | undefined;
|
|
6172
|
-
flexDirection?: csstype.Property.FlexDirection | {
|
|
6173
|
-
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
6174
|
-
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
6175
|
-
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
6176
|
-
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
6177
|
-
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
6178
|
-
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
6179
|
-
} | undefined;
|
|
6180
|
-
flexGrow?: csstype.Property.FlexGrow | {
|
|
6181
|
-
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
6182
|
-
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
6183
|
-
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
6184
|
-
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
6185
|
-
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
6186
|
-
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
6187
|
-
} | undefined;
|
|
6188
|
-
flexShrink?: csstype.Property.FlexShrink | {
|
|
6189
|
-
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
6190
|
-
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
6191
|
-
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
6192
|
-
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
6193
|
-
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
6194
|
-
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
6195
|
-
} | undefined;
|
|
6196
|
-
flexWrap?: csstype.Property.FlexWrap | {
|
|
6197
|
-
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
6198
|
-
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
6199
|
-
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
6200
|
-
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
6201
|
-
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
6202
|
-
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
6203
|
-
} | undefined;
|
|
6204
|
-
justifyContent?: csstype.Property.JustifyContent | {
|
|
6205
|
-
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
6206
|
-
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
6207
|
-
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
6208
|
-
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
6209
|
-
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
6210
|
-
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
6211
|
-
} | undefined;
|
|
6212
|
-
justifyItems?: csstype.Property.JustifyItems | {
|
|
6213
|
-
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
6214
|
-
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
6215
|
-
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
6216
|
-
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
6217
|
-
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
6218
|
-
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
6219
|
-
} | undefined;
|
|
6220
|
-
justifySelf?: csstype.Property.JustifySelf | {
|
|
6221
|
-
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
6222
|
-
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
6223
|
-
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
6224
|
-
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
6225
|
-
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
6226
|
-
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
6227
|
-
} | undefined;
|
|
6228
|
-
order?: csstype.Property.Order | {
|
|
6229
|
-
readonly base?: csstype.Property.Order | undefined;
|
|
6230
|
-
readonly xs?: csstype.Property.Order | undefined;
|
|
6231
|
-
readonly s?: csstype.Property.Order | undefined;
|
|
6232
|
-
readonly m?: csstype.Property.Order | undefined;
|
|
6233
|
-
readonly l?: csstype.Property.Order | undefined;
|
|
6234
|
-
readonly xl?: csstype.Property.Order | undefined;
|
|
6235
|
-
} | undefined;
|
|
6236
|
-
rowGap: SpacingValueType | {
|
|
6237
|
-
readonly base?: SpacingValueType | undefined;
|
|
6238
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6239
|
-
readonly s?: SpacingValueType | undefined;
|
|
6240
|
-
readonly m?: SpacingValueType | undefined;
|
|
6241
|
-
readonly l?: SpacingValueType | undefined;
|
|
6242
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6243
|
-
};
|
|
6244
|
-
flex: string | number | {
|
|
6245
|
-
readonly base?: string | number | undefined;
|
|
6246
|
-
readonly xs?: string | number | undefined;
|
|
6247
|
-
readonly s?: string | number | undefined;
|
|
6248
|
-
readonly m?: string | number | undefined;
|
|
6249
|
-
readonly l?: string | number | undefined;
|
|
6250
|
-
readonly xl?: string | number | undefined;
|
|
6251
|
-
};
|
|
6252
|
-
gap: SpacingValueType | {
|
|
6253
|
-
readonly base?: SpacingValueType | undefined;
|
|
6254
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6255
|
-
readonly s?: SpacingValueType | undefined;
|
|
6256
|
-
readonly m?: SpacingValueType | undefined;
|
|
6257
|
-
readonly l?: SpacingValueType | undefined;
|
|
6258
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6259
|
-
};
|
|
6260
|
-
placeSelf?: csstype.Property.PlaceSelf | {
|
|
6261
|
-
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
6262
|
-
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
6263
|
-
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
6264
|
-
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
6265
|
-
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
6266
|
-
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
6267
|
-
} | undefined;
|
|
6268
|
-
__brand__?: "platform-web" | {
|
|
6269
|
-
readonly base?: "platform-web" | undefined;
|
|
6270
|
-
readonly xs?: "platform-web" | undefined;
|
|
6271
|
-
readonly s?: "platform-web" | undefined;
|
|
6272
|
-
readonly m?: "platform-web" | undefined;
|
|
6273
|
-
readonly l?: "platform-web" | undefined;
|
|
6274
|
-
readonly xl?: "platform-web" | undefined;
|
|
6275
|
-
} | undefined;
|
|
6276
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5597
|
+
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
6277
5598
|
bottom: SpacingValueType | {
|
|
6278
5599
|
readonly base?: SpacingValueType | undefined;
|
|
6279
5600
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -6502,7 +5823,7 @@ declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'v
|
|
|
6502
5823
|
* The callback function to be invoked when one of the input fields is blurred
|
|
6503
5824
|
*/
|
|
6504
5825
|
onBlur?: FormInputOnEventWithIndex;
|
|
6505
|
-
} & StyledPropsBlade;
|
|
5826
|
+
} & StyledPropsBlade$1;
|
|
6506
5827
|
/**
|
|
6507
5828
|
* OTPInput component can be used for accepting OTPs sent to users for authentication/verification purposes.
|
|
6508
5829
|
*
|
|
@@ -6594,7 +5915,7 @@ declare type IndicatorCommonProps = {
|
|
|
6594
5915
|
* @default medium
|
|
6595
5916
|
*/
|
|
6596
5917
|
size?: 'small' | 'medium' | 'large';
|
|
6597
|
-
} & TestID$1 & StyledPropsBlade;
|
|
5918
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6598
5919
|
declare type IndicatorWithoutA11yLabel = {
|
|
6599
5920
|
/**
|
|
6600
5921
|
* A text label to show alongside the indicator dot
|
|
@@ -6655,7 +5976,7 @@ declare type ListCommonProps = {
|
|
|
6655
5976
|
* @default 'medium'
|
|
6656
5977
|
*/
|
|
6657
5978
|
size?: 'small' | 'medium';
|
|
6658
|
-
} & TestID$1 & StyledPropsBlade;
|
|
5979
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6659
5980
|
declare type ListWithIconProps = ListCommonProps & {
|
|
6660
5981
|
variant?: 'unordered';
|
|
6661
5982
|
icon?: IconComponent;
|
|
@@ -6701,7 +6022,7 @@ declare type BaseTextProps = {
|
|
|
6701
6022
|
*/
|
|
6702
6023
|
numberOfLines?: number;
|
|
6703
6024
|
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
6704
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6025
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6705
6026
|
|
|
6706
6027
|
declare const validAsValues$2: readonly ["span", "h1", "h2", "h3", "h4", "h5", "h6"];
|
|
6707
6028
|
declare type TitleProps = {
|
|
@@ -6718,7 +6039,7 @@ declare type TitleProps = {
|
|
|
6718
6039
|
children: React.ReactNode;
|
|
6719
6040
|
textAlign?: BaseTextProps['textAlign'];
|
|
6720
6041
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6721
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6042
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6722
6043
|
declare const Title: ({ as, size, type, contrast, color, children, testID, textAlign, textDecorationLine, ...styledProps }: TitleProps) => ReactElement;
|
|
6723
6044
|
|
|
6724
6045
|
declare type HeadingVariant = 'regular' | 'subheading';
|
|
@@ -6737,7 +6058,7 @@ declare type HeadingCommonProps = {
|
|
|
6737
6058
|
children: React.ReactNode;
|
|
6738
6059
|
textAlign?: BaseTextProps['textAlign'];
|
|
6739
6060
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6740
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6061
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6741
6062
|
declare type HeadingNormalVariant = HeadingCommonProps & {
|
|
6742
6063
|
variant?: Exclude<HeadingVariant, 'subheading'>;
|
|
6743
6064
|
/**
|
|
@@ -6782,7 +6103,7 @@ declare type TextCommonProps = {
|
|
|
6782
6103
|
color?: BaseTextProps['color'];
|
|
6783
6104
|
textAlign?: BaseTextProps['textAlign'];
|
|
6784
6105
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6785
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6106
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6786
6107
|
declare type TextVariant = 'body' | 'caption';
|
|
6787
6108
|
declare type TextBodyVariant = TextCommonProps & {
|
|
6788
6109
|
variant?: Extract<TextVariant, 'body'>;
|
|
@@ -6824,7 +6145,7 @@ declare type CodeCommonProps = {
|
|
|
6824
6145
|
weight?: 'regular' | 'bold';
|
|
6825
6146
|
isHighlighted?: boolean;
|
|
6826
6147
|
color?: BaseTextProps['color'];
|
|
6827
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6148
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6828
6149
|
declare type CodeHighlightedProps = CodeCommonProps & {
|
|
6829
6150
|
/**
|
|
6830
6151
|
* Adds background color to highlight the text
|
|
@@ -6984,7 +6305,7 @@ declare type ProgressBarCommonProps = {
|
|
|
6984
6305
|
* @default 100
|
|
6985
6306
|
*/
|
|
6986
6307
|
max?: number;
|
|
6987
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6308
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6988
6309
|
declare type ProgressBarVariant = 'progress' | 'meter';
|
|
6989
6310
|
declare type ProgressBarProgressProps = ProgressBarCommonProps & {
|
|
6990
6311
|
/**
|
|
@@ -7049,7 +6370,7 @@ declare type RadioProps = {
|
|
|
7049
6370
|
* @default "medium"
|
|
7050
6371
|
*/
|
|
7051
6372
|
size?: 'small' | 'medium';
|
|
7052
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6373
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
7053
6374
|
declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
7054
6375
|
/**
|
|
7055
6376
|
* Sets the label text of the Radio
|
|
@@ -7076,152 +6397,7 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
|
7076
6397
|
* @default "medium"
|
|
7077
6398
|
*/
|
|
7078
6399
|
size?: "small" | "medium" | undefined;
|
|
7079
|
-
} & TestID$1 & Partial<Omit<MarginProps & Pick<{
|
|
7080
|
-
alignContent?: csstype.Property.AlignContent | {
|
|
7081
|
-
readonly base?: csstype.Property.AlignContent | undefined;
|
|
7082
|
-
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
7083
|
-
readonly s?: csstype.Property.AlignContent | undefined;
|
|
7084
|
-
readonly m?: csstype.Property.AlignContent | undefined;
|
|
7085
|
-
readonly l?: csstype.Property.AlignContent | undefined;
|
|
7086
|
-
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
7087
|
-
} | undefined;
|
|
7088
|
-
alignItems?: csstype.Property.AlignItems | {
|
|
7089
|
-
readonly base?: csstype.Property.AlignItems | undefined;
|
|
7090
|
-
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
7091
|
-
readonly s?: csstype.Property.AlignItems | undefined;
|
|
7092
|
-
readonly m?: csstype.Property.AlignItems | undefined;
|
|
7093
|
-
readonly l?: csstype.Property.AlignItems | undefined;
|
|
7094
|
-
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
7095
|
-
} | undefined;
|
|
7096
|
-
alignSelf?: csstype.Property.AlignSelf | {
|
|
7097
|
-
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
7098
|
-
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
7099
|
-
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
7100
|
-
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
7101
|
-
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
7102
|
-
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
7103
|
-
} | undefined;
|
|
7104
|
-
columnGap: SpacingValueType | {
|
|
7105
|
-
readonly base?: SpacingValueType | undefined;
|
|
7106
|
-
readonly xs?: SpacingValueType | undefined;
|
|
7107
|
-
readonly s?: SpacingValueType | undefined;
|
|
7108
|
-
readonly m?: SpacingValueType | undefined;
|
|
7109
|
-
readonly l?: SpacingValueType | undefined;
|
|
7110
|
-
readonly xl?: SpacingValueType | undefined;
|
|
7111
|
-
};
|
|
7112
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
7113
|
-
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7114
|
-
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7115
|
-
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7116
|
-
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7117
|
-
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7118
|
-
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7119
|
-
} | undefined;
|
|
7120
|
-
flexDirection?: csstype.Property.FlexDirection | {
|
|
7121
|
-
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
7122
|
-
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
7123
|
-
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
7124
|
-
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
7125
|
-
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
7126
|
-
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
7127
|
-
} | undefined;
|
|
7128
|
-
flexGrow?: csstype.Property.FlexGrow | {
|
|
7129
|
-
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
7130
|
-
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
7131
|
-
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
7132
|
-
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
7133
|
-
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
7134
|
-
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
7135
|
-
} | undefined;
|
|
7136
|
-
flexShrink?: csstype.Property.FlexShrink | {
|
|
7137
|
-
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
7138
|
-
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
7139
|
-
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
7140
|
-
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
7141
|
-
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
7142
|
-
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
7143
|
-
} | undefined;
|
|
7144
|
-
flexWrap?: csstype.Property.FlexWrap | {
|
|
7145
|
-
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
7146
|
-
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
7147
|
-
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
7148
|
-
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
7149
|
-
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
7150
|
-
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
7151
|
-
} | undefined;
|
|
7152
|
-
justifyContent?: csstype.Property.JustifyContent | {
|
|
7153
|
-
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
7154
|
-
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
7155
|
-
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
7156
|
-
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
7157
|
-
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
7158
|
-
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
7159
|
-
} | undefined;
|
|
7160
|
-
justifyItems?: csstype.Property.JustifyItems | {
|
|
7161
|
-
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
7162
|
-
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
7163
|
-
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
7164
|
-
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
7165
|
-
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
7166
|
-
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
7167
|
-
} | undefined;
|
|
7168
|
-
justifySelf?: csstype.Property.JustifySelf | {
|
|
7169
|
-
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
7170
|
-
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
7171
|
-
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
7172
|
-
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
7173
|
-
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
7174
|
-
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
7175
|
-
} | undefined;
|
|
7176
|
-
order?: csstype.Property.Order | {
|
|
7177
|
-
readonly base?: csstype.Property.Order | undefined;
|
|
7178
|
-
readonly xs?: csstype.Property.Order | undefined;
|
|
7179
|
-
readonly s?: csstype.Property.Order | undefined;
|
|
7180
|
-
readonly m?: csstype.Property.Order | undefined;
|
|
7181
|
-
readonly l?: csstype.Property.Order | undefined;
|
|
7182
|
-
readonly xl?: csstype.Property.Order | undefined;
|
|
7183
|
-
} | undefined;
|
|
7184
|
-
rowGap: SpacingValueType | {
|
|
7185
|
-
readonly base?: SpacingValueType | undefined;
|
|
7186
|
-
readonly xs?: SpacingValueType | undefined;
|
|
7187
|
-
readonly s?: SpacingValueType | undefined;
|
|
7188
|
-
readonly m?: SpacingValueType | undefined;
|
|
7189
|
-
readonly l?: SpacingValueType | undefined;
|
|
7190
|
-
readonly xl?: SpacingValueType | undefined;
|
|
7191
|
-
};
|
|
7192
|
-
flex: string | number | {
|
|
7193
|
-
readonly base?: string | number | undefined;
|
|
7194
|
-
readonly xs?: string | number | undefined;
|
|
7195
|
-
readonly s?: string | number | undefined;
|
|
7196
|
-
readonly m?: string | number | undefined;
|
|
7197
|
-
readonly l?: string | number | undefined;
|
|
7198
|
-
readonly xl?: string | number | undefined;
|
|
7199
|
-
};
|
|
7200
|
-
gap: SpacingValueType | {
|
|
7201
|
-
readonly base?: SpacingValueType | undefined;
|
|
7202
|
-
readonly xs?: SpacingValueType | undefined;
|
|
7203
|
-
readonly s?: SpacingValueType | undefined;
|
|
7204
|
-
readonly m?: SpacingValueType | undefined;
|
|
7205
|
-
readonly l?: SpacingValueType | undefined;
|
|
7206
|
-
readonly xl?: SpacingValueType | undefined;
|
|
7207
|
-
};
|
|
7208
|
-
placeSelf?: csstype.Property.PlaceSelf | {
|
|
7209
|
-
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
7210
|
-
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
7211
|
-
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
7212
|
-
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
7213
|
-
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
7214
|
-
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
7215
|
-
} | undefined;
|
|
7216
|
-
__brand__?: "platform-web" | {
|
|
7217
|
-
readonly base?: "platform-web" | undefined;
|
|
7218
|
-
readonly xs?: "platform-web" | undefined;
|
|
7219
|
-
readonly s?: "platform-web" | undefined;
|
|
7220
|
-
readonly m?: "platform-web" | undefined;
|
|
7221
|
-
readonly l?: "platform-web" | undefined;
|
|
7222
|
-
readonly xl?: "platform-web" | undefined;
|
|
7223
|
-
} | undefined;
|
|
7224
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
6400
|
+
} & TestID$1 & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
7225
6401
|
bottom: SpacingValueType | {
|
|
7226
6402
|
readonly base?: SpacingValueType | undefined;
|
|
7227
6403
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -7487,7 +6663,7 @@ declare type RadioGroupProps = {
|
|
|
7487
6663
|
* @default "medium"
|
|
7488
6664
|
*/
|
|
7489
6665
|
size?: 'small' | 'medium';
|
|
7490
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6666
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
7491
6667
|
declare const RadioGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: RadioGroupProps) => React__default.ReactElement;
|
|
7492
6668
|
|
|
7493
6669
|
declare type BaseSpinnerProps = {
|
|
@@ -7520,7 +6696,7 @@ declare type BaseSpinnerProps = {
|
|
|
7520
6696
|
*
|
|
7521
6697
|
*/
|
|
7522
6698
|
accessibilityLabel: string;
|
|
7523
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6699
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
7524
6700
|
|
|
7525
6701
|
declare type SpinnerProps = Omit<BaseSpinnerProps, 'intent'>;
|
|
7526
6702
|
declare const Spinner: ({ label, labelPosition, accessibilityLabel, contrast, size, testID, ...styledProps }: SpinnerProps) => React.ReactElement;
|
|
@@ -7593,6 +6769,52 @@ declare type SwitchProps = {
|
|
|
7593
6769
|
|
|
7594
6770
|
declare const Switch: React__default.ForwardRefExoticComponent<SwitchProps & React__default.RefAttributes<BladeElementRef>>;
|
|
7595
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
|
+
|
|
7596
6818
|
declare type VisuallyHiddenProps = {
|
|
7597
6819
|
children: React.ReactNode;
|
|
7598
6820
|
} & TestID$1;
|
|
@@ -7648,7 +6870,7 @@ declare type AmountProps = {
|
|
|
7648
6870
|
* @default 'INR'
|
|
7649
6871
|
* */
|
|
7650
6872
|
currency?: Currency;
|
|
7651
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6873
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
7652
6874
|
declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
|
|
7653
6875
|
|
|
7654
6876
|
declare type SnapPoints = [number, number, number];
|
|
@@ -7742,7 +6964,7 @@ declare type AccordionProps = {
|
|
|
7742
6964
|
* Accepts `AccordionItem` child nodes
|
|
7743
6965
|
*/
|
|
7744
6966
|
children: ReactElement | ReactElement[];
|
|
7745
|
-
} & TestID$1 & StyledPropsBlade;
|
|
6967
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
7746
6968
|
declare const Accordion: ({ defaultExpandedIndex, expandedIndex, onExpandChange, showNumberPrefix, children, testID, ...styledProps }: AccordionProps) => ReactElement;
|
|
7747
6969
|
|
|
7748
6970
|
declare type AccordionItemProps = {
|
|
@@ -7805,7 +7027,7 @@ declare type CollapsibleProps = {
|
|
|
7805
7027
|
* **Internal**: used to override responsive width restrictions
|
|
7806
7028
|
*/
|
|
7807
7029
|
_shouldApplyWidthRestrictions?: boolean;
|
|
7808
|
-
} & TestID$1 & StyledPropsBlade;
|
|
7030
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
7809
7031
|
declare const Collapsible: ({ children, direction, defaultIsExpanded, isExpanded, onExpandChange, testID, _shouldApplyWidthRestrictions, ...styledProps }: CollapsibleProps) => ReactElement;
|
|
7810
7032
|
|
|
7811
7033
|
declare type CollapsibleLinkProps = Pick<LinkProps, 'size' | 'isDisabled' | 'testID' | 'accessibilityLabel' | 'children'>;
|
|
@@ -7819,7 +7041,7 @@ declare type CollapsibleBodyProps = {
|
|
|
7819
7041
|
/**
|
|
7820
7042
|
* **Internal**: used for React Native specific workarounds. Collapsible automatically takes care of width, you shouldn't need to configure this
|
|
7821
7043
|
*/
|
|
7822
|
-
_width?: BaseBoxProps['width'];
|
|
7044
|
+
_width?: BaseBoxProps$1['width'];
|
|
7823
7045
|
} & TestID$1;
|
|
7824
7046
|
declare const CollapsibleBody: ({ children, testID, _width }: CollapsibleBodyProps) => ReactElement;
|
|
7825
7047
|
|
|
@@ -7842,45 +7064,6 @@ declare type TooltipProps = {
|
|
|
7842
7064
|
|
|
7843
7065
|
declare const Tooltip: ({ content, children, placement, onOpenChange, }: TooltipProps) => React__default.ReactElement;
|
|
7844
7066
|
|
|
7845
|
-
declare type BladeCommonEvents = {
|
|
7846
|
-
onBlur?: Platform.Select<{
|
|
7847
|
-
native: undefined | ((event: any) => void);
|
|
7848
|
-
web: React.FocusEventHandler;
|
|
7849
|
-
}>;
|
|
7850
|
-
onFocus?: Platform.Select<{
|
|
7851
|
-
native: undefined | ((event: any) => void);
|
|
7852
|
-
web: React.FocusEventHandler;
|
|
7853
|
-
}>;
|
|
7854
|
-
onMouseLeave?: Platform.Select<{
|
|
7855
|
-
web: React.MouseEventHandler;
|
|
7856
|
-
native: undefined;
|
|
7857
|
-
}>;
|
|
7858
|
-
onMouseMove?: Platform.Select<{
|
|
7859
|
-
web: React.MouseEventHandler;
|
|
7860
|
-
native: undefined;
|
|
7861
|
-
}>;
|
|
7862
|
-
onPointerDown?: Platform.Select<{
|
|
7863
|
-
web: React.PointerEventHandler;
|
|
7864
|
-
native: undefined;
|
|
7865
|
-
}>;
|
|
7866
|
-
onPointerEnter?: Platform.Select<{
|
|
7867
|
-
web: React.PointerEventHandler;
|
|
7868
|
-
native: undefined;
|
|
7869
|
-
}>;
|
|
7870
|
-
onTouchStart?: Platform.Select<{
|
|
7871
|
-
native: undefined | ((event: any) => void);
|
|
7872
|
-
web: React.TouchEventHandler;
|
|
7873
|
-
}>;
|
|
7874
|
-
onTouchEnd?: Platform.Select<{
|
|
7875
|
-
native: undefined | ((event: any) => void);
|
|
7876
|
-
web: React.TouchEventHandler;
|
|
7877
|
-
}>;
|
|
7878
|
-
};
|
|
7879
|
-
|
|
7880
|
-
declare type TestID = {
|
|
7881
|
-
testID?: string;
|
|
7882
|
-
};
|
|
7883
|
-
|
|
7884
7067
|
declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, Omit<Partial<PaddingProps & MarginProps & {
|
|
7885
7068
|
width: SpacingValueType | {
|
|
7886
7069
|
readonly base?: SpacingValueType | undefined;
|
|
@@ -7978,152 +7161,7 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
7978
7161
|
readonly l?: "platform-web" | undefined;
|
|
7979
7162
|
readonly xl?: "platform-web" | undefined;
|
|
7980
7163
|
} | undefined;
|
|
7981
|
-
} & {
|
|
7982
|
-
alignContent?: csstype.Property.AlignContent | {
|
|
7983
|
-
readonly base?: csstype.Property.AlignContent | undefined;
|
|
7984
|
-
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
7985
|
-
readonly s?: csstype.Property.AlignContent | undefined;
|
|
7986
|
-
readonly m?: csstype.Property.AlignContent | undefined;
|
|
7987
|
-
readonly l?: csstype.Property.AlignContent | undefined;
|
|
7988
|
-
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
7989
|
-
} | undefined;
|
|
7990
|
-
alignItems?: csstype.Property.AlignItems | {
|
|
7991
|
-
readonly base?: csstype.Property.AlignItems | undefined;
|
|
7992
|
-
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
7993
|
-
readonly s?: csstype.Property.AlignItems | undefined;
|
|
7994
|
-
readonly m?: csstype.Property.AlignItems | undefined;
|
|
7995
|
-
readonly l?: csstype.Property.AlignItems | undefined;
|
|
7996
|
-
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
7997
|
-
} | undefined;
|
|
7998
|
-
alignSelf?: csstype.Property.AlignSelf | {
|
|
7999
|
-
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
8000
|
-
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
8001
|
-
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
8002
|
-
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
8003
|
-
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
8004
|
-
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
8005
|
-
} | undefined;
|
|
8006
|
-
columnGap: SpacingValueType | {
|
|
8007
|
-
readonly base?: SpacingValueType | undefined;
|
|
8008
|
-
readonly xs?: SpacingValueType | undefined;
|
|
8009
|
-
readonly s?: SpacingValueType | undefined;
|
|
8010
|
-
readonly m?: SpacingValueType | undefined;
|
|
8011
|
-
readonly l?: SpacingValueType | undefined;
|
|
8012
|
-
readonly xl?: SpacingValueType | undefined;
|
|
8013
|
-
};
|
|
8014
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
8015
|
-
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
8016
|
-
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
8017
|
-
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
8018
|
-
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
8019
|
-
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
8020
|
-
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
8021
|
-
} | undefined;
|
|
8022
|
-
flexDirection?: csstype.Property.FlexDirection | {
|
|
8023
|
-
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
8024
|
-
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
8025
|
-
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
8026
|
-
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
8027
|
-
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
8028
|
-
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
8029
|
-
} | undefined;
|
|
8030
|
-
flexGrow?: csstype.Property.FlexGrow | {
|
|
8031
|
-
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
8032
|
-
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
8033
|
-
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
8034
|
-
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
8035
|
-
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
8036
|
-
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
8037
|
-
} | undefined;
|
|
8038
|
-
flexShrink?: csstype.Property.FlexShrink | {
|
|
8039
|
-
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
8040
|
-
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
8041
|
-
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
8042
|
-
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
8043
|
-
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
8044
|
-
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
8045
|
-
} | undefined;
|
|
8046
|
-
flexWrap?: csstype.Property.FlexWrap | {
|
|
8047
|
-
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
8048
|
-
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
8049
|
-
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
8050
|
-
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
8051
|
-
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
8052
|
-
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
8053
|
-
} | undefined;
|
|
8054
|
-
justifyContent?: csstype.Property.JustifyContent | {
|
|
8055
|
-
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
8056
|
-
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
8057
|
-
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
8058
|
-
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
8059
|
-
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
8060
|
-
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
8061
|
-
} | undefined;
|
|
8062
|
-
justifyItems?: csstype.Property.JustifyItems | {
|
|
8063
|
-
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
8064
|
-
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
8065
|
-
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
8066
|
-
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
8067
|
-
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
8068
|
-
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
8069
|
-
} | undefined;
|
|
8070
|
-
justifySelf?: csstype.Property.JustifySelf | {
|
|
8071
|
-
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
8072
|
-
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
8073
|
-
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
8074
|
-
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
8075
|
-
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
8076
|
-
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
8077
|
-
} | undefined;
|
|
8078
|
-
order?: csstype.Property.Order | {
|
|
8079
|
-
readonly base?: csstype.Property.Order | undefined;
|
|
8080
|
-
readonly xs?: csstype.Property.Order | undefined;
|
|
8081
|
-
readonly s?: csstype.Property.Order | undefined;
|
|
8082
|
-
readonly m?: csstype.Property.Order | undefined;
|
|
8083
|
-
readonly l?: csstype.Property.Order | undefined;
|
|
8084
|
-
readonly xl?: csstype.Property.Order | undefined;
|
|
8085
|
-
} | undefined;
|
|
8086
|
-
rowGap: SpacingValueType | {
|
|
8087
|
-
readonly base?: SpacingValueType | undefined;
|
|
8088
|
-
readonly xs?: SpacingValueType | undefined;
|
|
8089
|
-
readonly s?: SpacingValueType | undefined;
|
|
8090
|
-
readonly m?: SpacingValueType | undefined;
|
|
8091
|
-
readonly l?: SpacingValueType | undefined;
|
|
8092
|
-
readonly xl?: SpacingValueType | undefined;
|
|
8093
|
-
};
|
|
8094
|
-
flex: string | number | {
|
|
8095
|
-
readonly base?: string | number | undefined;
|
|
8096
|
-
readonly xs?: string | number | undefined;
|
|
8097
|
-
readonly s?: string | number | undefined;
|
|
8098
|
-
readonly m?: string | number | undefined;
|
|
8099
|
-
readonly l?: string | number | undefined;
|
|
8100
|
-
readonly xl?: string | number | undefined;
|
|
8101
|
-
};
|
|
8102
|
-
gap: SpacingValueType | {
|
|
8103
|
-
readonly base?: SpacingValueType | undefined;
|
|
8104
|
-
readonly xs?: SpacingValueType | undefined;
|
|
8105
|
-
readonly s?: SpacingValueType | undefined;
|
|
8106
|
-
readonly m?: SpacingValueType | undefined;
|
|
8107
|
-
readonly l?: SpacingValueType | undefined;
|
|
8108
|
-
readonly xl?: SpacingValueType | undefined;
|
|
8109
|
-
};
|
|
8110
|
-
placeSelf?: csstype.Property.PlaceSelf | {
|
|
8111
|
-
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
8112
|
-
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
8113
|
-
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
8114
|
-
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
8115
|
-
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
8116
|
-
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
8117
|
-
} | undefined;
|
|
8118
|
-
__brand__?: "platform-web" | {
|
|
8119
|
-
readonly base?: "platform-web" | undefined;
|
|
8120
|
-
readonly xs?: "platform-web" | undefined;
|
|
8121
|
-
readonly s?: "platform-web" | undefined;
|
|
8122
|
-
readonly m?: "platform-web" | undefined;
|
|
8123
|
-
readonly l?: "platform-web" | undefined;
|
|
8124
|
-
readonly xl?: "platform-web" | undefined;
|
|
8125
|
-
} | undefined;
|
|
8126
|
-
} & {
|
|
7164
|
+
} & FlexboxProps & {
|
|
8127
7165
|
bottom: SpacingValueType | {
|
|
8128
7166
|
readonly base?: SpacingValueType | undefined;
|
|
8129
7167
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -8315,6 +7353,14 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8315
7353
|
onMouseLeave: React$1.MouseEventHandler<HTMLElement>;
|
|
8316
7354
|
onScroll: React$1.UIEventHandler<HTMLElement>;
|
|
8317
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;
|
|
8318
7364
|
backgroundImage?: csstype.Property.BackgroundImage | {
|
|
8319
7365
|
readonly base?: csstype.Property.BackgroundImage | undefined;
|
|
8320
7366
|
readonly xs?: csstype.Property.BackgroundImage | undefined;
|
|
@@ -8595,4 +7641,4 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8595
7641
|
tabIndex: -1;
|
|
8596
7642
|
}, "tabIndex">;
|
|
8597
7643
|
|
|
8598
|
-
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 };
|