@mindly/ui-components 5.77.0 → 5.78.1
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 +22 -7
- package/dist/cjs/lib2/features/MarkdownContainerFeature/MarkdownContainerFeature.d.ts +10 -0
- package/dist/cjs/lib2/features/MarkdownContainerFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -1
- package/dist/esm/index.js +22 -7
- package/dist/esm/lib2/features/MarkdownContainerFeature/MarkdownContainerFeature.d.ts +10 -0
- package/dist/esm/lib2/features/MarkdownContainerFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -1
- package/dist/index.d.ts +77 -68
- package/package.json +6 -5
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { NormalComponents } from 'react-markdown/lib/complex-types';
|
|
3
|
+
import { SpecialComponents } from 'react-markdown/lib/ast-to-react';
|
|
4
|
+
type MarkdownContainerFeatureProps = {
|
|
5
|
+
children?: string | null;
|
|
6
|
+
components?: Partial<Omit<NormalComponents, keyof SpecialComponents> & SpecialComponents>;
|
|
7
|
+
className?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: React.NamedExoticComponent<MarkdownContainerFeatureProps>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as MarkdownContainerFeature } from './MarkdownContainerFeature';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const ButtonStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonButton, "
|
|
2
|
+
export declare const ButtonStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonButton, "strong" | "type" | "disabled" | "rel" | "color" | "buttonType" | "download" | "href" | "target" | "mode" | "size" | "fill" | "onIonBlur" | "onIonFocus" | "expand" | "routerAnimation" | "shape"> & {
|
|
3
3
|
routerLink?: string | undefined;
|
|
4
4
|
routerDirection?: "none" | "root" | "forward" | "back" | undefined;
|
|
5
5
|
routerOptions?: import("@ionic/react").RouterOptions | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ import { AriaListBoxProps, AriaCalendarProps, DateValue, AriaTabListProps } from
|
|
|
13
13
|
import { ToastStateProps, ToastState } from '@react-stately/toast';
|
|
14
14
|
import { AriaToastRegionProps } from '@react-aria/toast';
|
|
15
15
|
import { IonSearchbarCustomEvent, SearchbarChangeEventDetail } from '@ionic/core';
|
|
16
|
+
import { NormalComponents } from 'react-markdown/lib/complex-types';
|
|
17
|
+
import { SpecialComponents } from 'react-markdown/lib/ast-to-react';
|
|
16
18
|
|
|
17
19
|
interface ButtonProps$2 {
|
|
18
20
|
buttonType: 'primary' | 'secondary' | 'actionButton' | 'actionButtonDisabled' | 'secondaryWithStroke' | 'secondaryCancel' | 'actionButtonActive' | 'actionButtonGreen';
|
|
@@ -224,7 +226,7 @@ type LetterAvatarProps = {
|
|
|
224
226
|
fontSize?: number;
|
|
225
227
|
onClick?: () => void;
|
|
226
228
|
};
|
|
227
|
-
declare const _default$
|
|
229
|
+
declare const _default$16: React__default.NamedExoticComponent<LetterAvatarProps>;
|
|
228
230
|
|
|
229
231
|
type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
|
|
230
232
|
onErrorContent: React__default.ReactElement;
|
|
@@ -236,7 +238,7 @@ type PersonDateTimeCardProps = {
|
|
|
236
238
|
name: string;
|
|
237
239
|
dateTime: Date;
|
|
238
240
|
};
|
|
239
|
-
declare const _default$
|
|
241
|
+
declare const _default$15: React__default.NamedExoticComponent<PersonDateTimeCardProps>;
|
|
240
242
|
|
|
241
243
|
type PsychologistProfileType = {
|
|
242
244
|
id: string;
|
|
@@ -402,7 +404,7 @@ type SelectImpressionEmojiProps = {
|
|
|
402
404
|
onChange?: (val: ImpressionEmojiEnum) => void;
|
|
403
405
|
};
|
|
404
406
|
|
|
405
|
-
declare const _default$
|
|
407
|
+
declare const _default$14: React__default.NamedExoticComponent<SelectImpressionEmojiProps>;
|
|
406
408
|
|
|
407
409
|
interface FooterForBookingProps {
|
|
408
410
|
eventHandler: (props?: React__default.SyntheticEvent) => void;
|
|
@@ -434,7 +436,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
|
|
|
434
436
|
showControls: boolean;
|
|
435
437
|
isScreenSharing?: boolean;
|
|
436
438
|
} & HTMLAttributes<HTMLDivElement>;
|
|
437
|
-
declare const _default$
|
|
439
|
+
declare const _default$13: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
|
|
438
440
|
|
|
439
441
|
type RoundButtonPropsType = {
|
|
440
442
|
disabled?: boolean;
|
|
@@ -463,7 +465,7 @@ type ChatListItemProps = {
|
|
|
463
465
|
isDisabled?: boolean;
|
|
464
466
|
t?: WithTranslation['t'];
|
|
465
467
|
};
|
|
466
|
-
declare const _default$
|
|
468
|
+
declare const _default$12: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
467
469
|
|
|
468
470
|
type ChatMessageProps = {
|
|
469
471
|
message: string | File;
|
|
@@ -491,11 +493,11 @@ type ChatMessageProps = {
|
|
|
491
493
|
onClickHandler: () => void;
|
|
492
494
|
}[] | null;
|
|
493
495
|
};
|
|
494
|
-
declare const _default$
|
|
496
|
+
declare const _default$11: React__default.NamedExoticComponent<ChatMessageProps>;
|
|
495
497
|
|
|
496
498
|
declare const ChatMessageSkeleton: () => JSX.Element;
|
|
497
499
|
|
|
498
|
-
declare const _default
|
|
500
|
+
declare const _default$10: React__default.MemoExoticComponent<() => JSX.Element>;
|
|
499
501
|
|
|
500
502
|
type EmptyChatList = {
|
|
501
503
|
title?: string;
|
|
@@ -505,7 +507,7 @@ type EmptyChatList = {
|
|
|
505
507
|
onClick?: () => void;
|
|
506
508
|
};
|
|
507
509
|
declare const EmptyChatList: FC<EmptyChatList>;
|
|
508
|
-
declare const _default
|
|
510
|
+
declare const _default$$: React__default.NamedExoticComponent<EmptyChatList>;
|
|
509
511
|
|
|
510
512
|
type EmptyChatMessagesProps = {
|
|
511
513
|
title?: string;
|
|
@@ -530,7 +532,7 @@ type TextareaProps = {
|
|
|
530
532
|
onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
|
|
531
533
|
t?: WithTranslation['t'];
|
|
532
534
|
};
|
|
533
|
-
declare const _default$
|
|
535
|
+
declare const _default$_: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
|
|
534
536
|
|
|
535
537
|
type LouseConnectProps = {
|
|
536
538
|
onClick?: () => void;
|
|
@@ -609,7 +611,7 @@ type SpecialistEducationCardProps$1 = {
|
|
|
609
611
|
yearEnd?: number | null;
|
|
610
612
|
showLoader?: boolean;
|
|
611
613
|
};
|
|
612
|
-
declare const _default$
|
|
614
|
+
declare const _default$Z: React__default.NamedExoticComponent<SpecialistEducationCardProps$1>;
|
|
613
615
|
|
|
614
616
|
type SpecialistProfileViewCardProps$1 = {
|
|
615
617
|
avatarLink?: string | null;
|
|
@@ -622,7 +624,7 @@ type SpecialistProfileViewCardProps$1 = {
|
|
|
622
624
|
videoLinkUrl?: string | null;
|
|
623
625
|
showLoader?: boolean;
|
|
624
626
|
} & React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
625
|
-
declare const _default$
|
|
627
|
+
declare const _default$Y: React__default.NamedExoticComponent<SpecialistProfileViewCardProps$1>;
|
|
626
628
|
|
|
627
629
|
type SpecialistStatisticsCardProps$1 = {
|
|
628
630
|
activeClients?: number;
|
|
@@ -658,7 +660,7 @@ type VideoPlayerProps = {
|
|
|
658
660
|
closeModalHandler?: () => void;
|
|
659
661
|
onErrorContent: React__default.ReactElement;
|
|
660
662
|
} & JSX$1.IonModal;
|
|
661
|
-
declare const _default$
|
|
663
|
+
declare const _default$X: React__default.NamedExoticComponent<VideoPlayerProps>;
|
|
662
664
|
|
|
663
665
|
type NotSupportModalProps = {
|
|
664
666
|
closeModal?: () => void;
|
|
@@ -694,7 +696,7 @@ type VideoCallInfoProps = {
|
|
|
694
696
|
abbreviatedSeconds: string;
|
|
695
697
|
};
|
|
696
698
|
};
|
|
697
|
-
declare const _default$
|
|
699
|
+
declare const _default$W: React__default.NamedExoticComponent<VideoCallInfoProps>;
|
|
698
700
|
|
|
699
701
|
declare enum ConsultationCardType {
|
|
700
702
|
FEATURE = "feature",
|
|
@@ -729,14 +731,14 @@ type ConsultationCardProps = {
|
|
|
729
731
|
};
|
|
730
732
|
};
|
|
731
733
|
|
|
732
|
-
declare const _default$
|
|
734
|
+
declare const _default$V: React__default.NamedExoticComponent<ConsultationCardProps>;
|
|
733
735
|
|
|
734
736
|
type SignUpSessionButtonProps = {
|
|
735
737
|
label: string;
|
|
736
738
|
isLoading?: boolean;
|
|
737
739
|
onClick?: () => void;
|
|
738
740
|
};
|
|
739
|
-
declare const _default$
|
|
741
|
+
declare const _default$U: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
|
|
740
742
|
|
|
741
743
|
type EmptyConsultationsProps = {
|
|
742
744
|
title: string;
|
|
@@ -744,7 +746,7 @@ type EmptyConsultationsProps = {
|
|
|
744
746
|
buttonLabel?: string;
|
|
745
747
|
onClick?: () => void;
|
|
746
748
|
};
|
|
747
|
-
declare const _default$
|
|
749
|
+
declare const _default$T: React__default.NamedExoticComponent<EmptyConsultationsProps>;
|
|
748
750
|
|
|
749
751
|
type ConsultationModalProps = {
|
|
750
752
|
isOpen: boolean;
|
|
@@ -780,7 +782,7 @@ type ConsultationModalProps = {
|
|
|
780
782
|
started?: string;
|
|
781
783
|
};
|
|
782
784
|
};
|
|
783
|
-
declare const _default$
|
|
785
|
+
declare const _default$S: React__default.NamedExoticComponent<ConsultationModalProps>;
|
|
784
786
|
|
|
785
787
|
type SpecialistData = {
|
|
786
788
|
id: string;
|
|
@@ -797,7 +799,7 @@ type SignUpSessionModalProps = {
|
|
|
797
799
|
title: string;
|
|
798
800
|
cancelBtnLabel: string;
|
|
799
801
|
};
|
|
800
|
-
declare const _default$
|
|
802
|
+
declare const _default$R: React__default.NamedExoticComponent<SignUpSessionModalProps>;
|
|
801
803
|
|
|
802
804
|
type ConsultationSpecialistCardProps = {
|
|
803
805
|
id: string;
|
|
@@ -808,7 +810,7 @@ type ConsultationSpecialistCardProps = {
|
|
|
808
810
|
onSignUp?: (id: string) => void;
|
|
809
811
|
signInBtnLabel: string;
|
|
810
812
|
};
|
|
811
|
-
declare const _default$
|
|
813
|
+
declare const _default$Q: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
|
|
812
814
|
|
|
813
815
|
type UserInfoModalProps = {
|
|
814
816
|
isOpen: boolean;
|
|
@@ -879,7 +881,7 @@ type ReScheduleProps = {
|
|
|
879
881
|
btnLabel: string;
|
|
880
882
|
};
|
|
881
883
|
};
|
|
882
|
-
declare const _default$
|
|
884
|
+
declare const _default$P: React__default.NamedExoticComponent<ReScheduleProps>;
|
|
883
885
|
|
|
884
886
|
type ReScheduleSuccessProps = {
|
|
885
887
|
name: string;
|
|
@@ -917,7 +919,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
|
|
|
917
919
|
tomorrow?: string;
|
|
918
920
|
};
|
|
919
921
|
};
|
|
920
|
-
declare const _default$
|
|
922
|
+
declare const _default$O: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
|
|
921
923
|
|
|
922
924
|
type SpecialistWorkDirectionsPropsType = {
|
|
923
925
|
workDirections?: string[] | [];
|
|
@@ -926,7 +928,7 @@ type SpecialistWorkDirectionsPropsType = {
|
|
|
926
928
|
moreLabel?: string;
|
|
927
929
|
hideLabel?: string;
|
|
928
930
|
};
|
|
929
|
-
declare const _default$
|
|
931
|
+
declare const _default$N: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
|
|
930
932
|
|
|
931
933
|
type SpecialistProfileViewCardProps = {
|
|
932
934
|
videoLink?: string;
|
|
@@ -936,7 +938,7 @@ type SpecialistProfileViewCardProps = {
|
|
|
936
938
|
isLoading?: boolean;
|
|
937
939
|
videoDurationSeconds?: number;
|
|
938
940
|
};
|
|
939
|
-
declare const _default$
|
|
941
|
+
declare const _default$M: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
|
|
940
942
|
|
|
941
943
|
type SpecialistAboutProps = {
|
|
942
944
|
text?: string;
|
|
@@ -945,7 +947,7 @@ type SpecialistAboutProps = {
|
|
|
945
947
|
moreLabel?: string;
|
|
946
948
|
hideLabel?: string;
|
|
947
949
|
};
|
|
948
|
-
declare const _default$
|
|
950
|
+
declare const _default$L: React__default.NamedExoticComponent<SpecialistAboutProps>;
|
|
949
951
|
|
|
950
952
|
type SpecialistEducationCardProps = {
|
|
951
953
|
institutionName?: string;
|
|
@@ -956,7 +958,7 @@ type SpecialistEducationCardProps = {
|
|
|
956
958
|
yearEnd?: number | null;
|
|
957
959
|
showLoader?: boolean;
|
|
958
960
|
};
|
|
959
|
-
declare const _default$
|
|
961
|
+
declare const _default$K: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
960
962
|
|
|
961
963
|
type SpecialistStatisticsCardProps = {
|
|
962
964
|
trust?: boolean;
|
|
@@ -1002,7 +1004,7 @@ type BookingScheduleTimeProps = {
|
|
|
1002
1004
|
onClick?: (index: number, item: string) => void;
|
|
1003
1005
|
isLoading?: boolean;
|
|
1004
1006
|
};
|
|
1005
|
-
declare const _default$
|
|
1007
|
+
declare const _default$J: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
|
|
1006
1008
|
|
|
1007
1009
|
type BookingSpecialistInfoProps = {
|
|
1008
1010
|
name: string;
|
|
@@ -1011,7 +1013,7 @@ type BookingSpecialistInfoProps = {
|
|
|
1011
1013
|
avatar?: string;
|
|
1012
1014
|
isLoading?: boolean;
|
|
1013
1015
|
};
|
|
1014
|
-
declare const _default$
|
|
1016
|
+
declare const _default$I: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
|
|
1015
1017
|
|
|
1016
1018
|
type SpecialistCardProps = {
|
|
1017
1019
|
fullName?: string;
|
|
@@ -1060,7 +1062,7 @@ type SpecialistCardProps = {
|
|
|
1060
1062
|
};
|
|
1061
1063
|
declare const SpecialistCard$1: React__default.FC<SpecialistCardProps>;
|
|
1062
1064
|
|
|
1063
|
-
declare const _default$
|
|
1065
|
+
declare const _default$H: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1064
1066
|
isError?: boolean | undefined;
|
|
1065
1067
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
1066
1068
|
type?: "number" | "text" | "email" | undefined;
|
|
@@ -1084,11 +1086,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
|
|
|
1084
1086
|
error?: string | null | undefined;
|
|
1085
1087
|
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1086
1088
|
|
|
1087
|
-
declare const _default$
|
|
1089
|
+
declare const _default$G: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1088
1090
|
isError?: boolean | undefined;
|
|
1089
1091
|
} & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
1090
1092
|
|
|
1091
|
-
declare const _default$
|
|
1093
|
+
declare const _default$F: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1092
1094
|
options: {
|
|
1093
1095
|
id: string | number;
|
|
1094
1096
|
label: string | number;
|
|
@@ -1120,7 +1122,7 @@ type CustomCheckboxProps = {
|
|
|
1120
1122
|
isCheckbox?: boolean;
|
|
1121
1123
|
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1122
1124
|
};
|
|
1123
|
-
declare const _default$
|
|
1125
|
+
declare const _default$E: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
1124
1126
|
|
|
1125
1127
|
type CheckboxListItem = {
|
|
1126
1128
|
id: ReactText;
|
|
@@ -1148,7 +1150,7 @@ type CheckboxListProps = {
|
|
|
1148
1150
|
from: string;
|
|
1149
1151
|
};
|
|
1150
1152
|
};
|
|
1151
|
-
declare const _default$
|
|
1153
|
+
declare const _default$D: React__default.NamedExoticComponent<CheckboxListProps>;
|
|
1152
1154
|
|
|
1153
1155
|
type BookingHeaderProps = {
|
|
1154
1156
|
title?: string;
|
|
@@ -1162,9 +1164,9 @@ type ProgressBarProps = {
|
|
|
1162
1164
|
progress: number;
|
|
1163
1165
|
loaderTitle?: string;
|
|
1164
1166
|
};
|
|
1165
|
-
declare const _default$
|
|
1167
|
+
declare const _default$C: React__default.NamedExoticComponent<ProgressBarProps>;
|
|
1166
1168
|
|
|
1167
|
-
declare const _default$
|
|
1169
|
+
declare const _default$B: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
|
|
1168
1170
|
title: string;
|
|
1169
1171
|
subTitle?: string | undefined;
|
|
1170
1172
|
isError?: boolean | undefined;
|
|
@@ -1196,7 +1198,7 @@ type FlagProps$1 = {
|
|
|
1196
1198
|
dimensions?: number;
|
|
1197
1199
|
className?: string;
|
|
1198
1200
|
};
|
|
1199
|
-
declare const _default$
|
|
1201
|
+
declare const _default$A: React__default.NamedExoticComponent<FlagProps$1>;
|
|
1200
1202
|
|
|
1201
1203
|
type SpecialistLangsProps = {
|
|
1202
1204
|
showLoader?: boolean;
|
|
@@ -1236,7 +1238,7 @@ type ProfileInformationProps = {
|
|
|
1236
1238
|
reviews: string[];
|
|
1237
1239
|
};
|
|
1238
1240
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1239
|
-
declare const _default$
|
|
1241
|
+
declare const _default$z: React__default.NamedExoticComponent<ProfileInformationProps>;
|
|
1240
1242
|
|
|
1241
1243
|
type SpecialistMatchProps = {
|
|
1242
1244
|
specialistFirstName?: string;
|
|
@@ -1248,7 +1250,7 @@ type SpecialistMatchProps = {
|
|
|
1248
1250
|
howWeMatchThis: string;
|
|
1249
1251
|
};
|
|
1250
1252
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1251
|
-
declare const _default$
|
|
1253
|
+
declare const _default$y: React__default.NamedExoticComponent<SpecialistMatchProps>;
|
|
1252
1254
|
|
|
1253
1255
|
type SpecialistStatisticProps = {
|
|
1254
1256
|
learnMoreClick: () => void;
|
|
@@ -1268,7 +1270,7 @@ type SpecialistStatisticProps = {
|
|
|
1268
1270
|
bookedSession: string;
|
|
1269
1271
|
};
|
|
1270
1272
|
} & React__default.HTMLAttributes<HTMLDivElement>;
|
|
1271
|
-
declare const _default$
|
|
1273
|
+
declare const _default$x: React__default.NamedExoticComponent<SpecialistStatisticProps>;
|
|
1272
1274
|
|
|
1273
1275
|
type RatingWithLabelProps = {
|
|
1274
1276
|
countOfReviews?: number;
|
|
@@ -1459,7 +1461,7 @@ type TypographyProps = {
|
|
|
1459
1461
|
onClick?: (args: any) => typeof args;
|
|
1460
1462
|
isError?: boolean;
|
|
1461
1463
|
};
|
|
1462
|
-
declare const _default$
|
|
1464
|
+
declare const _default$w: React__default.NamedExoticComponent<TypographyProps>;
|
|
1463
1465
|
|
|
1464
1466
|
type AppFooterProps = {
|
|
1465
1467
|
children?: React__default.ReactNode;
|
|
@@ -1469,7 +1471,7 @@ type AppFooterProps = {
|
|
|
1469
1471
|
style?: CSSProperties;
|
|
1470
1472
|
toolbarStyle?: CSSProperties;
|
|
1471
1473
|
};
|
|
1472
|
-
declare const _default$
|
|
1474
|
+
declare const _default$v: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1473
1475
|
|
|
1474
1476
|
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1475
1477
|
|
|
@@ -1481,14 +1483,14 @@ type AvatarProps = {
|
|
|
1481
1483
|
alt?: string;
|
|
1482
1484
|
showSkeleton?: boolean;
|
|
1483
1485
|
};
|
|
1484
|
-
declare const _default$
|
|
1486
|
+
declare const _default$u: React__default.NamedExoticComponent<AvatarProps>;
|
|
1485
1487
|
|
|
1486
1488
|
type SkeletonProps = {
|
|
1487
1489
|
animated?: boolean;
|
|
1488
1490
|
className?: string;
|
|
1489
1491
|
style?: React__default.CSSProperties;
|
|
1490
1492
|
};
|
|
1491
|
-
declare const _default$
|
|
1493
|
+
declare const _default$t: React__default.NamedExoticComponent<SkeletonProps>;
|
|
1492
1494
|
|
|
1493
1495
|
type ButtonProps = {
|
|
1494
1496
|
fill?: 'outline' | 'clear';
|
|
@@ -1523,7 +1525,7 @@ type FlagProps = {
|
|
|
1523
1525
|
name: string;
|
|
1524
1526
|
className?: string;
|
|
1525
1527
|
};
|
|
1526
|
-
declare const _default$
|
|
1528
|
+
declare const _default$s: React__default.NamedExoticComponent<FlagProps>;
|
|
1527
1529
|
|
|
1528
1530
|
type PictureProps = {
|
|
1529
1531
|
width: number;
|
|
@@ -1538,7 +1540,7 @@ type PictureProps = {
|
|
|
1538
1540
|
alt?: string;
|
|
1539
1541
|
className?: string;
|
|
1540
1542
|
};
|
|
1541
|
-
declare const _default$
|
|
1543
|
+
declare const _default$r: React__default.NamedExoticComponent<PictureProps>;
|
|
1542
1544
|
|
|
1543
1545
|
type BadgeType = 'default' | 'accent';
|
|
1544
1546
|
type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
|
|
@@ -1548,7 +1550,7 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1548
1550
|
type?: BadgeType;
|
|
1549
1551
|
};
|
|
1550
1552
|
|
|
1551
|
-
declare const _default$
|
|
1553
|
+
declare const _default$q: React.NamedExoticComponent<BadgeProps>;
|
|
1552
1554
|
|
|
1553
1555
|
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1554
1556
|
type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
@@ -1556,7 +1558,7 @@ type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
|
1556
1558
|
size?: 'M' | 'M4' | 'M45';
|
|
1557
1559
|
};
|
|
1558
1560
|
|
|
1559
|
-
declare const _default$
|
|
1561
|
+
declare const _default$p: React.NamedExoticComponent<ItemCardProps>;
|
|
1560
1562
|
|
|
1561
1563
|
type AppHeaderProps = {
|
|
1562
1564
|
fullwidth?: boolean;
|
|
@@ -1836,7 +1838,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
|
|
|
1836
1838
|
onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
|
|
1837
1839
|
}
|
|
1838
1840
|
|
|
1839
|
-
declare const _default$
|
|
1841
|
+
declare const _default$o: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
|
|
1840
1842
|
|
|
1841
1843
|
type RatingProps = {
|
|
1842
1844
|
initialRating?: number;
|
|
@@ -1848,7 +1850,7 @@ type RatingProps = {
|
|
|
1848
1850
|
readonly?: boolean;
|
|
1849
1851
|
};
|
|
1850
1852
|
|
|
1851
|
-
declare const _default$
|
|
1853
|
+
declare const _default$n: React__default.NamedExoticComponent<RatingProps>;
|
|
1852
1854
|
|
|
1853
1855
|
declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
|
|
1854
1856
|
t: WithTranslation | any;
|
|
@@ -1862,7 +1864,7 @@ type IconButtonProps = {
|
|
|
1862
1864
|
fill?: 'clear' | 'filled';
|
|
1863
1865
|
type?: 'button' | 'submit' | 'reset';
|
|
1864
1866
|
};
|
|
1865
|
-
declare const _default$
|
|
1867
|
+
declare const _default$m: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1866
1868
|
|
|
1867
1869
|
type ToastProviderProps = ToastStateProps;
|
|
1868
1870
|
type MindlyToastProps = {
|
|
@@ -1905,17 +1907,17 @@ type ProgressBar_v2Props = {
|
|
|
1905
1907
|
className?: string;
|
|
1906
1908
|
reversed?: boolean;
|
|
1907
1909
|
};
|
|
1908
|
-
declare const _default$
|
|
1910
|
+
declare const _default$l: React__default.NamedExoticComponent<ProgressBar_v2Props>;
|
|
1909
1911
|
|
|
1910
1912
|
type LoadingProps = {
|
|
1911
1913
|
isOpen: boolean;
|
|
1912
1914
|
};
|
|
1913
|
-
declare const _default$
|
|
1915
|
+
declare const _default$k: React__default.NamedExoticComponent<LoadingProps>;
|
|
1914
1916
|
|
|
1915
1917
|
type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
|
|
1916
1918
|
withBorders?: boolean;
|
|
1917
1919
|
};
|
|
1918
|
-
declare const _default$
|
|
1920
|
+
declare const _default$j: React.NamedExoticComponent<ListItemsProps>;
|
|
1919
1921
|
|
|
1920
1922
|
type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
1921
1923
|
leftContent?: React.ReactNode;
|
|
@@ -1925,14 +1927,14 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1925
1927
|
isDisabled?: boolean;
|
|
1926
1928
|
isError?: boolean;
|
|
1927
1929
|
};
|
|
1928
|
-
declare const _default$
|
|
1930
|
+
declare const _default$i: React.NamedExoticComponent<ItemProps>;
|
|
1929
1931
|
|
|
1930
1932
|
type VideoProps = {
|
|
1931
1933
|
src: string;
|
|
1932
1934
|
isMuted: boolean;
|
|
1933
1935
|
onMuteToggle: () => void;
|
|
1934
1936
|
};
|
|
1935
|
-
declare const _default$
|
|
1937
|
+
declare const _default$h: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & React__default.RefAttributes<HTMLVideoElement>>>;
|
|
1936
1938
|
|
|
1937
1939
|
type UlLiProps = {
|
|
1938
1940
|
list: string[];
|
|
@@ -2507,9 +2509,9 @@ type SlotsGridItemProps = {
|
|
|
2507
2509
|
onSelectionChange: () => void;
|
|
2508
2510
|
};
|
|
2509
2511
|
|
|
2510
|
-
declare const _default$
|
|
2512
|
+
declare const _default$g: React__default.NamedExoticComponent<SlotsGridProps>;
|
|
2511
2513
|
|
|
2512
|
-
declare const _default$
|
|
2514
|
+
declare const _default$f: React.NamedExoticComponent<SlotsGridItemProps>;
|
|
2513
2515
|
|
|
2514
2516
|
type PushNotificationsModalProps = {
|
|
2515
2517
|
onApplyPermission: () => void;
|
|
@@ -2609,23 +2611,23 @@ type ShareModalFeatureProps = {
|
|
|
2609
2611
|
};
|
|
2610
2612
|
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2611
2613
|
|
|
2612
|
-
declare const _default$
|
|
2614
|
+
declare const _default$e: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
|
|
2613
2615
|
|
|
2614
|
-
declare const _default$
|
|
2616
|
+
declare const _default$d: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
|
|
2615
2617
|
|
|
2616
2618
|
type SpecialistPaymentCommonCardSkeletonType = {
|
|
2617
2619
|
className?: string;
|
|
2618
2620
|
};
|
|
2619
2621
|
declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => JSX.Element;
|
|
2620
2622
|
|
|
2621
|
-
declare const _default$
|
|
2623
|
+
declare const _default$c: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
|
|
2622
2624
|
|
|
2623
2625
|
type ConsultationsListProps = {
|
|
2624
2626
|
consultations: SpecialistConsultation[];
|
|
2625
2627
|
locale?: string;
|
|
2626
2628
|
consultationClick?: (consultation: SpecialistConsultation) => void;
|
|
2627
2629
|
};
|
|
2628
|
-
declare const _default$
|
|
2630
|
+
declare const _default$b: React__default.NamedExoticComponent<ConsultationsListProps>;
|
|
2629
2631
|
|
|
2630
2632
|
type ConsultationsListSkeletonType = {
|
|
2631
2633
|
className?: string;
|
|
@@ -2640,9 +2642,9 @@ type CalendarPickerFeatureProps = {
|
|
|
2640
2642
|
monthsMore?: number;
|
|
2641
2643
|
dateCallback: (date: Date) => void;
|
|
2642
2644
|
};
|
|
2643
|
-
declare const _default$
|
|
2645
|
+
declare const _default$a: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
|
|
2644
2646
|
|
|
2645
|
-
declare const _default$
|
|
2647
|
+
declare const _default$9: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
|
|
2646
2648
|
|
|
2647
2649
|
type GoogleCalendarModalFeatureProps = {
|
|
2648
2650
|
isOpen: boolean;
|
|
@@ -2664,7 +2666,7 @@ type ReviewCardFeatureProps = {
|
|
|
2664
2666
|
review: string;
|
|
2665
2667
|
size?: 'default' | 'small';
|
|
2666
2668
|
} & TranslationType;
|
|
2667
|
-
declare const _default$
|
|
2669
|
+
declare const _default$8: React__default.NamedExoticComponent<ReviewCardFeatureProps>;
|
|
2668
2670
|
|
|
2669
2671
|
type AppNotSupportedProps = {
|
|
2670
2672
|
isOpen: boolean;
|
|
@@ -2750,7 +2752,7 @@ type ScreenInputFormFeatureProps = {
|
|
|
2750
2752
|
icon?: ReactNode | string;
|
|
2751
2753
|
isKeyboardShown?: boolean;
|
|
2752
2754
|
};
|
|
2753
|
-
declare const _default$
|
|
2755
|
+
declare const _default$7: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
|
|
2754
2756
|
|
|
2755
2757
|
type SelectionType = {
|
|
2756
2758
|
value: any;
|
|
@@ -2768,7 +2770,7 @@ type SpecialistDrumPickerWidgetProps = {
|
|
|
2768
2770
|
onTouchStart?: () => void;
|
|
2769
2771
|
onTouchEnd?: () => void;
|
|
2770
2772
|
};
|
|
2771
|
-
declare const _default$
|
|
2773
|
+
declare const _default$6: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
|
|
2772
2774
|
|
|
2773
2775
|
type TextAreaFormFeatureProps = {
|
|
2774
2776
|
title?: string;
|
|
@@ -2782,7 +2784,7 @@ type TextAreaFormFeatureProps = {
|
|
|
2782
2784
|
isFocus?: boolean;
|
|
2783
2785
|
isKeyboardShown?: boolean;
|
|
2784
2786
|
};
|
|
2785
|
-
declare const _default$
|
|
2787
|
+
declare const _default$5: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
|
|
2786
2788
|
|
|
2787
2789
|
type AcceptAgreementFeatureProps = {
|
|
2788
2790
|
isAccepted: boolean;
|
|
@@ -2803,7 +2805,14 @@ type SelectWithSearchFormFeatureProps = {
|
|
|
2803
2805
|
otherText?: string;
|
|
2804
2806
|
buttonLabel?: string;
|
|
2805
2807
|
} & WithTranslation;
|
|
2806
|
-
declare const _default$
|
|
2808
|
+
declare const _default$4: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
|
|
2809
|
+
|
|
2810
|
+
type MarkdownContainerFeatureProps = {
|
|
2811
|
+
children?: string | null;
|
|
2812
|
+
components?: Partial<Omit<NormalComponents, keyof SpecialComponents> & SpecialComponents>;
|
|
2813
|
+
className?: string;
|
|
2814
|
+
};
|
|
2815
|
+
declare const _default$3: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
|
|
2807
2816
|
|
|
2808
2817
|
type SupportedCountryLocale = string;
|
|
2809
2818
|
type Tabs = {
|
|
@@ -2889,4 +2898,4 @@ type UpdateContractWidgetProps = {
|
|
|
2889
2898
|
};
|
|
2890
2899
|
declare function UpdateContractWidget({ applyText, onApply, heading, image, avatar, agreementText, handlePressLink, isAccepted, setIsAccepted, isLoading, }: UpdateContractWidgetProps): JSX.Element;
|
|
2891
2900
|
|
|
2892
|
-
export { AcceptAgreementFeature, AppFooter, _default$
|
|
2901
|
+
export { AcceptAgreementFeature, AppFooter, _default$v as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$u as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$q as Badge, _default$J as BookingScheduleTime, _default$I as BookingSpecialistInfo, Button, Button_v2, Calendar, _default$a as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$12 as ChatListItem, _default$10 as ChatListSkeleton, _default$11 as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$D as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, CollapsableText, _default$V as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$S as ConsultationModal, _default$e as ConsultationPricingFeature, _default$Q as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$E as CustomCheckbox, CustomRadioButton, _default$F as CustomSelect, _default$G as CustomTextarea, DatePicker, _default$O as DaySlider, DayToRender, DrumListPicker, _default$K as EducationCard, _default$$ as EmptyChatList, EmptyChatMessages, _default$T as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$A as Flag, FlagTypes, _default$s as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$m as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$i as Item, _default$p as ItemCard, LabelArrowRedirect, LanguagesList, _default$16 as LetterAvatar, _default$B as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$j as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$k as Loading, LouseConnect, _default$3 as MarkdownContainerFeature, _default$13 as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OutdatedPersonalDataFeature, PasswordInput, _default$9 as PaymentCalendarFeature, _default$b as PaymentSessionsList, _default$15 as PersonDateTimeCard, _default$r as Picture, _default$z as ProfileInformation, _default$M as ProfileView, _default$C as ProgressBar, ProgressBarDashed, _default$l as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$n as Rating, RatingCircleWrapper, _default$P as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, _default$8 as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, _default$6 as ScreenDrumPickerFormFeature, ScreenInput, _default$7 as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$14 as SelectImpressionEmoji, SelectItemType, _default$4 as SelectWithSearchFormFeature, ShareModalFeature, _default$U as SignUpSessionButton, _default$R as SignUpSessionModal, Skeleton, _default$t as Skeleton_v2, _default$g as SlotsGrid, _default$f as SlotsGridItem, _default$L as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, _default$Z as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$y as SpecialistMatch, _default$d as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, _default$c as SpecialistPaymentConsultationsFeature, _default as SpecialistPaymentResumeWidget, _default$1 as SpecialistPaymentWidget, _default$Y as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$x as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$5 as TextAreaFormFeature, _default$H as TextInput, _default$_ as Textarea, _default$o as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TreeNode, _default$w as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$h as Video, _default$W as VideoCallInfo, _default$X as VideoPlayer, _default$N as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindly/ui-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.78.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"@capacitor/share": "5.0.7",
|
|
20
20
|
"@fontsource/inter": "5.0.8",
|
|
21
21
|
"@fontsource/inter-tight": "5.0.12",
|
|
22
|
-
"@ionic/react": "6.
|
|
23
|
-
"@ionic/react-router": "6.
|
|
22
|
+
"@ionic/react": "6.1.11",
|
|
23
|
+
"@ionic/react-router": "6.1.11",
|
|
24
24
|
"@react-aria/toast": "3.0.0-beta.7",
|
|
25
25
|
"@react-stately/toast": "3.0.0-beta.1",
|
|
26
26
|
"classnames": "2.3.2",
|
|
27
27
|
"date-fns": "2.30.0",
|
|
28
28
|
"html-react-parser": "3.0.16",
|
|
29
|
-
"luxon": "2.
|
|
29
|
+
"luxon": "2.4.0",
|
|
30
30
|
"react": "17.0.2",
|
|
31
31
|
"react-aria": "3.26.0",
|
|
32
32
|
"react-countdown": "2.3.5",
|
|
@@ -34,11 +34,12 @@
|
|
|
34
34
|
"react-dom": "17.0.2",
|
|
35
35
|
"react-i18next": "13.2.2",
|
|
36
36
|
"react-intersection-observer": "9.5.3",
|
|
37
|
+
"react-markdown": "8.0.7",
|
|
37
38
|
"react-mobile-picker": "1.0.0",
|
|
38
39
|
"react-photo-view": "1.2.4",
|
|
39
40
|
"react-rating": "2.0.5",
|
|
40
41
|
"react-stately": "3.24.0",
|
|
41
|
-
"styled-components": "5.3.
|
|
42
|
+
"styled-components": "5.3.1",
|
|
42
43
|
"swiper": "8.4.7",
|
|
43
44
|
"tailwind-variants": "0.1.14"
|
|
44
45
|
},
|