@razorpay/blade 11.9.1 → 11.10.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 (115) hide show
  1. package/build/lib/native/components/Box/Box.js +1 -1
  2. package/build/lib/native/components/Box/Box.js.map +1 -1
  3. package/build/lib/native/components/Button/BaseButton/BaseButton.js +1 -1
  4. package/build/lib/native/components/Button/BaseButton/BaseButton.js.map +1 -1
  5. package/build/lib/native/components/Dropdown/Dropdown.js +1 -1
  6. package/build/lib/native/components/Dropdown/Dropdown.js.map +1 -1
  7. package/build/lib/native/components/Dropdown/dropdownComponentIds.js +1 -1
  8. package/build/lib/native/components/Dropdown/dropdownComponentIds.js.map +1 -1
  9. package/build/lib/native/components/Input/BaseInput/BaseInput.js +1 -1
  10. package/build/lib/native/components/Input/BaseInput/BaseInput.js.map +1 -1
  11. package/build/lib/native/components/Input/BaseInput/BaseInputVisuals.js +1 -1
  12. package/build/lib/native/components/Input/BaseInput/BaseInputVisuals.js.map +1 -1
  13. package/build/lib/native/components/Input/BaseInput/StyledBaseInput.native.js +1 -1
  14. package/build/lib/native/components/Input/BaseInput/StyledBaseInput.native.js.map +1 -1
  15. package/build/lib/native/components/Input/BaseInput/baseInputStyles.js +2 -2
  16. package/build/lib/native/components/Input/BaseInput/baseInputStyles.js.map +1 -1
  17. package/build/lib/native/components/Input/BaseInput/utils.js +4 -0
  18. package/build/lib/native/components/Input/BaseInput/utils.js.map +1 -0
  19. package/build/lib/native/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +1 -1
  20. package/build/lib/native/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
  21. package/build/lib/native/components/Input/PasswordInput/PasswordInput.js +1 -1
  22. package/build/lib/native/components/Input/PasswordInput/PasswordInput.js.map +1 -1
  23. package/build/lib/native/components/Input/PhoneNumberInput/PhoneNumberInput.native.js +7 -0
  24. package/build/lib/native/components/Input/PhoneNumberInput/PhoneNumberInput.native.js.map +1 -0
  25. package/build/lib/native/components/Input/TextArea/TextArea.js +1 -1
  26. package/build/lib/native/components/Input/TextArea/TextArea.js.map +1 -1
  27. package/build/lib/native/components/Input/TextInput/TextInput.js +2 -1
  28. package/build/lib/native/components/Input/TextInput/TextInput.js.map +1 -1
  29. package/build/lib/native/components/index.js +1 -0
  30. package/build/lib/native/components/index.js.map +1 -1
  31. package/build/lib/native/utils/metaAttribute/metaConstants.js +1 -1
  32. package/build/lib/native/utils/metaAttribute/metaConstants.js.map +1 -1
  33. package/build/lib/web/development/components/Box/BaseBox/BaseBox.web.js +6 -1
  34. package/build/lib/web/development/components/Box/BaseBox/BaseBox.web.js.map +1 -1
  35. package/build/lib/web/development/components/Box/Box.js +2 -1
  36. package/build/lib/web/development/components/Box/Box.js.map +1 -1
  37. package/build/lib/web/development/components/Button/BaseButton/BaseButton.js +8 -6
  38. package/build/lib/web/development/components/Button/BaseButton/BaseButton.js.map +1 -1
  39. package/build/lib/web/development/components/Dropdown/Dropdown.js +3 -1
  40. package/build/lib/web/development/components/Dropdown/Dropdown.js.map +1 -1
  41. package/build/lib/web/development/components/Dropdown/DropdownOverlay.web.js +7 -6
  42. package/build/lib/web/development/components/Dropdown/DropdownOverlay.web.js.map +1 -1
  43. package/build/lib/web/development/components/Dropdown/dropdownComponentIds.js +1 -0
  44. package/build/lib/web/development/components/Dropdown/dropdownComponentIds.js.map +1 -1
  45. package/build/lib/web/development/components/Input/BaseInput/BaseInput.js +8 -5
  46. package/build/lib/web/development/components/Input/BaseInput/BaseInput.js.map +1 -1
  47. package/build/lib/web/development/components/Input/BaseInput/BaseInputVisuals.js +43 -28
  48. package/build/lib/web/development/components/Input/BaseInput/BaseInputVisuals.js.map +1 -1
  49. package/build/lib/web/development/components/Input/BaseInput/StyledBaseInput.web.js +2 -1
  50. package/build/lib/web/development/components/Input/BaseInput/StyledBaseInput.web.js.map +1 -1
  51. package/build/lib/web/development/components/Input/BaseInput/baseInputStyles.js +9 -7
  52. package/build/lib/web/development/components/Input/BaseInput/baseInputStyles.js.map +1 -1
  53. package/build/lib/web/development/components/Input/BaseInput/utils.js +73 -0
  54. package/build/lib/web/development/components/Input/BaseInput/utils.js.map +1 -0
  55. package/build/lib/web/development/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +1 -1
  56. package/build/lib/web/development/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
  57. package/build/lib/web/development/components/Input/PasswordInput/PasswordInput.js +1 -1
  58. package/build/lib/web/development/components/Input/PasswordInput/PasswordInput.js.map +1 -1
  59. package/build/lib/web/development/components/Input/PhoneNumberInput/CountrySelector.web.js +111 -0
  60. package/build/lib/web/development/components/Input/PhoneNumberInput/CountrySelector.web.js.map +1 -0
  61. package/build/lib/web/development/components/Input/PhoneNumberInput/PhoneNumberInput.web.js +242 -0
  62. package/build/lib/web/development/components/Input/PhoneNumberInput/PhoneNumberInput.web.js.map +1 -0
  63. package/build/lib/web/development/components/Input/PhoneNumberInput/index.js +2 -0
  64. package/build/lib/web/development/components/Input/PhoneNumberInput/index.js.map +1 -0
  65. package/build/lib/web/development/components/Input/TextArea/TextArea.js +1 -1
  66. package/build/lib/web/development/components/Input/TextArea/TextArea.js.map +1 -1
  67. package/build/lib/web/development/components/Input/TextInput/TextInput.js +45 -115
  68. package/build/lib/web/development/components/Input/TextInput/TextInput.js.map +1 -1
  69. package/build/lib/web/development/components/index.js +2 -0
  70. package/build/lib/web/development/components/index.js.map +1 -1
  71. package/build/lib/web/development/utils/metaAttribute/metaConstants.js +1 -0
  72. package/build/lib/web/development/utils/metaAttribute/metaConstants.js.map +1 -1
  73. package/build/lib/web/production/components/Box/BaseBox/BaseBox.web.js +6 -1
  74. package/build/lib/web/production/components/Box/BaseBox/BaseBox.web.js.map +1 -1
  75. package/build/lib/web/production/components/Box/Box.js +2 -1
  76. package/build/lib/web/production/components/Box/Box.js.map +1 -1
  77. package/build/lib/web/production/components/Button/BaseButton/BaseButton.js +8 -6
  78. package/build/lib/web/production/components/Button/BaseButton/BaseButton.js.map +1 -1
  79. package/build/lib/web/production/components/Dropdown/Dropdown.js +3 -1
  80. package/build/lib/web/production/components/Dropdown/Dropdown.js.map +1 -1
  81. package/build/lib/web/production/components/Dropdown/DropdownOverlay.web.js +7 -6
  82. package/build/lib/web/production/components/Dropdown/DropdownOverlay.web.js.map +1 -1
  83. package/build/lib/web/production/components/Dropdown/dropdownComponentIds.js +1 -0
  84. package/build/lib/web/production/components/Dropdown/dropdownComponentIds.js.map +1 -1
  85. package/build/lib/web/production/components/Input/BaseInput/BaseInput.js +8 -5
  86. package/build/lib/web/production/components/Input/BaseInput/BaseInput.js.map +1 -1
  87. package/build/lib/web/production/components/Input/BaseInput/BaseInputVisuals.js +43 -28
  88. package/build/lib/web/production/components/Input/BaseInput/BaseInputVisuals.js.map +1 -1
  89. package/build/lib/web/production/components/Input/BaseInput/StyledBaseInput.web.js +2 -1
  90. package/build/lib/web/production/components/Input/BaseInput/StyledBaseInput.web.js.map +1 -1
  91. package/build/lib/web/production/components/Input/BaseInput/baseInputStyles.js +9 -7
  92. package/build/lib/web/production/components/Input/BaseInput/baseInputStyles.js.map +1 -1
  93. package/build/lib/web/production/components/Input/BaseInput/utils.js +73 -0
  94. package/build/lib/web/production/components/Input/BaseInput/utils.js.map +1 -0
  95. package/build/lib/web/production/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +1 -1
  96. package/build/lib/web/production/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
  97. package/build/lib/web/production/components/Input/PasswordInput/PasswordInput.js +1 -1
  98. package/build/lib/web/production/components/Input/PasswordInput/PasswordInput.js.map +1 -1
  99. package/build/lib/web/production/components/Input/PhoneNumberInput/CountrySelector.web.js +111 -0
  100. package/build/lib/web/production/components/Input/PhoneNumberInput/CountrySelector.web.js.map +1 -0
  101. package/build/lib/web/production/components/Input/PhoneNumberInput/PhoneNumberInput.web.js +242 -0
  102. package/build/lib/web/production/components/Input/PhoneNumberInput/PhoneNumberInput.web.js.map +1 -0
  103. package/build/lib/web/production/components/Input/PhoneNumberInput/index.js +2 -0
  104. package/build/lib/web/production/components/Input/PhoneNumberInput/index.js.map +1 -0
  105. package/build/lib/web/production/components/Input/TextArea/TextArea.js +1 -1
  106. package/build/lib/web/production/components/Input/TextArea/TextArea.js.map +1 -1
  107. package/build/lib/web/production/components/Input/TextInput/TextInput.js +45 -115
  108. package/build/lib/web/production/components/Input/TextInput/TextInput.js.map +1 -1
  109. package/build/lib/web/production/components/index.js +2 -0
  110. package/build/lib/web/production/components/index.js.map +1 -1
  111. package/build/lib/web/production/utils/metaAttribute/metaConstants.js +1 -0
  112. package/build/lib/web/production/utils/metaAttribute/metaConstants.js.map +1 -1
  113. package/build/types/components/index.d.ts +442 -3
  114. package/build/types/components/index.native.d.ts +98 -2
  115. package/package.json +4 -4
