@mindly/ui-components 4.6.0 → 4.7.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 +1 -1
- package/dist/cjs/lib2/shared/assets/icons/iconClose.d.ts +2 -2
- package/dist/cjs/lib2/shared/assets/icons/iconLeftArrow.d.ts +2 -2
- package/dist/cjs/lib2/shared/assets/icons/iconPause.d.ts +7 -0
- package/dist/cjs/lib2/shared/assets/icons/iconStar.d.ts +2 -2
- package/dist/cjs/lib2/shared/assets/icons/iconStarFilled.d.ts +2 -2
- package/dist/cjs/lib2/shared/assets/icons/iconSuccess.d.ts +2 -2
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +2 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/lib2/shared/assets/icons/iconClose.d.ts +2 -2
- package/dist/esm/lib2/shared/assets/icons/iconLeftArrow.d.ts +2 -2
- package/dist/esm/lib2/shared/assets/icons/iconPause.d.ts +7 -0
- package/dist/esm/lib2/shared/assets/icons/iconStar.d.ts +2 -2
- package/dist/esm/lib2/shared/assets/icons/iconStarFilled.d.ts +2 -2
- package/dist/esm/lib2/shared/assets/icons/iconSuccess.d.ts +2 -2
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +2 -0
- package/dist/index.d.ts +22 -4
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
export
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
export declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
export
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
export declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
export
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
export declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
export
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
export declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
export
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
export declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1425,6 +1425,8 @@ declare const _default$9: React__default.NamedExoticComponent<TypographyProps>;
|
|
|
1425
1425
|
|
|
1426
1426
|
type AppFooterProps = {
|
|
1427
1427
|
children: React__default.ReactNode;
|
|
1428
|
+
transparent?: boolean;
|
|
1429
|
+
bottomSaveArea?: boolean;
|
|
1428
1430
|
};
|
|
1429
1431
|
declare const _default$8: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1430
1432
|
|
|
@@ -1574,23 +1576,39 @@ type AnyFunction = (...args: any[]) => any;
|
|
|
1574
1576
|
*/
|
|
1575
1577
|
declare function useEvent<TCallback extends AnyFunction>(callback: TCallback): TCallback;
|
|
1576
1578
|
|
|
1579
|
+
interface IconProps$3 extends React.SVGAttributes<SVGElement> {
|
|
1580
|
+
size?: number | string;
|
|
1581
|
+
color?: string;
|
|
1582
|
+
}
|
|
1583
|
+
declare function IconCheckboxChecked({ color, size, ...other }: IconProps$3): JSX.Element;
|
|
1584
|
+
|
|
1577
1585
|
interface IconProps$2 extends React.SVGAttributes<SVGElement> {
|
|
1578
1586
|
size?: number | string;
|
|
1579
1587
|
color?: string;
|
|
1580
1588
|
}
|
|
1581
|
-
declare function
|
|
1589
|
+
declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$2): JSX.Element;
|
|
1582
1590
|
|
|
1583
1591
|
interface IconProps$1 extends React.SVGAttributes<SVGElement> {
|
|
1584
1592
|
size?: number | string;
|
|
1585
1593
|
color?: string;
|
|
1586
1594
|
}
|
|
1587
|
-
declare function
|
|
1595
|
+
declare function IconLanguage({ color, size, ...other }: IconProps$1): JSX.Element;
|
|
1596
|
+
|
|
1597
|
+
declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
|
|
1598
|
+
|
|
1599
|
+
declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
|
|
1600
|
+
|
|
1601
|
+
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
1602
|
+
|
|
1603
|
+
declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
1604
|
+
|
|
1605
|
+
declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
|
|
1588
1606
|
|
|
1589
1607
|
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
1590
1608
|
size?: number | string;
|
|
1591
1609
|
color?: string;
|
|
1592
1610
|
}
|
|
1593
|
-
declare function
|
|
1611
|
+
declare function IconPause({ color, size, ...other }: IconProps): JSX.Element;
|
|
1594
1612
|
|
|
1595
1613
|
type CountryOfOriginModalProps = {
|
|
1596
1614
|
countries: string[];
|
|
@@ -1629,4 +1647,4 @@ type CardModalProps = {
|
|
|
1629
1647
|
};
|
|
1630
1648
|
declare const CardModal: FC<CardModalProps>;
|
|
1631
1649
|
|
|
1632
|
-
export { AppFooter, _default$8 as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$7 as Avatar_v2, _default$3 as Badge, _default$m as BookingScheduleTime, _default$l as BookingSpecialistInfo, Button, Button_v2, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$H as ChatListItem, _default$F as ChatListSkeleton, _default$G as ChatMessage, ChatMessageSkeleton, _default$g as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$y as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$v as ConsultationModal, _default$t as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$h as CustomCheckbox, CustomRadioButton, _default$i as CustomSelect, _default$j as CustomTextarea, DatePicker, _default$r as DaySlider, DayToRender, _default$n as EducationCard, _default$E as EmptyChatList, EmptyChatMessages, _default$w as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$d as Flag, FlagTypes, _default$5 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, _default as IconButton, IconCheckboxChecked, IconCheckboxUnchecked, IconLanguage, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$L as LetterAvatar, _default$e as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, ListOption, ListSelect, ListSelectProps, LouseConnect, _default$I as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$K as PersonDateTimeCard, _default$4 as Picture, _default$c as ProfileInformation, _default$p as ProfileView, _default$f as ProgressBar, Range, _default$1 as Rating, _default$s as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$J as SelectImpressionEmoji, _default$x as SignUpSessionButton, _default$u as SignUpSessionModal, Skeleton, _default$6 as Skeleton_v2, _default$o as SpecialistAbout, SpecialistCard, _default$C as SpecialistEducationCard, SpecialistLangs, _default$b as SpecialistMatch, _default$B as SpecialistProfileViewCard, _default$a as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$k as TextInput, _default$D as Textarea, _default$2 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, _default$9 as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$z as VideoCallInfo, _default$A as VideoPlayer, _default$q as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, toast, useDomRef, useEvent };
|
|
1650
|
+
export { AppFooter, _default$8 as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$7 as Avatar_v2, _default$3 as Badge, _default$m as BookingScheduleTime, _default$l as BookingSpecialistInfo, Button, Button_v2, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$H as ChatListItem, _default$F as ChatListSkeleton, _default$G as ChatMessage, ChatMessageSkeleton, _default$g as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$y as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$v as ConsultationModal, _default$t as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$h as CustomCheckbox, CustomRadioButton, _default$i as CustomSelect, _default$j as CustomTextarea, DatePicker, _default$r as DaySlider, DayToRender, _default$n as EducationCard, _default$E as EmptyChatList, EmptyChatMessages, _default$w as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$d as Flag, FlagTypes, _default$5 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, _default as IconButton, IconCheckboxChecked, IconCheckboxUnchecked, IconClose, IconLanguage, IconLeftArrow, IconPause, IconStar, IconStarFilled, IconSuccess, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$L as LetterAvatar, _default$e as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, ListOption, ListSelect, ListSelectProps, LouseConnect, _default$I as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$K as PersonDateTimeCard, _default$4 as Picture, _default$c as ProfileInformation, _default$p as ProfileView, _default$f as ProgressBar, Range, _default$1 as Rating, _default$s as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$J as SelectImpressionEmoji, _default$x as SignUpSessionButton, _default$u as SignUpSessionModal, Skeleton, _default$6 as Skeleton_v2, _default$o as SpecialistAbout, SpecialistCard, _default$C as SpecialistEducationCard, SpecialistLangs, _default$b as SpecialistMatch, _default$B as SpecialistProfileViewCard, _default$a as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$k as TextInput, _default$D as Textarea, _default$2 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, _default$9 as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$z as VideoCallInfo, _default$A as VideoPlayer, _default$q as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, toast, useDomRef, useEvent };
|