@ecohouse/ui 0.1.48 → 0.1.50
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/dist/index.cjs +268 -192
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -2
- package/dist/index.d.ts +17 -2
- package/dist/index.js +176 -105
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/icons/CalendarFilled/CalendarFilledIcon.tsx +14 -0
- package/src/icons/CalendarFilled/CalendarFilledIcon.web.tsx +13 -0
- package/src/icons/CalendarFilled/calendarFilledPath.ts +2 -0
- package/src/icons/CalendarFilled/index.ts +1 -0
- package/src/icons/Deactivate/DeactivateIcon.tsx +14 -0
- package/src/icons/Deactivate/DeactivateIcon.web.tsx +20 -0
- package/src/icons/Deactivate/deactivatePath.ts +2 -0
- package/src/icons/Deactivate/index.ts +1 -0
- package/src/icons/ExternalLink/ExternalLinkIcon.tsx +24 -0
- package/src/icons/ExternalLink/ExternalLinkIcon.web.tsx +23 -0
- package/src/icons/ExternalLink/externalLinkPath.ts +2 -0
- package/src/icons/ExternalLink/index.ts +1 -0
- package/src/icons/SmartKey/SmartKeyIcon.tsx +20 -0
- package/src/icons/SmartKey/SmartKeyIcon.web.tsx +19 -0
- package/src/icons/SmartKey/index.ts +1 -0
- package/src/icons/SmartKey/smartKeyPath.ts +2 -0
- package/src/icons/StayHome/StayHomeIcon.tsx +20 -0
- package/src/icons/StayHome/StayHomeIcon.web.tsx +19 -0
- package/src/icons/StayHome/index.ts +1 -0
- package/src/icons/StayHome/stayHomePath.ts +2 -0
- package/src/icons/Unlock/unlockPath.ts +1 -1
- package/src/icons/index.ts +5 -0
- package/src/icons/registry.ts +15 -0
- package/src/index.ts +5 -0
package/dist/index.d.cts
CHANGED
|
@@ -80,6 +80,8 @@ declare function BellIcon({ size, color, strokeWidth }: IconProps): react.JSX.El
|
|
|
80
80
|
|
|
81
81
|
declare function BuildingIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
82
82
|
|
|
83
|
+
declare function CalendarFilledIcon({ size, color }: IconProps): react.JSX.Element;
|
|
84
|
+
|
|
83
85
|
/** Native — react-native-svg (peer dependency). */
|
|
84
86
|
declare function CalendarIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
85
87
|
|
|
@@ -119,12 +121,16 @@ declare function ClockIcon({ size, color, strokeWidth }: IconProps): react.JSX.E
|
|
|
119
121
|
|
|
120
122
|
declare function CloseIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
121
123
|
|
|
124
|
+
declare function DeactivateIcon({ size, color }: IconProps): react.JSX.Element;
|
|
125
|
+
|
|
122
126
|
declare function CloudUploadIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
123
127
|
|
|
124
128
|
declare function NoReviewIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
125
129
|
|
|
126
130
|
declare function EditIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
127
131
|
|
|
132
|
+
declare function ExternalLinkIcon({ size, color, strokeWidth, }: IconProps): react.JSX.Element;
|
|
133
|
+
|
|
128
134
|
declare function EyeIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
129
135
|
|
|
130
136
|
declare function SaveHeartIcon({ size, color, strokeWidth, fillOpacity, }: IconProps): react.JSX.Element;
|
|
@@ -263,9 +269,13 @@ declare function ShowIcon({ size, color, strokeWidth }: ShowIconProps): react.JS
|
|
|
263
269
|
/** Native — react-native-svg (peer dependency). */
|
|
264
270
|
declare function SidebarIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
265
271
|
|
|
272
|
+
declare function SmartKeyIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
273
|
+
|
|
266
274
|
/** Bidirectional sort (20×20 viewBox). */
|
|
267
275
|
declare function SortIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
268
276
|
|
|
277
|
+
declare function StayHomeIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
278
|
+
|
|
269
279
|
interface StarIconProps extends IconProps {
|
|
270
280
|
active?: boolean;
|
|
271
281
|
height?: number;
|
|
@@ -321,6 +331,7 @@ declare const icons: {
|
|
|
321
331
|
readonly blockedGuests: typeof BlockedGuestsIcon;
|
|
322
332
|
readonly bell: typeof BellIcon;
|
|
323
333
|
readonly building: typeof BuildingIcon;
|
|
334
|
+
readonly calendarFilled: typeof CalendarFilledIcon;
|
|
324
335
|
readonly calendar: typeof CalendarIcon;
|
|
325
336
|
readonly calendarMinus: typeof CalendarMinusIcon;
|
|
326
337
|
readonly calendarOutline: typeof CalendarOutlineIcon;
|
|
@@ -333,6 +344,7 @@ declare const icons: {
|
|
|
333
344
|
readonly chevronLeft: typeof ChevronLeftIcon;
|
|
334
345
|
readonly clock: typeof ClockIcon;
|
|
335
346
|
readonly close: typeof CloseIcon;
|
|
347
|
+
readonly deactivate: typeof DeactivateIcon;
|
|
336
348
|
readonly cloudUpload: typeof CloudUploadIcon;
|
|
337
349
|
readonly noReview: typeof NoReviewIcon;
|
|
338
350
|
readonly edit: typeof EditIcon;
|
|
@@ -388,7 +400,9 @@ declare const icons: {
|
|
|
388
400
|
readonly settings: typeof SettingsIcon;
|
|
389
401
|
readonly show: typeof ShowIcon;
|
|
390
402
|
readonly sidebar: typeof SidebarIcon;
|
|
403
|
+
readonly smartKey: typeof SmartKeyIcon;
|
|
391
404
|
readonly sort: typeof SortIcon;
|
|
405
|
+
readonly stayHome: typeof StayHomeIcon;
|
|
392
406
|
readonly star: typeof StarIcon;
|
|
393
407
|
readonly starFilled: typeof StarFilledIcon;
|
|
394
408
|
readonly starOutline: typeof StarOutlineIcon;
|
|
@@ -407,6 +421,7 @@ declare const icons: {
|
|
|
407
421
|
readonly dollar: typeof DollarIcon;
|
|
408
422
|
readonly dram: typeof DramIcon;
|
|
409
423
|
readonly dragHandle: typeof DragHandleIcon;
|
|
424
|
+
readonly externalLink: typeof ExternalLinkIcon;
|
|
410
425
|
readonly eye: typeof EyeIcon;
|
|
411
426
|
readonly image: typeof ImageIcon;
|
|
412
427
|
readonly infoCircle: typeof InfoCircleIcon;
|
|
@@ -417,7 +432,7 @@ type IconName = keyof typeof icons;
|
|
|
417
432
|
declare const iconNames: IconName[];
|
|
418
433
|
declare const iconGroups: {
|
|
419
434
|
readonly navigation: readonly ["arrowRight", "chevronDown", "chevronLeft", "home", "listView", "locationPin", "locationUser", "mapCollapse", "mapExpand", "mapView", "menu", "menuLines", "navigate", "tableView"];
|
|
420
|
-
readonly actions: readonly ["show", "hide", "alertTriangle", "ban", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "download", "dragHandle", "search", "calendar", "calendarMinus", "calendarOutline", "close", "cloudUpload", "noReview", "edit", "ratingStar", "saveHeart", "share", "filters", "fullscreen", "heart", "headset", "zoomOut", "star", "starFilled", "starOutline", "sun", "minus", "moonStars", "moreHorizontal", "plus", "refresh", "refundStatus", "sort"];
|
|
435
|
+
readonly actions: readonly ["show", "hide", "alertTriangle", "ban", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "download", "dragHandle", "search", "calendar", "calendarFilled", "calendarMinus", "calendarOutline", "close", "deactivate", "cloudUpload", "noReview", "edit", "externalLink", "ratingStar", "saveHeart", "share", "smartKey", "stayHome", "filters", "fullscreen", "heart", "headset", "zoomOut", "star", "starFilled", "starOutline", "sun", "minus", "moonStars", "moreHorizontal", "plus", "refresh", "refundStatus", "sort"];
|
|
421
436
|
readonly objects: readonly ["bag", "bathrooms", "bedrooms", "building", "cardLocation", "clock", "clockFilled", "guests", "totalGuests", "activeGuests", "blockedGuests", "lock", "noPets", "noSmoking", "paw", "qrCode", "quietHours", "trash", "unlock", "user", "usersAlt", "video", "videoOff", "washer", "whatsApp"];
|
|
422
437
|
readonly communication: readonly ["mail", "phone"];
|
|
423
438
|
readonly social: readonly ["apple", "facebook", "googlePlay", "instagram", "linkedin"];
|
|
@@ -1655,4 +1670,4 @@ type ResolvePopoverAlignOptions = {
|
|
|
1655
1670
|
*/
|
|
1656
1671
|
declare function resolvePopoverAlign({ triggerRect, panelWidth, viewportWidth, padding, preferred, }: ResolvePopoverAlignOptions): PopoverAlign;
|
|
1657
1672
|
|
|
1658
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, AccountHeader, type AccountHeaderProps, ActiveGuestsIcon, AlertTriangleIcon, Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowLeftIcon, ArrowRightIcon, AutocompleteInput, type AutocompleteInputProps, type AutocompleteOption, Avatar, type AvatarMenuItem, type AvatarProps, AvatarSimple, type AvatarSimpleProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BanIcon, BathroomsIcon, BedroomsIcon, BellIcon, BlockedGuestsIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarMinusIcon, CalendarOutlineIcon, CameraFilledIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CloudUploadIcon, CommentCard, type CommentCardProps, ContactInfoCard, type ContactInfoCardProps, CopyIcon, Counter, type CounterProps, CurrentLocationIcon, CutleryIcon, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, DollarIcon, DownloadIcon, DragHandleIcon, DramIcon, Drawer, type DrawerProps, EditIcon, EyeIcon, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, FloatingActionButton, type FloatingActionButtonProps, FullscreenIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HideIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, IconStatusBadge, type IconStatusBadgeProps, ImageIcon, InfoCardV2, type InfoCardV2Props, InfoCircleIcon, InfoTile, type InfoTileProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, type LanguageSwitcherVariant, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LocationUserIcon, LockIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MenuLinesIcon, MinusIcon, Modal, type ModalProps, MoonStarsIcon, MoreHorizontalIcon, NavigateIcon, NoPetsIcon, NoReviewIcon, NoSmokingIcon, PaginationDots, type PaginationDotsProps, PawIcon, PhoneIcon, PlusIcon, type PopoverAlign, QrCodeIcon, QuantityInput, type QuantityInputProps, QuietHoursIcon, RadioButton, type RadioButtonProps, type RadioButtonVariant, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, RefreshIcon, RefundStatusIcon, type ResolvePopoverAlignOptions, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, Sidebar, SidebarIcon, type SidebarItem, type SidebarProps, type SidebarUser, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StarOutlineIcon, StatCard, type StatCardProps, StatusBadge, type StatusBadgeProps, type StatusBadgeTone, StepList, type StepListProps, StepPager, type StepPagerProps, SunIcon, TableViewIcon, Textarea, type TextareaProps, Toggle, type ToggleProps, ToggleRow, type ToggleRowProps, TooltipArrowIcon, TotalGuestsIcon, TrashIcon, UnlockIcon, UserIcon, UsersAltIcon, VerificationCodeInput, type VerificationCodeInputHandle, type VerificationCodeInputProps, VideoIcon, VideoOffIcon, WasherIcon, WhatsAppIcon, ZoomOutIcon, abbreviateMonthName, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, formatDate, formatDateDayShortMonth, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, resolvePopoverAlign, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|
|
1673
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, AccountHeader, type AccountHeaderProps, ActiveGuestsIcon, AlertTriangleIcon, Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowLeftIcon, ArrowRightIcon, AutocompleteInput, type AutocompleteInputProps, type AutocompleteOption, Avatar, type AvatarMenuItem, type AvatarProps, AvatarSimple, type AvatarSimpleProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BanIcon, BathroomsIcon, BedroomsIcon, BellIcon, BlockedGuestsIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarFilledIcon, CalendarIcon, CalendarMinusIcon, CalendarOutlineIcon, CameraFilledIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CloudUploadIcon, CommentCard, type CommentCardProps, ContactInfoCard, type ContactInfoCardProps, CopyIcon, Counter, type CounterProps, CurrentLocationIcon, CutleryIcon, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, DeactivateIcon, DollarIcon, DownloadIcon, DragHandleIcon, DramIcon, Drawer, type DrawerProps, EditIcon, ExternalLinkIcon, EyeIcon, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, FloatingActionButton, type FloatingActionButtonProps, FullscreenIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HideIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, IconStatusBadge, type IconStatusBadgeProps, ImageIcon, InfoCardV2, type InfoCardV2Props, InfoCircleIcon, InfoTile, type InfoTileProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, type LanguageSwitcherVariant, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LocationUserIcon, LockIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MenuLinesIcon, MinusIcon, Modal, type ModalProps, MoonStarsIcon, MoreHorizontalIcon, NavigateIcon, NoPetsIcon, NoReviewIcon, NoSmokingIcon, PaginationDots, type PaginationDotsProps, PawIcon, PhoneIcon, PlusIcon, type PopoverAlign, QrCodeIcon, QuantityInput, type QuantityInputProps, QuietHoursIcon, RadioButton, type RadioButtonProps, type RadioButtonVariant, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, RefreshIcon, RefundStatusIcon, type ResolvePopoverAlignOptions, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, Sidebar, SidebarIcon, type SidebarItem, type SidebarProps, type SidebarUser, SmartKeyIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StarOutlineIcon, StatCard, type StatCardProps, StatusBadge, type StatusBadgeProps, type StatusBadgeTone, StayHomeIcon, StepList, type StepListProps, StepPager, type StepPagerProps, SunIcon, TableViewIcon, Textarea, type TextareaProps, Toggle, type ToggleProps, ToggleRow, type ToggleRowProps, TooltipArrowIcon, TotalGuestsIcon, TrashIcon, UnlockIcon, UserIcon, UsersAltIcon, VerificationCodeInput, type VerificationCodeInputHandle, type VerificationCodeInputProps, VideoIcon, VideoOffIcon, WasherIcon, WhatsAppIcon, ZoomOutIcon, abbreviateMonthName, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, formatDate, formatDateDayShortMonth, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, resolvePopoverAlign, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,8 @@ declare function BellIcon({ size, color, strokeWidth }: IconProps): react.JSX.El
|
|
|
80
80
|
|
|
81
81
|
declare function BuildingIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
82
82
|
|
|
83
|
+
declare function CalendarFilledIcon({ size, color }: IconProps): react.JSX.Element;
|
|
84
|
+
|
|
83
85
|
/** Native — react-native-svg (peer dependency). */
|
|
84
86
|
declare function CalendarIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
85
87
|
|
|
@@ -119,12 +121,16 @@ declare function ClockIcon({ size, color, strokeWidth }: IconProps): react.JSX.E
|
|
|
119
121
|
|
|
120
122
|
declare function CloseIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
121
123
|
|
|
124
|
+
declare function DeactivateIcon({ size, color }: IconProps): react.JSX.Element;
|
|
125
|
+
|
|
122
126
|
declare function CloudUploadIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
123
127
|
|
|
124
128
|
declare function NoReviewIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
125
129
|
|
|
126
130
|
declare function EditIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
127
131
|
|
|
132
|
+
declare function ExternalLinkIcon({ size, color, strokeWidth, }: IconProps): react.JSX.Element;
|
|
133
|
+
|
|
128
134
|
declare function EyeIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
129
135
|
|
|
130
136
|
declare function SaveHeartIcon({ size, color, strokeWidth, fillOpacity, }: IconProps): react.JSX.Element;
|
|
@@ -263,9 +269,13 @@ declare function ShowIcon({ size, color, strokeWidth }: ShowIconProps): react.JS
|
|
|
263
269
|
/** Native — react-native-svg (peer dependency). */
|
|
264
270
|
declare function SidebarIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
265
271
|
|
|
272
|
+
declare function SmartKeyIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
273
|
+
|
|
266
274
|
/** Bidirectional sort (20×20 viewBox). */
|
|
267
275
|
declare function SortIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
268
276
|
|
|
277
|
+
declare function StayHomeIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
|
|
278
|
+
|
|
269
279
|
interface StarIconProps extends IconProps {
|
|
270
280
|
active?: boolean;
|
|
271
281
|
height?: number;
|
|
@@ -321,6 +331,7 @@ declare const icons: {
|
|
|
321
331
|
readonly blockedGuests: typeof BlockedGuestsIcon;
|
|
322
332
|
readonly bell: typeof BellIcon;
|
|
323
333
|
readonly building: typeof BuildingIcon;
|
|
334
|
+
readonly calendarFilled: typeof CalendarFilledIcon;
|
|
324
335
|
readonly calendar: typeof CalendarIcon;
|
|
325
336
|
readonly calendarMinus: typeof CalendarMinusIcon;
|
|
326
337
|
readonly calendarOutline: typeof CalendarOutlineIcon;
|
|
@@ -333,6 +344,7 @@ declare const icons: {
|
|
|
333
344
|
readonly chevronLeft: typeof ChevronLeftIcon;
|
|
334
345
|
readonly clock: typeof ClockIcon;
|
|
335
346
|
readonly close: typeof CloseIcon;
|
|
347
|
+
readonly deactivate: typeof DeactivateIcon;
|
|
336
348
|
readonly cloudUpload: typeof CloudUploadIcon;
|
|
337
349
|
readonly noReview: typeof NoReviewIcon;
|
|
338
350
|
readonly edit: typeof EditIcon;
|
|
@@ -388,7 +400,9 @@ declare const icons: {
|
|
|
388
400
|
readonly settings: typeof SettingsIcon;
|
|
389
401
|
readonly show: typeof ShowIcon;
|
|
390
402
|
readonly sidebar: typeof SidebarIcon;
|
|
403
|
+
readonly smartKey: typeof SmartKeyIcon;
|
|
391
404
|
readonly sort: typeof SortIcon;
|
|
405
|
+
readonly stayHome: typeof StayHomeIcon;
|
|
392
406
|
readonly star: typeof StarIcon;
|
|
393
407
|
readonly starFilled: typeof StarFilledIcon;
|
|
394
408
|
readonly starOutline: typeof StarOutlineIcon;
|
|
@@ -407,6 +421,7 @@ declare const icons: {
|
|
|
407
421
|
readonly dollar: typeof DollarIcon;
|
|
408
422
|
readonly dram: typeof DramIcon;
|
|
409
423
|
readonly dragHandle: typeof DragHandleIcon;
|
|
424
|
+
readonly externalLink: typeof ExternalLinkIcon;
|
|
410
425
|
readonly eye: typeof EyeIcon;
|
|
411
426
|
readonly image: typeof ImageIcon;
|
|
412
427
|
readonly infoCircle: typeof InfoCircleIcon;
|
|
@@ -417,7 +432,7 @@ type IconName = keyof typeof icons;
|
|
|
417
432
|
declare const iconNames: IconName[];
|
|
418
433
|
declare const iconGroups: {
|
|
419
434
|
readonly navigation: readonly ["arrowRight", "chevronDown", "chevronLeft", "home", "listView", "locationPin", "locationUser", "mapCollapse", "mapExpand", "mapView", "menu", "menuLines", "navigate", "tableView"];
|
|
420
|
-
readonly actions: readonly ["show", "hide", "alertTriangle", "ban", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "download", "dragHandle", "search", "calendar", "calendarMinus", "calendarOutline", "close", "cloudUpload", "noReview", "edit", "ratingStar", "saveHeart", "share", "filters", "fullscreen", "heart", "headset", "zoomOut", "star", "starFilled", "starOutline", "sun", "minus", "moonStars", "moreHorizontal", "plus", "refresh", "refundStatus", "sort"];
|
|
435
|
+
readonly actions: readonly ["show", "hide", "alertTriangle", "ban", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "download", "dragHandle", "search", "calendar", "calendarFilled", "calendarMinus", "calendarOutline", "close", "deactivate", "cloudUpload", "noReview", "edit", "externalLink", "ratingStar", "saveHeart", "share", "smartKey", "stayHome", "filters", "fullscreen", "heart", "headset", "zoomOut", "star", "starFilled", "starOutline", "sun", "minus", "moonStars", "moreHorizontal", "plus", "refresh", "refundStatus", "sort"];
|
|
421
436
|
readonly objects: readonly ["bag", "bathrooms", "bedrooms", "building", "cardLocation", "clock", "clockFilled", "guests", "totalGuests", "activeGuests", "blockedGuests", "lock", "noPets", "noSmoking", "paw", "qrCode", "quietHours", "trash", "unlock", "user", "usersAlt", "video", "videoOff", "washer", "whatsApp"];
|
|
422
437
|
readonly communication: readonly ["mail", "phone"];
|
|
423
438
|
readonly social: readonly ["apple", "facebook", "googlePlay", "instagram", "linkedin"];
|
|
@@ -1655,4 +1670,4 @@ type ResolvePopoverAlignOptions = {
|
|
|
1655
1670
|
*/
|
|
1656
1671
|
declare function resolvePopoverAlign({ triggerRect, panelWidth, viewportWidth, padding, preferred, }: ResolvePopoverAlignOptions): PopoverAlign;
|
|
1657
1672
|
|
|
1658
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, AccountHeader, type AccountHeaderProps, ActiveGuestsIcon, AlertTriangleIcon, Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowLeftIcon, ArrowRightIcon, AutocompleteInput, type AutocompleteInputProps, type AutocompleteOption, Avatar, type AvatarMenuItem, type AvatarProps, AvatarSimple, type AvatarSimpleProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BanIcon, BathroomsIcon, BedroomsIcon, BellIcon, BlockedGuestsIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarMinusIcon, CalendarOutlineIcon, CameraFilledIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CloudUploadIcon, CommentCard, type CommentCardProps, ContactInfoCard, type ContactInfoCardProps, CopyIcon, Counter, type CounterProps, CurrentLocationIcon, CutleryIcon, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, DollarIcon, DownloadIcon, DragHandleIcon, DramIcon, Drawer, type DrawerProps, EditIcon, EyeIcon, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, FloatingActionButton, type FloatingActionButtonProps, FullscreenIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HideIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, IconStatusBadge, type IconStatusBadgeProps, ImageIcon, InfoCardV2, type InfoCardV2Props, InfoCircleIcon, InfoTile, type InfoTileProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, type LanguageSwitcherVariant, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LocationUserIcon, LockIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MenuLinesIcon, MinusIcon, Modal, type ModalProps, MoonStarsIcon, MoreHorizontalIcon, NavigateIcon, NoPetsIcon, NoReviewIcon, NoSmokingIcon, PaginationDots, type PaginationDotsProps, PawIcon, PhoneIcon, PlusIcon, type PopoverAlign, QrCodeIcon, QuantityInput, type QuantityInputProps, QuietHoursIcon, RadioButton, type RadioButtonProps, type RadioButtonVariant, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, RefreshIcon, RefundStatusIcon, type ResolvePopoverAlignOptions, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, Sidebar, SidebarIcon, type SidebarItem, type SidebarProps, type SidebarUser, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StarOutlineIcon, StatCard, type StatCardProps, StatusBadge, type StatusBadgeProps, type StatusBadgeTone, StepList, type StepListProps, StepPager, type StepPagerProps, SunIcon, TableViewIcon, Textarea, type TextareaProps, Toggle, type ToggleProps, ToggleRow, type ToggleRowProps, TooltipArrowIcon, TotalGuestsIcon, TrashIcon, UnlockIcon, UserIcon, UsersAltIcon, VerificationCodeInput, type VerificationCodeInputHandle, type VerificationCodeInputProps, VideoIcon, VideoOffIcon, WasherIcon, WhatsAppIcon, ZoomOutIcon, abbreviateMonthName, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, formatDate, formatDateDayShortMonth, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, resolvePopoverAlign, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|
|
1673
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, AccountHeader, type AccountHeaderProps, ActiveGuestsIcon, AlertTriangleIcon, Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowLeftIcon, ArrowRightIcon, AutocompleteInput, type AutocompleteInputProps, type AutocompleteOption, Avatar, type AvatarMenuItem, type AvatarProps, AvatarSimple, type AvatarSimpleProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BanIcon, BathroomsIcon, BedroomsIcon, BellIcon, BlockedGuestsIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarFilledIcon, CalendarIcon, CalendarMinusIcon, CalendarOutlineIcon, CameraFilledIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CloudUploadIcon, CommentCard, type CommentCardProps, ContactInfoCard, type ContactInfoCardProps, CopyIcon, Counter, type CounterProps, CurrentLocationIcon, CutleryIcon, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, DeactivateIcon, DollarIcon, DownloadIcon, DragHandleIcon, DramIcon, Drawer, type DrawerProps, EditIcon, ExternalLinkIcon, EyeIcon, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, FloatingActionButton, type FloatingActionButtonProps, FullscreenIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HideIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, IconStatusBadge, type IconStatusBadgeProps, ImageIcon, InfoCardV2, type InfoCardV2Props, InfoCircleIcon, InfoTile, type InfoTileProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, type LanguageSwitcherVariant, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LocationUserIcon, LockIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MenuLinesIcon, MinusIcon, Modal, type ModalProps, MoonStarsIcon, MoreHorizontalIcon, NavigateIcon, NoPetsIcon, NoReviewIcon, NoSmokingIcon, PaginationDots, type PaginationDotsProps, PawIcon, PhoneIcon, PlusIcon, type PopoverAlign, QrCodeIcon, QuantityInput, type QuantityInputProps, QuietHoursIcon, RadioButton, type RadioButtonProps, type RadioButtonVariant, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, RefreshIcon, RefundStatusIcon, type ResolvePopoverAlignOptions, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, Sidebar, SidebarIcon, type SidebarItem, type SidebarProps, type SidebarUser, SmartKeyIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StarOutlineIcon, StatCard, type StatCardProps, StatusBadge, type StatusBadgeProps, type StatusBadgeTone, StayHomeIcon, StepList, type StepListProps, StepPager, type StepPagerProps, SunIcon, TableViewIcon, Textarea, type TextareaProps, Toggle, type ToggleProps, ToggleRow, type ToggleRowProps, TooltipArrowIcon, TotalGuestsIcon, TrashIcon, UnlockIcon, UserIcon, UsersAltIcon, VerificationCodeInput, type VerificationCodeInputHandle, type VerificationCodeInputProps, VideoIcon, VideoOffIcon, WasherIcon, WhatsAppIcon, ZoomOutIcon, abbreviateMonthName, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, formatDate, formatDateDayShortMonth, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, resolvePopoverAlign, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|