@ecohouse/ui 0.1.28 → 0.1.30
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/README.md +17 -13
- package/dist/index.cjs +782 -191
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +89 -2
- package/dist/index.d.ts +89 -2
- package/dist/index.js +782 -194
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/AvatarSimple/AvatarSimple.stories.tsx +62 -0
- package/src/components/AvatarSimple/AvatarSimple.tsx +178 -0
- package/src/components/AvatarSimple/index.ts +2 -0
- package/src/components/SegmentedToggle/SegmentedToggle.stories.tsx +22 -0
- package/src/components/SegmentedToggle/SegmentedToggle.tsx +51 -18
- package/src/components/Sidebar/Sidebar.stories.tsx +119 -0
- package/src/components/Sidebar/Sidebar.tsx +305 -0
- package/src/components/Sidebar/index.ts +2 -0
- package/src/components/VerificationCodeInput/VerificationCodeInput.stories.tsx +112 -0
- package/src/components/VerificationCodeInput/VerificationCodeInput.test.ts +42 -0
- package/src/components/VerificationCodeInput/VerificationCodeInput.tsx +255 -0
- package/src/components/VerificationCodeInput/VerificationCodeInput.utils.ts +34 -0
- package/src/components/VerificationCodeInput/index.ts +5 -0
- package/src/components/index.ts +12 -0
- package/src/icons/LogOut/logOutPath.ts +1 -1
- package/src/index.ts +9 -0
package/dist/index.d.cts
CHANGED
|
@@ -117,6 +117,27 @@ interface AvatarProps extends Omit<PressableProps, "onPress" | "disabled" | "sty
|
|
|
117
117
|
}
|
|
118
118
|
declare const Avatar: react.ForwardRefExoticComponent<AvatarProps & react.RefAttributes<View>>;
|
|
119
119
|
|
|
120
|
+
interface AvatarSimpleProps extends Omit<ViewProps, "style" | "children"> {
|
|
121
|
+
/** Logged-in user's display name. */
|
|
122
|
+
name: string;
|
|
123
|
+
/** Shown under the name, e.g. the user's email. */
|
|
124
|
+
email: string;
|
|
125
|
+
/** Photo URL; falls back to a solid placeholder when missing or when it fails to load. */
|
|
126
|
+
imageUrl?: string | null;
|
|
127
|
+
/** Called when the trailing logout control is pressed. */
|
|
128
|
+
onLogOut?: () => void;
|
|
129
|
+
/** Accessible label for the logout control. Defaults to `"Log out"`. */
|
|
130
|
+
logOutAccessibilityLabel?: string;
|
|
131
|
+
/**
|
|
132
|
+
* Compact mode — avatar image only (no card chrome, name, email, or logout).
|
|
133
|
+
* Used by collapsed account sidebars.
|
|
134
|
+
*/
|
|
135
|
+
compact?: boolean;
|
|
136
|
+
style?: StyleProp<ViewStyle>;
|
|
137
|
+
className?: string;
|
|
138
|
+
}
|
|
139
|
+
declare const AvatarSimple: react.ForwardRefExoticComponent<AvatarSimpleProps & react.RefAttributes<View>>;
|
|
140
|
+
|
|
120
141
|
interface IconProps {
|
|
121
142
|
size?: number;
|
|
122
143
|
color?: string;
|
|
@@ -409,7 +430,11 @@ interface SegmentedToggleOption {
|
|
|
409
430
|
icon?: IconComponent;
|
|
410
431
|
}
|
|
411
432
|
interface SegmentedToggleProps extends Omit<ViewProps, "style" | "children"> {
|
|
412
|
-
|
|
433
|
+
/**
|
|
434
|
+
* Segment options. Supports 2 or 3 options (e.g. Active / Completed / Cancelled).
|
|
435
|
+
* Passing fewer than 2 options is unsupported.
|
|
436
|
+
*/
|
|
437
|
+
options: readonly [SegmentedToggleOption, SegmentedToggleOption] | readonly [SegmentedToggleOption, SegmentedToggleOption, SegmentedToggleOption];
|
|
413
438
|
value?: string;
|
|
414
439
|
defaultValue?: string;
|
|
415
440
|
onValueChange?: (value: string) => void;
|
|
@@ -421,6 +446,43 @@ interface SegmentedToggleProps extends Omit<ViewProps, "style" | "children"> {
|
|
|
421
446
|
}
|
|
422
447
|
declare const SegmentedToggle: react.ForwardRefExoticComponent<SegmentedToggleProps & react.RefAttributes<View>>;
|
|
423
448
|
|
|
449
|
+
interface SidebarItem {
|
|
450
|
+
/** Stable identity for React keys. */
|
|
451
|
+
key: string;
|
|
452
|
+
label: string;
|
|
453
|
+
/** Icon component — colored by the sidebar based on active state. */
|
|
454
|
+
icon: IconComponent;
|
|
455
|
+
/** Marks the current route / selection. */
|
|
456
|
+
active?: boolean;
|
|
457
|
+
onPress?: () => void;
|
|
458
|
+
}
|
|
459
|
+
interface SidebarUser {
|
|
460
|
+
name: string;
|
|
461
|
+
email: string;
|
|
462
|
+
imageUrl?: string | null;
|
|
463
|
+
}
|
|
464
|
+
interface SidebarProps extends Omit<ViewProps, "style" | "children"> {
|
|
465
|
+
items: readonly SidebarItem[];
|
|
466
|
+
user: SidebarUser;
|
|
467
|
+
onLogOut?: () => void;
|
|
468
|
+
/** Accessible name for the brand mark. Defaults to `"Cortel Booking"`. */
|
|
469
|
+
logoAccessibilityLabel?: string;
|
|
470
|
+
/** Accessible name for the nav landmark. Defaults to `"Account navigation"`. */
|
|
471
|
+
navigationAccessibilityLabel?: string;
|
|
472
|
+
/** Accessible label when the sidebar is expanded. Defaults to `"Collapse sidebar"`. */
|
|
473
|
+
collapseAccessibilityLabel?: string;
|
|
474
|
+
/** Accessible label when the sidebar is collapsed. Defaults to `"Expand sidebar"`. */
|
|
475
|
+
expandAccessibilityLabel?: string;
|
|
476
|
+
/** Accessible label for the logout control. Defaults to `"Log out"`. */
|
|
477
|
+
logOutAccessibilityLabel?: string;
|
|
478
|
+
collapsed?: boolean;
|
|
479
|
+
defaultCollapsed?: boolean;
|
|
480
|
+
onCollapsedChange?: (collapsed: boolean) => void;
|
|
481
|
+
style?: StyleProp<ViewStyle>;
|
|
482
|
+
className?: string;
|
|
483
|
+
}
|
|
484
|
+
declare const Sidebar: react.ForwardRefExoticComponent<SidebarProps & react.RefAttributes<View>>;
|
|
485
|
+
|
|
424
486
|
interface LanguageOption {
|
|
425
487
|
/** Stable locale identifier, such as `hy`, `en`, or `ru`. */
|
|
426
488
|
value: string;
|
|
@@ -585,6 +647,31 @@ interface InputProps extends Omit<TextInputProps, "style" | "editable"> {
|
|
|
585
647
|
}
|
|
586
648
|
declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<TextInput>>;
|
|
587
649
|
|
|
650
|
+
interface VerificationCodeInputHandle {
|
|
651
|
+
clear: () => void;
|
|
652
|
+
focus: (index?: number) => void;
|
|
653
|
+
}
|
|
654
|
+
interface VerificationCodeInputProps extends Omit<ViewProps, "children" | "style"> {
|
|
655
|
+
/** Number of numeric cells. */
|
|
656
|
+
length?: number;
|
|
657
|
+
value?: string;
|
|
658
|
+
defaultValue?: string;
|
|
659
|
+
onValueChange?: (value: string) => void;
|
|
660
|
+
/** Called whenever every cell contains a digit. */
|
|
661
|
+
onComplete?: (value: string) => void;
|
|
662
|
+
/** Called when Enter/submit is pressed from a cell. */
|
|
663
|
+
onSubmit?: (value: string) => void;
|
|
664
|
+
error?: boolean;
|
|
665
|
+
disabled?: boolean;
|
|
666
|
+
autoFocus?: boolean;
|
|
667
|
+
/** Localized accessible name for each zero-based cell index. */
|
|
668
|
+
getDigitAccessibilityLabel?: (index: number) => string;
|
|
669
|
+
style?: StyleProp<ViewStyle>;
|
|
670
|
+
inputStyle?: StyleProp<TextStyle>;
|
|
671
|
+
className?: string;
|
|
672
|
+
}
|
|
673
|
+
declare const VerificationCodeInput: react.ForwardRefExoticComponent<VerificationCodeInputProps & react.RefAttributes<VerificationCodeInputHandle>>;
|
|
674
|
+
|
|
588
675
|
type SelectOption = {
|
|
589
676
|
label: string;
|
|
590
677
|
value: string;
|
|
@@ -1050,4 +1137,4 @@ declare const textareaTypography: {
|
|
|
1050
1137
|
};
|
|
1051
1138
|
};
|
|
1052
1139
|
|
|
1053
|
-
export { Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowRightIcon, Avatar, type AvatarMenuItem, type AvatarProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, SidebarIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|
|
1140
|
+
export { Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowRightIcon, 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, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, 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, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VerificationCodeInput, type VerificationCodeInputHandle, type VerificationCodeInputProps, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|
package/dist/index.d.ts
CHANGED
|
@@ -117,6 +117,27 @@ interface AvatarProps extends Omit<PressableProps, "onPress" | "disabled" | "sty
|
|
|
117
117
|
}
|
|
118
118
|
declare const Avatar: react.ForwardRefExoticComponent<AvatarProps & react.RefAttributes<View>>;
|
|
119
119
|
|
|
120
|
+
interface AvatarSimpleProps extends Omit<ViewProps, "style" | "children"> {
|
|
121
|
+
/** Logged-in user's display name. */
|
|
122
|
+
name: string;
|
|
123
|
+
/** Shown under the name, e.g. the user's email. */
|
|
124
|
+
email: string;
|
|
125
|
+
/** Photo URL; falls back to a solid placeholder when missing or when it fails to load. */
|
|
126
|
+
imageUrl?: string | null;
|
|
127
|
+
/** Called when the trailing logout control is pressed. */
|
|
128
|
+
onLogOut?: () => void;
|
|
129
|
+
/** Accessible label for the logout control. Defaults to `"Log out"`. */
|
|
130
|
+
logOutAccessibilityLabel?: string;
|
|
131
|
+
/**
|
|
132
|
+
* Compact mode — avatar image only (no card chrome, name, email, or logout).
|
|
133
|
+
* Used by collapsed account sidebars.
|
|
134
|
+
*/
|
|
135
|
+
compact?: boolean;
|
|
136
|
+
style?: StyleProp<ViewStyle>;
|
|
137
|
+
className?: string;
|
|
138
|
+
}
|
|
139
|
+
declare const AvatarSimple: react.ForwardRefExoticComponent<AvatarSimpleProps & react.RefAttributes<View>>;
|
|
140
|
+
|
|
120
141
|
interface IconProps {
|
|
121
142
|
size?: number;
|
|
122
143
|
color?: string;
|
|
@@ -409,7 +430,11 @@ interface SegmentedToggleOption {
|
|
|
409
430
|
icon?: IconComponent;
|
|
410
431
|
}
|
|
411
432
|
interface SegmentedToggleProps extends Omit<ViewProps, "style" | "children"> {
|
|
412
|
-
|
|
433
|
+
/**
|
|
434
|
+
* Segment options. Supports 2 or 3 options (e.g. Active / Completed / Cancelled).
|
|
435
|
+
* Passing fewer than 2 options is unsupported.
|
|
436
|
+
*/
|
|
437
|
+
options: readonly [SegmentedToggleOption, SegmentedToggleOption] | readonly [SegmentedToggleOption, SegmentedToggleOption, SegmentedToggleOption];
|
|
413
438
|
value?: string;
|
|
414
439
|
defaultValue?: string;
|
|
415
440
|
onValueChange?: (value: string) => void;
|
|
@@ -421,6 +446,43 @@ interface SegmentedToggleProps extends Omit<ViewProps, "style" | "children"> {
|
|
|
421
446
|
}
|
|
422
447
|
declare const SegmentedToggle: react.ForwardRefExoticComponent<SegmentedToggleProps & react.RefAttributes<View>>;
|
|
423
448
|
|
|
449
|
+
interface SidebarItem {
|
|
450
|
+
/** Stable identity for React keys. */
|
|
451
|
+
key: string;
|
|
452
|
+
label: string;
|
|
453
|
+
/** Icon component — colored by the sidebar based on active state. */
|
|
454
|
+
icon: IconComponent;
|
|
455
|
+
/** Marks the current route / selection. */
|
|
456
|
+
active?: boolean;
|
|
457
|
+
onPress?: () => void;
|
|
458
|
+
}
|
|
459
|
+
interface SidebarUser {
|
|
460
|
+
name: string;
|
|
461
|
+
email: string;
|
|
462
|
+
imageUrl?: string | null;
|
|
463
|
+
}
|
|
464
|
+
interface SidebarProps extends Omit<ViewProps, "style" | "children"> {
|
|
465
|
+
items: readonly SidebarItem[];
|
|
466
|
+
user: SidebarUser;
|
|
467
|
+
onLogOut?: () => void;
|
|
468
|
+
/** Accessible name for the brand mark. Defaults to `"Cortel Booking"`. */
|
|
469
|
+
logoAccessibilityLabel?: string;
|
|
470
|
+
/** Accessible name for the nav landmark. Defaults to `"Account navigation"`. */
|
|
471
|
+
navigationAccessibilityLabel?: string;
|
|
472
|
+
/** Accessible label when the sidebar is expanded. Defaults to `"Collapse sidebar"`. */
|
|
473
|
+
collapseAccessibilityLabel?: string;
|
|
474
|
+
/** Accessible label when the sidebar is collapsed. Defaults to `"Expand sidebar"`. */
|
|
475
|
+
expandAccessibilityLabel?: string;
|
|
476
|
+
/** Accessible label for the logout control. Defaults to `"Log out"`. */
|
|
477
|
+
logOutAccessibilityLabel?: string;
|
|
478
|
+
collapsed?: boolean;
|
|
479
|
+
defaultCollapsed?: boolean;
|
|
480
|
+
onCollapsedChange?: (collapsed: boolean) => void;
|
|
481
|
+
style?: StyleProp<ViewStyle>;
|
|
482
|
+
className?: string;
|
|
483
|
+
}
|
|
484
|
+
declare const Sidebar: react.ForwardRefExoticComponent<SidebarProps & react.RefAttributes<View>>;
|
|
485
|
+
|
|
424
486
|
interface LanguageOption {
|
|
425
487
|
/** Stable locale identifier, such as `hy`, `en`, or `ru`. */
|
|
426
488
|
value: string;
|
|
@@ -585,6 +647,31 @@ interface InputProps extends Omit<TextInputProps, "style" | "editable"> {
|
|
|
585
647
|
}
|
|
586
648
|
declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<TextInput>>;
|
|
587
649
|
|
|
650
|
+
interface VerificationCodeInputHandle {
|
|
651
|
+
clear: () => void;
|
|
652
|
+
focus: (index?: number) => void;
|
|
653
|
+
}
|
|
654
|
+
interface VerificationCodeInputProps extends Omit<ViewProps, "children" | "style"> {
|
|
655
|
+
/** Number of numeric cells. */
|
|
656
|
+
length?: number;
|
|
657
|
+
value?: string;
|
|
658
|
+
defaultValue?: string;
|
|
659
|
+
onValueChange?: (value: string) => void;
|
|
660
|
+
/** Called whenever every cell contains a digit. */
|
|
661
|
+
onComplete?: (value: string) => void;
|
|
662
|
+
/** Called when Enter/submit is pressed from a cell. */
|
|
663
|
+
onSubmit?: (value: string) => void;
|
|
664
|
+
error?: boolean;
|
|
665
|
+
disabled?: boolean;
|
|
666
|
+
autoFocus?: boolean;
|
|
667
|
+
/** Localized accessible name for each zero-based cell index. */
|
|
668
|
+
getDigitAccessibilityLabel?: (index: number) => string;
|
|
669
|
+
style?: StyleProp<ViewStyle>;
|
|
670
|
+
inputStyle?: StyleProp<TextStyle>;
|
|
671
|
+
className?: string;
|
|
672
|
+
}
|
|
673
|
+
declare const VerificationCodeInput: react.ForwardRefExoticComponent<VerificationCodeInputProps & react.RefAttributes<VerificationCodeInputHandle>>;
|
|
674
|
+
|
|
588
675
|
type SelectOption = {
|
|
589
676
|
label: string;
|
|
590
677
|
value: string;
|
|
@@ -1050,4 +1137,4 @@ declare const textareaTypography: {
|
|
|
1050
1137
|
};
|
|
1051
1138
|
};
|
|
1052
1139
|
|
|
1053
|
-
export { Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowRightIcon, Avatar, type AvatarMenuItem, type AvatarProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, SidebarIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|
|
1140
|
+
export { Amenity, AmenityIcon, type AmenityIconProps, type AmenityName, type AmenityProps, type AmenityVariant, AppleIcon, AreaExpandIcon, ArrowRightIcon, 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, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerVariant, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, 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, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VerificationCodeInput, type VerificationCodeInputHandle, type VerificationCodeInputProps, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
|