@razorpay/blade 12.51.0 → 12.53.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/lib/native/components/Charts/AreaChart/AreaChart.native.js +11 -0
- package/build/lib/native/components/Charts/AreaChart/AreaChart.native.js.map +1 -0
- package/build/lib/native/components/Input/BaseInput/BaseInput.js +1 -1
- package/build/lib/native/components/Input/BaseInput/BaseInput.js.map +1 -1
- package/build/lib/native/components/Input/BaseInput/StyledBaseInput.native.js +3 -2
- package/build/lib/native/components/Input/BaseInput/StyledBaseInput.native.js.map +1 -1
- package/build/lib/native/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +1 -1
- package/build/lib/native/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
- package/build/lib/native/components/index.js +1 -0
- package/build/lib/native/components/index.js.map +1 -1
- package/build/lib/web/development/components/Charts/AreaChart/AreaChart.web.js +105 -0
- package/build/lib/web/development/components/Charts/AreaChart/AreaChart.web.js.map +1 -0
- package/build/lib/web/development/components/Charts/AreaChart/componentIds.js +6 -0
- package/build/lib/web/development/components/Charts/AreaChart/componentIds.js.map +1 -0
- package/build/lib/web/development/components/Charts/AreaChart/index.js +2 -0
- package/build/lib/web/development/components/Charts/AreaChart/index.js.map +1 -0
- package/build/lib/web/development/components/Charts/index.js +1 -0
- package/build/lib/web/development/components/Charts/index.js.map +1 -1
- package/build/lib/web/development/components/Input/BaseInput/BaseInput.js +3 -1
- package/build/lib/web/development/components/Input/BaseInput/BaseInput.js.map +1 -1
- package/build/lib/web/development/components/Input/BaseInput/StyledBaseInput.web.js +16 -8
- package/build/lib/web/development/components/Input/BaseInput/StyledBaseInput.web.js.map +1 -1
- package/build/lib/web/development/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +7 -0
- package/build/lib/web/development/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
- package/build/lib/web/development/components/index.js +1 -0
- package/build/lib/web/development/components/index.js.map +1 -1
- package/build/lib/web/production/components/Charts/AreaChart/AreaChart.web.js +105 -0
- package/build/lib/web/production/components/Charts/AreaChart/AreaChart.web.js.map +1 -0
- package/build/lib/web/production/components/Charts/AreaChart/componentIds.js +6 -0
- package/build/lib/web/production/components/Charts/AreaChart/componentIds.js.map +1 -0
- package/build/lib/web/production/components/Charts/AreaChart/index.js +2 -0
- package/build/lib/web/production/components/Charts/AreaChart/index.js.map +1 -0
- package/build/lib/web/production/components/Charts/index.js +1 -0
- package/build/lib/web/production/components/Charts/index.js.map +1 -1
- package/build/lib/web/production/components/Input/BaseInput/BaseInput.js +3 -1
- package/build/lib/web/production/components/Input/BaseInput/BaseInput.js.map +1 -1
- package/build/lib/web/production/components/Input/BaseInput/StyledBaseInput.web.js +16 -8
- package/build/lib/web/production/components/Input/BaseInput/StyledBaseInput.web.js.map +1 -1
- package/build/lib/web/production/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +7 -0
- package/build/lib/web/production/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
- package/build/lib/web/production/components/index.js +1 -0
- package/build/lib/web/production/components/index.js.map +1 -1
- package/build/types/components/index.d.ts +167 -108
- package/build/types/components/index.native.d.ts +167 -108
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import { CSSObject } from 'styled-components';
|
|
|
8
8
|
import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/types';
|
|
9
9
|
import { CurrencyCodeType } from '@razorpay/i18nify-js/currency';
|
|
10
10
|
import { AnimationControls, TargetAndTransition, Tween } from 'framer-motion';
|
|
11
|
-
import { ReferenceLineProps, XAxisProps, YAxisProps, Tooltip as Tooltip$1, Legend,
|
|
11
|
+
import { ReferenceLineProps, XAxisProps, YAxisProps, Tooltip as Tooltip$1, Legend, CartesianGridProps, LineProps, AreaProps } from 'recharts';
|
|
12
12
|
import { DateValue, DatesRangeValue, DatePickerProps as DatePickerProps$1, DayOfWeek } from '@mantine/dates';
|
|
13
13
|
export { DateValue, DatesRangeValue } from '@mantine/dates';
|
|
14
14
|
import { Placement, UseFloatingOptions } from '@floating-ui/react';
|
|
@@ -9125,7 +9125,7 @@ type ChartYAxisProps = Omit<YAxisProps, 'tick' | 'label' | 'dataKey' | 'stroke'>
|
|
|
9125
9125
|
};
|
|
9126
9126
|
type ChartTooltipProps = ComponentProps<typeof Tooltip$1>;
|
|
9127
9127
|
type ChartLegendProps = ComponentProps<typeof Legend>;
|
|
9128
|
-
type ChartCartesianGridProps =
|
|
9128
|
+
type ChartCartesianGridProps = Omit<CartesianGridProps, 'strokeDasharray' | 'verticalFill' | 'horizontalFill'>;
|
|
9129
9129
|
type ChartsCategoricalColorToken = `chart.background.categorical.${ChartColorCategories}.${keyof ChartCategoricalEmphasis}`;
|
|
9130
9130
|
|
|
9131
9131
|
type colorTheme = 'default';
|
|
@@ -9147,7 +9147,7 @@ interface ChartLineProps {
|
|
|
9147
9147
|
/**
|
|
9148
9148
|
* If we don't have data for some points should we connect the line or should skip it.
|
|
9149
9149
|
*/
|
|
9150
|
-
connectNulls?:
|
|
9150
|
+
connectNulls?: LineProps['connectNulls'];
|
|
9151
9151
|
/**
|
|
9152
9152
|
* Include this particular line in legend.
|
|
9153
9153
|
* @default : true
|
|
@@ -9156,12 +9156,12 @@ interface ChartLineProps {
|
|
|
9156
9156
|
/**
|
|
9157
9157
|
* The data key of the x-axis
|
|
9158
9158
|
*/
|
|
9159
|
-
dataKey:
|
|
9159
|
+
dataKey: LineProps['dataKey'];
|
|
9160
9160
|
/**
|
|
9161
9161
|
* Name of the line in line chart.
|
|
9162
9162
|
* if no provided, we will use the data key as the name.
|
|
9163
9163
|
*/
|
|
9164
|
-
name?:
|
|
9164
|
+
name?: LineProps['name'];
|
|
9165
9165
|
/**
|
|
9166
9166
|
* Color of the line in line chart.
|
|
9167
9167
|
* if no provided, we will pick colors from the default theme colors.
|
|
@@ -9181,7 +9181,7 @@ interface ChartLineProps {
|
|
|
9181
9181
|
*/
|
|
9182
9182
|
_colorTheme?: colorTheme;
|
|
9183
9183
|
}
|
|
9184
|
-
type data = {
|
|
9184
|
+
type data$1 = {
|
|
9185
9185
|
[key: string]: unknown;
|
|
9186
9186
|
};
|
|
9187
9187
|
type ChartLineWrapperProps = {
|
|
@@ -9192,13 +9192,77 @@ type ChartLineWrapperProps = {
|
|
|
9192
9192
|
/**
|
|
9193
9193
|
* Chart data to be rendered
|
|
9194
9194
|
*/
|
|
9195
|
-
data: data[];
|
|
9195
|
+
data: data$1[];
|
|
9196
9196
|
children: React.ReactNode;
|
|
9197
9197
|
} & Partial<Omit<BaseBoxProps, keyof FlexboxProps | keyof GridProps>>;
|
|
9198
9198
|
|
|
9199
9199
|
declare const ChartLineWrapper: (_prop: ChartLineWrapperProps) => react__default.ReactElement;
|
|
9200
9200
|
declare const ChartLine: (_prop: ChartLineProps) => react__default.ReactElement;
|
|
9201
9201
|
|
|
9202
|
+
type ChartAreaProps = {
|
|
9203
|
+
/**
|
|
9204
|
+
* The type of the area chart.
|
|
9205
|
+
*/
|
|
9206
|
+
type?: 'step' | 'stepAfter' | 'stepBefore' | 'linear' | 'monotone';
|
|
9207
|
+
/**
|
|
9208
|
+
* Whether to connect nulls.
|
|
9209
|
+
*/
|
|
9210
|
+
connectNulls?: AreaProps['connectNulls'];
|
|
9211
|
+
/**
|
|
9212
|
+
* Whether to show the legend.
|
|
9213
|
+
*/
|
|
9214
|
+
showLegend?: boolean;
|
|
9215
|
+
/**
|
|
9216
|
+
* The data key of the area chart.
|
|
9217
|
+
*/
|
|
9218
|
+
dataKey: AreaProps['dataKey'];
|
|
9219
|
+
/**
|
|
9220
|
+
* The name of the area chart.
|
|
9221
|
+
*/
|
|
9222
|
+
name: AreaProps['name'];
|
|
9223
|
+
/**
|
|
9224
|
+
* The stack id of the area chart.
|
|
9225
|
+
*/
|
|
9226
|
+
stackId?: AreaProps['stackId'];
|
|
9227
|
+
/**
|
|
9228
|
+
* The color of the area chart.
|
|
9229
|
+
*/
|
|
9230
|
+
color?: ChartsCategoricalColorToken;
|
|
9231
|
+
/**
|
|
9232
|
+
* Whether to show the dot.
|
|
9233
|
+
*/
|
|
9234
|
+
dot?: AreaProps['dot'];
|
|
9235
|
+
/**
|
|
9236
|
+
* Whether to show the active dot.
|
|
9237
|
+
*/
|
|
9238
|
+
activeDot?: AreaProps['activeDot'];
|
|
9239
|
+
/**
|
|
9240
|
+
* @private
|
|
9241
|
+
*/
|
|
9242
|
+
_index?: number;
|
|
9243
|
+
/**
|
|
9244
|
+
* @private
|
|
9245
|
+
*/
|
|
9246
|
+
_colorTheme?: colorTheme;
|
|
9247
|
+
};
|
|
9248
|
+
type data = {
|
|
9249
|
+
[key: string]: string | number | null;
|
|
9250
|
+
};
|
|
9251
|
+
type ChartAreaWrapperProps = {
|
|
9252
|
+
children?: React.ReactNode;
|
|
9253
|
+
/**
|
|
9254
|
+
* The color theme of the line chart.
|
|
9255
|
+
*/
|
|
9256
|
+
colorTheme?: colorTheme;
|
|
9257
|
+
/**
|
|
9258
|
+
* Chart data to be rendered
|
|
9259
|
+
*/
|
|
9260
|
+
data: data[];
|
|
9261
|
+
} & Partial<Omit<BaseBoxProps, keyof FlexboxProps | keyof GridProps>>;
|
|
9262
|
+
|
|
9263
|
+
declare const ChartAreaWrapper: (_prop: ChartAreaProps) => React.ReactElement;
|
|
9264
|
+
declare const ChartArea: (_prop: ChartAreaWrapperProps) => React.ReactElement;
|
|
9265
|
+
|
|
9202
9266
|
declare const ChartXAxis: react__default.FC<ChartXAxisProps>;
|
|
9203
9267
|
declare const ChartYAxis: react__default.FC<ChartYAxisProps>;
|
|
9204
9268
|
declare const ChartCartesianGrid: react__default.FC<ChartCartesianGridProps>;
|
|
@@ -10232,6 +10296,10 @@ type BaseInputCommonProps = FormInputLabelProps & DataAnalyticsAttribute & FormI
|
|
|
10232
10296
|
* @default undefined
|
|
10233
10297
|
*/
|
|
10234
10298
|
tabIndex?: number;
|
|
10299
|
+
/**
|
|
10300
|
+
* Slot to be rendered adjacent to the value
|
|
10301
|
+
*/
|
|
10302
|
+
valueSuffix?: react__default.ReactNode;
|
|
10235
10303
|
} & TestID & Platform.Select<{
|
|
10236
10304
|
native: {
|
|
10237
10305
|
/**
|
|
@@ -11701,6 +11769,96 @@ declare const Indicator: react__default.ForwardRefExoticComponent<{
|
|
|
11701
11769
|
} | undefined;
|
|
11702
11770
|
}, "visibility">, "__brand__">> & react__default.RefAttributes<BladeElementRef>>;
|
|
11703
11771
|
|
|
11772
|
+
type SelectInputValueSuffixType = ({ values }: {
|
|
11773
|
+
values: string[];
|
|
11774
|
+
}) => react__default.ReactNode;
|
|
11775
|
+
type DropdownInputTriggersCommonProps = Pick<BaseInputProps, 'label' | 'accessibilityLabel' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'name' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'autoFocus' | 'onClick' | 'onFocus' | 'onBlur' | 'placeholder' | 'testID' | 'size' | keyof DataAnalyticsAttribute> & {
|
|
11776
|
+
icon?: IconComponent;
|
|
11777
|
+
/**
|
|
11778
|
+
* Controlled value of the Select. Use it in combination of `onChange`.
|
|
11779
|
+
*
|
|
11780
|
+
* Check out [Controlled Dropdown Documentation](https://blade.razorpay.com/?path=/story/components-dropdown-with-select--controlled-dropdown&globals=measureEnabled:false) for example.
|
|
11781
|
+
*/
|
|
11782
|
+
value?: string | string[];
|
|
11783
|
+
/**
|
|
11784
|
+
* Used to set the default value of SelectInput when it's uncontrolled. Use `value` instead for controlled SelectInput
|
|
11785
|
+
*/
|
|
11786
|
+
defaultValue?: string | string[];
|
|
11787
|
+
onChange?: ({ name, values }: {
|
|
11788
|
+
name?: string;
|
|
11789
|
+
values: string[];
|
|
11790
|
+
}) => void;
|
|
11791
|
+
/**
|
|
11792
|
+
* Syncs the selected value to inputValue in AutoComplete
|
|
11793
|
+
*
|
|
11794
|
+
* Only needed in single select AutoComplete because inputValue is expected to be same as selected value there
|
|
11795
|
+
*/
|
|
11796
|
+
syncInputValueWithSelection?: (value: string) => void;
|
|
11797
|
+
/**
|
|
11798
|
+
* constraints the height of input to given number rows
|
|
11799
|
+
*
|
|
11800
|
+
* When set to expandable, input takes 1 row in the begining and expands to take 3 when active
|
|
11801
|
+
*
|
|
11802
|
+
* @default 'single'
|
|
11803
|
+
*/
|
|
11804
|
+
maxRows?: 'single' | 'multiple' | 'expandable';
|
|
11805
|
+
/**
|
|
11806
|
+
* Position of the label.
|
|
11807
|
+
*
|
|
11808
|
+
* Can be
|
|
11809
|
+
* - top: top positioned
|
|
11810
|
+
* - left: left positioned
|
|
11811
|
+
* - inside-input: added inside the input (not applicable for single select AutoComplete)
|
|
11812
|
+
*/
|
|
11813
|
+
labelPosition?: BaseInputProps['labelPosition'] | 'inside-input';
|
|
11814
|
+
};
|
|
11815
|
+
type DropdownInputTriggersPropsWithA11yLabel = {
|
|
11816
|
+
/**
|
|
11817
|
+
* Label to be shown for the input field
|
|
11818
|
+
*/
|
|
11819
|
+
label?: undefined;
|
|
11820
|
+
/**
|
|
11821
|
+
* Accessibility label for the input
|
|
11822
|
+
*/
|
|
11823
|
+
accessibilityLabel: string;
|
|
11824
|
+
};
|
|
11825
|
+
type DropdownInputTriggersPropsWithLabel = {
|
|
11826
|
+
/**
|
|
11827
|
+
* Label to be shown for the input field
|
|
11828
|
+
*/
|
|
11829
|
+
label: string;
|
|
11830
|
+
/**
|
|
11831
|
+
* Accessibility label for the input
|
|
11832
|
+
*/
|
|
11833
|
+
accessibilityLabel?: string;
|
|
11834
|
+
};
|
|
11835
|
+
type DropdownInputTriggersProps = (DropdownInputTriggersPropsWithA11yLabel | DropdownInputTriggersPropsWithLabel) & DropdownInputTriggersCommonProps;
|
|
11836
|
+
type SelectInputProps = DropdownInputTriggersProps & {
|
|
11837
|
+
/**
|
|
11838
|
+
* Slot to be rendered adjacent to the value
|
|
11839
|
+
*/
|
|
11840
|
+
valueSuffix?: SelectInputValueSuffixType;
|
|
11841
|
+
};
|
|
11842
|
+
type AutoCompleteProps = DropdownInputTriggersCommonProps & {
|
|
11843
|
+
/**
|
|
11844
|
+
* Callback to handle the change in input element.
|
|
11845
|
+
*
|
|
11846
|
+
* This is different from onChange which handles the change in selection of item
|
|
11847
|
+
*/
|
|
11848
|
+
onInputValueChange?: BaseInputProps['onChange'];
|
|
11849
|
+
/**
|
|
11850
|
+
* Controlled state of value inside AutoComplete input
|
|
11851
|
+
*/
|
|
11852
|
+
inputValue?: BaseInputProps['value'];
|
|
11853
|
+
/**
|
|
11854
|
+
* Controlled state of filtering of items in AutoComplete.
|
|
11855
|
+
*
|
|
11856
|
+
* Checkout [Custom Filtering Example](https://blade.razorpay.com/?path=/story/components-dropdown-with-autocomplete--controlled-filtering)
|
|
11857
|
+
*
|
|
11858
|
+
*/
|
|
11859
|
+
filteredValues?: string[];
|
|
11860
|
+
};
|
|
11861
|
+
|
|
11704
11862
|
/**
|
|
11705
11863
|
* ### SelectInput
|
|
11706
11864
|
*
|
|
@@ -11728,24 +11886,7 @@ declare const Indicator: react__default.ForwardRefExoticComponent<{
|
|
|
11728
11886
|
*
|
|
11729
11887
|
* Checkout {@link https://blade.razorpay.com/?path=/docs/components-dropdown-with-select--with-single-select SelectInput Documentation}.
|
|
11730
11888
|
*/
|
|
11731
|
-
declare const SelectInput: react__default.ForwardRefExoticComponent<
|
|
11732
|
-
label?: undefined;
|
|
11733
|
-
accessibilityLabel: string;
|
|
11734
|
-
} | {
|
|
11735
|
-
label: string;
|
|
11736
|
-
accessibilityLabel?: string | undefined;
|
|
11737
|
-
}) & Pick<BaseInputProps, "name" | `data-analytics-${string}` | "label" | "testID" | "prefix" | "size" | "accessibilityLabel" | "onBlur" | "onFocus" | "autoFocus" | "placeholder" | "onClick" | "isDisabled" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix"> & {
|
|
11738
|
-
icon?: IconComponent | undefined;
|
|
11739
|
-
value?: string | string[] | undefined;
|
|
11740
|
-
defaultValue?: string | string[] | undefined;
|
|
11741
|
-
onChange?: (({ name, values }: {
|
|
11742
|
-
name?: string | undefined;
|
|
11743
|
-
values: string[];
|
|
11744
|
-
}) => void) | undefined;
|
|
11745
|
-
syncInputValueWithSelection?: ((value: string) => void) | undefined;
|
|
11746
|
-
maxRows?: "multiple" | "single" | "expandable" | undefined;
|
|
11747
|
-
labelPosition?: "left" | "top" | "inside-input" | undefined;
|
|
11748
|
-
}) & react__default.RefAttributes<BladeElementRef>>;
|
|
11889
|
+
declare const SelectInput: react__default.ForwardRefExoticComponent<SelectInputProps & react__default.RefAttributes<BladeElementRef>>;
|
|
11749
11890
|
|
|
11750
11891
|
/**
|
|
11751
11892
|
* ### AutoComplete
|
|
@@ -11810,88 +11951,6 @@ declare const AutoComplete: react__default.ForwardRefExoticComponent<Pick<BaseIn
|
|
|
11810
11951
|
filteredValues?: string[] | undefined;
|
|
11811
11952
|
} & react__default.RefAttributes<BladeElementRef>>;
|
|
11812
11953
|
|
|
11813
|
-
type DropdownInputTriggersCommonProps = Pick<BaseInputProps, 'label' | 'accessibilityLabel' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'name' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'autoFocus' | 'onClick' | 'onFocus' | 'onBlur' | 'placeholder' | 'testID' | 'size' | keyof DataAnalyticsAttribute> & {
|
|
11814
|
-
icon?: IconComponent;
|
|
11815
|
-
/**
|
|
11816
|
-
* Controlled value of the Select. Use it in combination of `onChange`.
|
|
11817
|
-
*
|
|
11818
|
-
* Check out [Controlled Dropdown Documentation](https://blade.razorpay.com/?path=/story/components-dropdown-with-select--controlled-dropdown&globals=measureEnabled:false) for example.
|
|
11819
|
-
*/
|
|
11820
|
-
value?: string | string[];
|
|
11821
|
-
/**
|
|
11822
|
-
* Used to set the default value of SelectInput when it's uncontrolled. Use `value` instead for controlled SelectInput
|
|
11823
|
-
*/
|
|
11824
|
-
defaultValue?: string | string[];
|
|
11825
|
-
onChange?: ({ name, values }: {
|
|
11826
|
-
name?: string;
|
|
11827
|
-
values: string[];
|
|
11828
|
-
}) => void;
|
|
11829
|
-
/**
|
|
11830
|
-
* Syncs the selected value to inputValue in AutoComplete
|
|
11831
|
-
*
|
|
11832
|
-
* Only needed in single select AutoComplete because inputValue is expected to be same as selected value there
|
|
11833
|
-
*/
|
|
11834
|
-
syncInputValueWithSelection?: (value: string) => void;
|
|
11835
|
-
/**
|
|
11836
|
-
* constraints the height of input to given number rows
|
|
11837
|
-
*
|
|
11838
|
-
* When set to expandable, input takes 1 row in the begining and expands to take 3 when active
|
|
11839
|
-
*
|
|
11840
|
-
* @default 'single'
|
|
11841
|
-
*/
|
|
11842
|
-
maxRows?: 'single' | 'multiple' | 'expandable';
|
|
11843
|
-
/**
|
|
11844
|
-
* Position of the label.
|
|
11845
|
-
*
|
|
11846
|
-
* Can be
|
|
11847
|
-
* - top: top positioned
|
|
11848
|
-
* - left: left positioned
|
|
11849
|
-
* - inside-input: added inside the input (not applicable for single select AutoComplete)
|
|
11850
|
-
*/
|
|
11851
|
-
labelPosition?: BaseInputProps['labelPosition'] | 'inside-input';
|
|
11852
|
-
};
|
|
11853
|
-
type DropdownInputTriggersPropsWithA11yLabel = {
|
|
11854
|
-
/**
|
|
11855
|
-
* Label to be shown for the input field
|
|
11856
|
-
*/
|
|
11857
|
-
label?: undefined;
|
|
11858
|
-
/**
|
|
11859
|
-
* Accessibility label for the input
|
|
11860
|
-
*/
|
|
11861
|
-
accessibilityLabel: string;
|
|
11862
|
-
};
|
|
11863
|
-
type DropdownInputTriggersPropsWithLabel = {
|
|
11864
|
-
/**
|
|
11865
|
-
* Label to be shown for the input field
|
|
11866
|
-
*/
|
|
11867
|
-
label: string;
|
|
11868
|
-
/**
|
|
11869
|
-
* Accessibility label for the input
|
|
11870
|
-
*/
|
|
11871
|
-
accessibilityLabel?: string;
|
|
11872
|
-
};
|
|
11873
|
-
type DropdownInputTriggersProps = (DropdownInputTriggersPropsWithA11yLabel | DropdownInputTriggersPropsWithLabel) & DropdownInputTriggersCommonProps;
|
|
11874
|
-
type SelectInputProps = DropdownInputTriggersProps;
|
|
11875
|
-
type AutoCompleteProps = DropdownInputTriggersCommonProps & {
|
|
11876
|
-
/**
|
|
11877
|
-
* Callback to handle the change in input element.
|
|
11878
|
-
*
|
|
11879
|
-
* This is different from onChange which handles the change in selection of item
|
|
11880
|
-
*/
|
|
11881
|
-
onInputValueChange?: BaseInputProps['onChange'];
|
|
11882
|
-
/**
|
|
11883
|
-
* Controlled state of value inside AutoComplete input
|
|
11884
|
-
*/
|
|
11885
|
-
inputValue?: BaseInputProps['value'];
|
|
11886
|
-
/**
|
|
11887
|
-
* Controlled state of filtering of items in AutoComplete.
|
|
11888
|
-
*
|
|
11889
|
-
* Checkout [Custom Filtering Example](https://blade.razorpay.com/?path=/story/components-dropdown-with-autocomplete--controlled-filtering)
|
|
11890
|
-
*
|
|
11891
|
-
*/
|
|
11892
|
-
filteredValues?: string[];
|
|
11893
|
-
};
|
|
11894
|
-
|
|
11895
11954
|
type FormInputOnEventWithIndex = ({ name, value, inputIndex, }: {
|
|
11896
11955
|
name?: string;
|
|
11897
11956
|
value?: string;
|
|
@@ -16151,4 +16210,4 @@ declare const PreviewHeader: (_prop: PreviewHeaderProps) => react__default.React
|
|
|
16151
16210
|
declare const PreviewBody: (_prop: PreviewBodyProps) => react__default.ReactElement;
|
|
16152
16211
|
declare const PreviewFooter: (_prop: PreviewFooterProps) => react__default.ReactElement;
|
|
16153
16212
|
|
|
16154
|
-
export { AcceptPaymentsFilledIcon, AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActionListSectionTitle, ActivityIcon, AddressBookIcon, AffordabilityFilledIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementIcon, ApertureIcon, AppStoreIcon, AppleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowSquareDownIcon, ArrowSquareDownLeftIcon, ArrowSquareDownRightIcon, ArrowSquareLeftIcon, ArrowSquareRightIcon, ArrowSquareUpIcon, ArrowSquareUpLeftIcon, ArrowSquareUpRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollFilledIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AwardIcon, Badge, BadgeProps, BankAccountVerificationFilledIcon, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, BaseFilterChip, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiFilledIcon, BfsiIcon, BillIcon, BillMeFilledIcon, BillMeIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsFilledIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementFilledIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChartCartesianGrid, ChartCartesianGridProps, ChartLegend, ChartLegendProps, ChartLine, ChartLineProps, ChartLineWrapper, ChartLineWrapperProps, ChartReferenceLine, ChartReferenceLineProps, ChartTooltip, ChartTooltipProps, ChartXAxis, ChartXAxisProps, ChartYAxis, ChartYAxisProps, ChatMessage, ChatMessageProps, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpDownIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationFilledIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansFilledIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountFilledIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingFilledIcon, DigitalLendingIcon, DisbursePaymentsFilledIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownIconButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceFilledIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationFilledIcon, EducationIcon, Elevate, ElevateProps, EmptyState, EmptyStateProps, EngageFilledIcon, EngageIcon, EqualsIcon, EscrowAccountFilledIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterChipDatePicker, FilterChipGroup, FilterChipGroupContextType, FilterChipGroupProps, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementFilledIcon, ForexManagementIcon, FreelanceFilledIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoGroup, InfoGroupProps, InfoIcon, InfoItem, InfoItemKey, InfoItemKeyProps, InfoItemProps, InfoItemValue, InfoItemValueProps, InputDropdownButton, InputGroup, InputGroupProps, InputRow, InputRowProps, InstagramIcon, InstantSettlementFilledIcon, InstantSettlementIcon, InternationalPaymentsFilledIcon, InternationalPaymentsIcon, InvoicesFilledIcon, InvoicesIcon, ItalicIcon, KeyIcon, KeyboardIcon, LayersIcon, LayoutIcon, LeftCircularCornerIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, ListSearchIcon, ListView, ListViewFilters, LoaderIcon, LoansForBusinessesFilledIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutFilledIcon, MagicCheckoutIcon, MagicKonnectFilledIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppFilledIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreFilledIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerFilledIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonFilledIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayFilledIcon, PaymentGatewayIcon, PaymentLinkFilledIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesFilledIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsFilledIcon, PayrollAddonsIcon, PayrollForCaFilledIcon, PayrollForCaIcon, PayrollForStartupOrSmeFilledIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetFilledIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosFilledIcon, PosIcon, PowerIcon, Preview, PreviewBody, PreviewBodyProps, PreviewFooter, PreviewFooterProps, PreviewHeader, PreviewHeaderProps, PreviewProps, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, PromptIcon, QRCodeIcon, QuickFilter, QuickFilterGroup, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollFilledIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteFilledIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasFilledIcon, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectFilledIcon, SmartCollectIcon, SmartphoneIcon, SolutionsFilledIcon, SolutionsIcon, SortIcon, SourceToPayFilledIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, Stagger, StaggerProps, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsFilledIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps$1 as TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsFilledIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, TitleCollectionProps, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqFilledIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, Tour, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayFilledIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsFilledIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoFilledIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, VolumeOffIcon, VolumeOnIcon, WalletIcon, WatchIcon, WhatsAppIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getHeadingProps, getTextProps, legacyScreenReaderStyles, screenReaderStyles, useTheme, useToast };
|
|
16213
|
+
export { AcceptPaymentsFilledIcon, AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActionListSectionTitle, ActivityIcon, AddressBookIcon, AffordabilityFilledIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementIcon, ApertureIcon, AppStoreIcon, AppleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowSquareDownIcon, ArrowSquareDownLeftIcon, ArrowSquareDownRightIcon, ArrowSquareLeftIcon, ArrowSquareRightIcon, ArrowSquareUpIcon, ArrowSquareUpLeftIcon, ArrowSquareUpRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollFilledIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AwardIcon, Badge, BadgeProps, BankAccountVerificationFilledIcon, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, BaseFilterChip, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiFilledIcon, BfsiIcon, BillIcon, BillMeFilledIcon, BillMeIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsFilledIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementFilledIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChartArea, ChartAreaProps, ChartAreaWrapper, ChartAreaWrapperProps, ChartCartesianGrid, ChartCartesianGridProps, ChartLegend, ChartLegendProps, ChartLine, ChartLineProps, ChartLineWrapper, ChartLineWrapperProps, ChartReferenceLine, ChartReferenceLineProps, ChartTooltip, ChartTooltipProps, ChartXAxis, ChartXAxisProps, ChartYAxis, ChartYAxisProps, ChatMessage, ChatMessageProps, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpDownIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationFilledIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansFilledIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountFilledIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingFilledIcon, DigitalLendingIcon, DisbursePaymentsFilledIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownIconButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceFilledIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationFilledIcon, EducationIcon, Elevate, ElevateProps, EmptyState, EmptyStateProps, EngageFilledIcon, EngageIcon, EqualsIcon, EscrowAccountFilledIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterChipDatePicker, FilterChipGroup, FilterChipGroupContextType, FilterChipGroupProps, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementFilledIcon, ForexManagementIcon, FreelanceFilledIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoGroup, InfoGroupProps, InfoIcon, InfoItem, InfoItemKey, InfoItemKeyProps, InfoItemProps, InfoItemValue, InfoItemValueProps, InputDropdownButton, InputGroup, InputGroupProps, InputRow, InputRowProps, InstagramIcon, InstantSettlementFilledIcon, InstantSettlementIcon, InternationalPaymentsFilledIcon, InternationalPaymentsIcon, InvoicesFilledIcon, InvoicesIcon, ItalicIcon, KeyIcon, KeyboardIcon, LayersIcon, LayoutIcon, LeftCircularCornerIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, ListSearchIcon, ListView, ListViewFilters, LoaderIcon, LoansForBusinessesFilledIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutFilledIcon, MagicCheckoutIcon, MagicKonnectFilledIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppFilledIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreFilledIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerFilledIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonFilledIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayFilledIcon, PaymentGatewayIcon, PaymentLinkFilledIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesFilledIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsFilledIcon, PayrollAddonsIcon, PayrollForCaFilledIcon, PayrollForCaIcon, PayrollForStartupOrSmeFilledIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetFilledIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosFilledIcon, PosIcon, PowerIcon, Preview, PreviewBody, PreviewBodyProps, PreviewFooter, PreviewFooterProps, PreviewHeader, PreviewHeaderProps, PreviewProps, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, PromptIcon, QRCodeIcon, QuickFilter, QuickFilterGroup, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollFilledIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteFilledIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasFilledIcon, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectFilledIcon, SmartCollectIcon, SmartphoneIcon, SolutionsFilledIcon, SolutionsIcon, SortIcon, SourceToPayFilledIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, Stagger, StaggerProps, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsFilledIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps$1 as TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsFilledIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, TitleCollectionProps, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqFilledIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, Tour, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayFilledIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsFilledIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoFilledIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, VolumeOffIcon, VolumeOnIcon, WalletIcon, WatchIcon, WhatsAppIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getHeadingProps, getTextProps, legacyScreenReaderStyles, screenReaderStyles, useTheme, useToast };
|