@razorpay/blade 10.9.2 → 10.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.
- package/build/components/index.d.ts +121 -2
- package/build/components/index.development.web.js +2358 -1980
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +98 -2
- package/build/components/index.native.js +356 -338
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +2343 -1973
- package/build/components/index.production.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/package.json +1 -1
|
@@ -6590,6 +6590,10 @@ declare type CollapsibleBodyProps = {
|
|
|
6590
6590
|
declare const CollapsibleBody: ({ children, testID, _width }: CollapsibleBodyProps) => ReactElement;
|
|
6591
6591
|
|
|
6592
6592
|
declare type TooltipProps = {
|
|
6593
|
+
/**
|
|
6594
|
+
* Tooltip title
|
|
6595
|
+
*/
|
|
6596
|
+
title?: string;
|
|
6593
6597
|
/**
|
|
6594
6598
|
* Tooltip content
|
|
6595
6599
|
*/
|
|
@@ -6611,8 +6615,100 @@ declare type TooltipProps = {
|
|
|
6611
6615
|
zIndex?: number;
|
|
6612
6616
|
};
|
|
6613
6617
|
|
|
6614
|
-
declare const Tooltip: ({ content, children, placement, onOpenChange, zIndex, }: TooltipProps) => React__default.ReactElement;
|
|
6618
|
+
declare const Tooltip: ({ title, content, children, placement, onOpenChange, zIndex, }: TooltipProps) => React__default.ReactElement;
|
|
6615
6619
|
|
|
6616
6620
|
declare const TooltipInteractiveWrapper: React__default.ForwardRefExoticComponent<PressableProps & React__default.RefAttributes<View>>;
|
|
6617
6621
|
|
|
6618
|
-
|
|
6622
|
+
declare type PopoverProps = {
|
|
6623
|
+
/**
|
|
6624
|
+
* Popover title
|
|
6625
|
+
*/
|
|
6626
|
+
title?: string;
|
|
6627
|
+
/**
|
|
6628
|
+
* Leading content placed before the title
|
|
6629
|
+
*
|
|
6630
|
+
* Can be any blade icon or asset.
|
|
6631
|
+
*/
|
|
6632
|
+
titleLeading?: React__default.ReactNode;
|
|
6633
|
+
/**
|
|
6634
|
+
* Footer content
|
|
6635
|
+
*/
|
|
6636
|
+
footer?: React__default.ReactNode;
|
|
6637
|
+
/**
|
|
6638
|
+
* Popover content
|
|
6639
|
+
*/
|
|
6640
|
+
content: React__default.ReactElement;
|
|
6641
|
+
/**
|
|
6642
|
+
* Placement of Popover
|
|
6643
|
+
*
|
|
6644
|
+
* @default "top"
|
|
6645
|
+
*/
|
|
6646
|
+
placement?: UseFloatingOptions['placement'];
|
|
6647
|
+
/**
|
|
6648
|
+
* Popover trigger
|
|
6649
|
+
*/
|
|
6650
|
+
children: React__default.ReactElement;
|
|
6651
|
+
/**
|
|
6652
|
+
* Open state of Popover
|
|
6653
|
+
* If set to true makes the popover controlled
|
|
6654
|
+
*/
|
|
6655
|
+
isOpen?: boolean;
|
|
6656
|
+
/**
|
|
6657
|
+
* Uncontrolled state of the popover
|
|
6658
|
+
*/
|
|
6659
|
+
defaultIsOpen?: boolean;
|
|
6660
|
+
/**
|
|
6661
|
+
* Called when popover open state is changed, this can be used to detect when popover opens or closed
|
|
6662
|
+
*/
|
|
6663
|
+
onOpenChange?: ({ isOpen }: {
|
|
6664
|
+
isOpen: boolean;
|
|
6665
|
+
}) => void;
|
|
6666
|
+
/**
|
|
6667
|
+
* Sets the z-index of the Popover
|
|
6668
|
+
* @default 1000
|
|
6669
|
+
*/
|
|
6670
|
+
zIndex?: number;
|
|
6671
|
+
/**
|
|
6672
|
+
* The ref of the element that should receive focus when the popover opens.
|
|
6673
|
+
*
|
|
6674
|
+
* @default PopoverCloseButton
|
|
6675
|
+
*/
|
|
6676
|
+
initialFocusRef?: React__default.RefObject<any>;
|
|
6677
|
+
};
|
|
6678
|
+
/**
|
|
6679
|
+
* PopoverTriggerProps
|
|
6680
|
+
*
|
|
6681
|
+
* This can be useful when working with Custom Trigger Components
|
|
6682
|
+
*/
|
|
6683
|
+
declare type PopoverTriggerProps = {
|
|
6684
|
+
onMouseDown?: Platform.Select<{
|
|
6685
|
+
web: React__default.MouseEventHandler;
|
|
6686
|
+
native: undefined;
|
|
6687
|
+
}>;
|
|
6688
|
+
onPointerDown?: Platform.Select<{
|
|
6689
|
+
web: React__default.PointerEventHandler;
|
|
6690
|
+
native: undefined;
|
|
6691
|
+
}>;
|
|
6692
|
+
onKeyDown?: Platform.Select<{
|
|
6693
|
+
web: React__default.KeyboardEventHandler;
|
|
6694
|
+
native: undefined;
|
|
6695
|
+
}>;
|
|
6696
|
+
onKeyUp?: Platform.Select<{
|
|
6697
|
+
web: React__default.KeyboardEventHandler;
|
|
6698
|
+
native: undefined;
|
|
6699
|
+
}>;
|
|
6700
|
+
onClick?: Platform.Select<{
|
|
6701
|
+
web: React__default.MouseEventHandler;
|
|
6702
|
+
native: undefined;
|
|
6703
|
+
}>;
|
|
6704
|
+
onTouchEnd?: Platform.Select<{
|
|
6705
|
+
web: React__default.TouchEventHandler;
|
|
6706
|
+
native: (event: GestureResponderEvent) => void;
|
|
6707
|
+
}>;
|
|
6708
|
+
};
|
|
6709
|
+
|
|
6710
|
+
declare const Popover: ({ content, children, placement, onOpenChange, zIndex, title, titleLeading, footer, isOpen, defaultIsOpen, }: PopoverProps) => React__default.ReactElement;
|
|
6711
|
+
|
|
6712
|
+
declare const PopoverInteractiveWrapper: React__default.ForwardRefExoticComponent<PressableProps & React__default.RefAttributes<View>>;
|
|
6713
|
+
|
|
6714
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, 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, 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 };
|