@@ -7,6 +7,7 @@ import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/typ
7
7
  import { CurrencyCodeType } from '@razorpay/i18nify-js/currency';
8
8
  import * as react_native_types from 'react-native/types';
9
9
  import { Placement, UseFloatingOptions } from '@floating-ui/react';
10
+ import { CountryCodeType } from '@razorpay/i18nify-js';
10
11
  import { Toast } from 'react-hot-toast';
11
12
 
12
13
  type BorderRadius = Readonly<{
@@ -4821,6 +4822,13 @@ type DropdownOverlayProps = {
4821
4822
  */
4822
4823
  zIndex?: number;
4823
4824
  width?: BoxProps['width'];
4825
+ /**
4826
+ * Reference to the element which triggers the DropdownOverlay
4827
+ *
4828
+ * This is used to position the DropdownOverlay relative to a specific element,
4829
+ * for example in PhoneNumberInput the DropdownOverlay is positioned relative to the input element
4830
+ */
4831
+ referenceRef?: React__default.MutableRefObject<ContainerElementType | null>;
4824
4832
  /**
4825
4833
  * Sets the placement of the DropdownOverlay
4826
4834
  *
@@ -5169,7 +5177,13 @@ type BaseInputCommonProps = FormInputLabelProps & FormInputValidationProps & {
5169
5177
  *
5170
5178
  * eg: consumers can render a loader or they could render a clear button
5171
5179
  */
5172
- interactionElement?: ReactNode;
5180
+ trailingInteractionElement?: ReactNode;
5181
+ /**
5182
+ * Element to be rendered before prefix. This is decided by the component which is extending BaseInput
5183
+ *
5184
+ * eg: consumers can render a country selector or button
5185
+ */
5186
+ leadingInteractionElement?: ReactNode;
5173
5187
  /**
5174
5188
  * Suffix symbol to be displayed at the end of the input field. If trailingIcon is provided it'll be placed before it
5175
5189
  */
@@ -5777,6 +5791,88 @@ type TextInputPropsWithLabel = {
5777
5791
  type TextInputProps = (TextInputPropsWithA11yLabel | TextInputPropsWithLabel) & TextInputCommonProps;
5778
5792
  declare const TextInput: React__default.ForwardRefExoticComponent<TextInputProps & React__default.RefAttributes<BladeElementRef>>;
5779
5793
 
5794
+ type CommonProps = Pick<BaseInputProps, 'size' | 'label' | 'labelPosition' | 'name' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'defaultValue' | 'necessityIndicator' | 'isRequired' | 'isDisabled' | 'onFocus' | 'onBlur' | 'onClick' | 'leadingIcon' | 'trailingIcon' | 'accessibilityLabel' | 'autoFocus' | 'testID' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType'>;
5795
+ type PhoneNumberInputProps = StyledPropsBlade & CommonProps & {
5796
+ /**
5797
+ * Default value of the input, Used to set the default value of input field when it's uncontrolled
5798
+ */
5799
+ defaultValue?: string;
5800
+ /**
5801
+ * Value of the input, Used to turn the input field to controlled so user can control the value
5802
+ */
5803
+ value?: string;
5804
+ /**
5805
+ * The default country code to be used in the input.
5806
+ * Uncontrolled state of the country code.
5807
+ *
5808
+ * @default "IN" or autodetect based on the user's locale
5809
+ */
5810
+ defaultCountry?: CountryCodeType;
5811
+ /**
5812
+ * Controlled state of the country code to be used in the input.
5813
+ */
5814
+ country?: CountryCodeType;
5815
+ /**
5816
+ * Callback that is called when the country is selected from the country selector.
5817
+ */
5818
+ onCountryChange?: ({ country }: {
5819
+ country: CountryCodeType;
5820
+ }) => void;
5821
+ /**
5822
+ * List of countries to be shown in the country selector.
5823
+ */
5824
+ allowedCountries?: CountryCodeType[];
5825
+ /**
5826
+ * Callback that is called when the value of the input changes.
5827
+ */
5828
+ onChange?: (event: {
5829
+ /**
5830
+ * formatted phone number with dial code
5831
+ *
5832
+ * @example: "+91 123456789"
5833
+ */
5834
+ phoneNumber: string;
5835
+ /**
5836
+ * dial code of the country
5837
+ *
5838
+ * @example: 91 for India
5839
+ */
5840
+ dialCode: string;
5841
+ /**
5842
+ * country code of the country
5843
+ *
5844
+ * @example: "IN" for India
5845
+ */
5846
+ country: CountryCodeType;
5847
+ /**
5848
+ * raw value of the input
5849
+ */
5850
+ value: string;
5851
+ /**
5852
+ * name of the input
5853
+ */
5854
+ name: string;
5855
+ }) => void;
5856
+ /**
5857
+ * If true, the dial code text will be shown in the leading text.
5858
+ *
5859
+ * @default true
5860
+ */
5861
+ showDialCode?: boolean;
5862
+ /**
5863
+ * If true, the country selector will be shown.
5864
+ *
5865
+ * @default true
5866
+ */
5867
+ showCountrySelector?: boolean;
5868
+ /**
5869
+ * Callback that is called when the clear button is clicked.
5870
+ */
5871
+ onClearButtonClick?: () => void;
5872
+ };
5873
+
5874
+ declare const PhoneNumberInput: (_props: PhoneNumberInputProps) => React.ReactElement;
5875
+
5780
5876
  type ListItemProps = {
5781
5877
  /**
5782
5878
  * Children to be rendered for ListItem. This can be a text, ListItemLink or another List.
@@ -7382,4 +7478,4 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => Rea
7382
7478
  */
7383
7479
  declare const screenReaderStyles: CSSObject;
7384
7480
 
7385
- export { Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, 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, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, 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, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, Identifier, 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, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabPanel, TabPanelProps, Table, TableBackgroundColors, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationCommonProps, TablePaginationProps$1 as TablePaginationProps, TablePaginationType, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, Tour, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UseToastReturn, 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, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
7481
+ export { Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, 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, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, 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, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, Identifier, 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, PhoneNumberInput, PhoneNumberInputProps, 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, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabPanel, TabPanelProps, Table, TableBackgroundColors, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationCommonProps, TablePaginationProps$1 as TablePaginationProps, TablePaginationType, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, Tour, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UseToastReturn, 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, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@razorpay/blade",
3
3
  "description": "The Design System that powers Razorpay",
4
- "version": "11.9.1",
4
+ "version": "11.10.0",
5
5
  "license": "MIT",
6
6
  "engines": {
7
7
  "node": ">=18.12.1"
@@ -274,8 +274,8 @@
274
274
  "typescript-transform-paths": "3.4.6",
275
275
  "@types/body-scroll-lock": "3.1.0",
276
276
  "ramda": "0.29.1",
277
- "@razorpay/i18nify-js": "1.4.4",
278
- "@razorpay/i18nify-react": "4.0.0"
277
+ "@razorpay/i18nify-js": "1.8.0",
278
+ "@razorpay/i18nify-react": "4.0.6"
279
279
  },
280
280
  "peerDependencies": {
281
281
  "react": ">=18",
@@ -291,7 +291,7 @@
291
291
  "react-hot-toast": "2.4.1",
292
292
  "@gorhom/bottom-sheet": "^4.4.6",
293
293
  "@gorhom/portal": "^1.0.14",
294
- "@razorpay/i18nify-js": "^1.4.4"
294
+ "@razorpay/i18nify-js": "^1.8.0"
295
295
  },
296
296
  "peerDependenciesMeta": {
297
297
  "react-native": {