@razorpay/blade 8.13.0 → 8.15.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 +168 -156
- package/build/components/index.native.d.ts +130 -113
- package/build/components/index.native.js +70 -78
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +5189 -5290
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +2 -1
- package/build/css/bankingThemeDarkMobile.css +2 -1
- package/build/css/bankingThemeLightDesktop.css +2 -1
- package/build/css/bankingThemeLightMobile.css +2 -1
- package/build/css/paymentThemeDarkDesktop.css +2 -1
- package/build/css/paymentThemeDarkMobile.css +2 -1
- package/build/css/paymentThemeLightDesktop.css +2 -1
- package/build/css/paymentThemeLightMobile.css +2 -1
- package/build/tokens/index.d.ts +4 -0
- package/build/tokens/index.native.d.ts +4 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +1 -0
- package/build/tokens/index.web.js.map +1 -1
- package/package.json +1 -1
|
@@ -25,6 +25,8 @@ type BorderRadius = Readonly<{
|
|
|
25
25
|
type BorderWidth = Readonly<{
|
|
26
26
|
/** none: 0(px/rem/pt) */
|
|
27
27
|
none: 0;
|
|
28
|
+
/** thinner: 0.5(px/rem/pt) */
|
|
29
|
+
thinner: 0.5;
|
|
28
30
|
/** thin: 1(px/rem/pt) */
|
|
29
31
|
thin: 1;
|
|
30
32
|
/** thick: 1.5(px/rem/pt) */
|
|
@@ -1930,40 +1932,6 @@ declare const ActionListItemText: ({ children, }: {
|
|
|
1930
1932
|
}) => React__default.ReactElement;
|
|
1931
1933
|
declare const ActionListItem: React__default.MemoExoticComponent<(props: ActionListItemProps) => JSX.Element>;
|
|
1932
1934
|
|
|
1933
|
-
declare type ActionListHeaderProps = {
|
|
1934
|
-
title: string;
|
|
1935
|
-
/**
|
|
1936
|
-
* Asset to be added on left side of Header.
|
|
1937
|
-
*
|
|
1938
|
-
* Valid children - `ActionListHeaderIcon`
|
|
1939
|
-
*/
|
|
1940
|
-
leading?: React__default.ReactNode;
|
|
1941
|
-
} & TestID;
|
|
1942
|
-
declare const ActionListHeader: (props: ActionListHeaderProps) => JSX.Element;
|
|
1943
|
-
declare const ActionListHeaderIcon: ({ icon }: {
|
|
1944
|
-
icon: IconComponent$1;
|
|
1945
|
-
}) => React__default.ReactElement;
|
|
1946
|
-
|
|
1947
|
-
declare type ActionListFooterProps = {
|
|
1948
|
-
title?: string;
|
|
1949
|
-
/**
|
|
1950
|
-
* Asset to be added on left side of Footer.
|
|
1951
|
-
*
|
|
1952
|
-
* Valid children - `ActionListFooterIcon`
|
|
1953
|
-
*/
|
|
1954
|
-
leading?: React__default.ReactNode;
|
|
1955
|
-
/**
|
|
1956
|
-
* Elements to be added on right side of Footer.
|
|
1957
|
-
*
|
|
1958
|
-
* Anything can be passed here but maybe don't? Should ideally have Button or Tick Icon Buttons.
|
|
1959
|
-
*/
|
|
1960
|
-
trailing?: React__default.ReactNode;
|
|
1961
|
-
} & TestID;
|
|
1962
|
-
declare const ActionListFooter: (props: ActionListFooterProps) => JSX.Element;
|
|
1963
|
-
declare const ActionListFooterIcon: ({ icon }: {
|
|
1964
|
-
icon: IconComponent$1;
|
|
1965
|
-
}) => React__default.ReactElement;
|
|
1966
|
-
|
|
1967
1935
|
declare type ActionListItemAssetProps = {
|
|
1968
1936
|
/**
|
|
1969
1937
|
* Source of the image.
|
|
@@ -3018,13 +2986,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3018
2986
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3019
2987
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3020
2988
|
};
|
|
3021
|
-
borderBottomWidth: "none" | "thin" | "thick" | {
|
|
3022
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3023
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3024
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3025
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3026
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3027
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
2989
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
2990
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
2991
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
2992
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
2993
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
2994
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
2995
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3028
2996
|
};
|
|
3029
2997
|
borderLeftColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3030
2998
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3034,13 +3002,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3034
3002
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3035
3003
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3036
3004
|
};
|
|
3037
|
-
borderLeftWidth: "none" | "thin" | "thick" | {
|
|
3038
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3039
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3040
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3041
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3042
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3043
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3005
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3006
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3007
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3008
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3009
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3010
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3011
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3044
3012
|
};
|
|
3045
3013
|
borderRightColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3046
3014
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3050,13 +3018,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3050
3018
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3051
3019
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3052
3020
|
};
|
|
3053
|
-
borderRightWidth: "none" | "thin" | "thick" | {
|
|
3054
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3055
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3056
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3057
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3058
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3059
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3021
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3022
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3023
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3024
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3025
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3026
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3027
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3060
3028
|
};
|
|
3061
3029
|
borderTopColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3062
3030
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3082,13 +3050,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3082
3050
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3083
3051
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3084
3052
|
};
|
|
3085
|
-
borderTopWidth: "none" | "thin" | "thick" | {
|
|
3086
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3087
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3088
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3089
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3090
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3091
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3053
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3054
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3055
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3056
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3057
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3058
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3059
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3092
3060
|
};
|
|
3093
3061
|
backgroundPosition: never;
|
|
3094
3062
|
borderColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
@@ -3107,13 +3075,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3107
3075
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3108
3076
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3109
3077
|
};
|
|
3110
|
-
borderWidth: "none" | "thin" | "thick" | {
|
|
3111
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3112
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3113
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3114
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3115
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3116
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3078
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3079
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3080
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3081
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3082
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3083
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3084
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3117
3085
|
};
|
|
3118
3086
|
__brand__?: "platform-native" | {
|
|
3119
3087
|
readonly base?: "platform-native" | undefined;
|
|
@@ -4085,17 +4053,61 @@ declare type CheckboxGroupProps = {
|
|
|
4085
4053
|
} & TestID & StyledPropsBlade;
|
|
4086
4054
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
4087
4055
|
|
|
4056
|
+
declare type DividerProps = {
|
|
4057
|
+
/**
|
|
4058
|
+
* Sets the orientation of divider
|
|
4059
|
+
*
|
|
4060
|
+
* @default 'horizontal'
|
|
4061
|
+
*/
|
|
4062
|
+
orientation?: 'horizontal' | 'vertical';
|
|
4063
|
+
/**
|
|
4064
|
+
* Sets the style of divider
|
|
4065
|
+
*
|
|
4066
|
+
* @default 'solid'
|
|
4067
|
+
*/
|
|
4068
|
+
dividerStyle?: 'solid' | 'dashed';
|
|
4069
|
+
/**
|
|
4070
|
+
* Sets the variant of divider
|
|
4071
|
+
*
|
|
4072
|
+
* @default 'normal'
|
|
4073
|
+
*/
|
|
4074
|
+
variant?: 'normal' | 'subtle';
|
|
4075
|
+
/**
|
|
4076
|
+
* Sets the thickness of divider
|
|
4077
|
+
*
|
|
4078
|
+
* @default 'thin'
|
|
4079
|
+
*/
|
|
4080
|
+
thickness?: 'thinner' | 'thin' | 'thick';
|
|
4081
|
+
/**
|
|
4082
|
+
* Sets the contrast of divider
|
|
4083
|
+
*
|
|
4084
|
+
* @default 'low'
|
|
4085
|
+
*/
|
|
4086
|
+
contrast?: 'low' | 'high';
|
|
4087
|
+
/**
|
|
4088
|
+
* Sets the height of divider. Divider uses Flex by default, use height only when parent is not flex.
|
|
4089
|
+
*
|
|
4090
|
+
*/
|
|
4091
|
+
height?: CSSObject['height'];
|
|
4092
|
+
/**
|
|
4093
|
+
* Sets the width of divider. Divider uses Flex by default, use width only when parent is not flex.
|
|
4094
|
+
*
|
|
4095
|
+
*/
|
|
4096
|
+
width?: CSSObject['width'];
|
|
4097
|
+
};
|
|
4098
|
+
declare const Divider: ({ orientation, dividerStyle, variant, thickness, contrast, height, width, }: DividerProps) => React__default.ReactElement;
|
|
4099
|
+
|
|
4088
4100
|
declare type DropdownProps = {
|
|
4089
4101
|
selectionType?: 'single' | 'multiple';
|
|
4090
4102
|
onDismiss?: () => void;
|
|
4091
|
-
children:
|
|
4103
|
+
children: React.ReactNode[];
|
|
4092
4104
|
} & StyledPropsBlade;
|
|
4093
|
-
declare const Dropdown: ({ children, selectionType, onDismiss, ...styledProps }: DropdownProps) => JSX.Element;
|
|
4094
|
-
|
|
4095
4105
|
declare type DropdownOverlayProps = {
|
|
4096
|
-
children:
|
|
4106
|
+
children: React.ReactElement[] | React.ReactElement;
|
|
4097
4107
|
} & TestID;
|
|
4098
4108
|
|
|
4109
|
+
declare const Dropdown: ({ children, selectionType, onDismiss, ...styledProps }: DropdownProps) => JSX.Element;
|
|
4110
|
+
|
|
4099
4111
|
declare const DropdownOverlay: ({ children, testID }: DropdownOverlayProps) => JSX.Element;
|
|
4100
4112
|
|
|
4101
4113
|
declare type DropdownButtonProps = ButtonProps & {
|
|
@@ -4110,6 +4122,50 @@ declare type DropdownLinkProps = LinkButtonVariantProps & {
|
|
|
4110
4122
|
};
|
|
4111
4123
|
declare const DropdownLink: ({ children, icon, iconPosition, onClick, onBlur, onKeyDown, isDisabled, href, target, rel, accessibilityLabel, size, testID, hitSlop, htmlTitle, ...styledProps }: DropdownLinkProps) => JSX.Element;
|
|
4112
4124
|
|
|
4125
|
+
declare type BaseHeaderProps = {
|
|
4126
|
+
title?: string;
|
|
4127
|
+
subtitle?: string;
|
|
4128
|
+
/**
|
|
4129
|
+
* Leading part of the header placed at the left most side of the header
|
|
4130
|
+
*/
|
|
4131
|
+
leading?: React__default.ReactNode;
|
|
4132
|
+
/**
|
|
4133
|
+
* Trailing part of the header placed at the right most side of the header
|
|
4134
|
+
*/
|
|
4135
|
+
trailing?: React__default.ReactNode;
|
|
4136
|
+
/**
|
|
4137
|
+
* Placed adjacent to the title text
|
|
4138
|
+
*/
|
|
4139
|
+
titleSuffix?: React__default.ReactNode;
|
|
4140
|
+
/**
|
|
4141
|
+
* @default true
|
|
4142
|
+
*/
|
|
4143
|
+
showDivider?: boolean;
|
|
4144
|
+
/**
|
|
4145
|
+
* @default false
|
|
4146
|
+
*/
|
|
4147
|
+
showBackButton?: boolean;
|
|
4148
|
+
/**
|
|
4149
|
+
* @default true
|
|
4150
|
+
*/
|
|
4151
|
+
showCloseButton?: boolean;
|
|
4152
|
+
onCloseButtonClick?: () => void;
|
|
4153
|
+
onBackButtonClick?: () => void;
|
|
4154
|
+
closeButtonRef?: React__default.MutableRefObject<any>;
|
|
4155
|
+
metaComponentName?: string;
|
|
4156
|
+
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'> & TestID;
|
|
4157
|
+
|
|
4158
|
+
declare type BaseFooterProps = {
|
|
4159
|
+
children: React__default.ReactNode;
|
|
4160
|
+
metaComponentName?: string;
|
|
4161
|
+
showDivider?: boolean;
|
|
4162
|
+
} & TestID;
|
|
4163
|
+
|
|
4164
|
+
declare type DropdownHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle' | 'leading' | 'trailing' | 'titleSuffix' | 'testID'>;
|
|
4165
|
+
declare const DropdownHeader: ({ title, subtitle, leading, titleSuffix, trailing, testID, }: DropdownHeaderProps) => React__default.ReactElement;
|
|
4166
|
+
declare type DropdownFooter = Pick<BaseFooterProps, 'children' | 'testID'>;
|
|
4167
|
+
declare const DropdownFooter: ({ children, testID }: DropdownFooter) => React__default.ReactElement;
|
|
4168
|
+
|
|
4113
4169
|
declare const ArrowDownIcon: IconComponent;
|
|
4114
4170
|
|
|
4115
4171
|
declare const ArrowLeftIcon: IconComponent;
|
|
@@ -6086,48 +6142,9 @@ declare function announce(message: string, _assertiveness?: Assertiveness): void
|
|
|
6086
6142
|
declare function clearAnnouncer(_assertiveness: Assertiveness): void;
|
|
6087
6143
|
declare function destroyAnnouncer(): void;
|
|
6088
6144
|
|
|
6089
|
-
declare type BaseHeaderProps = {
|
|
6090
|
-
title?: string;
|
|
6091
|
-
subtitle?: string;
|
|
6092
|
-
/**
|
|
6093
|
-
* Leading part of the header placed at the left most side of the header
|
|
6094
|
-
*/
|
|
6095
|
-
leading?: React__default.ReactNode;
|
|
6096
|
-
/**
|
|
6097
|
-
* Trailing part of the header placed at the right most side of the header
|
|
6098
|
-
*/
|
|
6099
|
-
trailing?: React__default.ReactNode;
|
|
6100
|
-
/**
|
|
6101
|
-
* Placed adjacent to the title text
|
|
6102
|
-
*/
|
|
6103
|
-
titleSuffix?: React__default.ReactNode;
|
|
6104
|
-
/**
|
|
6105
|
-
* @default true
|
|
6106
|
-
*/
|
|
6107
|
-
showDivider?: boolean;
|
|
6108
|
-
/**
|
|
6109
|
-
* @default false
|
|
6110
|
-
*/
|
|
6111
|
-
showBackButton?: boolean;
|
|
6112
|
-
/**
|
|
6113
|
-
* @default true
|
|
6114
|
-
*/
|
|
6115
|
-
showCloseButton?: boolean;
|
|
6116
|
-
onCloseButtonClick?: () => void;
|
|
6117
|
-
onBackButtonClick?: () => void;
|
|
6118
|
-
closeButtonRef: React__default.MutableRefObject<any>;
|
|
6119
|
-
metaComponentName?: string;
|
|
6120
|
-
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
6121
|
-
|
|
6122
6145
|
declare type ModalHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle' | 'leading' | 'trailing' | 'titleSuffix'>;
|
|
6123
6146
|
declare const ModalHeader: () => React__default.ReactElement;
|
|
6124
6147
|
|
|
6125
|
-
declare type BaseFooterProps = {
|
|
6126
|
-
children: React__default.ReactNode;
|
|
6127
|
-
metaComponentName?: string;
|
|
6128
|
-
showDivider?: boolean;
|
|
6129
|
-
};
|
|
6130
|
-
|
|
6131
6148
|
declare type ModalFooterProps = Pick<BaseFooterProps, 'children'>;
|
|
6132
6149
|
declare const ModalFooter: () => React__default.ReactElement;
|
|
6133
6150
|
|
|
@@ -6931,4 +6948,4 @@ declare type BladeCommonEvents = {
|
|
|
6931
6948
|
}>;
|
|
6932
6949
|
};
|
|
6933
6950
|
|
|
6934
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList,
|
|
6951
|
+
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 };
|