@mindly/ui-components 5.17.0 → 5.18.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/dist/cjs/index.js +2 -2
- package/dist/cjs/lib2/shared/assets/icons/IconCreditCard.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconGift.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconPaper.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconQuestion.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/ListItems/ListItem.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/ListItems/styles.d.ts +21 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/lib2/shared/assets/icons/IconCreditCard.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconGift.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconPaper.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconQuestion.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/ListItems/ListItem.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/ListItems/styles.d.ts +21 -0
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
|
@@ -32,6 +32,10 @@ export * from './IconLetter';
|
|
|
32
32
|
export * from './IconSpinner';
|
|
33
33
|
export * from './IconEye';
|
|
34
34
|
export * from './IconEyeOff';
|
|
35
|
+
export * from './IconGift';
|
|
36
|
+
export * from './IconCreditCard';
|
|
37
|
+
export * from './IconQuestion';
|
|
38
|
+
export * from './IconPaper';
|
|
35
39
|
export * from './IconChat3d';
|
|
36
40
|
export * from './IconNotficationMuted';
|
|
37
41
|
export * from './IconCheckSmall';
|
|
@@ -3,11 +3,13 @@ type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
3
3
|
leftContent?: React.ReactNode;
|
|
4
4
|
rightContent?: React.ReactNode;
|
|
5
5
|
withBorders?: boolean;
|
|
6
|
+
isDisabled?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export declare const ListItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
|
|
8
9
|
leftContent?: React.ReactNode;
|
|
9
10
|
rightContent?: React.ReactNode;
|
|
10
11
|
withBorders?: boolean | undefined;
|
|
12
|
+
isDisabled?: boolean | undefined;
|
|
11
13
|
} & React.RefAttributes<HTMLIonItemElement>>;
|
|
12
14
|
declare const _default: React.NamedExoticComponent<ListItemProps>;
|
|
13
15
|
export default _default;
|
|
@@ -2,6 +2,9 @@ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
|
|
|
2
2
|
withBorders: {
|
|
3
3
|
true: "";
|
|
4
4
|
};
|
|
5
|
+
isDisabled: {
|
|
6
|
+
true: "";
|
|
7
|
+
};
|
|
5
8
|
}, {
|
|
6
9
|
items: string;
|
|
7
10
|
item: string;
|
|
@@ -12,14 +15,23 @@ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
|
|
|
12
15
|
withBorders: {
|
|
13
16
|
true: "";
|
|
14
17
|
};
|
|
18
|
+
isDisabled: {
|
|
19
|
+
true: "";
|
|
20
|
+
};
|
|
15
21
|
}, {
|
|
16
22
|
withBorders: {
|
|
17
23
|
true: "";
|
|
18
24
|
};
|
|
25
|
+
isDisabled: {
|
|
26
|
+
true: "";
|
|
27
|
+
};
|
|
19
28
|
}>, {
|
|
20
29
|
withBorders: {
|
|
21
30
|
true: "";
|
|
22
31
|
};
|
|
32
|
+
isDisabled: {
|
|
33
|
+
true: "";
|
|
34
|
+
};
|
|
23
35
|
}, {
|
|
24
36
|
items: string;
|
|
25
37
|
item: string;
|
|
@@ -30,6 +42,9 @@ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
|
|
|
30
42
|
withBorders: {
|
|
31
43
|
true: "";
|
|
32
44
|
};
|
|
45
|
+
isDisabled: {
|
|
46
|
+
true: "";
|
|
47
|
+
};
|
|
33
48
|
}, {
|
|
34
49
|
items: string;
|
|
35
50
|
item: string;
|
|
@@ -40,8 +55,14 @@ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
|
|
|
40
55
|
withBorders: {
|
|
41
56
|
true: "";
|
|
42
57
|
};
|
|
58
|
+
isDisabled: {
|
|
59
|
+
true: "";
|
|
60
|
+
};
|
|
43
61
|
}, {
|
|
44
62
|
withBorders: {
|
|
45
63
|
true: "";
|
|
46
64
|
};
|
|
65
|
+
isDisabled: {
|
|
66
|
+
true: "";
|
|
67
|
+
};
|
|
47
68
|
}>, unknown, unknown, undefined>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1650,6 +1650,7 @@ type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1650
1650
|
leftContent?: React.ReactNode;
|
|
1651
1651
|
rightContent?: React.ReactNode;
|
|
1652
1652
|
withBorders?: boolean;
|
|
1653
|
+
isDisabled?: boolean;
|
|
1653
1654
|
};
|
|
1654
1655
|
declare const _default$1: React.NamedExoticComponent<ListItemProps>;
|
|
1655
1656
|
|
|
@@ -1839,6 +1840,14 @@ declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
|
|
|
1839
1840
|
|
|
1840
1841
|
declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
|
|
1841
1842
|
|
|
1843
|
+
declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1844
|
+
|
|
1845
|
+
declare const IconCreditCard: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1846
|
+
|
|
1847
|
+
declare const IconQuestion: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1848
|
+
|
|
1849
|
+
declare const IconPaper: React.FC<React.SVGAttributes<SVGElement>>;
|
|
1850
|
+
|
|
1842
1851
|
declare const IconChat3d: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
1843
1852
|
|
|
1844
1853
|
declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
@@ -1930,4 +1939,4 @@ type PushNotificationsIsDisabledBannerProps = {
|
|
|
1930
1939
|
|
|
1931
1940
|
declare function PushNotificationsIsDisabledBanner({ onOpenNativeSettings, className, title, description, buttonText, }: PushNotificationsIsDisabledBannerProps): JSX.Element;
|
|
1932
1941
|
|
|
1933
|
-
export { AppFooter, _default$d as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$c as Avatar_v2, _default$8 as Badge, _default$r as BookingScheduleTime, _default$q as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$M as ChatListItem, _default$K as ChatListSkeleton, _default$L as ChatMessage, ChatMessageSkeleton, _default$l as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$D as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$A as ConsultationModal, _default$y as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$m as CustomCheckbox, CustomRadioButton, _default$n as CustomSelect, _default$o as CustomTextarea, DatePicker, _default$w as DaySlider, DayToRender, _default$s as EducationCard, _default$J as EmptyChatList, EmptyChatMessages, _default$B as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$i as Flag, FlagTypes, _default$a as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$5 as IconButton, IconCalendar, IconCalendarMonth, IconChat3d, IconChatOutline, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconEditCalendar, IconEye, IconEyeOff, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconResume, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconVerifiedUser, IconVisible, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$Q as LetterAvatar, _default$j as LineFileInput, ListBox, ListBoxItem, ListButton, _default$1 as ListItem, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$N as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$P as PersonDateTimeCard, _default$9 as Picture, _default$h as ProfileInformation, _default$u as ProfileView, _default$k as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, _default$x as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$O as SelectImpressionEmoji, _default$C as SignUpSessionButton, _default$z as SignUpSessionModal, Skeleton, _default$b as Skeleton_v2, _default as SlotsGrid, _default$t as SpecialistAbout, SpecialistCard, _default$H as SpecialistEducationCard, SpecialistLangs, _default$g as SpecialistMatch, _default$G as SpecialistProfileViewCard, _default$f as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$p as TextInput, _default$I as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$e as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as VideoCallInfo, _default$F as VideoPlayer, _default$v as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, mergeRefs, toast, useAutoFocus, useDomRef, useEvent, useToastContext };
|
|
1942
|
+
export { AppFooter, _default$d as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$c as Avatar_v2, _default$8 as Badge, _default$r as BookingScheduleTime, _default$q as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$M as ChatListItem, _default$K as ChatListSkeleton, _default$L as ChatMessage, ChatMessageSkeleton, _default$l as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$D as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$A as ConsultationModal, _default$y as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$m as CustomCheckbox, CustomRadioButton, _default$n as CustomSelect, _default$o as CustomTextarea, DatePicker, _default$w as DaySlider, DayToRender, _default$s as EducationCard, _default$J as EmptyChatList, EmptyChatMessages, _default$B as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$i as Flag, FlagTypes, _default$a as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$5 as IconButton, IconCalendar, IconCalendarMonth, IconChat3d, IconChatOutline, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconResume, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconVerifiedUser, IconVisible, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$Q as LetterAvatar, _default$j as LineFileInput, ListBox, ListBoxItem, ListButton, _default$1 as ListItem, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$N as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$P as PersonDateTimeCard, _default$9 as Picture, _default$h as ProfileInformation, _default$u as ProfileView, _default$k as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, _default$x as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$O as SelectImpressionEmoji, _default$C as SignUpSessionButton, _default$z as SignUpSessionModal, Skeleton, _default$b as Skeleton_v2, _default as SlotsGrid, _default$t as SpecialistAbout, SpecialistCard, _default$H as SpecialistEducationCard, SpecialistLangs, _default$g as SpecialistMatch, _default$G as SpecialistProfileViewCard, _default$f as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$p as TextInput, _default$I as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$e as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as VideoCallInfo, _default$F as VideoPlayer, _default$v as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, mergeRefs, toast, useAutoFocus, useDomRef, useEvent, useToastContext };
|