@razorpay/blade 10.15.3 → 10.17.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.
Files changed (30) hide show
  1. package/build/components/index.d.ts +432 -2
  2. package/build/components/index.development.web.js +2674 -1967
  3. package/build/components/index.development.web.js.map +1 -1
  4. package/build/components/index.native.d.ts +111 -2
  5. package/build/components/index.native.js +373 -354
  6. package/build/components/index.native.js.map +1 -1
  7. package/build/components/index.production.web.js +2653 -1966
  8. package/build/components/index.production.web.js.map +1 -1
  9. package/build/css/bankingThemeDarkDesktop.css +2 -3
  10. package/build/css/bankingThemeDarkMobile.css +2 -3
  11. package/build/css/bankingThemeLightDesktop.css +3 -4
  12. package/build/css/bankingThemeLightMobile.css +3 -4
  13. package/build/css/paymentThemeDarkDesktop.css +3 -4
  14. package/build/css/paymentThemeDarkMobile.css +3 -4
  15. package/build/css/paymentThemeLightDesktop.css +3 -4
  16. package/build/css/paymentThemeLightMobile.css +3 -4
  17. package/build/tokens/index.d.ts +0 -1
  18. package/build/tokens/index.development.web.js +7 -19
  19. package/build/tokens/index.development.web.js.map +1 -1
  20. package/build/tokens/index.native.d.ts +0 -1
  21. package/build/tokens/index.native.js +3 -3
  22. package/build/tokens/index.native.js.map +1 -1
  23. package/build/tokens/index.production.web.js +7 -19
  24. package/build/tokens/index.production.web.js.map +1 -1
  25. package/build/utils/index.d.ts +1 -2
  26. package/build/utils/index.development.web.js.map +1 -1
  27. package/build/utils/index.native.d.ts +1 -2
  28. package/build/utils/index.native.js.map +1 -1
  29. package/build/utils/index.production.web.js.map +1 -1
  30. package/package.json +31 -20
@@ -437,7 +437,6 @@ declare type Colors = {
437
437
  overlay: Record<'background', Record<400 | 800, string>>;
438
438
  popup: Record<'background', string>;
439
439
  };
