@razorpay/blade 12.19.0 → 12.20.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 (117) hide show
  1. package/build/lib/native/components/ActionList/ActionListItem.js +1 -1
  2. package/build/lib/native/components/ActionList/ActionListItem.js.map +1 -1
  3. package/build/lib/native/components/DatePicker/FilterChipDatePicker/FilterChipDatePicker.native.js +7 -0
  4. package/build/lib/native/components/DatePicker/FilterChipDatePicker/FilterChipDatePicker.native.js.map +1 -0
  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/FilterChipGroup.native.js +7 -0
  8. package/build/lib/native/components/Dropdown/FilterChipGroup.native.js.map +1 -0
  9. package/build/lib/native/components/Dropdown/FilterChipSelectInput.native.js +7 -0
  10. package/build/lib/native/components/Dropdown/FilterChipSelectInput.native.js.map +1 -0
  11. package/build/lib/native/components/Dropdown/dropdownComponentIds.js +1 -1
  12. package/build/lib/native/components/Dropdown/dropdownComponentIds.js.map +1 -1
  13. package/build/lib/native/components/Dropdown/useDropdown.js +1 -1
  14. package/build/lib/native/components/Dropdown/useDropdown.js.map +1 -1
  15. package/build/lib/native/components/ListView/ListView.native.js +12 -0
  16. package/build/lib/native/components/ListView/ListView.native.js.map +1 -0
  17. package/build/lib/native/components/ListView/ListViewFilters.native.js +12 -0
  18. package/build/lib/native/components/ListView/ListViewFilters.native.js.map +1 -0
  19. package/build/lib/native/components/index.js +5 -0
  20. package/build/lib/native/components/index.js.map +1 -1
  21. package/build/lib/native/utils/metaAttribute/metaConstants.js +1 -1
  22. package/build/lib/native/utils/metaAttribute/metaConstants.js.map +1 -1
  23. package/build/lib/web/development/components/ActionList/ActionListItem.js +32 -17
  24. package/build/lib/web/development/components/ActionList/ActionListItem.js.map +1 -1
  25. package/build/lib/web/development/components/DatePicker/BaseDatePicker.web.js +516 -0
  26. package/build/lib/web/development/components/DatePicker/BaseDatePicker.web.js.map +1 -0
  27. package/build/lib/web/development/components/DatePicker/DatePicker.web.js +7 -421
  28. package/build/lib/web/development/components/DatePicker/DatePicker.web.js.map +1 -1
  29. package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js +67 -0
  30. package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js.map +1 -0
  31. package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/FilterChipDatePicker.web.js +14 -0
  32. package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/FilterChipDatePicker.web.js.map +1 -0
  33. package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/index.js +2 -0
  34. package/build/lib/web/development/components/DatePicker/FilterChipDatePicker/index.js.map +1 -0
  35. package/build/lib/web/development/components/DatePicker/index.js +1 -0
  36. package/build/lib/web/development/components/DatePicker/index.js.map +1 -1
  37. package/build/lib/web/development/components/DatePicker/useDatesState.js +7 -1
  38. package/build/lib/web/development/components/DatePicker/useDatesState.js.map +1 -1
  39. package/build/lib/web/development/components/Dropdown/Dropdown.js +21 -12
  40. package/build/lib/web/development/components/Dropdown/Dropdown.js.map +1 -1
  41. package/build/lib/web/development/components/Dropdown/FilterChipGroup.web.js +74 -0
  42. package/build/lib/web/development/components/Dropdown/FilterChipGroup.web.js.map +1 -0
  43. package/build/lib/web/development/components/Dropdown/FilterChipGroupContext.web.js +18 -0
  44. package/build/lib/web/development/components/Dropdown/FilterChipGroupContext.web.js.map +1 -0
  45. package/build/lib/web/development/components/Dropdown/FilterChipSelectInput.web.js +217 -0
  46. package/build/lib/web/development/components/Dropdown/FilterChipSelectInput.web.js.map +1 -0
  47. package/build/lib/web/development/components/Dropdown/dropdownComponentIds.js +2 -1
  48. package/build/lib/web/development/components/Dropdown/dropdownComponentIds.js.map +1 -1
  49. package/build/lib/web/development/components/Dropdown/index.js +2 -0
  50. package/build/lib/web/development/components/Dropdown/index.js.map +1 -1
  51. package/build/lib/web/development/components/Dropdown/useDropdown.js +2 -0
  52. package/build/lib/web/development/components/Dropdown/useDropdown.js.map +1 -1
  53. package/build/lib/web/development/components/FilterChip/BaseFilterChip.web.js +218 -0
  54. package/build/lib/web/development/components/FilterChip/BaseFilterChip.web.js.map +1 -0
  55. package/build/lib/web/development/components/FilterChip/tokens.js +9 -0
  56. package/build/lib/web/development/components/FilterChip/tokens.js.map +1 -0
  57. package/build/lib/web/development/components/ListView/ListView.web.js +28 -0
  58. package/build/lib/web/development/components/ListView/ListView.web.js.map +1 -0
  59. package/build/lib/web/development/components/ListView/ListViewFilters.web.js +240 -0
  60. package/build/lib/web/development/components/ListView/ListViewFilters.web.js.map +1 -0
  61. package/build/lib/web/development/components/ListView/ListViewFiltersContext.web.js +16 -0
  62. package/build/lib/web/development/components/ListView/ListViewFiltersContext.web.js.map +1 -0
  63. package/build/lib/web/development/components/ListView/index.js +3 -0
  64. package/build/lib/web/development/components/ListView/index.js.map +1 -0
  65. package/build/lib/web/development/components/index.js +6 -0
  66. package/build/lib/web/development/components/index.js.map +1 -1
  67. package/build/lib/web/development/utils/metaAttribute/metaConstants.js +4 -0
  68. package/build/lib/web/development/utils/metaAttribute/metaConstants.js.map +1 -1
  69. package/build/lib/web/production/components/ActionList/ActionListItem.js +32 -17
  70. package/build/lib/web/production/components/ActionList/ActionListItem.js.map +1 -1
  71. package/build/lib/web/production/components/DatePicker/BaseDatePicker.web.js +516 -0
  72. package/build/lib/web/production/components/DatePicker/BaseDatePicker.web.js.map +1 -0
  73. package/build/lib/web/production/components/DatePicker/DatePicker.web.js +7 -421
  74. package/build/lib/web/production/components/DatePicker/DatePicker.web.js.map +1 -1
  75. package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js +67 -0
  76. package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/DatePickerFilterChip.web.js.map +1 -0
  77. package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/FilterChipDatePicker.web.js +14 -0
  78. package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/FilterChipDatePicker.web.js.map +1 -0
  79. package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/index.js +2 -0
  80. package/build/lib/web/production/components/DatePicker/FilterChipDatePicker/index.js.map +1 -0
  81. package/build/lib/web/production/components/DatePicker/index.js +1 -0
  82. package/build/lib/web/production/components/DatePicker/index.js.map +1 -1
  83. package/build/lib/web/production/components/DatePicker/useDatesState.js +7 -1
  84. package/build/lib/web/production/components/DatePicker/useDatesState.js.map +1 -1
  85. package/build/lib/web/production/components/Dropdown/Dropdown.js +21 -12
  86. package/build/lib/web/production/components/Dropdown/Dropdown.js.map +1 -1
  87. package/build/lib/web/production/components/Dropdown/FilterChipGroup.web.js +74 -0
  88. package/build/lib/web/production/components/Dropdown/FilterChipGroup.web.js.map +1 -0
  89. package/build/lib/web/production/components/Dropdown/FilterChipGroupContext.web.js +18 -0
  90. package/build/lib/web/production/components/Dropdown/FilterChipGroupContext.web.js.map +1 -0
  91. package/build/lib/web/production/components/Dropdown/FilterChipSelectInput.web.js +217 -0
  92. package/build/lib/web/production/components/Dropdown/FilterChipSelectInput.web.js.map +1 -0
  93. package/build/lib/web/production/components/Dropdown/dropdownComponentIds.js +2 -1
  94. package/build/lib/web/production/components/Dropdown/dropdownComponentIds.js.map +1 -1
  95. package/build/lib/web/production/components/Dropdown/index.js +2 -0
  96. package/build/lib/web/production/components/Dropdown/index.js.map +1 -1
  97. package/build/lib/web/production/components/Dropdown/useDropdown.js +2 -0
  98. package/build/lib/web/production/components/Dropdown/useDropdown.js.map +1 -1
  99. package/build/lib/web/production/components/FilterChip/BaseFilterChip.web.js +218 -0
  100. package/build/lib/web/production/components/FilterChip/BaseFilterChip.web.js.map +1 -0
  101. package/build/lib/web/production/components/FilterChip/tokens.js +9 -0
  102. package/build/lib/web/production/components/FilterChip/tokens.js.map +1 -0
  103. package/build/lib/web/production/components/ListView/ListView.web.js +28 -0
  104. package/build/lib/web/production/components/ListView/ListView.web.js.map +1 -0
  105. package/build/lib/web/production/components/ListView/ListViewFilters.web.js +240 -0
  106. package/build/lib/web/production/components/ListView/ListViewFilters.web.js.map +1 -0
  107. package/build/lib/web/production/components/ListView/ListViewFiltersContext.web.js +16 -0
  108. package/build/lib/web/production/components/ListView/ListViewFiltersContext.web.js.map +1 -0
  109. package/build/lib/web/production/components/ListView/index.js +3 -0
  110. package/build/lib/web/production/components/ListView/index.js.map +1 -0
  111. package/build/lib/web/production/components/index.js +6 -0
  112. package/build/lib/web/production/components/index.js.map +1 -1
  113. package/build/lib/web/production/utils/metaAttribute/metaConstants.js +4 -0
  114. package/build/lib/web/production/utils/metaAttribute/metaConstants.js.map +1 -1
  115. package/build/types/components/index.d.ts +143 -589
  116. package/build/types/components/index.native.d.ts +82 -1
  117. package/package.json +1 -1
@@ -9798,6 +9798,8 @@ declare const DrawerBody: (_props: {
9798
9798
 
9799
9799
  declare const DatePicker: (_props: any) => React.ReactElement;
9800
9800
 
9801
+ declare const FilterChipDatePicker: (_props: any) => React.ReactElement;
9802
+
9801
9803
  type FormInputLabelProps = {
9802
9804
  /**
9803
9805
  * Label to be shown for the input field
@@ -10812,6 +10814,28 @@ type DropdownOverlayProps = {
10812
10814
  */
10813
10815
  defaultPlacement?: Placement;
10814
10816
  } & TestID;
10817
+ type FilterChipGroupProps = TestID & DataAnalyticsAttribute & {
10818
+ children: React__default.ReactNode;
10819
+ /**
10820
+ * Callback which is called when clear button is clicked
10821
+ */
10822
+ onClearButtonClick?: () => void;
10823
+ /**
10824
+ * Boolean to decide if we should show clear button or not.
10825
+ * If true, clear button will be shown when there are selected filters
10826
+ *
10827
+ */
10828
+ showClearButton?: boolean;
10829
+ };
10830
+ type FilterChipGroupContextType = {
10831
+ /**
10832
+ * Number of Selected Filters
10833
+ */
10834
+ filterChipGroupSelectedFilters: string[];
10835
+ setFilterChipGroupSelectedFilters: React__default.Dispatch<React__default.SetStateAction<string[]>>;
10836
+ clearFilterCallbackTriggerer: number;
10837
+ setClearFilterCallbackTriggerer: React__default.Dispatch<React__default.SetStateAction<number>>;
10838
+ };
10815
10839
 
10816
10840
  declare const DropdownOverlay: ({ children, testID }: DropdownOverlayProps) => React__default.ReactElement;
10817
10841
 
@@ -10839,6 +10863,10 @@ declare const DropdownHeader: ({ title, subtitle, leading, titleSuffix, trailing
10839
10863
  type DropdownFooter = Pick<BaseFooterProps, 'children' | 'testID'>;
10840
10864
  declare const DropdownFooter: ({ children, testID }: DropdownFooter) => React__default.ReactElement;
10841
10865
 
10866
+ declare const BaseFilterChip: (_props: any) => React.ReactElement;
10867
+
10868
+ declare const FilterChipGroup: (_props: unknown) => React.ReactElement;
10869
+
10842
10870
  type ElevateProps = Pick<BaseMotionBoxProps, 'type' | 'motionTriggers' | 'children'> & {
10843
10871
  /**
10844
10872
  * Controlled state of elevation. If you want to elevate on hover / focus, etc, checkout `motionTriggers` prop instead.
@@ -15697,4 +15725,57 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => Rea
15697
15725
  */
15698
15726
  declare const screenReaderStyles: CSSObject;
15699
15727
 
15700
- export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActionListSectionTitle, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementIcon, ApertureIcon, AppStoreIcon, AppleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowSquareDownIcon, ArrowSquareDownLeftIcon, ArrowSquareDownRightIcon, ArrowSquareLeftIcon, ArrowSquareRightIcon, ArrowSquareUpIcon, ArrowSquareUpLeftIcon, ArrowSquareUpRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BillMeIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChatMessage, ChatMessageProps, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownIconButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, Elevate, ElevateProps, EngageIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, KeyIcon, KeyboardIcon, LayersIcon, LayoutIcon, LeftCircularCornerIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, ListSearchIcon, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, PromptIcon, QRCodeIcon, QuickFilter, QuickFilterGroup, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SortIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, Stagger, StaggerProps, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps$1 as TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, Tour, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
15728
+ type ListViewCommonProps = {
15729
+ children: React__default.ReactNode;
15730
+ };
15731
+ type ListViewProps = ListViewCommonProps & TestID & DataAnalyticsAttribute;
15732
+ type ListViewFilterProps = {
15733
+ children: React__default.ReactNode;
15734
+ /**
15735
+ * Quick Filters Component
15736
+ */
15737
+ quickFilters: React__default.ReactNode;
15738
+ /**
15739
+ * Search value for search input
15740
+ */
15741
+ searchValue?: string;
15742
+ /**
15743
+ * Placeholder for search input
15744
+ */
15745
+ searchValuePlaceholder?: string;
15746
+ /**
15747
+ * Name for search input
15748
+ */
15749
+ searchName?: string;
15750
+ /**
15751
+ * onChange handler for search input
15752
+ */
15753
+ onSearchChange?: ({ name, value }: {
15754
+ name?: string;
15755
+ value?: string;
15756
+ }) => void;
15757
+ /**
15758
+ * onClear handler for search input
15759
+ */
15760
+ onSearchClear?: () => void;
15761
+ /**
15762
+ * it will show/hide the quick filters
15763
+ */
15764
+ showQuickFilters?: boolean;
15765
+ /**
15766
+ * onChange handler for showQuickFilters
15767
+ */
15768
+ onShowQuickFiltersChange?: (showQuickFilters: boolean) => void;
15769
+ /**
15770
+ * onChange handler for showQuickFilters
15771
+ * @default 0
15772
+ * you only need this if quick filters are controlled.
15773
+ */
15774
+ selectedFiltersCount?: number;
15775
+ } & TestID & DataAnalyticsAttribute & ListViewCommonProps;
15776
+
15777
+ declare const ListView: (_prop: ListViewProps) => React__default.ReactElement;
15778
+
15779
+ declare const ListViewFilters: (_prop: ListViewFilterProps) => React__default.ReactElement;
15780
+
15781
+ export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActionListSectionTitle, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AndroidIcon, AnimateInteractions, AnimateInteractionsProps, AnnouncementIcon, ApertureIcon, AppStoreIcon, AppleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowSquareDownIcon, ArrowSquareDownLeftIcon, ArrowSquareDownRightIcon, ArrowSquareLeftIcon, ArrowSquareRightIcon, ArrowSquareUpIcon, ArrowSquareUpLeftIcon, ArrowSquareUpRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, BaseFilterChip, Battery100PercentIcon, Battery20PercentIcon, Battery40PercentIcon, Battery60PercentIcon, Battery80PercentIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BillMeIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, ChatMessage, ChatMessageProps, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownIconButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, Elevate, ElevateProps, EngageIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, Fade, FadeProps, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterChipDatePicker, FilterChipGroup, FilterChipGroupContextType, FilterChipGroupProps, FilterIcon, FlagIcon, FlaskIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, IndiaFlagIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, KeyIcon, KeyboardIcon, LayersIcon, LayoutIcon, LeftCircularCornerIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, ListSearchIcon, ListView, ListViewFilters, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MagicKonnectIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, Morph, MorphProps, Move, MoveIcon, MoveProps, MusicIcon, MyAccountIcon, NavigationIcon, NoSignalIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, PromptIcon, QRCodeIcon, QuickFilter, QuickFilterGroup, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RayIcon, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, Scale, ScaleProps, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Signal1BarIcon, Signal2BarIcon, Signal3BarIcon, Signal4BarIcon, SignalIcon, SimCardIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, Slide, SlideProps, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SortIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, Stagger, StaggerProps, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps$1 as TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopLeftRoundedCornerIcon, TopLeftSharpCornerIcon, TopNav, Tour, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TranslateIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UpiIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WorldwideIcon, XCircleIcon, XSquareIcon, YoutubeIcon, 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": "12.19.0",
4
+ "version": "12.20.0",
5
5
  "license": "MIT",
6
6
  "engines": {
7
7
  "node": ">=18.12.1"