@razorpay/blade 12.110.0 → 12.111.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/AnimateInteractions/AnimateInteractions.native.js +5 -5
- package/build/lib/native/components/AnimateInteractions/AnimateInteractions.native.js.map +1 -1
- package/build/lib/native/components/AnimateInteractions/AnimateInteractionsProvider.js +6 -0
- package/build/lib/native/components/AnimateInteractions/AnimateInteractionsProvider.js.map +1 -0
- package/build/lib/native/components/BaseMotion/BaseMotion.native.js +22 -0
- package/build/lib/native/components/BaseMotion/BaseMotion.native.js.map +1 -0
- package/build/lib/native/components/BaseMotion/baseMotionInterpreter.native.js +11 -0
- package/build/lib/native/components/BaseMotion/baseMotionInterpreter.native.js.map +1 -0
- package/build/lib/native/components/BaseMotion/baseMotionUtils.js +4 -0
- package/build/lib/native/components/BaseMotion/baseMotionUtils.js.map +1 -0
- package/build/lib/native/components/BaseMotion/index.js +3 -0
- package/build/lib/native/components/BaseMotion/index.js.map +1 -0
- package/build/lib/native/components/BaseMotion/types.js +2 -0
- package/build/lib/native/components/BaseMotion/types.js.map +1 -0
- package/build/lib/native/components/Dropdown/FilterChipSelectInput.native.js +2 -1
- package/build/lib/native/components/Dropdown/FilterChipSelectInput.native.js.map +1 -1
- package/build/lib/native/components/Dropdown/filterChipSelectInputUtils.js +4 -0
- package/build/lib/native/components/Dropdown/filterChipSelectInputUtils.js.map +1 -0
- package/build/lib/native/components/Fade/Fade.native.js +7 -5
- package/build/lib/native/components/Fade/Fade.native.js.map +1 -1
- package/build/lib/native/components/FilterChip/BaseFilterChip.native.js +2 -2
- package/build/lib/native/components/FilterChip/BaseFilterChip.native.js.map +1 -1
- package/build/lib/native/components/Morph/Morph.native.js +9 -5
- package/build/lib/native/components/Morph/Morph.native.js.map +1 -1
- package/build/lib/native/components/Move/Move.native.js +8 -5
- package/build/lib/native/components/Move/Move.native.js.map +1 -1
- package/build/lib/native/components/Scale/Scale.native.js +7 -5
- package/build/lib/native/components/Scale/Scale.native.js.map +1 -1
- package/build/lib/native/components/SegmentedControl/SegmentedControl.native.js +27 -0
- package/build/lib/native/components/SegmentedControl/SegmentedControl.native.js.map +1 -0
- package/build/lib/native/components/SegmentedControl/SegmentedControlContext.js +8 -0
- package/build/lib/native/components/SegmentedControl/SegmentedControlContext.js.map +1 -0
- package/build/lib/native/components/SegmentedControl/SegmentedControlItem.native.js +18 -0
- package/build/lib/native/components/SegmentedControl/SegmentedControlItem.native.js.map +1 -0
- package/build/lib/native/components/SegmentedControl/index.js +3 -0
- package/build/lib/native/components/SegmentedControl/index.js.map +1 -0
- package/build/lib/native/components/SegmentedControl/segmentedControlTokens.js +4 -0
- package/build/lib/native/components/SegmentedControl/segmentedControlTokens.js.map +1 -0
- package/build/lib/native/components/Slide/Slide.native.js +7 -5
- package/build/lib/native/components/Slide/Slide.native.js.map +1 -1
- package/build/lib/native/components/Stagger/Stagger.native.js +10 -5
- package/build/lib/native/components/Stagger/Stagger.native.js.map +1 -1
- package/build/lib/native/components/Stagger/StaggerProvider.js +6 -0
- package/build/lib/native/components/Stagger/StaggerProvider.js.map +1 -0
- package/build/lib/native/components/index.js +3 -0
- package/build/lib/native/components/index.js.map +1 -1
- package/build/lib/native/utils/metaAttribute/metaConstants.js +1 -1
- package/build/lib/native/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/lib/native/utils/msToSeconds.js +4 -0
- package/build/lib/native/utils/msToSeconds.js.map +1 -0
- package/build/lib/web/development/_virtual/flatten.js +1 -1
- package/build/lib/web/development/_virtual/flatten3.js +1 -1
- package/build/lib/web/development/components/AnimateInteractions/AnimateInteractions.web.js +1 -1
- package/build/lib/web/development/components/AnimateInteractions/AnimateInteractionsProvider.js +2 -1
- package/build/lib/web/development/components/AnimateInteractions/AnimateInteractionsProvider.js.map +1 -1
- package/build/lib/web/development/components/AnimateInteractions/{useFocusWithin.js → useFocusWithin.web.js} +1 -1
- package/build/lib/web/development/components/AnimateInteractions/useFocusWithin.web.js.map +1 -0
- package/build/lib/web/development/components/DatePicker/BaseDatePicker.web.js +8 -1
- package/build/lib/web/development/components/DatePicker/BaseDatePicker.web.js.map +1 -1
- package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js +4 -1
- package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js.map +1 -1
- package/build/lib/web/development/components/Dropdown/FilterChipGroup.web.js +40 -5
- package/build/lib/web/development/components/Dropdown/FilterChipGroup.web.js.map +1 -1
- package/build/lib/web/development/components/Dropdown/FilterChipSelectInput.web.js +11 -21
- package/build/lib/web/development/components/Dropdown/FilterChipSelectInput.web.js.map +1 -1
- package/build/lib/web/development/components/Dropdown/filterChipSelectInputUtils.js +46 -0
- package/build/lib/web/development/components/Dropdown/filterChipSelectInputUtils.js.map +1 -0
- package/build/lib/web/development/components/FilterChip/BaseFilterChip.web.js +35 -11
- package/build/lib/web/development/components/FilterChip/BaseFilterChip.web.js.map +1 -1
- package/build/lib/web/development/components/SegmentedControl/SegmentedControl.web.js +196 -0
- package/build/lib/web/development/components/SegmentedControl/SegmentedControl.web.js.map +1 -0
- package/build/lib/web/development/components/SegmentedControl/SegmentedControlContext.js +18 -0
- package/build/lib/web/development/components/SegmentedControl/SegmentedControlContext.js.map +1 -0
- package/build/lib/web/development/components/SegmentedControl/SegmentedControlIndicator.web.js +109 -0
- package/build/lib/web/development/components/SegmentedControl/SegmentedControlIndicator.web.js.map +1 -0
- package/build/lib/web/development/components/SegmentedControl/SegmentedControlItem.web.js +170 -0
- package/build/lib/web/development/components/SegmentedControl/SegmentedControlItem.web.js.map +1 -0
- package/build/lib/web/development/components/SegmentedControl/index.js +3 -0
- package/build/lib/web/development/components/SegmentedControl/index.js.map +1 -0
- package/build/lib/web/development/components/SegmentedControl/segmentedControlTokens.js +53 -0
- package/build/lib/web/development/components/SegmentedControl/segmentedControlTokens.js.map +1 -0
- package/build/lib/web/development/components/Stagger/StaggerProvider.js.map +1 -1
- package/build/lib/web/development/components/index.js +3 -0
- package/build/lib/web/development/components/index.js.map +1 -1
- package/build/lib/web/development/node_modules/es-toolkit/dist/array/flatten.js +1 -1
- package/build/lib/web/development/node_modules/es-toolkit/dist/compat/array/flatten.js +1 -1
- package/build/lib/web/development/node_modules/es-toolkit/dist/compat/array/sortBy.js +2 -2
- package/build/lib/web/development/node_modules/es-toolkit/dist/compat/object/omit.js +2 -2
- package/build/lib/web/development/utils/metaAttribute/metaConstants.js +3 -1
- package/build/lib/web/development/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/lib/web/production/components/AnimateInteractions/AnimateInteractions.web.js +1 -1
- package/build/lib/web/production/components/AnimateInteractions/AnimateInteractionsProvider.js +2 -1
- package/build/lib/web/production/components/AnimateInteractions/AnimateInteractionsProvider.js.map +1 -1
- package/build/lib/web/production/components/AnimateInteractions/{useFocusWithin.js → useFocusWithin.web.js} +1 -1
- package/build/lib/web/production/components/AnimateInteractions/useFocusWithin.web.js.map +1 -0
- package/build/lib/web/production/components/DatePicker/BaseDatePicker.web.js +8 -1
- package/build/lib/web/production/components/DatePicker/BaseDatePicker.web.js.map +1 -1
- package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js +4 -1
- package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js.map +1 -1
- package/build/lib/web/production/components/Dropdown/FilterChipGroup.web.js +40 -5
- package/build/lib/web/production/components/Dropdown/FilterChipGroup.web.js.map +1 -1
- package/build/lib/web/production/components/Dropdown/FilterChipSelectInput.web.js +11 -21
- package/build/lib/web/production/components/Dropdown/FilterChipSelectInput.web.js.map +1 -1
- package/build/lib/web/production/components/Dropdown/filterChipSelectInputUtils.js +46 -0
- package/build/lib/web/production/components/Dropdown/filterChipSelectInputUtils.js.map +1 -0
- package/build/lib/web/production/components/FilterChip/BaseFilterChip.web.js +35 -11
- package/build/lib/web/production/components/FilterChip/BaseFilterChip.web.js.map +1 -1
- package/build/lib/web/production/components/SegmentedControl/SegmentedControl.web.js +196 -0
- package/build/lib/web/production/components/SegmentedControl/SegmentedControl.web.js.map +1 -0
- package/build/lib/web/production/components/SegmentedControl/SegmentedControlContext.js +18 -0
- package/build/lib/web/production/components/SegmentedControl/SegmentedControlContext.js.map +1 -0
- package/build/lib/web/production/components/SegmentedControl/SegmentedControlIndicator.web.js +109 -0
- package/build/lib/web/production/components/SegmentedControl/SegmentedControlIndicator.web.js.map +1 -0
- package/build/lib/web/production/components/SegmentedControl/SegmentedControlItem.web.js +170 -0
- package/build/lib/web/production/components/SegmentedControl/SegmentedControlItem.web.js.map +1 -0
- package/build/lib/web/production/components/SegmentedControl/index.js +3 -0
- package/build/lib/web/production/components/SegmentedControl/index.js.map +1 -0
- package/build/lib/web/production/components/SegmentedControl/segmentedControlTokens.js +53 -0
- package/build/lib/web/production/components/SegmentedControl/segmentedControlTokens.js.map +1 -0
- package/build/lib/web/production/components/Stagger/StaggerProvider.js.map +1 -1
- package/build/lib/web/production/components/index.js +3 -0
- package/build/lib/web/production/components/index.js.map +1 -1
- package/build/lib/web/production/utils/metaAttribute/metaConstants.js +3 -1
- package/build/lib/web/production/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/types/components/index.d.ts +238 -8
- package/build/types/components/index.native.d.ts +410 -14
- package/package.json +1 -1
- package/build/lib/web/development/components/AnimateInteractions/useFocusWithin.js.map +0 -1
- package/build/lib/web/production/components/AnimateInteractions/useFocusWithin.js.map +0 -1
|
@@ -19004,7 +19004,14 @@ type DatePickerProps<Type extends DateSelectionType> = Omit<CalendarProps<Type>,
|
|
|
19004
19004
|
*/
|
|
19005
19005
|
inputPlaceHolder?: string;
|
|
19006
19006
|
/**
|
|
19007
|
-
* Decides whether to render a clear
|
|
19007
|
+
* Decides whether to render a clear (cross) button on the input.
|
|
19008
|
+
*
|
|
19009
|
+
* For the regular `DatePicker` input this is the existing opt-in behaviour. For the filter-chip
|
|
19010
|
+
* variant (`FilterChipDatePicker`) the clear button is shown by default once a value is
|
|
19011
|
+
* selected; pass `showClearButton={false}` there for filters that must always hold a value
|
|
19012
|
+
* (e.g. a mandatory default date).
|
|
19013
|
+
*
|
|
19014
|
+
* @default true (filter-chip variant) / undefined (regular DatePicker input)
|
|
19008
19015
|
*/
|
|
19009
19016
|
showClearButton?: boolean;
|
|
19010
19017
|
/**
|
|
@@ -19023,8 +19030,16 @@ type FilterChipDatePickerProps = Omit<DatePickerProps<'single' | 'range'>, 'labe
|
|
|
19023
19030
|
*/
|
|
19024
19031
|
label: string;
|
|
19025
19032
|
/**
|
|
19033
|
+
* Callback which fires when the clear (cross) button is clicked.
|
|
19026
19034
|
*
|
|
19027
|
-
*
|
|
19035
|
+
* Clearing also fires `onChange` with an empty value (`null` for single selection,
|
|
19036
|
+
* `[null, null]` for range). When the FilterChipDatePicker is controlled (a `value` is
|
|
19037
|
+
* provided), the chip cannot clear itself — you must reset `value` in response to
|
|
19038
|
+
* `onChange`/`onClearButtonClick`. In the uncontrolled case (only `defaultValue`), the chip
|
|
19039
|
+
* clears itself automatically.
|
|
19040
|
+
*
|
|
19041
|
+
* Tip: pass `showClearButton={false}` to hide the clear button for filters that must always
|
|
19042
|
+
* hold a value.
|
|
19028
19043
|
*/
|
|
19029
19044
|
onClearButtonClick?: () => void;
|
|
19030
19045
|
};
|
|
@@ -19560,15 +19575,55 @@ type DropdownOverlayProps = {
|
|
|
19560
19575
|
type FilterChipGroupProps = TestID & DataAnalyticsAttribute & {
|
|
19561
19576
|
children: React__default.ReactNode;
|
|
19562
19577
|
/**
|
|
19563
|
-
* Callback
|
|
19578
|
+
* Callback fired when the **Clear** action is clicked.
|
|
19579
|
+
*
|
|
19580
|
+
* "Clear" empties every filter and returns the group to the no-filter (empty) state. The group
|
|
19581
|
+
* performs the emptying itself, so uncontrolled chips are cleared and controlled chips receive
|
|
19582
|
+
* `onChange([])`.
|
|
19583
|
+
*
|
|
19584
|
+
* Providing this (or leaving `showClearButton` at its default) renders the Clear action.
|
|
19564
19585
|
*/
|
|
19565
19586
|
onClearButtonClick?: () => void;
|
|
19566
19587
|
/**
|
|
19567
|
-
*
|
|
19568
|
-
*
|
|
19588
|
+
* Callback fired when the **Reset** action is clicked.
|
|
19589
|
+
*
|
|
19590
|
+
* "Reset" is semantically different from "Clear": it returns filters to their **default**
|
|
19591
|
+
* values (which may be non-empty, e.g. `Status: Active`) rather than emptying them. The group
|
|
19592
|
+
* does NOT empty the chips in this mode — it only fires this callback, which is your hook to
|
|
19593
|
+
* restore each filter's default (for controlled filters, reset their `value` here).
|
|
19569
19594
|
*
|
|
19595
|
+
* Providing this renders the Reset action. It can be shown **alongside** the Clear action, so a
|
|
19596
|
+
* group can offer both "Reset" and "Clear".
|
|
19597
|
+
*
|
|
19598
|
+
* ⚠️ For **uncontrolled** chips (no `value` prop) reset cannot restore defaults yet — there is
|
|
19599
|
+
* no `defaultValue` for the group to restore, so those chips visually retain their values.
|
|
19600
|
+
* Uncontrolled reset-to-defaults is Phase 2 — see `_decisions/filter-chip-reset.md`.
|
|
19601
|
+
*/
|
|
19602
|
+
onResetButtonClick?: () => void;
|
|
19603
|
+
/**
|
|
19604
|
+
* Controls visibility of the group-level **Clear** action link (NOT the per-chip clear/cross
|
|
19605
|
+
* button). When `true`, the Clear link is shown whenever the group has at least one selected
|
|
19606
|
+
* filter.
|
|
19607
|
+
*
|
|
19608
|
+
* Note: this is distinct from `showClearButton` on `FilterChipSelectInput` /
|
|
19609
|
+
* `FilterChipDatePicker`, which toggles the individual chip's cross button. Set this to `false`
|
|
19610
|
+
* (and provide `onResetButtonClick`) for a group that should only offer Reset.
|
|
19611
|
+
*
|
|
19612
|
+
* @default true
|
|
19570
19613
|
*/
|
|
19571
19614
|
showClearButton?: boolean;
|
|
19615
|
+
/**
|
|
19616
|
+
* Custom label for the **Clear** action link.
|
|
19617
|
+
*
|
|
19618
|
+
* @default "Clear Filter" (auto-pluralised to "Clear Filters" when more than one filter is selected)
|
|
19619
|
+
*/
|
|
19620
|
+
clearButtonText?: string;
|
|
19621
|
+
/**
|
|
19622
|
+
* Custom label for the **Reset** action link.
|
|
19623
|
+
*
|
|
19624
|
+
* @default "Reset"
|
|
19625
|
+
*/
|
|
19626
|
+
resetButtonText?: string;
|
|
19572
19627
|
};
|
|
19573
19628
|
type FilterChipGroupContextType = {
|
|
19574
19629
|
/**
|
|
@@ -19619,6 +19674,28 @@ type BaseFilterChipProps = {
|
|
|
19619
19674
|
onClearButtonClick?: ({ value }: {
|
|
19620
19675
|
value: string | string[];
|
|
19621
19676
|
}) => void;
|
|
19677
|
+
/**
|
|
19678
|
+
* Whether to render the clear (cross) button when the chip has a selected value.
|
|
19679
|
+
*
|
|
19680
|
+
* Set to `false` for filters that should always hold a value (e.g. a date filter
|
|
19681
|
+
* with a mandatory default) so users can't clear it to an empty state.
|
|
19682
|
+
*
|
|
19683
|
+
* **Controlled / uncontrolled clearing contract:**
|
|
19684
|
+
* When the clear button is clicked, `onClearButtonClick` fires. If the parent
|
|
19685
|
+
* controls `value` (passes it explicitly), the chip cannot clear itself — the
|
|
19686
|
+
* parent must reset `value` in response to `onClearButtonClick`. In the uncontrolled
|
|
19687
|
+
* case, the chip clears itself automatically.
|
|
19688
|
+
*
|
|
19689
|
+
* Note: this only controls the chip's own visual cross button. It does NOT opt the chip
|
|
19690
|
+
* out of a group-level clear — a `FilterChipGroup`'s Clear action (`onClearButtonClick`) still
|
|
19691
|
+
* empties every chip (including those with `showClearButton={false}`). For a filter that must
|
|
19692
|
+
* never be emptied from the group, offer a Reset action instead (`onResetButtonClick`) and
|
|
19693
|
+
* restore the filter's default yourself, or hide the group's Clear action via
|
|
19694
|
+
* `showClearButton={false}` on the group.
|
|
19695
|
+
*
|
|
19696
|
+
* @default true
|
|
19697
|
+
*/
|
|
19698
|
+
showClearButton?: boolean;
|
|
19622
19699
|
/**
|
|
19623
19700
|
* Children. Title of the Chip
|
|
19624
19701
|
*/
|
|
@@ -19642,7 +19719,7 @@ type BaseFilterChipProps = {
|
|
|
19642
19719
|
accessibilityProps?: Partial<AccessibilityProps>;
|
|
19643
19720
|
} & TestID & DataAnalyticsAttribute;
|
|
19644
19721
|
|
|
19645
|
-
type FilterChipSelectInputProps = Pick<BaseFilterChipProps, 'onKeyDown' | 'value' | 'label' | 'testID' | 'onClick' | 'selectionType' | 'onBlur'> & {
|
|
19722
|
+
type FilterChipSelectInputProps = Pick<BaseFilterChipProps, 'onKeyDown' | 'value' | 'label' | 'testID' | 'onClick' | 'selectionType' | 'onBlur' | 'showClearButton'> & {
|
|
19646
19723
|
accessibilityLabel?: string;
|
|
19647
19724
|
onChange?: (props: {
|
|
19648
19725
|
name: string;
|
|
@@ -19657,7 +19734,7 @@ type FilterChipSelectInputProps = Pick<BaseFilterChipProps, 'onKeyDown' | 'value
|
|
|
19657
19734
|
} & DataAnalyticsAttribute;
|
|
19658
19735
|
declare const FilterChipSelectInput: (props: FilterChipSelectInputProps) => React__default.ReactElement;
|
|
19659
19736
|
|
|
19660
|
-
declare const FilterChipGroup: ({ testID, children, showClearButton, onClearButtonClick, ...rest }: FilterChipGroupProps) => React.ReactElement;
|
|
19737
|
+
declare const FilterChipGroup: ({ testID, children, showClearButton, onClearButtonClick, onResetButtonClick, clearButtonText, resetButtonText, ...rest }: FilterChipGroupProps) => React.ReactElement;
|
|
19661
19738
|
|
|
19662
19739
|
type BaseInputDropDownButtonProps = {
|
|
19663
19740
|
/**
|
|
@@ -25355,6 +25432,159 @@ type ScaleProps = Pick<BaseMotionBoxProps, 'type' | 'motionTriggers' | 'children
|
|
|
25355
25432
|
*/
|
|
25356
25433
|
declare const Scale: ({ children, isHighlighted, type, variant, motionTriggers, }: ScaleProps) => React__default.ReactElement;
|
|
25357
25434
|
|
|
25435
|
+
type SegmentedControlSize = 'small' | 'medium' | 'large';
|
|
25436
|
+
type SegmentedControlCommonProps = {
|
|
25437
|
+
/**
|
|
25438
|
+
* The content of the SegmentedControl, accepts `SegmentedControlItem` components.
|
|
25439
|
+
*/
|
|
25440
|
+
children: React__default.ReactNode;
|
|
25441
|
+
/**
|
|
25442
|
+
* The controlled selected value.
|
|
25443
|
+
*/
|
|
25444
|
+
value?: string;
|
|
25445
|
+
/**
|
|
25446
|
+
* The default value when uncontrolled.
|
|
25447
|
+
*/
|
|
25448
|
+
defaultValue?: string;
|
|
25449
|
+
/**
|
|
25450
|
+
* Callback fired when the selected value changes.
|
|
25451
|
+
*/
|
|
25452
|
+
onChange?: ({ name, value }: {
|
|
25453
|
+
name: string | undefined;
|
|
25454
|
+
value: string;
|
|
25455
|
+
}) => void;
|
|
25456
|
+
/**
|
|
25457
|
+
* The size of the segmented control.
|
|
25458
|
+
*
|
|
25459
|
+
* @default 'medium'
|
|
25460
|
+
*/
|
|
25461
|
+
size?: SegmentedControlSize;
|
|
25462
|
+
/**
|
|
25463
|
+
* If `true`, the entire segmented control is disabled.
|
|
25464
|
+
*
|
|
25465
|
+
* @default false
|
|
25466
|
+
*/
|
|
25467
|
+
isDisabled?: boolean;
|
|
25468
|
+
/**
|
|
25469
|
+
* Name attribute for form identification.
|
|
25470
|
+
*/
|
|
25471
|
+
name?: string;
|
|
25472
|
+
/**
|
|
25473
|
+
* Sets the position of the label.
|
|
25474
|
+
*
|
|
25475
|
+
* @default 'top'
|
|
25476
|
+
*/
|
|
25477
|
+
labelPosition?: 'top' | 'left';
|
|
25478
|
+
/**
|
|
25479
|
+
* Help text displayed below the segmented control.
|
|
25480
|
+
*/
|
|
25481
|
+
helpText?: string;
|
|
25482
|
+
/**
|
|
25483
|
+
* Error text displayed when `validationState` is set to 'error'.
|
|
25484
|
+
* Overrides helpText.
|
|
25485
|
+
*/
|
|
25486
|
+
errorText?: string;
|
|
25487
|
+
/**
|
|
25488
|
+
* Sets the validation state of the segmented control.
|
|
25489
|
+
* If set to `error`, renders the `errorText`.
|
|
25490
|
+
*
|
|
25491
|
+
* @default 'none'
|
|
25492
|
+
*/
|
|
25493
|
+
validationState?: 'error' | 'none';
|
|
25494
|
+
/**
|
|
25495
|
+
* Renders a necessity indicator after the label.
|
|
25496
|
+
*
|
|
25497
|
+
* @default 'none'
|
|
25498
|
+
*/
|
|
25499
|
+
necessityIndicator?: 'required' | 'optional' | 'none';
|
|
25500
|
+
/**
|
|
25501
|
+
* Sets the required state of the segmented control.
|
|
25502
|
+
*
|
|
25503
|
+
* @default false
|
|
25504
|
+
*/
|
|
25505
|
+
isRequired?: boolean;
|
|
25506
|
+
} & TestID & DataAnalyticsAttribute & StyledPropsBlade;
|
|
25507
|
+
type SegmentedControlPropsWithLabel = {
|
|
25508
|
+
/**
|
|
25509
|
+
* Renders the label of the segmented control.
|
|
25510
|
+
*/
|
|
25511
|
+
label: string;
|
|
25512
|
+
/**
|
|
25513
|
+
* Accessibility label for the segmented control.
|
|
25514
|
+
*/
|
|
25515
|
+
accessibilityLabel?: string;
|
|
25516
|
+
};
|
|
25517
|
+
type SegmentedControlPropsWithA11yLabel = {
|
|
25518
|
+
/**
|
|
25519
|
+
* Renders the label of the segmented control.
|
|
25520
|
+
*/
|
|
25521
|
+
label?: undefined;
|
|
25522
|
+
/**
|
|
25523
|
+
* Accessibility label for the segmented control (required when no visible label).
|
|
25524
|
+
*/
|
|
25525
|
+
accessibilityLabel: string;
|
|
25526
|
+
};
|
|
25527
|
+
type SegmentedControlProps = (SegmentedControlPropsWithLabel | SegmentedControlPropsWithA11yLabel) & SegmentedControlCommonProps;
|
|
25528
|
+
type SegmentedControlItemIconWithLabel = {
|
|
25529
|
+
/**
|
|
25530
|
+
* A leading icon component.
|
|
25531
|
+
*/
|
|
25532
|
+
leading: IconComponent;
|
|
25533
|
+
/**
|
|
25534
|
+
* The label content of the item.
|
|
25535
|
+
*/
|
|
25536
|
+
children: React__default.ReactNode;
|
|
25537
|
+
/**
|
|
25538
|
+
* Accessibility label for the item.
|
|
25539
|
+
*/
|
|
25540
|
+
accessibilityLabel?: string;
|
|
25541
|
+
};
|
|
25542
|
+
type SegmentedControlItemIconOnly = {
|
|
25543
|
+
/**
|
|
25544
|
+
* A leading icon component.
|
|
25545
|
+
*/
|
|
25546
|
+
leading: IconComponent;
|
|
25547
|
+
/**
|
|
25548
|
+
* The label content of the item. Omit for icon-only items.
|
|
25549
|
+
*/
|
|
25550
|
+
children?: undefined;
|
|
25551
|
+
/**
|
|
25552
|
+
* Accessibility label for the item. Required for icon-only items.
|
|
25553
|
+
*/
|
|
25554
|
+
accessibilityLabel: string;
|
|
25555
|
+
};
|
|
25556
|
+
type SegmentedControlItemWithIconProps = SegmentedControlItemIconWithLabel | SegmentedControlItemIconOnly;
|
|
25557
|
+
type SegmentedControlItemWithoutIconProps = {
|
|
25558
|
+
/**
|
|
25559
|
+
* A leading icon component.
|
|
25560
|
+
*/
|
|
25561
|
+
leading?: undefined;
|
|
25562
|
+
/**
|
|
25563
|
+
* The label content of the item.
|
|
25564
|
+
*/
|
|
25565
|
+
children: React__default.ReactNode;
|
|
25566
|
+
/**
|
|
25567
|
+
* Accessibility label for the item.
|
|
25568
|
+
*/
|
|
25569
|
+
accessibilityLabel?: string;
|
|
25570
|
+
};
|
|
25571
|
+
type SegmentedControlItemProps = (SegmentedControlItemWithIconProps | SegmentedControlItemWithoutIconProps) & {
|
|
25572
|
+
/**
|
|
25573
|
+
* The unique value for this item.
|
|
25574
|
+
*/
|
|
25575
|
+
value: string;
|
|
25576
|
+
/**
|
|
25577
|
+
* If `true`, this item is disabled.
|
|
25578
|
+
*
|
|
25579
|
+
* @default false
|
|
25580
|
+
*/
|
|
25581
|
+
isDisabled?: boolean;
|
|
25582
|
+
} & TestID & DataAnalyticsAttribute;
|
|
25583
|
+
|
|
25584
|
+
declare const SegmentedControl: React__default.ForwardRefExoticComponent<SegmentedControlProps & React__default.RefAttributes<BladeElementRef>>;
|
|
25585
|
+
|
|
25586
|
+
declare const SegmentedControlItem: ({ children, value, leading: Leading, isDisabled: isItemDisabled, accessibilityLabel, testID, ...rest }: SegmentedControlItemProps) => React__default.ReactElement;
|
|
25587
|
+
|
|
25358
25588
|
declare const SideNav: React__default.ForwardRefExoticComponent<{
|
|
25359
25589
|
children: React__default.ReactNode;
|
|
25360
25590
|
isOpen?: boolean | undefined;
|
|
@@ -31831,4 +32061,4 @@ interface FluidGradientProps {
|
|
|
31831
32061
|
*/
|
|
31832
32062
|
declare function FluidGradient({ children, size, viewBox, origin, className, style, }: FluidGradientProps): React__default.JSX.Element;
|
|
31833
32063
|
|
|
31834
|
-
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, AgentStudioIcon, AirplayIcon, Alert, AlertCircleIcon, AlertColors, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementBanner, AnnouncementBannerProps, AnnouncementIcon, ApertureIcon, AppBar, AppBarActions, AppBarActionsProps, AppBarContextProps, AppBarLeading, AppBarLeadingProps, AppBarProps, 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, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationFilledIcon, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiFilledIcon, BfsiIcon, BillIcon, BillMeFilledIcon, BillMeIcon, BladeCommonEvents, BladeFile, BladeFileList, 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, ButtonGroupProps, ButtonProps, CalendarFilledIcon, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CardVariant, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChartArea, ChartAreaProps, ChartAreaWrapper, ChartAreaWrapperProps, ChartBar, ChartBarProps, ChartBarWrapper, ChartBarWrapperProps, ChartCartesianGrid, ChartCartesianGridProps, ChartDonut, ChartDonutCell, ChartDonutProps, ChartDonutWrapper, ChartDonutWrapperProps, ChartLabelContentProps, ChartLegend, ChartLegendProps, ChartLine, ChartLineProps, ChartLineWrapper, ChartLineWrapperProps, ChartReferenceLine, ChartReferenceLineProps, ChartSankey, ChartSankeyProps, ChartSankeyWrapper, ChartSankeyWrapperProps, ChartTooltip, ChartTooltipProps, ChartXAxis, ChartXAxisProps, ChartYAxis, ChartYAxisProps, ChatInput, ChatInputProps, 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, ClockFilledIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CollapsibleText, CollapsibleTextProps, ColorInput, ColorInputOnChange, ColorInputOnFocusBlur, ColorInputProps, ColorInputValue, CommandIcon, CommonChartComponentsContext, CompanyRegistrationFilledIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterInput, CounterProps, CpuIcon, CreditCardFilledIcon, CreditCardIcon, CreditsAndLoansFilledIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountFilledIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DEFAULT_COLOR, DashboardIcon, DataColorMapping, DatePicker, DatePickerProps, DeleteIcon, DiamondBlocksIcon, DigitalLendingFilledIcon, DigitalLendingIcon, DisbursePaymentsFilledIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerFooter, DrawerFooterProps, 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, FileUploadItem, FileUploadItemProps, FileUploadProps, FileZipIcon, FilmIcon, FilterChipDatePicker, FilterChipGroup, FilterChipGroupContextType, FilterChipGroupProps, FilterChipSelectInput, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementFilledIcon, ForexManagementIcon, FreelanceFilledIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GenUIAction, GenUIBaseComponent, GenUIComponent, GenUIComponentDefinition, GenUIComponentRegistry, GenUIComponentRenderer, GenUICustomComponent, GenUIProvider, GenUISchemaRenderer, GenUISchemaRendererProps, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HorizontalBlocksIcon, IconButton, IconButtonEmphasis, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, Identifier, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoCard, InfoCardBody, InfoCardFooter, InfoCardProps, 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, LightBox, LightBoxBody, LightBoxBodyProps, LightBoxItem, LightBoxItemProps, LightBoxProps, 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, Pagination, PaginationProps, 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, RzpGlass as RazorSense, FluidGradient as RazorSenseGradient, FluidGradientProps as RazorSenseGradientProps, RzpGlassPreset as RazorSensePreset, RzpGlassProps as RazorSenseProps, RazorpayIcon, RazorpayTrustIcon, RazorpayXIcon, RazorpayxPayrollFilledIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, ReticleIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteFilledIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasFilledIcon, SaasIcon, SankeyDataLink, SankeyDataNode, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SecondaryLabelMap, 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, SpotlightPopoverTour, 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, TabNavIconProp, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, 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, 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, TicketCard, TicketCardBody, TicketCardFooter, TicketCardProps, TicketIcon, TimePicker, TitleCollectionProps, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqFilledIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, TopNavActions, TopNavBrand, TopNavBrandProps, TopNavContent, TopNavContextProps, TopNavOverlayThemeOverride, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustBadge, TrustBadgeProps, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayFilledIcon, UpiAutopayIcon, UpiFilledIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserFilledIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsFilledIcon, VendorPaymentsIcon, VerticalBlocksIcon, VideoIcon, VideoOffIcon, ViewLiveDemoFilledIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, VolumeOffIcon, VolumeOnIcon, WalletFilledIcon, WalletIcon, WatchIcon, WhatsAppIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, componentId, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, preloadRazorSenseAssets, screenReaderStyles, useAppBarContext, useCommonChartComponentsContext, useGenUI, useGenUIAction, useTheme, useToast, useTopNavContext };
|
|
32064
|
+
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, AgentStudioIcon, AirplayIcon, Alert, AlertCircleIcon, AlertColors, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementBanner, AnnouncementBannerProps, AnnouncementIcon, ApertureIcon, AppBar, AppBarActions, AppBarActionsProps, AppBarContextProps, AppBarLeading, AppBarLeadingProps, AppBarProps, 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, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationFilledIcon, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiFilledIcon, BfsiIcon, BillIcon, BillMeFilledIcon, BillMeIcon, BladeCommonEvents, BladeFile, BladeFileList, 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, ButtonGroupProps, ButtonProps, CalendarFilledIcon, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CardVariant, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChartArea, ChartAreaProps, ChartAreaWrapper, ChartAreaWrapperProps, ChartBar, ChartBarProps, ChartBarWrapper, ChartBarWrapperProps, ChartCartesianGrid, ChartCartesianGridProps, ChartDonut, ChartDonutCell, ChartDonutProps, ChartDonutWrapper, ChartDonutWrapperProps, ChartLabelContentProps, ChartLegend, ChartLegendProps, ChartLine, ChartLineProps, ChartLineWrapper, ChartLineWrapperProps, ChartReferenceLine, ChartReferenceLineProps, ChartSankey, ChartSankeyProps, ChartSankeyWrapper, ChartSankeyWrapperProps, ChartTooltip, ChartTooltipProps, ChartXAxis, ChartXAxisProps, ChartYAxis, ChartYAxisProps, ChatInput, ChatInputProps, 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, ClockFilledIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CollapsibleText, CollapsibleTextProps, ColorInput, ColorInputOnChange, ColorInputOnFocusBlur, ColorInputProps, ColorInputValue, CommandIcon, CommonChartComponentsContext, CompanyRegistrationFilledIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterInput, CounterProps, CpuIcon, CreditCardFilledIcon, CreditCardIcon, CreditsAndLoansFilledIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountFilledIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DEFAULT_COLOR, DashboardIcon, DataColorMapping, DatePicker, DatePickerProps, DeleteIcon, DiamondBlocksIcon, DigitalLendingFilledIcon, DigitalLendingIcon, DisbursePaymentsFilledIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerFooter, DrawerFooterProps, 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, FileUploadItem, FileUploadItemProps, FileUploadProps, FileZipIcon, FilmIcon, FilterChipDatePicker, FilterChipGroup, FilterChipGroupContextType, FilterChipGroupProps, FilterChipSelectInput, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementFilledIcon, ForexManagementIcon, FreelanceFilledIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GenUIAction, GenUIBaseComponent, GenUIComponent, GenUIComponentDefinition, GenUIComponentRegistry, GenUIComponentRenderer, GenUICustomComponent, GenUIProvider, GenUISchemaRenderer, GenUISchemaRendererProps, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HorizontalBlocksIcon, IconButton, IconButtonEmphasis, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, Identifier, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoCard, InfoCardBody, InfoCardFooter, InfoCardProps, 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, LightBox, LightBoxBody, LightBoxBodyProps, LightBoxItem, LightBoxItemProps, LightBoxProps, 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, Pagination, PaginationProps, 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, RzpGlass as RazorSense, FluidGradient as RazorSenseGradient, FluidGradientProps as RazorSenseGradientProps, RzpGlassPreset as RazorSensePreset, RzpGlassProps as RazorSenseProps, RazorpayIcon, RazorpayTrustIcon, RazorpayXIcon, RazorpayxPayrollFilledIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, ReticleIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteFilledIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasFilledIcon, SaasIcon, SankeyDataLink, SankeyDataNode, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SecondaryLabelMap, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, 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, SpotlightPopoverTour, 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, TabNavIconProp, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, 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, 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, TicketCard, TicketCardBody, TicketCardFooter, TicketCardProps, TicketIcon, TimePicker, TitleCollectionProps, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqFilledIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, TopNavActions, TopNavBrand, TopNavBrandProps, TopNavContent, TopNavContextProps, TopNavOverlayThemeOverride, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustBadge, TrustBadgeProps, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayFilledIcon, UpiAutopayIcon, UpiFilledIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserFilledIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsFilledIcon, VendorPaymentsIcon, VerticalBlocksIcon, VideoIcon, VideoOffIcon, ViewLiveDemoFilledIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, VolumeOffIcon, VolumeOnIcon, WalletFilledIcon, WalletIcon, WatchIcon, WhatsAppIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, componentId, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, preloadRazorSenseAssets, screenReaderStyles, useAppBarContext, useCommonChartComponentsContext, useGenUI, useGenUIAction, useTheme, useToast, useTopNavContext };
|