440
- overlay: Record<'background', string>;
441
440
  action: {
442
441
  background: Omit<ActionVariants, 'link'>;
443
442
  border: Omit<ActionVariants, 'link'>;
@@ -6832,6 +6831,437 @@ declare type TagProps = {
6832
6831
  */
6833
6832
  declare const Tag: ({ size, icon, onDismiss, children, isDisabled, testID, _isVirtuallyFocused, _isTagInsideInput, ...styledProps }: TagProps) => React__default.ReactElement | null;
6834
6833
 
6834
+ declare type TabsProps = {
6835
+ /**
6836
+ * The content of the component, accepts `TabsList` and `TabsPanel` components.
6837
+ */
6838
+ children: React__default.ReactNode;
6839
+ /**
6840
+ * The value of the tab panel same as the corresponding TabItem's value to match the selected TabItem.
6841
+ */
6842
+ value?: string;
6843
+ /**
6844
+ * The default value of the selected tab, in case the Tabs component is uncontrolled.
6845
+ */
6846
+ defaultValue?: string;
6847
+ /**
6848
+ * Callback fired when the value changes.
6849
+ */
6850
+ onChange?: (value: string) => void;
6851
+ /**
6852
+ * The orientation of the tabs.
6853
+ *
6854
+ * @default 'horizontal' (always horizontal on react-native)
6855
+ */
6856
+ orientation?: Platform.Select<{
6857
+ web: 'horizontal' | 'vertical';
6858
+ native: 'horizontal';
6859
+ }>;
6860
+ /**
6861
+ * The size of the tabs.
6862
+ *
6863
+ * @default 'medium'
6864
+ */
6865
+ size?: 'medium' | 'large';
6866
+ /**
6867
+ * The variant of the tabs.
6868
+ *
6869
+ * @default 'bordered'
6870
+ */
6871
+ variant?: 'bordered' | 'borderless' | 'filled';
6872
+ /**
6873
+ * If `true`, the TabItems will grow to use all the available space.
6874
+ *
6875
+ * @default false
6876
+ */
6877
+ isFullWidthTabItem?: boolean;
6878
+ /**
6879
+ * If `true`, the TabPanel will be rendered only when it becomes active.
6880
+ *
6881
+ * @default false
6882
+ */
6883
+ isLazy?: boolean;
6884
+ };
6885
+ declare type TabItemProps = {
6886
+ /**
6887
+ * The label of the tab item.
6888
+ */
6889
+ children: React__default.ReactNode;
6890
+ /**
6891
+ * The value of the tab item.
6892
+ */
6893
+ value: string;
6894
+ /**
6895
+ * Leading element of the tab item.
6896
+ * Can be used to render an Icon.
6897
+ */
6898
+ leading?: IconComponent;
6899
+ /**
6900
+ * Trailing element of the tab item.
6901
+ * Can be used to render a Badge/Counter component.
6902
+ */
6903
+ trailing?: React__default.ReactNode;
6904
+ /**
6905
+ * Internal prop used to pass size from Tabs to TabsItem.
6906
+ */
6907
+ /**
6908
+ * If `true`, the tab item will be disabled.
6909
+ */
6910
+ isDisabled?: boolean;
6911
+ /**
6912
+ * If set the tab item will be rendered as a link.
6913
+ * This can be used to create a tab item that redirects to another page or integrate with react-router.
6914
+ *
6915
+ * @default undefined
6916
+ */
6917
+ href?: string;
6918
+ /**
6919
+ * Callback fired when the tab item is clicked.
6920
+ */
6921
+ onClick?: (event: React__default.MouseEvent) => void;
6922
+ };
6923
+ declare type TabPanelProps = {
6924
+ /**
6925
+ * The value of the tab panel. This will be used to match the selected tab.
6926
+ */
6927
+ value: string;
6928
+ /**
6929
+ * The content of the tab panel.
6930
+ */
6931
+ children: React__default.ReactNode;
6932
+ };
6933
+
6934
+ /**
6935
+ * ### Tabs
6936
+ *
6937
+ * Check out the [Tab Stories & Examples](https://blade.razorpay.com/?path=/docs/components-tabs--default)
6938
+ *
6939
+ * ----
6940
+ * ### Basic Usage
6941
+ *
6942
+ * ```jsx
6943
+ * import { Tabs, TabList, TabItem, TabPanel } from '@razorpay/blade/components';
6944
+ *
6945
+ * <Tabs variant="bordered" orientation="horizontal">
6946
+ * <TabList>
6947
+ * <TabItem value="subscriptions">Subscription</TabItem>
6948
+ * <TabItem value="plans">Plans</TabItem>
6949
+ * <TabItem value="settings">Settings</TabItem>
6950
+ * </TabList>
6951
+ *
6952
+ * <TabPanel value="subscriptions">
6953
+ * <Text>Subscriptions Panel</Text>
6954
+ * </TabPanel>
6955
+ * <TabPanel value="plans">
6956
+ * <Text>Plans Panel</Text>
6957
+ * </TabPanel>
6958
+ * <TabPanel value="settings">
6959
+ * <Text>Settings Panel</Text>
6960
+ * </TabPanel>
6961
+ * </Tabs>
6962
+ * ```
6963
+ */
6964
+ declare const Tabs: ({ children, defaultValue, value, onChange, orientation, size, variant, isFullWidthTabItem, isLazy, }: TabsProps) => React__default.ReactElement;
6965
+
6966
+ declare const TabItem: ({ children, value, leading, trailing, isDisabled, href, onClick, }: TabItemProps) => React__default.ReactElement;
6967
+
6968
+ declare const TabList: ({ children, ...props }: {
6969
+ children: React__default.ReactNode;
6970
+ } & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
6971
+ bottom: SpacingValueType | {
6972
+ readonly base?: SpacingValueType | undefined;
6973
+ readonly xs?: SpacingValueType | undefined;
6974
+ readonly s?: SpacingValueType | undefined;
6975
+ readonly m?: SpacingValueType | undefined;
6976
+ readonly l?: SpacingValueType | undefined;
6977
+ readonly xl?: SpacingValueType | undefined;
6978
+ };
6979
+ left: SpacingValueType | {
6980
+ readonly base?: SpacingValueType | undefined;
6981
+ readonly xs?: SpacingValueType | undefined;
6982
+ readonly s?: SpacingValueType | undefined;
6983
+ readonly m?: SpacingValueType | undefined;
6984
+ readonly l?: SpacingValueType | undefined;
6985
+ readonly xl?: SpacingValueType | undefined;
6986
+ };
6987
+ position?: csstype.Property.Position | {
6988
+ readonly base?: csstype.Property.Position | undefined;
6989
+ readonly xs?: csstype.Property.Position | undefined;
6990
+ readonly s?: csstype.Property.Position | undefined;
6991
+ readonly m?: csstype.Property.Position | undefined;
6992
+ readonly l?: csstype.Property.Position | undefined;
6993
+ readonly xl?: csstype.Property.Position | undefined;
6994
+ } | undefined;
6995
+ right: SpacingValueType | {
6996
+ readonly base?: SpacingValueType | undefined;
6997
+ readonly xs?: SpacingValueType | undefined;
6998
+ readonly s?: SpacingValueType | undefined;
6999
+ readonly m?: SpacingValueType | undefined;
7000
+ readonly l?: SpacingValueType | undefined;
7001
+ readonly xl?: SpacingValueType | undefined;
7002
+ };
7003
+ top: SpacingValueType | {
7004
+ readonly base?: SpacingValueType | undefined;
7005
+ readonly xs?: SpacingValueType | undefined;
7006
+ readonly s?: SpacingValueType | undefined;
7007
+ readonly m?: SpacingValueType | undefined;
7008
+ readonly l?: SpacingValueType | undefined;
7009
+ readonly xl?: SpacingValueType | undefined;
7010
+ };
7011
+ zIndex?: csstype.Property.ZIndex | {
7012
+ readonly base?: csstype.Property.ZIndex | undefined;
7013
+ readonly xs?: csstype.Property.ZIndex | undefined;
7014
+ readonly s?: csstype.Property.ZIndex | undefined;
7015
+ readonly m?: csstype.Property.ZIndex | undefined;
7016
+ readonly l?: csstype.Property.ZIndex | undefined;
7017
+ readonly xl?: csstype.Property.ZIndex | undefined;
7018
+ } | undefined;
7019
+ __brand__?: "platform-web" | {
7020
+ readonly base?: "platform-web" | undefined;
7021
+ readonly xs?: "platform-web" | undefined;
7022
+ readonly s?: "platform-web" | undefined;
7023
+ readonly m?: "platform-web" | undefined;
7024
+ readonly l?: "platform-web" | undefined;
7025
+ readonly xl?: "platform-web" | undefined;
7026
+ } | undefined;
7027
+ } & Pick<{
7028
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
7029
+ readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
7030
+ readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
7031
+ readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
7032
+ readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
7033
+ readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
7034
+ readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
7035
+ } | undefined;
7036
+ gridAutoFlow?: csstype.Property.GridAutoFlow | {
7037
+ readonly base?: csstype.Property.GridAutoFlow | undefined;
7038
+ readonly xs?: csstype.Property.GridAutoFlow | undefined;
7039
+ readonly s?: csstype.Property.GridAutoFlow | undefined;
7040
+ readonly m?: csstype.Property.GridAutoFlow | undefined;
7041
+ readonly l?: csstype.Property.GridAutoFlow | undefined;
7042
+ readonly xl?: csstype.Property.GridAutoFlow | undefined;
7043
+ } | undefined;
7044
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
7045
+ readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
7046
+ readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
7047
+ readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
7048
+ readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
7049
+ readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
7050
+ readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
7051
+ } | undefined;
7052
+ gridColumnEnd?: csstype.Property.GridColumnEnd | {
7053
+ readonly base?: csstype.Property.GridColumnEnd | undefined;
7054
+ readonly xs?: csstype.Property.GridColumnEnd | undefined;
7055
+ readonly s?: csstype.Property.GridColumnEnd | undefined;
7056
+ readonly m?: csstype.Property.GridColumnEnd | undefined;
7057
+ readonly l?: csstype.Property.GridColumnEnd | undefined;
7058
+ readonly xl?: csstype.Property.GridColumnEnd | undefined;
7059
+ } | undefined;
7060
+ gridColumnStart?: csstype.Property.GridColumnStart | {
7061
+ readonly base?: csstype.Property.GridColumnStart | undefined;
7062
+ readonly xs?: csstype.Property.GridColumnStart | undefined;
7063
+ readonly s?: csstype.Property.GridColumnStart | undefined;
7064
+ readonly m?: csstype.Property.GridColumnStart | undefined;
7065
+ readonly l?: csstype.Property.GridColumnStart | undefined;
7066
+ readonly xl?: csstype.Property.GridColumnStart | undefined;
7067
+ } | undefined;
7068
+ gridRowEnd?: csstype.Property.GridRowEnd | {
7069
+ readonly base?: csstype.Property.GridRowEnd | undefined;
7070
+ readonly xs?: csstype.Property.GridRowEnd | undefined;
7071
+ readonly s?: csstype.Property.GridRowEnd | undefined;
7072
+ readonly m?: csstype.Property.GridRowEnd | undefined;
7073
+ readonly l?: csstype.Property.GridRowEnd | undefined;
7074
+ readonly xl?: csstype.Property.GridRowEnd | undefined;
7075
+ } | undefined;
7076
+ gridRowStart?: csstype.Property.GridRowStart | {
7077
+ readonly base?: csstype.Property.GridRowStart | undefined;
7078
+ readonly xs?: csstype.Property.GridRowStart | undefined;
7079
+ readonly s?: csstype.Property.GridRowStart | undefined;
7080
+ readonly m?: csstype.Property.GridRowStart | undefined;
7081
+ readonly l?: csstype.Property.GridRowStart | undefined;
7082
+ readonly xl?: csstype.Property.GridRowStart | undefined;
7083
+ } | undefined;
7084
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
7085
+ readonly base?: csstype.Property.GridTemplateAreas | undefined;
7086
+ readonly xs?: csstype.Property.GridTemplateAreas | undefined;
7087
+ readonly s?: csstype.Property.GridTemplateAreas | undefined;
7088
+ readonly m?: csstype.Property.GridTemplateAreas | undefined;
7089
+ readonly l?: csstype.Property.GridTemplateAreas | undefined;
7090
+ readonly xl?: csstype.Property.GridTemplateAreas | undefined;
7091
+ } | undefined;
7092
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
7093
+ readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7094
+ readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7095
+ readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7096
+ readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7097
+ readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7098
+ readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7099
+ } | undefined;
7100
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
7101
+ readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
7102
+ readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
7103
+ readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
7104
+ readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
7105
+ readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
7106
+ readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
7107
+ } | undefined;
7108
+ grid?: csstype.Property.Grid | {
7109
+ readonly base?: csstype.Property.Grid | undefined;
7110
+ readonly xs?: csstype.Property.Grid | undefined;
7111
+ readonly s?: csstype.Property.Grid | undefined;
7112
+ readonly m?: csstype.Property.Grid | undefined;
7113
+ readonly l?: csstype.Property.Grid | undefined;
7114
+ readonly xl?: csstype.Property.Grid | undefined;
7115
+ } | undefined;
7116
+ gridArea?: csstype.Property.GridArea | {
7117
+ readonly base?: csstype.Property.GridArea | undefined;
7118
+ readonly xs?: csstype.Property.GridArea | undefined;
7119
+ readonly s?: csstype.Property.GridArea | undefined;
7120
+ readonly m?: csstype.Property.GridArea | undefined;
7121
+ readonly l?: csstype.Property.GridArea | undefined;
7122
+ readonly xl?: csstype.Property.GridArea | undefined;
7123
+ } | undefined;
7124
+ gridColumn?: csstype.Property.GridColumn | {
7125
+ readonly base?: csstype.Property.GridColumn | undefined;
7126
+ readonly xs?: csstype.Property.GridColumn | undefined;
7127
+ readonly s?: csstype.Property.GridColumn | undefined;
7128
+ readonly m?: csstype.Property.GridColumn | undefined;
7129
+ readonly l?: csstype.Property.GridColumn | undefined;
7130
+ readonly xl?: csstype.Property.GridColumn | undefined;
7131
+ } | undefined;
7132
+ gridRow?: csstype.Property.GridRow | {
7133
+ readonly base?: csstype.Property.GridRow | undefined;
7134
+ readonly xs?: csstype.Property.GridRow | undefined;
7135
+ readonly s?: csstype.Property.GridRow | undefined;
7136
+ readonly m?: csstype.Property.GridRow | undefined;
7137
+ readonly l?: csstype.Property.GridRow | undefined;
7138
+ readonly xl?: csstype.Property.GridRow | undefined;
7139
+ } | undefined;
7140
+ gridTemplate?: csstype.Property.GridTemplate | {
7141
+ readonly base?: csstype.Property.GridTemplate | undefined;
7142
+ readonly xs?: csstype.Property.GridTemplate | undefined;
7143
+ readonly s?: csstype.Property.GridTemplate | undefined;
7144
+ readonly m?: csstype.Property.GridTemplate | undefined;
7145
+ readonly l?: csstype.Property.GridTemplate | undefined;
7146
+ readonly xl?: csstype.Property.GridTemplate | undefined;
7147
+ } | undefined;
7148
+ __brand__?: "platform-web" | {
7149
+ readonly base?: "platform-web" | undefined;
7150
+ readonly xs?: "platform-web" | undefined;
7151
+ readonly s?: "platform-web" | undefined;
7152
+ readonly m?: "platform-web" | undefined;
7153
+ readonly l?: "platform-web" | undefined;
7154
+ readonly xl?: "platform-web" | undefined;
7155
+ } | undefined;
7156
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
7157
+ width: SpacingValueType | {
7158
+ readonly base?: SpacingValueType | undefined;
7159
+ readonly xs?: SpacingValueType | undefined;
7160
+ readonly s?: SpacingValueType | undefined;
7161
+ readonly m?: SpacingValueType | undefined;
7162
+ readonly l?: SpacingValueType | undefined;
7163
+ readonly xl?: SpacingValueType | undefined;
7164
+ };
7165
+ display?: csstype.Property.Display | {
7166
+ readonly base?: csstype.Property.Display | undefined;
7167
+ readonly xs?: csstype.Property.Display | undefined;
7168
+ readonly s?: csstype.Property.Display | undefined;
7169
+ readonly m?: csstype.Property.Display | undefined;
7170
+ readonly l?: csstype.Property.Display | undefined;
7171
+ readonly xl?: csstype.Property.Display | undefined;
7172
+ } | undefined;
7173
+ height: SpacingValueType | {
7174
+ readonly base?: SpacingValueType | undefined;
7175
+ readonly xs?: SpacingValueType | undefined;
7176
+ readonly s?: SpacingValueType | undefined;
7177
+ readonly m?: SpacingValueType | undefined;
7178
+ readonly l?: SpacingValueType | undefined;
7179
+ readonly xl?: SpacingValueType | undefined;
7180
+ };
7181
+ maxHeight: SpacingValueType | {
7182
+ readonly base?: SpacingValueType | undefined;
7183
+ readonly xs?: SpacingValueType | undefined;
7184
+ readonly s?: SpacingValueType | undefined;
7185
+ readonly m?: SpacingValueType | undefined;
7186
+ readonly l?: SpacingValueType | undefined;
7187
+ readonly xl?: SpacingValueType | undefined;
7188
+ };
7189
+ maxWidth: SpacingValueType | {
7190
+ readonly base?: SpacingValueType | undefined;
7191
+ readonly xs?: SpacingValueType | undefined;
7192
+ readonly s?: SpacingValueType | undefined;
7193
+ readonly m?: SpacingValueType | undefined;
7194
+ readonly l?: SpacingValueType | undefined;
7195
+ readonly xl?: SpacingValueType | undefined;
7196
+ };
7197
+ minHeight: SpacingValueType | {
7198
+ readonly base?: SpacingValueType | undefined;
7199
+ readonly xs?: SpacingValueType | undefined;
7200
+ readonly s?: SpacingValueType | undefined;
7201
+ readonly m?: SpacingValueType | undefined;
7202
+ readonly l?: SpacingValueType | undefined;
7203
+ readonly xl?: SpacingValueType | undefined;
7204
+ };
7205
+ minWidth: SpacingValueType | {
7206
+ readonly base?: SpacingValueType | undefined;
7207
+ readonly xs?: SpacingValueType | undefined;
7208
+ readonly s?: SpacingValueType | undefined;
7209
+ readonly m?: SpacingValueType | undefined;
7210
+ readonly l?: SpacingValueType | undefined;
7211
+ readonly xl?: SpacingValueType | undefined;
7212
+ };
7213
+ overflowX?: csstype.Property.OverflowX | {
7214
+ readonly base?: csstype.Property.OverflowX | undefined;
7215
+ readonly xs?: csstype.Property.OverflowX | undefined;
7216
+ readonly s?: csstype.Property.OverflowX | undefined;
7217
+ readonly m?: csstype.Property.OverflowX | undefined;
7218
+ readonly l?: csstype.Property.OverflowX | undefined;
7219
+ readonly xl?: csstype.Property.OverflowX | undefined;
7220
+ } | undefined;
7221
+ overflowY?: csstype.Property.OverflowY | {
7222
+ readonly base?: csstype.Property.OverflowY | undefined;
7223
+ readonly xs?: csstype.Property.OverflowY | undefined;
7224
+ readonly s?: csstype.Property.OverflowY | undefined;
7225
+ readonly m?: csstype.Property.OverflowY | undefined;
7226
+ readonly l?: csstype.Property.OverflowY | undefined;
7227
+ readonly xl?: csstype.Property.OverflowY | undefined;
7228
+ } | undefined;
7229
+ textAlign?: csstype.Property.TextAlign | {
7230
+ readonly base?: csstype.Property.TextAlign | undefined;
7231
+ readonly xs?: csstype.Property.TextAlign | undefined;
7232
+ readonly s?: csstype.Property.TextAlign | undefined;
7233
+ readonly m?: csstype.Property.TextAlign | undefined;
7234
+ readonly l?: csstype.Property.TextAlign | undefined;
7235
+ readonly xl?: csstype.Property.TextAlign | undefined;
7236
+ } | undefined;
7237
+ whiteSpace?: csstype.Property.WhiteSpace | {
7238
+ readonly base?: csstype.Property.WhiteSpace | undefined;
7239
+ readonly xs?: csstype.Property.WhiteSpace | undefined;
7240
+ readonly s?: csstype.Property.WhiteSpace | undefined;
7241
+ readonly m?: csstype.Property.WhiteSpace | undefined;
7242
+ readonly l?: csstype.Property.WhiteSpace | undefined;
7243
+ readonly xl?: csstype.Property.WhiteSpace | undefined;
7244
+ } | undefined;
7245
+ overflow?: csstype.Property.Overflow | {
7246
+ readonly base?: csstype.Property.Overflow | undefined;
7247
+ readonly xs?: csstype.Property.Overflow | undefined;
7248
+ readonly s?: csstype.Property.Overflow | undefined;
7249
+ readonly m?: csstype.Property.Overflow | undefined;
7250
+ readonly l?: csstype.Property.Overflow | undefined;
7251
+ readonly xl?: csstype.Property.Overflow | undefined;
7252
+ } | undefined;
7253
+ __brand__?: "platform-web" | {
7254
+ readonly base?: "platform-web" | undefined;
7255
+ readonly xs?: "platform-web" | undefined;
7256
+ readonly s?: "platform-web" | undefined;
7257
+ readonly m?: "platform-web" | undefined;
7258
+ readonly l?: "platform-web" | undefined;
7259
+ readonly xl?: "platform-web" | undefined;
7260
+ } | undefined;
7261
+ }, "display">, "__brand__">>) => React__default.ReactElement;
7262
+
7263
+ declare const TabPanel: ({ children, value }: TabPanelProps) => React__default.ReactElement;
7264
+
6835
7265
  declare type SkeletonProps = StyledPropsBlade & Pick<BaseBoxProps, 'width' | 'maxWidth' | 'minWidth' | 'height' | 'maxHeight' | 'minHeight' | 'borderRadius'> & Partial<FlexboxProps> & {
6836
7266
  contrast?: 'low' | 'high';
6837
7267
  testID?: string;
@@ -8246,4 +8676,4 @@ declare const PopoverInteractiveWrapper: React__default.ForwardRefExoticComponen
8246
8676
  onKeyDown?: ((event: React__default.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
8247
8677
  } & Omit<BaseBoxProps, "as"> & React__default.RefAttributes<HTMLButtonElement>>;
8248
8678
 
8249
- export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AutoComplete, AutoCompleteProps, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputCommonProps, 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, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
8679
+ export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AutoComplete, AutoCompleteProps, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputCommonProps, 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, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabPanel, TabPanelProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };