@mindly/ui-components 4.3.1 → 4.3.3
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 +1 -1
- package/dist/cjs/lib2/shared/assets/icons/{icon-checkbox-unchecked.d.ts → iconCheckboxUnchecked.d.ts} +1 -1
- package/dist/cjs/lib2/shared/assets/icons/iconLanguage.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/AppHeader_v2/AppHeader_v2.stories.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/AppHeader_v2/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/shared/assets/icons/{icon-checkbox-unchecked.d.ts → iconCheckboxUnchecked.d.ts} +1 -1
- package/dist/esm/lib2/shared/assets/icons/iconLanguage.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/index.d.ts +1 -0
- package/dist/esm/lib2/shared/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/AppHeader_v2/AppHeader_v2.stories.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/AppHeader_v2/index.d.ts +1 -1
- package/dist/index.d.ts +21 -3
- package/package.json +1 -1
- /package/dist/cjs/lib2/shared/assets/icons/{icon-checkbox-checked.d.ts → iconCheckboxChecked.d.ts} +0 -0
- /package/dist/esm/lib2/shared/assets/icons/{icon-checkbox-checked.d.ts → iconCheckboxChecked.d.ts} +0 -0
|
@@ -3,5 +3,5 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
|
3
3
|
size?: number | string;
|
|
4
4
|
color?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function
|
|
6
|
+
export declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps): JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './icons';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './AppHeader_v2';
|
|
1
|
+
export { default as AppHeader_v2 } from './AppHeader_v2';
|
package/dist/index.d.ts
CHANGED
|
@@ -354,11 +354,11 @@ type AvatarProps$1 = {
|
|
|
354
354
|
};
|
|
355
355
|
declare const Avatar: FC<AvatarProps$1>;
|
|
356
356
|
|
|
357
|
-
type AppHeaderProps = {
|
|
357
|
+
type AppHeaderProps$1 = {
|
|
358
358
|
fullwidth?: boolean;
|
|
359
359
|
className?: string;
|
|
360
360
|
};
|
|
361
|
-
declare const AppHeader: FC<AppHeaderProps>;
|
|
361
|
+
declare const AppHeader: FC<AppHeaderProps$1>;
|
|
362
362
|
|
|
363
363
|
type ContainerProps$1 = {
|
|
364
364
|
style?: CSSProperties;
|
|
@@ -1501,6 +1501,12 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1501
1501
|
|
|
1502
1502
|
declare const _default: React.NamedExoticComponent<BadgeProps>;
|
|
1503
1503
|
|
|
1504
|
+
type AppHeaderProps = {
|
|
1505
|
+
fullwidth?: boolean;
|
|
1506
|
+
className?: string;
|
|
1507
|
+
};
|
|
1508
|
+
declare const AppHeader_v2: FC<AppHeaderProps>;
|
|
1509
|
+
|
|
1504
1510
|
type ListOptionsProps = {
|
|
1505
1511
|
item: Node<unknown>;
|
|
1506
1512
|
state: ListState<unknown>;
|
|
@@ -1535,6 +1541,18 @@ declare const ThemeProvider: FC<ThemeProviderProps>;
|
|
|
1535
1541
|
|
|
1536
1542
|
declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React.RefObject<T | null> | React.ForwardedRef<T | null>): React.RefObject<T>;
|
|
1537
1543
|
|
|
1544
|
+
interface IconProps$1 extends React.SVGAttributes<SVGElement> {
|
|
1545
|
+
size?: number | string;
|
|
1546
|
+
color?: string;
|
|
1547
|
+
}
|
|
1548
|
+
declare function IconCheckboxChecked({ color, size, ...other }: IconProps$1): JSX.Element;
|
|
1549
|
+
|
|
1550
|
+
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
1551
|
+
size?: number | string;
|
|
1552
|
+
color?: string;
|
|
1553
|
+
}
|
|
1554
|
+
declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps): JSX.Element;
|
|
1555
|
+
|
|
1538
1556
|
type CountryOfOriginModalProps = {
|
|
1539
1557
|
countries: string[];
|
|
1540
1558
|
onSearchChange: (event: IonSearchbarCustomEvent<SearchbarChangeEventDetail>) => void;
|
|
@@ -1560,4 +1578,4 @@ type ChangeLanguageModalProps = JSX$1.IonModal & {
|
|
|
1560
1578
|
|
|
1561
1579
|
declare function ChangeLanguageModal({ title, onModalClose, onSelect, selected, languages, ...props }: ChangeLanguageModalProps): JSX.Element;
|
|
1562
1580
|
|
|
1563
|
-
export { AppFooter, _default$5 as AppFooter_v2, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$4 as Avatar_v2, _default as Badge, _default$j as BookingScheduleTime, _default$i as BookingSpecialistInfo, Button, Button_v2, CancelSession, ChangeLangModal, ChangeLanguageModal, _default$E as ChatListItem, _default$C as ChatListSkeleton, _default$D as ChatMessage, ChatMessageSkeleton, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$v as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$s as ConsultationModal, _default$q as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$o as DaySlider, DayToRender, _default$k as EducationCard, _default$B as EmptyChatList, EmptyChatMessages, _default$t as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$a as Flag, FlagTypes, _default$2 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$I as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, ListOption, ListSelect, ListSelectProps, LouseConnect, _default$F as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$H as PersonDateTimeCard, _default$1 as Picture, _default$9 as ProfileInformation, _default$m as ProfileView, _default$c as ProgressBar, Range, _default$p as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$G as SelectImpressionEmoji, _default$u as SignUpSessionButton, _default$r as SignUpSessionModal, Skeleton, _default$3 as Skeleton_v2, _default$l as SpecialistAbout, SpecialistCard, _default$z as SpecialistEducationCard, SpecialistLangs, _default$8 as SpecialistMatch, _default$y as SpecialistProfileViewCard, _default$7 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$h as TextInput, _default$A as Textarea, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, _default$6 as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$w as VideoCallInfo, _default$x as VideoPlayer, _default$n as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, toast, useDomRef };
|
|
1581
|
+
export { AppFooter, _default$5 as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$4 as Avatar_v2, _default as Badge, _default$j as BookingScheduleTime, _default$i as BookingSpecialistInfo, Button, Button_v2, CancelSession, ChangeLangModal, ChangeLanguageModal, _default$E as ChatListItem, _default$C as ChatListSkeleton, _default$D as ChatMessage, ChatMessageSkeleton, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$v as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$s as ConsultationModal, _default$q as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$o as DaySlider, DayToRender, _default$k as EducationCard, _default$B as EmptyChatList, EmptyChatMessages, _default$t as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$a as Flag, FlagTypes, _default$2 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconCheckboxChecked, IconCheckboxUnchecked, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$I as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, ListOption, ListSelect, ListSelectProps, LouseConnect, _default$F as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$H as PersonDateTimeCard, _default$1 as Picture, _default$9 as ProfileInformation, _default$m as ProfileView, _default$c as ProgressBar, Range, _default$p as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$G as SelectImpressionEmoji, _default$u as SignUpSessionButton, _default$r as SignUpSessionModal, Skeleton, _default$3 as Skeleton_v2, _default$l as SpecialistAbout, SpecialistCard, _default$z as SpecialistEducationCard, SpecialistLangs, _default$8 as SpecialistMatch, _default$y as SpecialistProfileViewCard, _default$7 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$h as TextInput, _default$A as Textarea, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, _default$6 as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$w as VideoCallInfo, _default$x as VideoPlayer, _default$n as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, toast, useDomRef };
|
package/package.json
CHANGED
/package/dist/cjs/lib2/shared/assets/icons/{icon-checkbox-checked.d.ts → iconCheckboxChecked.d.ts}
RENAMED
|
File without changes
|
/package/dist/esm/lib2/shared/assets/icons/{icon-checkbox-checked.d.ts → iconCheckboxChecked.d.ts}
RENAMED
|
File without changes
|