@razorpay/blade 6.0.5 → 6.2.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.
@@ -1,9 +1,62 @@
1
1
  /// <reference types="react" />
2
2
  import * as React$1 from 'react';
3
3
  import React__default, { ReactChild, ReactElement, ReactNode, SyntheticEvent, KeyboardEvent } from 'react';
4
- import { AccessibilityRole, View, GestureResponderEvent } from 'react-native';
4
+ import { AccessibilityRole, ImageSourcePropType, View, GestureResponderEvent } from 'react-native';
5
5
  import { CSSObject } from 'styled-components';
6
6
 
7
+ declare type ActionListProps = {
8
+ children: React__default.ReactNode[];
9
+ /**
10
+ * Decides the backgroundColor of ActionList
11
+ */
12
+ surfaceLevel?: 2 | 3;
13
+ };
14
+ /**
15
+ * ### ActionList
16
+ *
17
+ * List of multiple actionable items. Can be used as menu items inside `Dropdown`,
18
+ * `BottomSheet` and as selectable items when combined with `SelectInput`
19
+ *
20
+ * #### Usage
21
+ *
22
+ * ```jsx
23
+ * <Dropdown>
24
+ * <SelectInput label="Select Action" />
25
+ * <DropdownOverlay>
26
+ * <ActionList>
27
+ * <ActionListHeader
28
+ * title="Recent Searches"
29
+ * leading={<ActionListHeaderIcon icon={HistoryIcon} />}
30
+ * />
31
+ * <ActionListItem
32
+ * title="Home"
33
+ * value="home"
34
+ * leading={<ActionListItemIcon icon={HomeIcon} />}
35
+ * />
36
+ * <ActionListItem
37
+ * title="Pricing"
38
+ * value="pricing"
39
+ * leading={<ActionListItemAsset src="https://flagcdn.com/w20/in.png" alt="India Flag" />}
40
+ * />
41
+ * <ActionListHeader
42
+ * title="Search Tips"
43
+ * leading={<ActionListFooterIcon icon={SearchIcon} />}
44
+ * trailing={
45
+ * <Button
46
+ * onClick={() => console.log('clicked')}
47
+ * >
48
+ * Apply
49
+ * </Button>
50
+ * }
51
+ * />
52
+ * </ActionList>
53
+ * </DropdownOverlay>
54
+ * </Dropdown>
55
+ * ```
56
+ *
57
+ */
58
+ declare const ActionList: ({ children, surfaceLevel }: ActionListProps) => JSX.Element;
59
+
7
60
  type BorderRadius = Readonly<{
8
61
  /** none: 0(px/rem/pt) */
9
62
  none: 0;
@@ -848,6 +901,234 @@ type ThemeTokens = {
848
901
  typography: TypographyWithPlatforms;
849
902
  };
850
903
 
904
+ type Theme$1 = {
905
+ border: Border;
906
+ breakpoints: Breakpoints;
907
+ colors: Colors;
908
+ spacing: Spacing;
909
+ motion: Motion;
910
+ shadows: Omit<Shadows, 'color'> & {
911
+ color: {
912
+ level: Record<ShadowLevels, string>;
913
+ };
914
+ };
915
+ typography: Typography;
916
+ };
917
+
918
+ type FeedbackIconColors$1 = `feedback.icon.${DotNotationColorStringToken<
919
+ Theme$1['colors']['feedback']['icon']
920
+ >}`;
921
+
922
+ type FeedbackActionIconColors$1 = `feedback.${Feedback}.action.icon.${DotNotationColorStringToken<
923
+ Theme$1['colors']['feedback'][Feedback]['action']['icon']
924
+ >}`;
925
+
926
+ type ActionIconColors$1 = `action.icon.${DotNotationColorStringToken<
927
+ Theme$1['colors']['action']['icon']
928
+ >}`;
929
+
930
+ type TextIconColors$1 = `surface.text.${DotNotationColorStringToken<
931
+ Theme$1['colors']['surface']['text']
932
+ >}`;
933
+
934
+ type SurfaceActionIconColors$1 = `surface.action.icon.${DotNotationColorStringToken<
935
+ Theme$1['colors']['surface']['action']['icon']
936
+ >}`;
937
+
938
+ type BadgeIconColors$1 = `badge.icon.${DotNotationColorStringToken<
939
+ Theme$1['colors']['badge']['icon']
940
+ >}`;
941
+
942
+ type IconSize$1 = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | '2xlarge';
943
+ type IconProps$1 = {
944
+ /**
945
+ * Color token (not to be confused with actual hsla value)
946
+ */
947
+ color:
948
+ | ActionIconColors$1
949
+ | SurfaceActionIconColors$1
950
+ | FeedbackIconColors$1
951
+ | FeedbackActionIconColors$1
952
+ | TextIconColors$1
953
+ | BadgeIconColors$1
954
+ | 'currentColor'; // currentColor is useful for letting the SVG inherit color property from its container
955
+ size: IconSize$1;
956
+ };
957
+ type IconComponent$1 = React.ComponentType<IconProps$1>;
958
+
959
+ declare type ActionListItemProps = {
960
+ title: string;
961
+ description?: string;
962
+ onClick?: (clickProps: {
963
+ name: string;
964
+ value?: boolean;
965
+ }) => void;
966
+ /**
967
+ * value that you get from `onChange` event on SelectInput or in form submissions.
968
+ */
969
+ value: string;
970
+ /**
971
+ * Link to open when item is clicked.
972
+ */
973
+ href?: string;
974
+ /**
975
+ * Item that goes on left-side of item.
976
+ *
977
+ * Valid elements - `<ActionListItemIcon />`, `<ActionListItemAsset />`
978
+ *
979
+ * Will be overriden in multiselect
980
+ */
981
+ leading?: React__default.ReactNode;
982
+ /**
983
+ * Item that goes on right-side of item.
984
+ *
985
+ * Valid elements - `<ActionListItemText />`, `<ActionListItemIcon />`
986
+ */
987
+ trailing?: React__default.ReactNode;
988
+ /**
989
+ * If item is selected on page load
990
+ */
991
+ isDefaultSelected?: boolean;
992
+ isDisabled?: boolean;
993
+ intent?: Extract<Feedback, 'negative'>;
994
+ /**
995
+ * Internally passed from ActionList. No need to pass it explicitly
996
+ *
997
+ * @private
998
+ */
999
+ _index?: number;
1000
+ };
1001
+ declare const ActionListSectionDivider: () => JSX.Element;
1002
+ declare type ActionListSectionProps = {
1003
+ title: string;
1004
+ children: React__default.ReactNode[] | React__default.ReactNode;
1005
+ /**
1006
+ * Internally used to hide the divider on final item in React Native.
1007
+ *
1008
+ * Should not be used by consumers (also won't work on web)
1009
+ *
1010
+ * @private
1011
+ */
1012
+ _hideDivider?: boolean;
1013
+ };
1014
+ declare const ActionListSection: WithComponentId<ActionListSectionProps>;
1015
+ declare const ActionListItemIcon: WithComponentId<{
1016
+ icon: IconComponent$1;
1017
+ }>;
1018
+ declare const ActionListItemText: WithComponentId<{
1019
+ children: string;
1020
+ }>;
1021
+ /**
1022
+ * ### ActionListItem
1023
+ *
1024
+ * Creates option inside `ActionList`.
1025
+ *
1026
+ * #### Usage
1027
+ *
1028
+ * ```jsx
1029
+ * <ActionList>
1030
+ * <ActionListItem
1031
+ * title="Home"
1032
+ * value="home"
1033
+ * leading={<ActionListItemIcon icon={HomeIcon} />}
1034
+ * trailing={<ActionListItemText>⌘ + S</ActionListItemText>}
1035
+ * />
1036
+ * </ActionList>
1037
+ * ```
1038
+ */
1039
+ declare const ActionListItem: WithComponentId<ActionListItemProps>;
1040
+
1041
+ declare type ActionListHeaderProps = {
1042
+ title: string;
1043
+ /**
1044
+ * Asset to be added on left side of Header.
1045
+ *
1046
+ * Valid children - `ActionListHeaderIcon`
1047
+ */
1048
+ leading?: React__default.ReactNode;
1049
+ };
1050
+ /**
1051
+ * ### ActionListHeader
1052
+ *
1053
+ * To be used inside `ActionList`
1054
+ *
1055
+ * #### Usage
1056
+ *
1057
+ * ```jsx
1058
+ * <ActionListHeader
1059
+ * title="Search Tips"
1060
+ * leading={
1061
+ * <ActionListHeaderIcon
1062
+ * title="Recent Searches"
1063
+ * icon={HistoryIcon}
1064
+ * />
1065
+ * }
1066
+ * />
1067
+ * ```
1068
+ */
1069
+ declare const ActionListHeader: WithComponentId<ActionListHeaderProps>;
1070
+ declare const ActionListHeaderIcon: WithComponentId<{
1071
+ icon: IconComponent$1;
1072
+ }>;
1073
+
1074
+ declare type ActionListFooterProps = {
1075
+ title?: string;
1076
+ /**
1077
+ * Asset to be added on left side of Footer.
1078
+ *
1079
+ * Valid children - `ActionListFooterIcon`
1080
+ */
1081
+ leading?: React__default.ReactNode;
1082
+ /**
1083
+ * Elements to be added on right side of Footer.
1084
+ *
1085
+ * Anything can be passed here but maybe don't? Should ideally have Button or Tick Icon Buttons.
1086
+ */
1087
+ trailing?: React__default.ReactNode;
1088
+ };
1089
+ /**
1090
+ * ### ActionListFooter
1091
+ *
1092
+ * To be used inside `ActionList`
1093
+ *
1094
+ * #### Usage
1095
+ *
1096
+ * ```jsx
1097
+ * <ActionListFooter
1098
+ * title="Search Tips"
1099
+ * leading={<ActionListFooterIcon icon={SearchIcon} />}
1100
+ * trailing={
1101
+ * <Button
1102
+ * onClick={() => { console.log('click') }}
1103
+ * >
1104
+ * Apply
1105
+ * </Button>
1106
+ * }
1107
+ * />
1108
+ * ```
1109
+ */
1110
+ declare const ActionListFooter: WithComponentId<ActionListFooterProps>;
1111
+ declare const ActionListFooterIcon: WithComponentId<{
1112
+ icon: IconComponent$1;
1113
+ }>;
1114
+
1115
+ declare type ActionListItemAssetProps = {
1116
+ /**
1117
+ * Source of the image.
1118
+ *
1119
+ * Can either be a string URI or `require('/local/image')` in React Native
1120
+ */
1121
+ src: string | ImageSourcePropType;
1122
+ /**
1123
+ * Alt tag for the image
1124
+ */
1125
+ alt: string;
1126
+ };
1127
+ /**
1128
+ *
1129
+ */
1130
+ declare const ActionListItemAsset: WithComponentId<ActionListItemAssetProps>;
1131
+
851
1132
  declare type PrimaryAction = {
852
1133
  text: string;
853
1134
  onClick: () => void;
@@ -921,61 +1202,6 @@ declare type AlertProps = {
921
1202
  };
922
1203
  declare const Alert: ({ description, title, isDismissible, onDismiss, contrast, isFullWidth, intent, actions, }: AlertProps) => ReactElement | null;
923
1204
 
924
- type Theme$1 = {
925
- border: Border;
926
- breakpoints: Breakpoints;
927
- colors: Colors;
928
- spacing: Spacing;
929
- motion: Motion;
930
- shadows: Omit<Shadows, 'color'> & {
931
- color: {
932
- level: Record<ShadowLevels, string>;
933
- };
934
- };
935
- typography: Typography;
936
- };
937
-
938
- type FeedbackIconColors$1 = `feedback.icon.${DotNotationColorStringToken<
939
- Theme$1['colors']['feedback']['icon']
940
- >}`;
941
-
942
- type FeedbackActionIconColors$1 = `feedback.${Feedback}.action.icon.${DotNotationColorStringToken<
943
- Theme$1['colors']['feedback'][Feedback]['action']['icon']
944
- >}`;
945
-
946
- type ActionIconColors$1 = `action.icon.${DotNotationColorStringToken<
947
- Theme$1['colors']['action']['icon']
948
- >}`;
949
-
950
- type TextIconColors$1 = `surface.text.${DotNotationColorStringToken<
951
- Theme$1['colors']['surface']['text']
952
- >}`;
953
-
954
- type SurfaceActionIconColors$1 = `surface.action.icon.${DotNotationColorStringToken<
955
- Theme$1['colors']['surface']['action']['icon']
956
- >}`;
957
-
958
- type BadgeIconColors$1 = `badge.icon.${DotNotationColorStringToken<
959
- Theme$1['colors']['badge']['icon']
960
- >}`;
961
-
962
- type IconSize$1 = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | '2xlarge';
963
- type IconProps$1 = {
964
- /**
965
- * Color token (not to be confused with actual hsla value)
966
- */
967
- color:
968
- | ActionIconColors$1
969
- | SurfaceActionIconColors$1
970
- | FeedbackIconColors$1
971
- | FeedbackActionIconColors$1
972
- | TextIconColors$1
973
- | BadgeIconColors$1
974
- | 'currentColor'; // currentColor is useful for letting the SVG inherit color property from its container
975
- size: IconSize$1;
976
- };
977
- type IconComponent$1 = React.ComponentType<IconProps$1>;
978
-
979
1205
  declare type BadgeProps = {
980
1206
  /**
981
1207
  * Sets the label for the badge.
@@ -1474,6 +1700,11 @@ declare type CheckboxProps = {
1474
1700
  * @default "medium"
1475
1701
  */
1476
1702
  size?: 'small' | 'medium';
1703
+ /**
1704
+ * Sets the tab-index property on checkbox element
1705
+ *
1706
+ */
1707
+ tabIndex?: number;
1477
1708
  };
1478
1709
  declare const Checkbox: React__default.ForwardRefExoticComponent<CheckboxProps & React__default.RefAttributes<BladeElementRef>>;
1479
1710
 
@@ -1553,6 +1784,49 @@ declare type CheckboxGroupProps = {
1553
1784
  };
1554
1785
  declare const CheckboxGroup: ({ children, label, helpText, isDisabled, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, }: CheckboxGroupProps) => React__default.ReactElement;
1555
1786
 
1787
+ declare type DropdownProps = {
1788
+ selectionType?: 'single' | 'multiple';
1789
+ children: React__default.ReactNode[];
1790
+ };
1791
+ /**
1792
+ * ### Dropdown component
1793
+ *
1794
+ * Dropdown component is generic component that controls the dropdown functionality.
1795
+ * It can be used with multiple triggers and mostly contains ActionList component inside it
1796
+ *
1797
+ * ---
1798
+ *
1799
+ * #### Usage
1800
+ *
1801
+ * ```jsx
1802
+ * <Dropdown selectionType="single">
1803
+ * <SelectInput />
1804
+ * <DropdownOverlay>
1805
+ * <ActionList>
1806
+ * <ActionListItem />
1807
+ * <ActionListItem />
1808
+ * </ActionList>
1809
+ * </DropdownOverlay>
1810
+ * </Dropdown>
1811
+ * ```
1812
+ *
1813
+ * ---
1814
+ *
1815
+ * Checkout {@link https://blade.razorpay.com/?path=/docs/components-dropdown-with-select--with-single-select Dropdown Documentation}
1816
+ */
1817
+ declare const Dropdown: WithComponentId<DropdownProps>;
1818
+
1819
+ declare type DropdownOverlayProps = {
1820
+ children: React__default.ReactNode;
1821
+ };
1822
+
1823
+ /**
1824
+ * Overlay of dropdown
1825
+ *
1826
+ * Wrap your ActionList within this component
1827
+ */
1828
+ declare const DropdownOverlay: WithComponentId<DropdownOverlayProps>;
1829
+
1556
1830
  declare const ArrowDownIcon: IconComponent;
1557
1831
 
1558
1832
  declare const ArrowLeftIcon: IconComponent;
@@ -2171,9 +2445,9 @@ type FormInputOnKeyDownEvent = {
2171
2445
 
2172
2446
  declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
2173
2447
  /**
2174
- * Determines if it needs to be rendered as input or textarea
2448
+ * Determines if it needs to be rendered as input, textarea or button
2175
2449
  */
2176
- as?: 'input' | 'textarea';
2450
+ as?: 'input' | 'textarea' | 'button';
2177
2451
  /**
2178
2452
  * ID that will be used for accessibility
2179
2453
  */
@@ -2206,6 +2480,10 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
2206
2480
  * The callback function to be invoked when the value of the input field changes
2207
2481
  */
2208
2482
  onChange?: FormInputOnEvent;
2483
+ /**
2484
+ * The callback function to be invoked when input is clicked
2485
+ */
2486
+ onClick?: FormInputOnEvent;
2209
2487
  /**
2210
2488
  * The callback function to be invoked when the value of the input field has any input
2211
2489
  */
@@ -2220,6 +2498,10 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
2220
2498
  * For React Native this will call `onEndEditing` event since we want to get the last value of the input field
2221
2499
  */
2222
2500
  onBlur?: FormInputOnEvent;
2501
+ /**
2502
+ * Ignores the blur event animation (Used in Select to ignore blur animation when item in option is clicked)
2503
+ */
2504
+ shouldIgnoreBlurAnimation?: boolean;
2223
2505
  /**
2224
2506
  * Used to turn the input field to controlled so user can control the value
2225
2507
  */
@@ -2313,6 +2595,16 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
2313
2595
  * Sets the accessibility label for the input
2314
2596
  */
2315
2597
  accessibilityLabel?: string;
2598
+ /**
2599
+ * Sets the id of the label
2600
+ *
2601
+ * (Useful when assigning one label to multiple elements using aria-labelledby)
2602
+ */
2603
+ labelId?: string;
2604
+ /**
2605
+ * Can be used in select to set the id of the active descendant from the listbox
2606
+ */
2607
+ activeDescendant?: string;
2316
2608
  /**
2317
2609
  * Hides the label text
2318
2610
  */
@@ -2326,6 +2618,18 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
2326
2618
  * for internal metric collection purposes
2327
2619
  */
2328
2620
  componentName?: string;
2621
+ /**
2622
+ * whether the input has a popup
2623
+ */
2624
+ hasPopup?: AriaAttributes['hasPopup'];
2625
+ /**
2626
+ * id of the popup
2627
+ */
2628
+ popupId?: string;
2629
+ /**
2630
+ * true if popup is in expanded state
2631
+ */
2632
+ isPopupExpanded?: boolean;
2329
2633
  };
2330
2634
 
2331
2635
  declare type Type = Exclude<BaseInputProps['type'], 'password'>;
@@ -2353,7 +2657,7 @@ declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | '
2353
2657
  */
2354
2658
  type?: Type;
2355
2659
  };
2356
- declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "label" | "value" | "name" | "onBlur" | "onFocus" | "defaultValue" | "prefix" | "onChange" | "isDisabled" | "autoFocus" | "labelPosition" | "suffix" | "validationState" | "helpText" | "errorText" | "necessityIndicator" | "successText" | "isRequired" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & {
2660
+ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "label" | "value" | "name" | "onBlur" | "onFocus" | "defaultValue" | "prefix" | "onChange" | "isDisabled" | "autoFocus" | "labelPosition" | "validationState" | "helpText" | "errorText" | "necessityIndicator" | "successText" | "isRequired" | "suffix" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & {
2357
2661
  /**
2358
2662
  * Decides whether to render a clear icon button
2359
2663
  */
@@ -2477,19 +2781,61 @@ declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'v
2477
2781
  */
2478
2782
  declare const OTPInput: ({ autoFocus, errorText, helpText, isDisabled, keyboardReturnKeyType, keyboardType, label, labelPosition, name, onChange, onOTPFilled, otpLength, placeholder, successText, validationState, value, isMasked, autoCompleteSuggestionType, }: OTPInputProps) => React__default.ReactElement;
2479
2783
 
2480
- declare type IndicatorCommonProps = {
2481
- /**
2482
- * Sets the color tone
2483
- *
2484
- * @default neutral
2485
- */
2486
- intent?: Feedback;
2487
- /**
2488
- * Size of the indicator
2489
- *
2490
- * @default medium
2491
- */
2492
- size?: 'small' | 'medium' | 'large';
2784
+ declare type SelectInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'name' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'autoFocus' | 'onClick' | 'onFocus' | 'onBlur' | 'placeholder'> & {
2785
+ icon?: IconComponent$1;
2786
+ onChange?: ({ name, values }: {
2787
+ name?: string;
2788
+ values: string[];
2789
+ }) => void;
2790
+ };
2791
+ /**
2792
+ * ### SelectInput
2793
+ *
2794
+ * Our equivalent of `<select>` tag. Lets you select items from given options.
2795
+ *
2796
+ * To be used in combination of `Dropdown` and `ActionList` component
2797
+ *
2798
+ * ---
2799
+ *
2800
+ * #### Usage
2801
+ *
2802
+ * ```diff
2803
+ * <Dropdown>
2804
+ * + <SelectInput label="Select Fruits" />
2805
+ * <DropdownOverlay>
2806
+ * <ActionList>
2807
+ * <ActionListItem title="Mango" value="mango" />
2808
+ * <ActionListItem title="Apple" value="apple" />
2809
+ * </ActionList>
2810
+ * </DropdownOverlay>
2811
+ * </Dropdown>
2812
+ * ```
2813
+ *
2814
+ * ---
2815
+ *
2816
+ * Checkout {@link https://blade.razorpay.com/?path=/docs/components-dropdown-with-select--with-single-select SelectInput Documentation}.
2817
+ */
2818
+ declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "label" | "name" | "onBlur" | "onFocus" | "onClick" | "prefix" | "isDisabled" | "autoFocus" | "labelPosition" | "validationState" | "helpText" | "errorText" | "necessityIndicator" | "successText" | "isRequired" | "suffix"> & {
2819
+ icon?: IconComponent$1 | undefined;
2820
+ onChange?: (({ name, values }: {
2821
+ name?: string | undefined;
2822
+ values: string[];
2823
+ }) => void) | undefined;
2824
+ } & React__default.RefAttributes<BladeElementRef>>;
2825
+
2826
+ declare type IndicatorCommonProps = {
2827
+ /**
2828
+ * Sets the color tone
2829
+ *
2830
+ * @default neutral
2831
+ */
2832
+ intent?: Feedback;
2833
+ /**
2834
+ * Size of the indicator
2835
+ *
2836
+ * @default medium
2837
+ */
2838
+ size?: 'small' | 'medium' | 'large';
2493
2839
  };
2494
2840
  declare type IndicatorWithoutA11yLabel = {
2495
2841
  /**
@@ -2514,6 +2860,241 @@ declare type IndicatorWithA11yLabel = {
2514
2860
  declare type IndicatorProps = IndicatorCommonProps & (IndicatorWithA11yLabel | IndicatorWithoutA11yLabel);
2515
2861
  declare const Indicator: ({ accessibilityLabel, children, size, intent, }: IndicatorProps) => ReactElement;
2516
2862
 
2863
+ declare type ListItemProps = {
2864
+ /**
2865
+ * Children to be rendered for ListItem. This can be a text, ListItemLink or another List.
2866
+ *
2867
+ */
2868
+ children: React__default.ReactNode;
2869
+ /**
2870
+ * Icon to be rendered for a ListItem's bullet.
2871
+ *
2872
+ */
2873
+ icon?: IconComponent;
2874
+ /**
2875
+ * This is a private prop to be used only for internal logic purposes.
2876
+ *
2877
+ */
2878
+ _itemNumber?: undefined;
2879
+ };
2880
+ declare const ListItem: {
2881
+ ({ children, icon, _itemNumber }: ListItemProps): React__default.ReactElement;
2882
+ componentId: string;
2883
+ };
2884
+
2885
+ declare type ListCommonProps = {
2886
+ /**
2887
+ * ListItem to be rendered for the List.
2888
+ *
2889
+ */
2890
+ children: React__default.ReactElement<ListItemProps> | React__default.ReactElement<ListItemProps>[];
2891
+ /**
2892
+ * Sets the variant to be rendered for the List.
2893
+ *
2894
+ * @default 'unordered'
2895
+ */
2896
+ variant?: 'unordered' | 'ordered' | 'ordered-filled';
2897
+ /**
2898
+ * Sets the size for the List.
2899
+ *
2900
+ * @default 'medium'
2901
+ */
2902
+ size?: 'small' | 'medium';
2903
+ };
2904
+ declare type ListWithIconProps = ListCommonProps & {
2905
+ variant?: 'unordered';
2906
+ icon?: IconComponent;
2907
+ };
2908
+ declare type ListWithoutIconProps = ListCommonProps & {
2909
+ variant?: 'ordered' | 'ordered-filled';
2910
+ icon?: undefined;
2911
+ };
2912
+ declare type ListProps = ListWithIconProps | ListWithoutIconProps;
2913
+ /**
2914
+ * List Component is used to display a set of related items that are composed of text/links. Each list item begins with a bullet or a number.
2915
+ *
2916
+ * ## Usage
2917
+ *
2918
+ * ```tsx
2919
+ * <List
2920
+ * variant='unordered'
2921
+ * size='medium'
2922
+ * >
2923
+ * <ListItem>
2924
+ * Item 1
2925
+ * <List>
2926
+ * <ListItem>Item 1.1</ListItem>
2927
+ * </List>
2928
+ * </ListItem>
2929
+ * <ListItem>Item 2</ListItem>
2930
+ * <List />
2931
+ * ```
2932
+ */
2933
+ declare const List: {
2934
+ ({ variant, size, children, icon }: ListProps): React__default.ReactElement;
2935
+ componentId: string;
2936
+ };
2937
+
2938
+ declare type ListItemLinkProps = Exclude<LinkProps, 'size' | 'variant' | 'isDisabled'>;
2939
+ declare const ListItemLink: {
2940
+ ({ accessibilityLabel, children, href, icon, iconPosition, onClick, rel, target, }: ListItemLinkProps): React.ReactElement;
2941
+ componentId: string;
2942
+ };
2943
+
2944
+ declare type TitleProps = {
2945
+ size?: 'small' | 'medium' | 'large';
2946
+ contrast?: ColorContrastTypes;
2947
+ type?: TextTypes;
2948
+ children: string;
2949
+ };
2950
+ declare const Title: ({ size, type, contrast, children, }: TitleProps) => ReactElement;
2951
+
2952
+ declare type HeadingVariant = 'regular' | 'subheading';
2953
+ declare type HeadingSize = 'small' | 'medium' | 'large';
2954
+ declare type HeadingCommonProps = {
2955
+ type?: TextTypes;
2956
+ contrast?: ColorContrastTypes;
2957
+ children: string;
2958
+ };
2959
+ declare type HeadingNormalVariant = HeadingCommonProps & {
2960
+ variant?: Exclude<HeadingVariant, 'subheading'>;
2961
+ /**
2962
+ *
2963
+ * @default small
2964
+ */
2965
+ size?: HeadingSize;
2966
+ weight?: keyof Theme$1['typography']['fonts']['weight'];
2967
+ };
2968
+ declare type HeadingSubHeadingVariant = HeadingCommonProps & {
2969
+ variant?: Extract<HeadingVariant, 'subheading'>;
2970
+ /**
2971
+ * `size` cannot be used with variant="subheading". Either change to variant="regular" or remove size prop
2972
+ */
2973
+ size?: undefined;
2974
+ weight?: keyof Pick<Theme$1['typography']['fonts']['weight'], 'bold'>;
2975
+ };
2976
+ /**
2977
+ * Conditionally changing props based on variant.
2978
+ * Overloads or union gives wrong intellisense.
2979
+ */
2980
+ declare type HeadingProps<T> = T extends {
2981
+ variant: infer Variant;
2982
+ } ? Variant extends Exclude<HeadingVariant, 'subheading'> ? HeadingNormalVariant : Variant extends 'subheading' ? HeadingSubHeadingVariant : T : T;
2983
+ declare const Heading: <T extends {
2984
+ variant: HeadingVariant;
2985
+ }>({ variant, size, type, weight, contrast, children, }: HeadingProps<T>) => ReactElement;
2986
+
2987
+ declare type FeedbackColors = `feedback.text.${DotNotationColorStringToken<Theme$1['colors']['feedback']['text']>}`;
2988
+ declare type FeedbackActionColors = `feedback.${Feedback}.action.text.${DotNotationColorStringToken<Theme$1['colors']['feedback'][Feedback]['action']['text']>}`;
2989
+ declare type SurfaceColors = `surface.text.${DotNotationColorStringToken<Theme$1['colors']['surface']['text']>}`;
2990
+ declare type ActionColors = `action.text.${DotNotationColorStringToken<Theme$1['colors']['action']['text']>}`;
2991
+ declare type BadgeTextColors = `badge.text.${DotNotationColorStringToken<Theme$1['colors']['badge']['text']>}`;
2992
+ declare type BaseTextProps = {
2993
+ id?: string;
2994
+ color?: ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
2995
+ fontFamily?: keyof Theme$1['typography']['fonts']['family'];
2996
+ fontSize?: keyof Theme$1['typography']['fonts']['size'];
2997
+ fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
2998
+ fontStyle?: 'italic' | 'normal';
2999
+ textDecorationLine?: 'line-through' | 'none' | 'underline';
3000
+ lineHeight?: keyof Theme$1['typography']['lineHeights'];
3001
+ /**
3002
+ * Web only
3003
+ */
3004
+ as?: 'code' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span';
3005
+ textAlign?: 'center' | 'justify' | 'left' | 'right';
3006
+ truncateAfterLines?: number;
3007
+ className?: string;
3008
+ style?: React.CSSProperties;
3009
+ children: React.ReactNode;
3010
+ accessibilityProps?: Partial<AccessibilityProps>;
3011
+ /**
3012
+ * React Native only
3013
+ */
3014
+ numberOfLines?: number;
3015
+ componentName?: 'text' | 'title' | 'heading' | 'code';
3016
+ };
3017
+
3018
+ declare type TextCommonProps = {
3019
+ type?: TextTypes;
3020
+ contrast?: ColorContrastTypes;
3021
+ truncateAfterLines?: number;
3022
+ children: React.ReactNode;
3023
+ weight?: keyof Theme$1['typography']['fonts']['weight'];
3024
+ /**
3025
+ * **For Internal use only**: Sets the color of the Text component
3026
+ */
3027
+ color?: BaseTextProps['color'];
3028
+ };
3029
+ declare type TextVariant = 'body' | 'caption';
3030
+ declare type TextBodyVariant = TextCommonProps & {
3031
+ variant?: Extract<TextVariant, 'body'>;
3032
+ size?: 'xsmall' | 'small' | 'medium';
3033
+ };
3034
+ declare type TextCaptionVariant = TextCommonProps & {
3035
+ variant?: Extract<TextVariant, 'caption'>;
3036
+ size?: 'medium';
3037
+ };
3038
+ /**
3039
+ * Conditionally changing props based on variant.
3040
+ * Overloads or union gives wrong intellisense.
3041
+ */
3042
+ declare type TextProps<T> = T extends {
3043
+ variant: infer Variant;
3044
+ } ? Variant extends 'caption' ? TextCaptionVariant : Variant extends 'body' ? TextBodyVariant : T : T;
3045
+ declare type TextForwardedAs = {
3046
+ forwardedAs?: BaseTextProps['as'];
3047
+ };
3048
+ declare const getTextProps: <T extends {
3049
+ variant: TextVariant;
3050
+ }>({ variant, type, weight, size, contrast, }: Pick<TextProps<T>, "size" | "variant" | "type" | "weight" | "contrast">) => Omit<BaseTextProps, 'children'> & TextForwardedAs;
3051
+ declare const Text: <T extends {
3052
+ variant: TextVariant;
3053
+ }>({ variant, weight, size, type, contrast, truncateAfterLines, children, color, }: TextProps<T>) => ReactElement;
3054
+
3055
+ declare type CodeProps = {
3056
+ children: string;
3057
+ /**
3058
+ * Decides the fontSize and padding of Code
3059
+ *
3060
+ * @default small
3061
+ */
3062
+ size?: 'small' | 'medium';
3063
+ };
3064
+ /**
3065
+ * Code component can be used for displaying token, variable names, or inlined code snippets.
3066
+ *
3067
+ * ## Usage
3068
+ *
3069
+ * ### In Web
3070
+ * In web, you can use it inside `Text` component or individually. The component is set to display `inline-block`
3071
+ *
3072
+ * ```tsx
3073
+ * <Text>
3074
+ * Lorem ipsum <Code>SENTRY_TOKEN</Code> normal text
3075
+ * </Text>
3076
+ * ```
3077
+ *
3078
+ * ### In React Native
3079
+ *
3080
+ * In React Native, you would have to align it using flex to make sure the Code and the surrounding text is correctly aligned
3081
+ *
3082
+ * ```tsx
3083
+ * <Box flexWrap="wrap" flexDirection="row" alignItems="flex-start">
3084
+ * <Text>Lorem ipsum </Text>
3085
+ * <Code>SENTRY_TOKEN</Code>
3086
+ * <Text> normal text</Text>
3087
+ * </Box>
3088
+ * ```
3089
+ */
3090
+ declare const Code: ({ children, size }: CodeProps) => JSX.Element;
3091
+
3092
+ declare type ListItemCodeProps = Exclude<CodeProps, 'size'>;
3093
+ declare const ListItemCode: {
3094
+ ({ children }: ListItemCodeProps): React.ReactElement;
3095
+ componentId: string;
3096
+ };
3097
+
2517
3098
  declare type Assertiveness = AriaAttributes['liveRegion'];
2518
3099
 
2519
3100
  declare function announce(message: string, _assertiveness?: Assertiveness): void;
@@ -2744,160 +3325,16 @@ declare type SkipNavLinkProps = {
2744
3325
  declare const SkipNavLink: (_props: SkipNavLinkProps) => never;
2745
3326
  declare const SkipNavContent: (_props: SkipNavLinkProps) => never;
2746
3327
 
2747
- declare type TitleProps = {
2748
- size?: 'small' | 'medium' | 'large';
2749
- contrast?: ColorContrastTypes;
2750
- type?: TextTypes;
2751
- children: string;
2752
- };
2753
- declare const Title: ({ size, type, contrast, children, }: TitleProps) => ReactElement;
2754
-
2755
- declare type HeadingVariant = 'regular' | 'subheading';
2756
- declare type HeadingSize = 'small' | 'medium' | 'large';
2757
- declare type HeadingCommonProps = {
2758
- type?: TextTypes;
2759
- contrast?: ColorContrastTypes;
2760
- children: string;
2761
- };
2762
- declare type HeadingNormalVariant = HeadingCommonProps & {
2763
- variant?: Exclude<HeadingVariant, 'subheading'>;
2764
- /**
2765
- *
2766
- * @default small
2767
- */
2768
- size?: HeadingSize;
2769
- weight?: keyof Theme$1['typography']['fonts']['weight'];
2770
- };
2771
- declare type HeadingSubHeadingVariant = HeadingCommonProps & {
2772
- variant?: Extract<HeadingVariant, 'subheading'>;
2773
- /**
2774
- * `size` cannot be used with variant="subheading". Either change to variant="regular" or remove size prop
2775
- */
2776
- size?: undefined;
2777
- weight?: keyof Pick<Theme$1['typography']['fonts']['weight'], 'bold'>;
2778
- };
2779
- /**
2780
- * Conditionally changing props based on variant.
2781
- * Overloads or union gives wrong intellisense.
2782
- */
2783
- declare type HeadingProps<T> = T extends {
2784
- variant: infer Variant;
2785
- } ? Variant extends Exclude<HeadingVariant, 'subheading'> ? HeadingNormalVariant : Variant extends 'subheading' ? HeadingSubHeadingVariant : T : T;
2786
- declare const Heading: <T extends {
2787
- variant: HeadingVariant;
2788
- }>({ variant, size, type, weight, contrast, children, }: HeadingProps<T>) => ReactElement;
2789
-
2790
- declare type FeedbackColors = `feedback.text.${DotNotationColorStringToken<Theme$1['colors']['feedback']['text']>}`;
2791
- declare type FeedbackActionColors = `feedback.${Feedback}.action.text.${DotNotationColorStringToken<Theme$1['colors']['feedback'][Feedback]['action']['text']>}`;
2792
- declare type SurfaceColors = `surface.text.${DotNotationColorStringToken<Theme$1['colors']['surface']['text']>}`;
2793
- declare type ActionColors = `action.text.${DotNotationColorStringToken<Theme$1['colors']['action']['text']>}`;
2794
- declare type BadgeTextColors = `badge.text.${DotNotationColorStringToken<Theme$1['colors']['badge']['text']>}`;
2795
- declare type BaseTextProps = {
2796
- id?: string;
2797
- color?: ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
2798
- fontFamily?: keyof Theme$1['typography']['fonts']['family'];
2799
- fontSize?: keyof Theme$1['typography']['fonts']['size'];
2800
- fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
2801
- fontStyle?: 'italic' | 'normal';
2802
- textDecorationLine?: 'line-through' | 'none' | 'underline';
2803
- lineHeight?: keyof Theme$1['typography']['lineHeights'];
2804
- /**
2805
- * Web only
2806
- */
2807
- as?: 'code' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span';
2808
- textAlign?: 'center' | 'justify' | 'left' | 'right';
2809
- truncateAfterLines?: number;
2810
- className?: string;
2811
- style?: React.CSSProperties;
2812
- children: React.ReactNode;
2813
- accessibilityProps?: Partial<AccessibilityProps>;
2814
- /**
2815
- * React Native only
2816
- */
2817
- numberOfLines?: number;
2818
- componentName?: 'text' | 'title' | 'heading' | 'code';
2819
- };
2820
-
2821
- declare type TextCommonProps = {
2822
- type?: TextTypes;
2823
- contrast?: ColorContrastTypes;
2824
- truncateAfterLines?: number;
2825
- children: React.ReactNode;
2826
- weight?: keyof Theme$1['typography']['fonts']['weight'];
2827
- /**
2828
- * **For Internal use only**: Sets the color of the Text component
2829
- */
2830
- color?: BaseTextProps['color'];
2831
- };
2832
- declare type TextVariant = 'body' | 'caption';
2833
- declare type TextBodyVariant = TextCommonProps & {
2834
- variant?: Extract<TextVariant, 'body'>;
2835
- size?: 'xsmall' | 'small' | 'medium';
2836
- };
2837
- declare type TextCaptionVariant = TextCommonProps & {
2838
- variant?: Extract<TextVariant, 'caption'>;
2839
- size?: 'medium';
2840
- };
2841
- /**
2842
- * Conditionally changing props based on variant.
2843
- * Overloads or union gives wrong intellisense.
2844
- */
2845
- declare type TextProps<T> = T extends {
2846
- variant: infer Variant;
2847
- } ? Variant extends 'caption' ? TextCaptionVariant : Variant extends 'body' ? TextBodyVariant : T : T;
2848
- declare type TextForwardedAs = {
2849
- forwardedAs?: BaseTextProps['as'];
2850
- };
2851
- declare const getTextProps: <T extends {
2852
- variant: TextVariant;
2853
- }>({ variant, type, weight, size, contrast, }: Pick<TextProps<T>, "size" | "variant" | "type" | "weight" | "contrast">) => Omit<BaseTextProps, 'children'> & TextForwardedAs;
2854
- declare const Text: <T extends {
2855
- variant: TextVariant;
2856
- }>({ variant, weight, size, type, contrast, truncateAfterLines, children, color, }: TextProps<T>) => ReactElement;
2857
-
2858
- declare type CodeProps = {
2859
- children: string;
2860
- /**
2861
- * Decides the fontSize and padding of Code
2862
- *
2863
- * @default small
2864
- */
2865
- size?: 'small' | 'medium';
2866
- };
2867
- /**
2868
- * Code component can be used for displaying token, variable names, or inlined code snippets.
2869
- *
2870
- * ## Usage
2871
- *
2872
- * ### In Web
2873
- * In web, you can use it inside `Text` component or individually. The component is set to display `inline-block`
2874
- *
2875
- * ```tsx
2876
- * <Text>
2877
- * Lorem ipsum <Code>SENTRY_TOKEN</Code> normal text
2878
- * </Text>
2879
- * ```
2880
- *
2881
- * ### In React Native
2882
- *
2883
- * In React Native, you would have to align it using flex to make sure the Code and the surrounding text is correctly aligned
2884
- *
2885
- * ```tsx
2886
- * <Box flexWrap="wrap" flexDirection="row" alignItems="flex-start">
2887
- * <Text>Lorem ipsum </Text>
2888
- * <Code>SENTRY_TOKEN</Code>
2889
- * <Text> normal text</Text>
2890
- * </Box>
2891
- * ```
2892
- */
2893
- declare const Code: ({ children, size }: CodeProps) => JSX.Element;
2894
-
2895
3328
  declare type VisuallyHiddenProps = {
2896
3329
  children: React.ReactNode;
2897
3330
  };
2898
3331
 
2899
3332
  declare const VisuallyHidden: ({ children }: VisuallyHiddenProps) => JSX.Element;
2900
3333
 
3334
+ /**
3335
+ * Screen reader class adapted from webaim
3336
+ * https://webaim.org/techniques/css/invisiblecontent/#techniques
3337
+ */
2901
3338
  declare const screenReaderStyles: CSSObject;
2902
3339
 
2903
- export { ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkIcon, LinkProps, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useTheme };
3340
+ export { ActionList, ActionListFooter, ActionListFooterIcon, ActionListFooterProps, ActionListHeader, ActionListHeaderIcon, ActionListHeaderProps, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useTheme };