@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
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactChild, ReactElement, ReactNode, SyntheticEvent, KeyboardEvent } from 'react';
|
|
4
|
-
import * as react_native from 'react-native';
|
|
5
4
|
import { View, ViewStyle, AccessibilityRole, ImageSourcePropType, GestureResponderEvent, PressableProps } from 'react-native';
|
|
6
5
|
import { CSSObject } from 'styled-components';
|
|
7
6
|
import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/types';
|
|
@@ -588,7 +587,7 @@ type Motion = Readonly<{
|
|
|
588
587
|
easing: Easing;
|
|
589
588
|
}>;
|
|
590
589
|
|
|
591
|
-
type ElevationLevels = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
|
|
590
|
+
type ElevationLevels$1 = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
|
|
592
591
|
|
|
593
592
|
type ElevationStyles = Readonly<{
|
|
594
593
|
elevation: number;
|
|
@@ -608,7 +607,7 @@ type ElevationStyles = Readonly<{
|
|
|
608
607
|
}>;
|
|
609
608
|
|
|
610
609
|
type Elevation = Record<
|
|
611
|
-
ElevationLevels,
|
|
610
|
+
ElevationLevels$1,
|
|
612
611
|
Platform.Select<{
|
|
613
612
|
web: string;
|
|
614
613
|
native: ElevationStyles;
|
|
@@ -1394,12 +1393,24 @@ type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
|
1394
1393
|
| 'backgroundPosition'
|
|
1395
1394
|
| 'backgroundOrigin'
|
|
1396
1395
|
| 'backgroundRepeat'
|
|
1397
|
-
>
|
|
1396
|
+
> & {
|
|
1397
|
+
/**
|
|
1398
|
+
* Sets the elevation for Box
|
|
1399
|
+
*
|
|
1400
|
+
* eg: `theme.elevation.midRaised`
|
|
1401
|
+
*
|
|
1402
|
+
* @default `theme.elevation.lowRaised`
|
|
1403
|
+
*
|
|
1404
|
+
* **Links:**
|
|
1405
|
+
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-elevation--page
|
|
1406
|
+
*/
|
|
1407
|
+
elevation?: keyof Elevation;
|
|
1408
|
+
}
|
|
1398
1409
|
>;
|
|
1399
1410
|
|
|
1400
1411
|
// Visual props that are specific BaseBox
|
|
1401
1412
|
// This is used to ensure some of the more flexible BaseBox props are not passed to Box
|
|
1402
|
-
type BaseBoxVisualProps = MakeObjectResponsive$1<
|
|
1413
|
+
type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
1403
1414
|
{
|
|
1404
1415
|
backgroundColor:
|
|
1405
1416
|
| BackgroundColorString$1<'feedback'>
|
|
@@ -1430,7 +1441,7 @@ type BoxVisualProps$1 = MakeObjectResponsive$1<{
|
|
|
1430
1441
|
as: BoxAsType$1;
|
|
1431
1442
|
};
|
|
1432
1443
|
|
|
1433
|
-
type StyledPropsBlade = Partial<
|
|
1444
|
+
type StyledPropsBlade$1 = Partial<
|
|
1434
1445
|
Omit<
|
|
1435
1446
|
MarginProps$1 &
|
|
1436
1447
|
Pick<FlexboxProps$1, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> &
|
|
@@ -1504,9 +1515,9 @@ type BoxProps$1 = Partial<
|
|
|
1504
1515
|
// Visual props have different types for BaseBox and Box. BaseBox has more flexible types and more props exposed.
|
|
1505
1516
|
// So first we Omit Visual props of Box
|
|
1506
1517
|
// Then we append BaseBoxVisualProps and some other props for styled-components like class and id
|
|
1507
|
-
type BaseBoxProps = Omit<BoxProps$1, keyof BoxVisualProps$1> &
|
|
1518
|
+
type BaseBoxProps$1 = Omit<BoxProps$1, keyof BoxVisualProps$1> &
|
|
1508
1519
|
Partial<
|
|
1509
|
-
BaseBoxVisualProps & {
|
|
1520
|
+
BaseBoxVisualProps$1 & {
|
|
1510
1521
|
className?: string;
|
|
1511
1522
|
id?: string;
|
|
1512
1523
|
tabIndex?: number;
|
|
@@ -1862,7 +1873,7 @@ type IconProps$1 = {
|
|
|
1862
1873
|
| BadgeIconColors$1
|
|
1863
1874
|
| 'currentColor'; // currentColor is useful for letting the SVG inherit color property from its container
|
|
1864
1875
|
size: IconSize$1;
|
|
1865
|
-
} & StyledPropsBlade;
|
|
1876
|
+
} & StyledPropsBlade$1;
|
|
1866
1877
|
type IconComponent$1 = React.ComponentType<IconProps$1>;
|
|
1867
1878
|
|
|
1868
1879
|
declare type ActionListItemProps = {
|
|
@@ -2019,7 +2030,7 @@ declare type AlertProps = {
|
|
|
2019
2030
|
*/
|
|
2020
2031
|
secondary?: SecondaryAction;
|
|
2021
2032
|
};
|
|
2022
|
-
} & TestID & StyledPropsBlade;
|
|
2033
|
+
} & TestID & StyledPropsBlade$1;
|
|
2023
2034
|
declare const Alert: ({ description, title, isDismissible, onDismiss, contrast, isFullWidth, intent, actions, testID, ...styledProps }: AlertProps) => ReactElement | null;
|
|
2024
2035
|
|
|
2025
2036
|
declare type BadgeProps = {
|
|
@@ -2058,7 +2069,7 @@ declare type BadgeProps = {
|
|
|
2058
2069
|
* @default 'regular'
|
|
2059
2070
|
*/
|
|
2060
2071
|
fontWeight?: 'regular' | 'bold';
|
|
2061
|
-
} & TestID & StyledPropsBlade;
|
|
2072
|
+
} & TestID & StyledPropsBlade$1;
|
|
2062
2073
|
declare const Badge: ({ children, contrast, fontWeight, icon, size, variant, testID, ...styledProps }: BadgeProps) => ReactElement;
|
|
2063
2074
|
|
|
2064
2075
|
declare type BladeProviderProps = {
|
|
@@ -2135,6 +2146,8 @@ declare type MakeObjectResponsive<T, K extends keyof T = Extract<keyof T, string
|
|
|
2135
2146
|
[P in K]: MakeValueResponsive<T[P]>;
|
|
2136
2147
|
};
|
|
2137
2148
|
|
|
2149
|
+
declare type ElevationLevels = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
|
|
2150
|
+
|
|
2138
2151
|
declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
|
|
2139
2152
|
declare type SpaceUnits = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
2140
2153
|
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | `calc(${string})` | 'auto' | `min(${string})` | `max(${string})` | 'none' | 'initial' | 'fit-content' | 'max-content' | 'min-content';
|
|
@@ -2634,12 +2647,31 @@ declare type CommonBoxVisualProps = MakeObjectResponsive<{
|
|
|
2634
2647
|
borderTopRightRadius: keyof Border['radius'];
|
|
2635
2648
|
borderBottomRightRadius: keyof Border['radius'];
|
|
2636
2649
|
borderBottomLeftRadius: keyof Border['radius'];
|
|
2637
|
-
} & 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'>>;
|
|
2638
2669
|
declare type BoxVisualProps = MakeObjectResponsive<{
|
|
2639
2670
|
backgroundColor: BackgroundColorString<'surface'> | BrandColorString;
|
|
2640
2671
|
}> & {
|
|
2641
2672
|
as: BoxAsType;
|
|
2642
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__'>>;
|
|
2643
2675
|
declare type BoxCallbackProps = Omit<Platform.Select<{
|
|
2644
2676
|
web: {
|
|
2645
2677
|
/**
|
|
@@ -2677,6 +2709,11 @@ declare type BoxProps = Partial<PaddingProps & MarginProps & LayoutProps & Flexb
|
|
|
2677
2709
|
children?: React.ReactNode | React.ReactNode[];
|
|
2678
2710
|
tabIndex?: number;
|
|
2679
2711
|
} & TestID>;
|
|
2712
|
+
declare type BaseBoxProps = Omit<BoxProps, keyof BoxVisualProps> & Partial<BaseBoxVisualProps & {
|
|
2713
|
+
className?: string;
|
|
2714
|
+
id?: string;
|
|
2715
|
+
tabIndex?: number;
|
|
2716
|
+
}> & BladeCommonEvents$1;
|
|
2680
2717
|
declare type BoxRefType = Platform.Select<{
|
|
2681
2718
|
web: Omit<HTMLElement, 'style'>;
|
|
2682
2719
|
native: View;
|
|
@@ -2758,124 +2795,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2758
2795
|
readonly l?: "platform-native" | undefined;
|
|
2759
2796
|
readonly xl?: "platform-native" | undefined;
|
|
2760
2797
|
} | undefined;
|
|
2761
|
-
} & {
|
|
2762
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
2763
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2764
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2765
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2766
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2767
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2768
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2769
|
-
} | undefined;
|
|
2770
|
-
alignItems?: react_native.FlexAlignType | {
|
|
2771
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
2772
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
2773
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
2774
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
2775
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
2776
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
2777
|
-
} | undefined;
|
|
2778
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
2779
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
2780
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
2781
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
2782
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
2783
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
2784
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
2785
|
-
} | undefined;
|
|
2786
|
-
columnGap: SpacingValueType | {
|
|
2787
|
-
readonly base?: SpacingValueType | undefined;
|
|
2788
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2789
|
-
readonly s?: SpacingValueType | undefined;
|
|
2790
|
-
readonly m?: SpacingValueType | undefined;
|
|
2791
|
-
readonly l?: SpacingValueType | undefined;
|
|
2792
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2793
|
-
};
|
|
2794
|
-
flexBasis?: string | number | {
|
|
2795
|
-
readonly base?: string | number | undefined;
|
|
2796
|
-
readonly xs?: string | number | undefined;
|
|
2797
|
-
readonly s?: string | number | undefined;
|
|
2798
|
-
readonly m?: string | number | undefined;
|
|
2799
|
-
readonly l?: string | number | undefined;
|
|
2800
|
-
readonly xl?: string | number | undefined;
|
|
2801
|
-
} | undefined;
|
|
2802
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
2803
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2804
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2805
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2806
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2807
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2808
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2809
|
-
} | undefined;
|
|
2810
|
-
flexGrow?: number | {
|
|
2811
|
-
readonly base?: number | undefined;
|
|
2812
|
-
readonly xs?: number | undefined;
|
|
2813
|
-
readonly s?: number | undefined;
|
|
2814
|
-
readonly m?: number | undefined;
|
|
2815
|
-
readonly l?: number | undefined;
|
|
2816
|
-
readonly xl?: number | undefined;
|
|
2817
|
-
} | undefined;
|
|
2818
|
-
flexShrink?: number | {
|
|
2819
|
-
readonly base?: number | undefined;
|
|
2820
|
-
readonly xs?: number | undefined;
|
|
2821
|
-
readonly s?: number | undefined;
|
|
2822
|
-
readonly m?: number | undefined;
|
|
2823
|
-
readonly l?: number | undefined;
|
|
2824
|
-
readonly xl?: number | undefined;
|
|
2825
|
-
} | undefined;
|
|
2826
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
2827
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2828
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2829
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2830
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2831
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2832
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2833
|
-
} | undefined;
|
|
2834
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
2835
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2836
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2837
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2838
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2839
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2840
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2841
|
-
} | undefined;
|
|
2842
|
-
justifyItems: never;
|
|
2843
|
-
justifySelf: never;
|
|
2844
|
-
order: never;
|
|
2845
|
-
rowGap: SpacingValueType | {
|
|
2846
|
-
readonly base?: SpacingValueType | undefined;
|
|
2847
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2848
|
-
readonly s?: SpacingValueType | undefined;
|
|
2849
|
-
readonly m?: SpacingValueType | undefined;
|
|
2850
|
-
readonly l?: SpacingValueType | undefined;
|
|
2851
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2852
|
-
};
|
|
2853
|
-
flex: string | number | {
|
|
2854
|
-
readonly base?: string | number | undefined;
|
|
2855
|
-
readonly xs?: string | number | undefined;
|
|
2856
|
-
readonly s?: string | number | undefined;
|
|
2857
|
-
readonly m?: string | number | undefined;
|
|
2858
|
-
readonly l?: string | number | undefined;
|
|
2859
|
-
readonly xl?: string | number | undefined;
|
|
2860
|
-
};
|
|
2861
|
-
gap: SpacingValueType | {
|
|
2862
|
-
readonly base?: SpacingValueType | undefined;
|
|
2863
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2864
|
-
readonly s?: SpacingValueType | undefined;
|
|
2865
|
-
readonly m?: SpacingValueType | undefined;
|
|
2866
|
-
readonly l?: SpacingValueType | undefined;
|
|
2867
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2868
|
-
};
|
|
2869
|
-
placeSelf: never;
|
|
2870
|
-
__brand__?: "platform-native" | {
|
|
2871
|
-
readonly base?: "platform-native" | undefined;
|
|
2872
|
-
readonly xs?: "platform-native" | undefined;
|
|
2873
|
-
readonly s?: "platform-native" | undefined;
|
|
2874
|
-
readonly m?: "platform-native" | undefined;
|
|
2875
|
-
readonly l?: "platform-native" | undefined;
|
|
2876
|
-
readonly xl?: "platform-native" | undefined;
|
|
2877
|
-
} | undefined;
|
|
2878
|
-
} & {
|
|
2798
|
+
} & FlexboxProps & {
|
|
2879
2799
|
bottom: SpacingValueType | {
|
|
2880
2800
|
readonly base?: SpacingValueType | undefined;
|
|
2881
2801
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -2962,6 +2882,14 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2962
2882
|
onMouseLeave: undefined;
|
|
2963
2883
|
onScroll: undefined;
|
|
2964
2884
|
} & {
|
|
2885
|
+
elevation?: ElevationLevels | {
|
|
2886
|
+
readonly base?: ElevationLevels | undefined;
|
|
2887
|
+
readonly xs?: ElevationLevels | undefined;
|
|
2888
|
+
readonly s?: ElevationLevels | undefined;
|
|
2889
|
+
readonly m?: ElevationLevels | undefined;
|
|
2890
|
+
readonly l?: ElevationLevels | undefined;
|
|
2891
|
+
readonly xl?: ElevationLevels | undefined;
|
|
2892
|
+
} | undefined;
|
|
2965
2893
|
backgroundImage: never;
|
|
2966
2894
|
backgroundOrigin: never;
|
|
2967
2895
|
backgroundRepeat: never;
|
|
@@ -3160,7 +3088,7 @@ declare type CardProps = {
|
|
|
3160
3088
|
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
3161
3089
|
*/
|
|
3162
3090
|
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
|
|
3163
|
-
} & TestID & StyledPropsBlade;
|
|
3091
|
+
} & TestID & StyledPropsBlade$1;
|
|
3164
3092
|
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3165
3093
|
declare type CardBodyProps = {
|
|
3166
3094
|
children: React__default.ReactNode;
|
|
@@ -3205,7 +3133,7 @@ declare type BaseLinkCommonProps = {
|
|
|
3205
3133
|
* The title of the link which is displayed as a tooltip. This is a web only prop and has no effect on react-native.
|
|
3206
3134
|
*/
|
|
3207
3135
|
htmlTitle?: string;
|
|
3208
|
-
} & TestID & StyledPropsBlade & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
3136
|
+
} & TestID & StyledPropsBlade$1 & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
3209
3137
|
declare type BaseLinkWithoutIconProps = BaseLinkCommonProps & {
|
|
3210
3138
|
icon?: undefined;
|
|
3211
3139
|
children: StringChildrenType;
|
|
@@ -3246,7 +3174,7 @@ declare type LinkCommonProps = {
|
|
|
3246
3174
|
* @default medium
|
|
3247
3175
|
*/
|
|
3248
3176
|
size?: BaseLinkProps['size'];
|
|
3249
|
-
} & TestID & StyledPropsBlade & BladeCommonEvents$1 & Platform.Select<{
|
|
3177
|
+
} & TestID & StyledPropsBlade$1 & BladeCommonEvents$1 & Platform.Select<{
|
|
3250
3178
|
native: {
|
|
3251
3179
|
/**
|
|
3252
3180
|
* Defines how far your touch can start away from the link
|
|
@@ -3321,7 +3249,7 @@ declare type BaseButtonCommonProps = {
|
|
|
3321
3249
|
variant?: 'primary' | 'secondary' | 'tertiary';
|
|
3322
3250
|
contrast?: 'low' | 'high';
|
|
3323
3251
|
intent?: 'positive' | 'negative' | 'notice' | 'information' | 'neutral';
|
|
3324
|
-
} & TestID & StyledPropsBlade & BladeCommonEvents$1;
|
|
3252
|
+
} & TestID & StyledPropsBlade$1 & BladeCommonEvents$1;
|
|
3325
3253
|
declare type BaseButtonWithoutIconProps = BaseButtonCommonProps & {
|
|
3326
3254
|
icon?: undefined;
|
|
3327
3255
|
children: StringChildrenType;
|
|
@@ -3361,7 +3289,7 @@ declare type ButtonCommonProps = {
|
|
|
3361
3289
|
native: (event: GestureResponderEvent) => void;
|
|
3362
3290
|
web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
3363
3291
|
}>;
|
|
3364
|
-
} & TestID & StyledPropsBlade & BladeCommonEvents$1;
|
|
3292
|
+
} & TestID & StyledPropsBlade$1 & BladeCommonEvents$1;
|
|
3365
3293
|
declare type ButtonWithoutIconProps = ButtonCommonProps & {
|
|
3366
3294
|
icon?: undefined;
|
|
3367
3295
|
children: StringChildrenType;
|
|
@@ -3408,7 +3336,7 @@ declare type CounterProps = {
|
|
|
3408
3336
|
* @default 'medium'
|
|
3409
3337
|
*/
|
|
3410
3338
|
size?: 'small' | 'medium' | 'large';
|
|
3411
|
-
} & TestID & StyledPropsBlade;
|
|
3339
|
+
} & TestID & StyledPropsBlade$1;
|
|
3412
3340
|
declare const Counter: ({ value, max, intent, variant, contrast, size, testID, ...styledProps }: CounterProps) => React.ReactElement;
|
|
3413
3341
|
|
|
3414
3342
|
type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
|
|
@@ -3473,7 +3401,7 @@ type BaseTextProps$1 = {
|
|
|
3473
3401
|
numberOfLines?: number;
|
|
3474
3402
|
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
3475
3403
|
} & TestID &
|
|
3476
|
-
StyledPropsBlade;
|
|
3404
|
+
StyledPropsBlade$1;
|
|
3477
3405
|
|
|
3478
3406
|
/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */
|
|
3479
3407
|
|
|
@@ -3495,7 +3423,7 @@ type TextCommonProps$1 = {
|
|
|
3495
3423
|
textAlign?: BaseTextProps$1['textAlign'];
|
|
3496
3424
|
textDecorationLine?: BaseTextProps$1['textDecorationLine'];
|
|
3497
3425
|
} & TestID &
|
|
3498
|
-
StyledPropsBlade;
|
|
3426
|
+
StyledPropsBlade$1;
|
|
3499
3427
|
|
|
3500
3428
|
type TextVariant$1 = 'body' | 'caption';
|
|
3501
3429
|
|
|
@@ -3717,7 +3645,7 @@ declare type CheckboxProps = {
|
|
|
3717
3645
|
*
|
|
3718
3646
|
*/
|
|
3719
3647
|
tabIndex?: number;
|
|
3720
|
-
} & TestID & StyledPropsBlade;
|
|
3648
|
+
} & TestID & StyledPropsBlade$1;
|
|
3721
3649
|
declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
3722
3650
|
/**
|
|
3723
3651
|
* If `true`, The checkbox will be checked. This also makes the checkbox controlled
|
|
@@ -3796,124 +3724,7 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
|
3796
3724
|
*
|
|
3797
3725
|
*/
|
|
3798
3726
|
tabIndex?: number | undefined;
|
|
3799
|
-
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
3800
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
3801
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3802
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3803
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3804
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3805
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3806
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3807
|
-
} | undefined;
|
|
3808
|
-
alignItems?: react_native.FlexAlignType | {
|
|
3809
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
3810
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
3811
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
3812
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
3813
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
3814
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
3815
|
-
} | undefined;
|
|
3816
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
3817
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
3818
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
3819
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
3820
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
3821
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
3822
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
3823
|
-
} | undefined;
|
|
3824
|
-
columnGap: SpacingValueType | {
|
|
3825
|
-
readonly base?: SpacingValueType | undefined;
|
|
3826
|
-
readonly xs?: SpacingValueType | undefined;
|
|
3827
|
-
readonly s?: SpacingValueType | undefined;
|
|
3828
|
-
readonly m?: SpacingValueType | undefined;
|
|
3829
|
-
readonly l?: SpacingValueType | undefined;
|
|
3830
|
-
readonly xl?: SpacingValueType | undefined;
|
|
3831
|
-
};
|
|
3832
|
-
flexBasis?: string | number | {
|
|
3833
|
-
readonly base?: string | number | undefined;
|
|
3834
|
-
readonly xs?: string | number | undefined;
|
|
3835
|
-
readonly s?: string | number | undefined;
|
|
3836
|
-
readonly m?: string | number | undefined;
|
|
3837
|
-
readonly l?: string | number | undefined;
|
|
3838
|
-
readonly xl?: string | number | undefined;
|
|
3839
|
-
} | undefined;
|
|
3840
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
3841
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3842
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3843
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3844
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3845
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3846
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3847
|
-
} | undefined;
|
|
3848
|
-
flexGrow?: number | {
|
|
3849
|
-
readonly base?: number | undefined;
|
|
3850
|
-
readonly xs?: number | undefined;
|
|
3851
|
-
readonly s?: number | undefined;
|
|
3852
|
-
readonly m?: number | undefined;
|
|
3853
|
-
readonly l?: number | undefined;
|
|
3854
|
-
readonly xl?: number | undefined;
|
|
3855
|
-
} | undefined;
|
|
3856
|
-
flexShrink?: number | {
|
|
3857
|
-
readonly base?: number | undefined;
|
|
3858
|
-
readonly xs?: number | undefined;
|
|
3859
|
-
readonly s?: number | undefined;
|
|
3860
|
-
readonly m?: number | undefined;
|
|
3861
|
-
readonly l?: number | undefined;
|
|
3862
|
-
readonly xl?: number | undefined;
|
|
3863
|
-
} | undefined;
|
|
3864
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
3865
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3866
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3867
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3868
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3869
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3870
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3871
|
-
} | undefined;
|
|
3872
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
3873
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3874
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3875
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3876
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3877
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3878
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3879
|
-
} | undefined;
|
|
3880
|
-
justifyItems: never;
|
|
3881
|
-
justifySelf: never;
|
|
3882
|
-
order: never;
|
|
3883
|
-
rowGap: SpacingValueType | {
|
|
3884
|
-
readonly base?: SpacingValueType | undefined;
|
|
3885
|
-
readonly xs?: SpacingValueType | undefined;
|
|
3886
|
-
readonly s?: SpacingValueType | undefined;
|
|
3887
|
-
readonly m?: SpacingValueType | undefined;
|
|
3888
|
-
readonly l?: SpacingValueType | undefined;
|
|
3889
|
-
readonly xl?: SpacingValueType | undefined;
|
|
3890
|
-
};
|
|
3891
|
-
flex: string | number | {
|
|
3892
|
-
readonly base?: string | number | undefined;
|
|
3893
|
-
readonly xs?: string | number | undefined;
|
|
3894
|
-
readonly s?: string | number | undefined;
|
|
3895
|
-
readonly m?: string | number | undefined;
|
|
3896
|
-
readonly l?: string | number | undefined;
|
|
3897
|
-
readonly xl?: string | number | undefined;
|
|
3898
|
-
};
|
|
3899
|
-
gap: SpacingValueType | {
|
|
3900
|
-
readonly base?: SpacingValueType | undefined;
|
|
3901
|
-
readonly xs?: SpacingValueType | undefined;
|
|
3902
|
-
readonly s?: SpacingValueType | undefined;
|
|
3903
|
-
readonly m?: SpacingValueType | undefined;
|
|
3904
|
-
readonly l?: SpacingValueType | undefined;
|
|
3905
|
-
readonly xl?: SpacingValueType | undefined;
|
|
3906
|
-
};
|
|
3907
|
-
placeSelf: never;
|
|
3908
|
-
__brand__?: "platform-native" | {
|
|
3909
|
-
readonly base?: "platform-native" | undefined;
|
|
3910
|
-
readonly xs?: "platform-native" | undefined;
|
|
3911
|
-
readonly s?: "platform-native" | undefined;
|
|
3912
|
-
readonly m?: "platform-native" | undefined;
|
|
3913
|
-
readonly l?: "platform-native" | undefined;
|
|
3914
|
-
readonly xl?: "platform-native" | undefined;
|
|
3915
|
-
} | undefined;
|
|
3916
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
3727
|
+
} & TestID & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
3917
3728
|
bottom: SpacingValueType | {
|
|
3918
3729
|
readonly base?: SpacingValueType | undefined;
|
|
3919
3730
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -4074,7 +3885,7 @@ declare type CheckboxGroupProps = {
|
|
|
4074
3885
|
* @default "medium"
|
|
4075
3886
|
*/
|
|
4076
3887
|
size?: 'small' | 'medium';
|
|
4077
|
-
} & TestID & StyledPropsBlade;
|
|
3888
|
+
} & TestID & StyledPropsBlade$1;
|
|
4078
3889
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
4079
3890
|
|
|
4080
3891
|
declare type DividerProps = {
|
|
@@ -4125,7 +3936,7 @@ declare type DropdownProps = {
|
|
|
4125
3936
|
selectionType?: 'single' | 'multiple';
|
|
4126
3937
|
onDismiss?: () => void;
|
|
4127
3938
|
children: React.ReactNode[];
|
|
4128
|
-
} & StyledPropsBlade;
|
|
3939
|
+
} & StyledPropsBlade$1;
|
|
4129
3940
|
declare type DropdownOverlayProps = {
|
|
4130
3941
|
children: React.ReactElement[] | React.ReactElement;
|
|
4131
3942
|
} & TestID;
|
|
@@ -4745,7 +4556,7 @@ declare type IconProps = {
|
|
|
4745
4556
|
*/
|
|
4746
4557
|
color: ActionIconColors | SurfaceActionIconColors | FeedbackIconColors | FeedbackActionIconColors | TextIconColors | BadgeIconColors | 'currentColor';
|
|
4747
4558
|
size: IconSize;
|
|
4748
|
-
} & StyledPropsBlade;
|
|
4559
|
+
} & StyledPropsBlade$1;
|
|
4749
4560
|
declare type IconComponent = React.ComponentType<IconProps>;
|
|
4750
4561
|
|
|
4751
4562
|
declare type FormInputLabelProps = {
|
|
@@ -5025,7 +4836,7 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
5025
4836
|
*/
|
|
5026
4837
|
autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
|
|
5027
4838
|
};
|
|
5028
|
-
}> & StyledPropsBlade;
|
|
4839
|
+
}> & StyledPropsBlade$1;
|
|
5029
4840
|
|
|
5030
4841
|
declare type Type = Exclude<BaseInputProps['type'], 'password'>;
|
|
5031
4842
|
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'> & {
|
|
@@ -5059,8 +4870,8 @@ declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | '
|
|
|
5059
4870
|
* @default text
|
|
5060
4871
|
*/
|
|
5061
4872
|
type?: Type;
|
|
5062
|
-
} & StyledPropsBlade;
|
|
5063
|
-
declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "value" | "label" | "
|
|
4873
|
+
} & StyledPropsBlade$1;
|
|
4874
|
+
declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoCapitalize" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & {
|
|
5064
4875
|
/**
|
|
5065
4876
|
* Decides whether to render a clear icon button
|
|
5066
4877
|
*/
|
|
@@ -5091,124 +4902,7 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
|
|
|
5091
4902
|
* @default text
|
|
5092
4903
|
*/
|
|
5093
4904
|
type?: Type;
|
|
5094
|
-
} & Partial<Omit<MarginProps & Pick<{
|
|
5095
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
5096
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5097
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5098
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5099
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5100
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5101
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5102
|
-
} | undefined;
|
|
5103
|
-
alignItems?: react_native.FlexAlignType | {
|
|
5104
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
5105
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
5106
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
5107
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
5108
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
5109
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
5110
|
-
} | undefined;
|
|
5111
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
5112
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
5113
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
5114
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
5115
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
5116
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
5117
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
5118
|
-
} | undefined;
|
|
5119
|
-
columnGap: SpacingValueType | {
|
|
5120
|
-
readonly base?: SpacingValueType | undefined;
|
|
5121
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5122
|
-
readonly s?: SpacingValueType | undefined;
|
|
5123
|
-
readonly m?: SpacingValueType | undefined;
|
|
5124
|
-
readonly l?: SpacingValueType | undefined;
|
|
5125
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5126
|
-
};
|
|
5127
|
-
flexBasis?: string | number | {
|
|
5128
|
-
readonly base?: string | number | undefined;
|
|
5129
|
-
readonly xs?: string | number | undefined;
|
|
5130
|
-
readonly s?: string | number | undefined;
|
|
5131
|
-
readonly m?: string | number | undefined;
|
|
5132
|
-
readonly l?: string | number | undefined;
|
|
5133
|
-
readonly xl?: string | number | undefined;
|
|
5134
|
-
} | undefined;
|
|
5135
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
5136
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5137
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5138
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5139
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5140
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5141
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5142
|
-
} | undefined;
|
|
5143
|
-
flexGrow?: number | {
|
|
5144
|
-
readonly base?: number | undefined;
|
|
5145
|
-
readonly xs?: number | undefined;
|
|
5146
|
-
readonly s?: number | undefined;
|
|
5147
|
-
readonly m?: number | undefined;
|
|
5148
|
-
readonly l?: number | undefined;
|
|
5149
|
-
readonly xl?: number | undefined;
|
|
5150
|
-
} | undefined;
|
|
5151
|
-
flexShrink?: number | {
|
|
5152
|
-
readonly base?: number | undefined;
|
|
5153
|
-
readonly xs?: number | undefined;
|
|
5154
|
-
readonly s?: number | undefined;
|
|
5155
|
-
readonly m?: number | undefined;
|
|
5156
|
-
readonly l?: number | undefined;
|
|
5157
|
-
readonly xl?: number | undefined;
|
|
5158
|
-
} | undefined;
|
|
5159
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
5160
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5161
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5162
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5163
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5164
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5165
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5166
|
-
} | undefined;
|
|
5167
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
5168
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5169
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5170
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5171
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5172
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5173
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5174
|
-
} | undefined;
|
|
5175
|
-
justifyItems: never;
|
|
5176
|
-
justifySelf: never;
|
|
5177
|
-
order: never;
|
|
5178
|
-
rowGap: SpacingValueType | {
|
|
5179
|
-
readonly base?: SpacingValueType | undefined;
|
|
5180
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5181
|
-
readonly s?: SpacingValueType | undefined;
|
|
5182
|
-
readonly m?: SpacingValueType | undefined;
|
|
5183
|
-
readonly l?: SpacingValueType | undefined;
|
|
5184
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5185
|
-
};
|
|
5186
|
-
flex: string | number | {
|
|
5187
|
-
readonly base?: string | number | undefined;
|
|
5188
|
-
readonly xs?: string | number | undefined;
|
|
5189
|
-
readonly s?: string | number | undefined;
|
|
5190
|
-
readonly m?: string | number | undefined;
|
|
5191
|
-
readonly l?: string | number | undefined;
|
|
5192
|
-
readonly xl?: string | number | undefined;
|
|
5193
|
-
};
|
|
5194
|
-
gap: SpacingValueType | {
|
|
5195
|
-
readonly base?: SpacingValueType | undefined;
|
|
5196
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5197
|
-
readonly s?: SpacingValueType | undefined;
|
|
5198
|
-
readonly m?: SpacingValueType | undefined;
|
|
5199
|
-
readonly l?: SpacingValueType | undefined;
|
|
5200
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5201
|
-
};
|
|
5202
|
-
placeSelf: never;
|
|
5203
|
-
__brand__?: "platform-native" | {
|
|
5204
|
-
readonly base?: "platform-native" | undefined;
|
|
5205
|
-
readonly xs?: "platform-native" | undefined;
|
|
5206
|
-
readonly s?: "platform-native" | undefined;
|
|
5207
|
-
readonly m?: "platform-native" | undefined;
|
|
5208
|
-
readonly l?: "platform-native" | undefined;
|
|
5209
|
-
readonly xl?: "platform-native" | undefined;
|
|
5210
|
-
} | undefined;
|
|
5211
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
4905
|
+
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5212
4906
|
bottom: SpacingValueType | {
|
|
5213
4907
|
readonly base?: SpacingValueType | undefined;
|
|
5214
4908
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -5321,125 +5015,8 @@ declare type PasswordInputExtraProps = {
|
|
|
5321
5015
|
*/
|
|
5322
5016
|
autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
|
|
5323
5017
|
};
|
|
5324
|
-
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;
|
|
5325
|
-
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "
|
|
5326
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
5327
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5328
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5329
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5330
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5331
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5332
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5333
|
-
} | undefined;
|
|
5334
|
-
alignItems?: react_native.FlexAlignType | {
|
|
5335
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
5336
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
5337
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
5338
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
5339
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
5340
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
5341
|
-
} | undefined;
|
|
5342
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
5343
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
5344
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
5345
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
5346
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
5347
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
5348
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
5349
|
-
} | undefined;
|
|
5350
|
-
columnGap: SpacingValueType | {
|
|
5351
|
-
readonly base?: SpacingValueType | undefined;
|
|
5352
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5353
|
-
readonly s?: SpacingValueType | undefined;
|
|
5354
|
-
readonly m?: SpacingValueType | undefined;
|
|
5355
|
-
readonly l?: SpacingValueType | undefined;
|
|
5356
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5357
|
-
};
|
|
5358
|
-
flexBasis?: string | number | {
|
|
5359
|
-
readonly base?: string | number | undefined;
|
|
5360
|
-
readonly xs?: string | number | undefined;
|
|
5361
|
-
readonly s?: string | number | undefined;
|
|
5362
|
-
readonly m?: string | number | undefined;
|
|
5363
|
-
readonly l?: string | number | undefined;
|
|
5364
|
-
readonly xl?: string | number | undefined;
|
|
5365
|
-
} | undefined;
|
|
5366
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
5367
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5368
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5369
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5370
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5371
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5372
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5373
|
-
} | undefined;
|
|
5374
|
-
flexGrow?: number | {
|
|
5375
|
-
readonly base?: number | undefined;
|
|
5376
|
-
readonly xs?: number | undefined;
|
|
5377
|
-
readonly s?: number | undefined;
|
|
5378
|
-
readonly m?: number | undefined;
|
|
5379
|
-
readonly l?: number | undefined;
|
|
5380
|
-
readonly xl?: number | undefined;
|
|
5381
|
-
} | undefined;
|
|
5382
|
-
flexShrink?: number | {
|
|
5383
|
-
readonly base?: number | undefined;
|
|
5384
|
-
readonly xs?: number | undefined;
|
|
5385
|
-
readonly s?: number | undefined;
|
|
5386
|
-
readonly m?: number | undefined;
|
|
5387
|
-
readonly l?: number | undefined;
|
|
5388
|
-
readonly xl?: number | undefined;
|
|
5389
|
-
} | undefined;
|
|
5390
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
5391
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5392
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5393
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5394
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5395
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5396
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5397
|
-
} | undefined;
|
|
5398
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
5399
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5400
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5401
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5402
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5403
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5404
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5405
|
-
} | undefined;
|
|
5406
|
-
justifyItems: never;
|
|
5407
|
-
justifySelf: never;
|
|
5408
|
-
order: never;
|
|
5409
|
-
rowGap: SpacingValueType | {
|
|
5410
|
-
readonly base?: SpacingValueType | undefined;
|
|
5411
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5412
|
-
readonly s?: SpacingValueType | undefined;
|
|
5413
|
-
readonly m?: SpacingValueType | undefined;
|
|
5414
|
-
readonly l?: SpacingValueType | undefined;
|
|
5415
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5416
|
-
};
|
|
5417
|
-
flex: string | number | {
|
|
5418
|
-
readonly base?: string | number | undefined;
|
|
5419
|
-
readonly xs?: string | number | undefined;
|
|
5420
|
-
readonly s?: string | number | undefined;
|
|
5421
|
-
readonly m?: string | number | undefined;
|
|
5422
|
-
readonly l?: string | number | undefined;
|
|
5423
|
-
readonly xl?: string | number | undefined;
|
|
5424
|
-
};
|
|
5425
|
-
gap: SpacingValueType | {
|
|
5426
|
-
readonly base?: SpacingValueType | undefined;
|
|
5427
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5428
|
-
readonly s?: SpacingValueType | undefined;
|
|
5429
|
-
readonly m?: SpacingValueType | undefined;
|
|
5430
|
-
readonly l?: SpacingValueType | undefined;
|
|
5431
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5432
|
-
};
|
|
5433
|
-
placeSelf: never;
|
|
5434
|
-
__brand__?: "platform-native" | {
|
|
5435
|
-
readonly base?: "platform-native" | undefined;
|
|
5436
|
-
readonly xs?: "platform-native" | undefined;
|
|
5437
|
-
readonly s?: "platform-native" | undefined;
|
|
5438
|
-
readonly m?: "platform-native" | undefined;
|
|
5439
|
-
readonly l?: "platform-native" | undefined;
|
|
5440
|
-
readonly xl?: "platform-native" | undefined;
|
|
5441
|
-
} | undefined;
|
|
5442
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5018
|
+
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;
|
|
5019
|
+
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "helpText" | "errorText" | "successText" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5443
5020
|
bottom: SpacingValueType | {
|
|
5444
5021
|
readonly base?: SpacingValueType | undefined;
|
|
5445
5022
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -5531,8 +5108,8 @@ declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'n
|
|
|
5531
5108
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5532
5109
|
*/
|
|
5533
5110
|
onClearButtonClick?: () => void;
|
|
5534
|
-
} & StyledPropsBlade;
|
|
5535
|
-
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "
|
|
5111
|
+
} & StyledPropsBlade$1;
|
|
5112
|
+
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
|
|
5536
5113
|
/**
|
|
5537
5114
|
* Decides whether to render a clear icon button
|
|
5538
5115
|
*/
|
|
@@ -5541,124 +5118,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
5541
5118
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5542
5119
|
*/
|
|
5543
5120
|
onClearButtonClick?: (() => void) | undefined;
|
|
5544
|
-
} & Partial<Omit<MarginProps & Pick<{
|
|
5545
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
5546
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5547
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5548
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5549
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5550
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5551
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5552
|
-
} | undefined;
|
|
5553
|
-
alignItems?: react_native.FlexAlignType | {
|
|
5554
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
5555
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
5556
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
5557
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
5558
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
5559
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
5560
|
-
} | undefined;
|
|
5561
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
5562
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
5563
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
5564
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
5565
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
5566
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
5567
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
5568
|
-
} | undefined;
|
|
5569
|
-
columnGap: SpacingValueType | {
|
|
5570
|
-
readonly base?: SpacingValueType | undefined;
|
|
5571
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5572
|
-
readonly s?: SpacingValueType | undefined;
|
|
5573
|
-
readonly m?: SpacingValueType | undefined;
|
|
5574
|
-
readonly l?: SpacingValueType | undefined;
|
|
5575
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5576
|
-
};
|
|
5577
|
-
flexBasis?: string | number | {
|
|
5578
|
-
readonly base?: string | number | undefined;
|
|
5579
|
-
readonly xs?: string | number | undefined;
|
|
5580
|
-
readonly s?: string | number | undefined;
|
|
5581
|
-
readonly m?: string | number | undefined;
|
|
5582
|
-
readonly l?: string | number | undefined;
|
|
5583
|
-
readonly xl?: string | number | undefined;
|
|
5584
|
-
} | undefined;
|
|
5585
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
5586
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5587
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5588
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5589
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5590
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5591
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5592
|
-
} | undefined;
|
|
5593
|
-
flexGrow?: number | {
|
|
5594
|
-
readonly base?: number | undefined;
|
|
5595
|
-
readonly xs?: number | undefined;
|
|
5596
|
-
readonly s?: number | undefined;
|
|
5597
|
-
readonly m?: number | undefined;
|
|
5598
|
-
readonly l?: number | undefined;
|
|
5599
|
-
readonly xl?: number | undefined;
|
|
5600
|
-
} | undefined;
|
|
5601
|
-
flexShrink?: number | {
|
|
5602
|
-
readonly base?: number | undefined;
|
|
5603
|
-
readonly xs?: number | undefined;
|
|
5604
|
-
readonly s?: number | undefined;
|
|
5605
|
-
readonly m?: number | undefined;
|
|
5606
|
-
readonly l?: number | undefined;
|
|
5607
|
-
readonly xl?: number | undefined;
|
|
5608
|
-
} | undefined;
|
|
5609
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
5610
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5611
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5612
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5613
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5614
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5615
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5616
|
-
} | undefined;
|
|
5617
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
5618
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5619
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5620
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5621
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5622
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5623
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5624
|
-
} | undefined;
|
|
5625
|
-
justifyItems: never;
|
|
5626
|
-
justifySelf: never;
|
|
5627
|
-
order: never;
|
|
5628
|
-
rowGap: SpacingValueType | {
|
|
5629
|
-
readonly base?: SpacingValueType | undefined;
|
|
5630
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5631
|
-
readonly s?: SpacingValueType | undefined;
|
|
5632
|
-
readonly m?: SpacingValueType | undefined;
|
|
5633
|
-
readonly l?: SpacingValueType | undefined;
|
|
5634
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5635
|
-
};
|
|
5636
|
-
flex: string | number | {
|
|
5637
|
-
readonly base?: string | number | undefined;
|
|
5638
|
-
readonly xs?: string | number | undefined;
|
|
5639
|
-
readonly s?: string | number | undefined;
|
|
5640
|
-
readonly m?: string | number | undefined;
|
|
5641
|
-
readonly l?: string | number | undefined;
|
|
5642
|
-
readonly xl?: string | number | undefined;
|
|
5643
|
-
};
|
|
5644
|
-
gap: SpacingValueType | {
|
|
5645
|
-
readonly base?: SpacingValueType | undefined;
|
|
5646
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5647
|
-
readonly s?: SpacingValueType | undefined;
|
|
5648
|
-
readonly m?: SpacingValueType | undefined;
|
|
5649
|
-
readonly l?: SpacingValueType | undefined;
|
|
5650
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5651
|
-
};
|
|
5652
|
-
placeSelf: never;
|
|
5653
|
-
__brand__?: "platform-native" | {
|
|
5654
|
-
readonly base?: "platform-native" | undefined;
|
|
5655
|
-
readonly xs?: "platform-native" | undefined;
|
|
5656
|
-
readonly s?: "platform-native" | undefined;
|
|
5657
|
-
readonly m?: "platform-native" | undefined;
|
|
5658
|
-
readonly l?: "platform-native" | undefined;
|
|
5659
|
-
readonly xl?: "platform-native" | undefined;
|
|
5660
|
-
} | undefined;
|
|
5661
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5121
|
+
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5662
5122
|
bottom: SpacingValueType | {
|
|
5663
5123
|
readonly base?: SpacingValueType | undefined;
|
|
5664
5124
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -5782,7 +5242,7 @@ declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'v
|
|
|
5782
5242
|
* The callback function to be invoked when one of the input fields is blurred
|
|
5783
5243
|
*/
|
|
5784
5244
|
onBlur?: FormInputOnEventWithIndex;
|
|
5785
|
-
} & StyledPropsBlade;
|
|
5245
|
+
} & StyledPropsBlade$1;
|
|
5786
5246
|
/**
|
|
5787
5247
|
* OTPInput component can be used for accepting OTPs sent to users for authentication/verification purposes.
|
|
5788
5248
|
*
|
|
@@ -5843,7 +5303,7 @@ declare type SelectInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' |
|
|
|
5843
5303
|
*
|
|
5844
5304
|
* Checkout {@link https://blade.razorpay.com/?path=/docs/components-dropdown-with-select--with-single-select SelectInput Documentation}.
|
|
5845
5305
|
*/
|
|
5846
|
-
declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "label" | "
|
|
5306
|
+
declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "label" | "onBlur" | "onFocus" | "onClick" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix"> & {
|
|
5847
5307
|
icon?: IconComponent$1 | undefined;
|
|
5848
5308
|
/**
|
|
5849
5309
|
* Controlled value of the Select. Use it in combination of `onChange`.
|
|
@@ -5874,7 +5334,7 @@ declare type IndicatorCommonProps = {
|
|
|
5874
5334
|
* @default medium
|
|
5875
5335
|
*/
|
|
5876
5336
|
size?: 'small' | 'medium' | 'large';
|
|
5877
|
-
} & TestID & StyledPropsBlade;
|
|
5337
|
+
} & TestID & StyledPropsBlade$1;
|
|
5878
5338
|
declare type IndicatorWithoutA11yLabel = {
|
|
5879
5339
|
/**
|
|
5880
5340
|
* A text label to show alongside the indicator dot
|
|
@@ -5935,7 +5395,7 @@ declare type ListCommonProps = {
|
|
|
5935
5395
|
* @default 'medium'
|
|
5936
5396
|
*/
|
|
5937
5397
|
size?: 'small' | 'medium';
|
|
5938
|
-
} & TestID & StyledPropsBlade;
|
|
5398
|
+
} & TestID & StyledPropsBlade$1;
|
|
5939
5399
|
declare type ListWithIconProps = ListCommonProps & {
|
|
5940
5400
|
variant?: 'unordered';
|
|
5941
5401
|
icon?: IconComponent;
|
|
@@ -5981,7 +5441,7 @@ declare type BaseTextProps = {
|
|
|
5981
5441
|
*/
|
|
5982
5442
|
numberOfLines?: number;
|
|
5983
5443
|
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
5984
|
-
} & TestID & StyledPropsBlade;
|
|
5444
|
+
} & TestID & StyledPropsBlade$1;
|
|
5985
5445
|
|
|
5986
5446
|
declare const validAsValues$2: readonly ["span", "h1", "h2", "h3", "h4", "h5", "h6"];
|
|
5987
5447
|
declare type TitleProps = {
|
|
@@ -5998,7 +5458,7 @@ declare type TitleProps = {
|
|
|
5998
5458
|
children: React.ReactNode;
|
|
5999
5459
|
textAlign?: BaseTextProps['textAlign'];
|
|
6000
5460
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6001
|
-
} & TestID & StyledPropsBlade;
|
|
5461
|
+
} & TestID & StyledPropsBlade$1;
|
|
6002
5462
|
declare const Title: ({ as, size, type, contrast, color, children, testID, textAlign, textDecorationLine, ...styledProps }: TitleProps) => ReactElement;
|
|
6003
5463
|
|
|
6004
5464
|
declare type HeadingVariant = 'regular' | 'subheading';
|
|
@@ -6017,7 +5477,7 @@ declare type HeadingCommonProps = {
|
|
|
6017
5477
|
children: React.ReactNode;
|
|
6018
5478
|
textAlign?: BaseTextProps['textAlign'];
|
|
6019
5479
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6020
|
-
} & TestID & StyledPropsBlade;
|
|
5480
|
+
} & TestID & StyledPropsBlade$1;
|
|
6021
5481
|
declare type HeadingNormalVariant = HeadingCommonProps & {
|
|
6022
5482
|
variant?: Exclude<HeadingVariant, 'subheading'>;
|
|
6023
5483
|
/**
|
|
@@ -6062,7 +5522,7 @@ declare type TextCommonProps = {
|
|
|
6062
5522
|
color?: BaseTextProps['color'];
|
|
6063
5523
|
textAlign?: BaseTextProps['textAlign'];
|
|
6064
5524
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6065
|
-
} & TestID & StyledPropsBlade;
|
|
5525
|
+
} & TestID & StyledPropsBlade$1;
|
|
6066
5526
|
declare type TextVariant = 'body' | 'caption';
|
|
6067
5527
|
declare type TextBodyVariant = TextCommonProps & {
|
|
6068
5528
|
variant?: Extract<TextVariant, 'body'>;
|
|
@@ -6104,7 +5564,7 @@ declare type CodeCommonProps = {
|
|
|
6104
5564
|
weight?: 'regular' | 'bold';
|
|
6105
5565
|
isHighlighted?: boolean;
|
|
6106
5566
|
color?: BaseTextProps['color'];
|
|
6107
|
-
} & TestID & StyledPropsBlade;
|
|
5567
|
+
} & TestID & StyledPropsBlade$1;
|
|
6108
5568
|
declare type CodeHighlightedProps = CodeCommonProps & {
|
|
6109
5569
|
/**
|
|
6110
5570
|
* Adds background color to highlight the text
|
|
@@ -6227,7 +5687,7 @@ declare type ProgressBarCommonProps = {
|
|
|
6227
5687
|
* @default 100
|
|
6228
5688
|
*/
|
|
6229
5689
|
max?: number;
|
|
6230
|
-
} & TestID & StyledPropsBlade;
|
|
5690
|
+
} & TestID & StyledPropsBlade$1;
|
|
6231
5691
|
declare type ProgressBarVariant = 'progress' | 'meter';
|
|
6232
5692
|
declare type ProgressBarProgressProps = ProgressBarCommonProps & {
|
|
6233
5693
|
/**
|
|
@@ -6292,7 +5752,7 @@ declare type RadioProps = {
|
|
|
6292
5752
|
* @default "medium"
|
|
6293
5753
|
*/
|
|
6294
5754
|
size?: 'small' | 'medium';
|
|
6295
|
-
} & TestID & StyledPropsBlade;
|
|
5755
|
+
} & TestID & StyledPropsBlade$1;
|
|
6296
5756
|
declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
6297
5757
|
/**
|
|
6298
5758
|
* Sets the label text of the Radio
|
|
@@ -6319,124 +5779,7 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
|
6319
5779
|
* @default "medium"
|
|
6320
5780
|
*/
|
|
6321
5781
|
size?: "small" | "medium" | undefined;
|
|
6322
|
-
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
6323
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
6324
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6325
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6326
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6327
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6328
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6329
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6330
|
-
} | undefined;
|
|
6331
|
-
alignItems?: react_native.FlexAlignType | {
|
|
6332
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
6333
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
6334
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
6335
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
6336
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
6337
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
6338
|
-
} | undefined;
|
|
6339
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
6340
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
6341
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
6342
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
6343
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
6344
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
6345
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
6346
|
-
} | undefined;
|
|
6347
|
-
columnGap: SpacingValueType | {
|
|
6348
|
-
readonly base?: SpacingValueType | undefined;
|
|
6349
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6350
|
-
readonly s?: SpacingValueType | undefined;
|
|
6351
|
-
readonly m?: SpacingValueType | undefined;
|
|
6352
|
-
readonly l?: SpacingValueType | undefined;
|
|
6353
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6354
|
-
};
|
|
6355
|
-
flexBasis?: string | number | {
|
|
6356
|
-
readonly base?: string | number | undefined;
|
|
6357
|
-
readonly xs?: string | number | undefined;
|
|
6358
|
-
readonly s?: string | number | undefined;
|
|
6359
|
-
readonly m?: string | number | undefined;
|
|
6360
|
-
readonly l?: string | number | undefined;
|
|
6361
|
-
readonly xl?: string | number | undefined;
|
|
6362
|
-
} | undefined;
|
|
6363
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
6364
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6365
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6366
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6367
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6368
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6369
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6370
|
-
} | undefined;
|
|
6371
|
-
flexGrow?: number | {
|
|
6372
|
-
readonly base?: number | undefined;
|
|
6373
|
-
readonly xs?: number | undefined;
|
|
6374
|
-
readonly s?: number | undefined;
|
|
6375
|
-
readonly m?: number | undefined;
|
|
6376
|
-
readonly l?: number | undefined;
|
|
6377
|
-
readonly xl?: number | undefined;
|
|
6378
|
-
} | undefined;
|
|
6379
|
-
flexShrink?: number | {
|
|
6380
|
-
readonly base?: number | undefined;
|
|
6381
|
-
readonly xs?: number | undefined;
|
|
6382
|
-
readonly s?: number | undefined;
|
|
6383
|
-
readonly m?: number | undefined;
|
|
6384
|
-
readonly l?: number | undefined;
|
|
6385
|
-
readonly xl?: number | undefined;
|
|
6386
|
-
} | undefined;
|
|
6387
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
6388
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6389
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6390
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6391
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6392
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6393
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6394
|
-
} | undefined;
|
|
6395
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
6396
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6397
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6398
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6399
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6400
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6401
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6402
|
-
} | undefined;
|
|
6403
|
-
justifyItems: never;
|
|
6404
|
-
justifySelf: never;
|
|
6405
|
-
order: never;
|
|
6406
|
-
rowGap: SpacingValueType | {
|
|
6407
|
-
readonly base?: SpacingValueType | undefined;
|
|
6408
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6409
|
-
readonly s?: SpacingValueType | undefined;
|
|
6410
|
-
readonly m?: SpacingValueType | undefined;
|
|
6411
|
-
readonly l?: SpacingValueType | undefined;
|
|
6412
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6413
|
-
};
|
|
6414
|
-
flex: string | number | {
|
|
6415
|
-
readonly base?: string | number | undefined;
|
|
6416
|
-
readonly xs?: string | number | undefined;
|
|
6417
|
-
readonly s?: string | number | undefined;
|
|
6418
|
-
readonly m?: string | number | undefined;
|
|
6419
|
-
readonly l?: string | number | undefined;
|
|
6420
|
-
readonly xl?: string | number | undefined;
|
|
6421
|
-
};
|
|
6422
|
-
gap: SpacingValueType | {
|
|
6423
|
-
readonly base?: SpacingValueType | undefined;
|
|
6424
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6425
|
-
readonly s?: SpacingValueType | undefined;
|
|
6426
|
-
readonly m?: SpacingValueType | undefined;
|
|
6427
|
-
readonly l?: SpacingValueType | undefined;
|
|
6428
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6429
|
-
};
|
|
6430
|
-
placeSelf: never;
|
|
6431
|
-
__brand__?: "platform-native" | {
|
|
6432
|
-
readonly base?: "platform-native" | undefined;
|
|
6433
|
-
readonly xs?: "platform-native" | undefined;
|
|
6434
|
-
readonly s?: "platform-native" | undefined;
|
|
6435
|
-
readonly m?: "platform-native" | undefined;
|
|
6436
|
-
readonly l?: "platform-native" | undefined;
|
|
6437
|
-
readonly xl?: "platform-native" | undefined;
|
|
6438
|
-
} | undefined;
|
|
6439
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5782
|
+
} & TestID & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
6440
5783
|
bottom: SpacingValueType | {
|
|
6441
5784
|
readonly base?: SpacingValueType | undefined;
|
|
6442
5785
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -6597,7 +5940,7 @@ declare type RadioGroupProps = {
|
|
|
6597
5940
|
* @default "medium"
|
|
6598
5941
|
*/
|
|
6599
5942
|
size?: 'small' | 'medium';
|
|
6600
|
-
} & TestID & StyledPropsBlade;
|
|
5943
|
+
} & TestID & StyledPropsBlade$1;
|
|
6601
5944
|
declare const RadioGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: RadioGroupProps) => React__default.ReactElement;
|
|
6602
5945
|
|
|
6603
5946
|
declare type BaseSpinnerProps = {
|
|
@@ -6630,7 +5973,7 @@ declare type BaseSpinnerProps = {
|
|
|
6630
5973
|
*
|
|
6631
5974
|
*/
|
|
6632
5975
|
accessibilityLabel: string;
|
|
6633
|
-
} & TestID & StyledPropsBlade;
|
|
5976
|
+
} & TestID & StyledPropsBlade$1;
|
|
6634
5977
|
|
|
6635
5978
|
declare type SpinnerProps = Omit<BaseSpinnerProps, 'intent'>;
|
|
6636
5979
|
declare const Spinner: ({ label, labelPosition, accessibilityLabel, contrast, size, testID, ...styledProps }: SpinnerProps) => React.ReactElement;
|
|
@@ -6700,6 +6043,13 @@ declare type SwitchProps = {
|
|
|
6700
6043
|
|
|
6701
6044
|
declare const Switch: React__default.ForwardRefExoticComponent<SwitchProps & React__default.RefAttributes<BladeElementRef>>;
|
|
6702
6045
|
|
|
6046
|
+
declare type SkeletonProps = StyledPropsBlade & Pick<BaseBoxProps, 'width' | 'maxWidth' | 'minWidth' | 'height' | 'maxHeight' | 'minHeight' | 'borderRadius'> & Partial<FlexboxProps> & {
|
|
6047
|
+
contrast?: 'low' | 'high';
|
|
6048
|
+
testID?: string;
|
|
6049
|
+
};
|
|
6050
|
+
|
|
6051
|
+
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;
|
|
6052
|
+
|
|
6703
6053
|
declare type VisuallyHiddenProps = {
|
|
6704
6054
|
children: React.ReactNode;
|
|
6705
6055
|
} & TestID;
|
|
@@ -6755,7 +6105,7 @@ declare type AmountProps = {
|
|
|
6755
6105
|
* @default 'INR'
|
|
6756
6106
|
* */
|
|
6757
6107
|
currency?: Currency;
|
|
6758
|
-
} & TestID & StyledPropsBlade;
|
|
6108
|
+
} & TestID & StyledPropsBlade$1;
|
|
6759
6109
|
declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
|
|
6760
6110
|
|
|
6761
6111
|
declare type SnapPoints = [number, number, number];
|
|
@@ -6849,7 +6199,7 @@ declare type AccordionProps = {
|
|
|
6849
6199
|
* Accepts `AccordionItem` child nodes
|
|
6850
6200
|
*/
|
|
6851
6201
|
children: ReactElement | ReactElement[];
|
|
6852
|
-
} & TestID & StyledPropsBlade;
|
|
6202
|
+
} & TestID & StyledPropsBlade$1;
|
|
6853
6203
|
declare const Accordion: ({ defaultExpandedIndex, expandedIndex, onExpandChange, showNumberPrefix, children, testID, ...styledProps }: AccordionProps) => ReactElement;
|
|
6854
6204
|
|
|
6855
6205
|
declare type AccordionItemProps = {
|
|
@@ -6912,7 +6262,7 @@ declare type CollapsibleProps = {
|
|
|
6912
6262
|
* **Internal**: used to override responsive width restrictions
|
|
6913
6263
|
*/
|
|
6914
6264
|
_shouldApplyWidthRestrictions?: boolean;
|
|
6915
|
-
} & TestID & StyledPropsBlade;
|
|
6265
|
+
} & TestID & StyledPropsBlade$1;
|
|
6916
6266
|
declare const Collapsible: ({ children, direction, defaultIsExpanded, isExpanded, onExpandChange, testID, _shouldApplyWidthRestrictions, ...styledProps }: CollapsibleProps) => ReactElement;
|
|
6917
6267
|
|
|
6918
6268
|
declare type CollapsibleLinkProps = Pick<LinkProps, 'size' | 'isDisabled' | 'testID' | 'accessibilityLabel' | 'children'>;
|
|
@@ -6926,7 +6276,7 @@ declare type CollapsibleBodyProps = {
|
|
|
6926
6276
|
/**
|
|
6927
6277
|
* **Internal**: used for React Native specific workarounds. Collapsible automatically takes care of width, you shouldn't need to configure this
|
|
6928
6278
|
*/
|
|
6929
|
-
_width?: BaseBoxProps['width'];
|
|
6279
|
+
_width?: BaseBoxProps$1['width'];
|
|
6930
6280
|
} & TestID;
|
|
6931
6281
|
declare const CollapsibleBody: ({ children, testID, _width }: CollapsibleBodyProps) => ReactElement;
|
|
6932
6282
|
|
|
@@ -6986,4 +6336,4 @@ declare type BladeCommonEvents = {
|
|
|
6986
6336
|
}>;
|
|
6987
6337
|
};
|
|
6988
6338
|
|
|
6989
|
-
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 };
|
|
6339
|
+
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 };
|