@mindly/ui-components 5.21.0 → 5.22.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 +6 -6
- package/dist/cjs/lib2/shared/assets/icons/IconArrowDown.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconBookmark.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconCalendarFilled.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconCancel.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconChatFilled.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/IconClient.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconClientFilled.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconPaid.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconSearch.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconUserNotFound.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +10 -0
- package/dist/cjs/lib2/shared/ui/ListItems/{ListItem.d.ts → Item.d.ts} +3 -3
- package/dist/cjs/lib2/shared/ui/ListItems/index.d.ts +1 -1
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/shared/assets/icons/IconArrowDown.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconBookmark.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconCalendarFilled.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconCancel.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconChatFilled.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/IconClient.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconClientFilled.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconPaid.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconSearch.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconUserNotFound.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +10 -0
- package/dist/esm/lib2/shared/ui/ListItems/{ListItem.d.ts → Item.d.ts} +3 -3
- package/dist/esm/lib2/shared/ui/ListItems/index.d.ts +1 -1
- package/dist/index.d.ts +25 -5
- package/package.json +1 -1
|
@@ -43,3 +43,13 @@ export * from './IconCheckSmall';
|
|
|
43
43
|
export * from './IconCheck';
|
|
44
44
|
export * from './IconCapFilled';
|
|
45
45
|
export * from './IconCancelRounded';
|
|
46
|
+
export * from './IconUserNotFound';
|
|
47
|
+
export * from './IconSearch';
|
|
48
|
+
export * from './IconPaid';
|
|
49
|
+
export * from './IconClient';
|
|
50
|
+
export * from './IconClientFilled';
|
|
51
|
+
export * from './IconChatFilled';
|
|
52
|
+
export * from './IconCancel';
|
|
53
|
+
export * from './IconCalendarFilled';
|
|
54
|
+
export * from './IconBookmark';
|
|
55
|
+
export * from './IconArrowDown';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
type
|
|
2
|
+
type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
3
3
|
leftContent?: React.ReactNode;
|
|
4
4
|
rightContent?: React.ReactNode;
|
|
5
5
|
withBorders?: boolean;
|
|
6
6
|
isDisabled?: boolean;
|
|
7
7
|
};
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
|
|
9
9
|
leftContent?: React.ReactNode;
|
|
10
10
|
rightContent?: React.ReactNode;
|
|
11
11
|
withBorders?: boolean | undefined;
|
|
12
12
|
isDisabled?: boolean | undefined;
|
|
13
13
|
} & React.RefAttributes<HTMLIonItemElement>>;
|
|
14
|
-
declare const _default: React.NamedExoticComponent<
|
|
14
|
+
declare const _default: React.NamedExoticComponent<ItemProps>;
|
|
15
15
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as ListItems } from './ListItems';
|
|
2
|
-
export { default as
|
|
2
|
+
export { default as Item } from './Item';
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { RatingComponentProps } from 'react-rating';
|
|
|
5
5
|
import { RefresherEventDetail, ScrollDetail, ScrollBaseDetail } from '@ionic/react';
|
|
6
6
|
import * as _ionic_core_dist_types_components from '@ionic/core/dist/types/components';
|
|
7
7
|
import { IonContentCustomEvent, IonSearchbarCustomEvent } from '@ionic/core/dist/types/components';
|
|
8
|
-
import { Node, ListState, ItemProps, SelectionBehavior, SelectionMode } from 'react-stately';
|
|
8
|
+
import { Node, ListState, ItemProps as ItemProps$1, SelectionBehavior, SelectionMode } from 'react-stately';
|
|
9
9
|
import { AriaListBoxProps, AriaCalendarProps, DateValue } from 'react-aria';
|
|
10
10
|
import * as react_i18next from 'react-i18next';
|
|
11
11
|
import { WithTranslation } from 'react-i18next';
|
|
@@ -1542,7 +1542,7 @@ type ListBoxItemProps = {
|
|
|
1542
1542
|
};
|
|
1543
1543
|
|
|
1544
1544
|
declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLLIElement>>;
|
|
1545
|
-
declare const ListBoxItem: (props: ItemProps<unknown> & ListBoxItemProps) => JSX.Element;
|
|
1545
|
+
declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
|
|
1546
1546
|
|
|
1547
1547
|
type ListBoxProps<T> = AriaListBoxProps<T>;
|
|
1548
1548
|
|
|
@@ -1725,13 +1725,13 @@ type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
|
1725
1725
|
};
|
|
1726
1726
|
declare const _default$2: React.NamedExoticComponent<ListItemsProps>;
|
|
1727
1727
|
|
|
1728
|
-
type
|
|
1728
|
+
type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
1729
1729
|
leftContent?: React.ReactNode;
|
|
1730
1730
|
rightContent?: React.ReactNode;
|
|
1731
1731
|
withBorders?: boolean;
|
|
1732
1732
|
isDisabled?: boolean;
|
|
1733
1733
|
};
|
|
1734
|
-
declare const _default$1: React.NamedExoticComponent<
|
|
1734
|
+
declare const _default$1: React.NamedExoticComponent<ItemProps>;
|
|
1735
1735
|
|
|
1736
1736
|
declare enum appThemes {
|
|
1737
1737
|
client = "client",
|
|
@@ -1995,6 +1995,26 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
|
1995
1995
|
}
|
|
1996
1996
|
declare const IconCancelRounded: FC<IconProps>;
|
|
1997
1997
|
|
|
1998
|
+
declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
1999
|
+
|
|
2000
|
+
declare const IconSearch: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2001
|
+
|
|
2002
|
+
declare const IconPaid: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2003
|
+
|
|
2004
|
+
declare const IconClient: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2005
|
+
|
|
2006
|
+
declare const IconClientFilled: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2007
|
+
|
|
2008
|
+
declare const IconChatFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2009
|
+
|
|
2010
|
+
declare const IconCancel: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2011
|
+
|
|
2012
|
+
declare const IconCalendarFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2013
|
+
|
|
2014
|
+
declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2015
|
+
|
|
2016
|
+
declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2017
|
+
|
|
1998
2018
|
type AnyRef = React__default.Ref<any>;
|
|
1999
2019
|
declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
|
|
2000
2020
|
|
|
@@ -2080,4 +2100,4 @@ type PushNotificationsIsDisabledBannerProps = {
|
|
|
2080
2100
|
|
|
2081
2101
|
declare function PushNotificationsIsDisabledBanner({ onOpenNativeSettings, className, title, description, buttonText, }: PushNotificationsIsDisabledBannerProps): JSX.Element;
|
|
2082
2102
|
|
|
2083
|
-
export { AppFooter, _default$e as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$d as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$9 as Badge, _default$s as BookingScheduleTime, _default$r as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$N as ChatListItem, _default$L as ChatListSkeleton, _default$M as ChatMessage, ChatMessageSkeleton, _default$m as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$E as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$B as ConsultationModal, _default$z as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$n as CustomCheckbox, CustomRadioButton, _default$o as CustomSelect, _default$p as CustomTextarea, DatePicker, _default$x as DaySlider, DayToRender, _default$t as EducationCard, _default$K as EmptyChatList, EmptyChatMessages, _default$C as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$j as Flag, FlagTypes, _default$b as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowLeft, IconArrowRight, IconBeachAccess, _default$5 as IconButton, IconCalendar, IconCalendarMonth, IconCancelRounded, IconCapFilled, IconChat3d, IconChatOutline, IconCheck, 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, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$8 as ItemCard, LanguagesList, _default$R as LetterAvatar, _default$k as LineFileInput, ListBox, ListBoxItem, ListButton,
|
|
2103
|
+
export { AppFooter, _default$e as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$d as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$9 as Badge, _default$s as BookingScheduleTime, _default$r as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$N as ChatListItem, _default$L as ChatListSkeleton, _default$M as ChatMessage, ChatMessageSkeleton, _default$m as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$E as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$B as ConsultationModal, _default$z as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$n as CustomCheckbox, CustomRadioButton, _default$o as CustomSelect, _default$p as CustomTextarea, DatePicker, _default$x as DaySlider, DayToRender, _default$t as EducationCard, _default$K as EmptyChatList, EmptyChatMessages, _default$C as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$j as Flag, FlagTypes, _default$b as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, _default$5 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconResume, IconSearch, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$1 as Item, _default$8 as ItemCard, LanguagesList, _default$R as LetterAvatar, _default$k as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$2 as ListItems, ListOption, ListSelect, ListSelectProps, _default$3 as Loading, LouseConnect, _default$O as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$Q as PersonDateTimeCard, _default$a as Picture, _default$i as ProfileInformation, _default$v as ProfileView, _default$l as ProgressBar, _default$4 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$6 as Rating, RatingCircleWrapper, _default$y as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$P as SelectImpressionEmoji, _default$D as SignUpSessionButton, _default$A as SignUpSessionModal, Skeleton, _default$c as Skeleton_v2, _default as SlotsGrid, _default$u as SpecialistAbout, SpecialistCard, _default$I as SpecialistEducationCard, SpecialistLangs, _default$h as SpecialistMatch, _default$H as SpecialistProfileViewCard, _default$g as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$q as TextInput, _default$J as Textarea, _default$7 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$f as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as VideoCallInfo, _default$G as VideoPlayer, _default$w as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleLegend, useRatingContext, useToastContext };
|