@mindly/ui-components 5.41.1 → 5.42.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 -15
- package/dist/cjs/lib/Chat/ChatListItem/ChatListItem.d.ts +16 -1
- package/dist/cjs/lib2/shared/assets/icons/IconManageAccounts.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/InputSearch/InputSearch.d.ts +1 -2
- package/dist/cjs/lib2/shared/ui/InputSearch/types.d.ts +2 -0
- package/dist/cjs/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.d.ts +2 -1
- package/dist/cjs/lib2/widgets/SpecialistCardWidget/types.d.ts +2 -2
- package/dist/esm/index.js +6 -15
- package/dist/esm/lib/Chat/ChatListItem/ChatListItem.d.ts +16 -1
- package/dist/esm/lib2/shared/assets/icons/IconManageAccounts.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/InputSearch/InputSearch.d.ts +1 -2
- package/dist/esm/lib2/shared/ui/InputSearch/types.d.ts +2 -0
- package/dist/esm/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.d.ts +2 -1
- package/dist/esm/lib2/widgets/SpecialistCardWidget/types.d.ts +2 -2
- package/dist/index.d.ts +36 -5
- package/package.json +92 -92
|
@@ -1,3 +1,18 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
import { WithTranslation } from 'react-i18next';
|
|
3
|
+
type ChatListItemProps = {
|
|
4
|
+
name: string;
|
|
5
|
+
message?: string;
|
|
6
|
+
avatar?: string;
|
|
7
|
+
newMessagesCount?: number;
|
|
8
|
+
onClick?: () => void;
|
|
9
|
+
status?: 'sent' | 'viewed';
|
|
10
|
+
time?: number;
|
|
11
|
+
timeZone?: string;
|
|
12
|
+
lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
|
|
13
|
+
locale?: string;
|
|
14
|
+
isDisabled?: boolean;
|
|
15
|
+
t?: WithTranslation['t'];
|
|
16
|
+
};
|
|
17
|
+
declare const _default: React.NamedExoticComponent<ChatListItemProps>;
|
|
3
18
|
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { FieldSearchType } from './types';
|
|
3
|
-
|
|
4
|
-
declare const InputSearch: React.FC<FieldSearchType & WithTranslation['t']>;
|
|
3
|
+
declare const InputSearch: React.FC<FieldSearchType>;
|
|
5
4
|
export default InputSearch;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SearchbarChangeEventDetail, IonSearchbarCustomEvent } from '@ionic/core';
|
|
2
|
+
import { WithTranslation } from 'react-i18next';
|
|
2
3
|
export type FieldSearchType = {
|
|
3
4
|
className?: string;
|
|
4
5
|
onCancelClick: () => void;
|
|
@@ -7,4 +8,5 @@ export type FieldSearchType = {
|
|
|
7
8
|
debounce?: number;
|
|
8
9
|
placeholder?: string;
|
|
9
10
|
hideButton?: boolean;
|
|
11
|
+
t?: WithTranslation['t'];
|
|
10
12
|
};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { WithTranslation } from 'react-i18next';
|
|
2
2
|
export type SpecialistCardWidgetProps = {
|
|
3
|
-
loading: boolean;
|
|
4
|
-
} | {
|
|
5
3
|
t?: WithTranslation['t'];
|
|
4
|
+
loading: boolean;
|
|
6
5
|
videoPlayer: {
|
|
7
6
|
isMuted: boolean;
|
|
8
7
|
onMuteToggle: () => void;
|
|
@@ -15,6 +14,7 @@ export type SpecialistCardWidgetProps = {
|
|
|
15
14
|
};
|
|
16
15
|
export type SpecialistCard = {
|
|
17
16
|
id: string;
|
|
17
|
+
isAddedToBookmark: boolean;
|
|
18
18
|
areas: string[];
|
|
19
19
|
reviews: number;
|
|
20
20
|
lastName: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -447,7 +447,21 @@ type RoundButtonPropsType = {
|
|
|
447
447
|
};
|
|
448
448
|
declare const RoundButton: React__default.FC<RoundButtonPropsType>;
|
|
449
449
|
|
|
450
|
-
|
|
450
|
+
type ChatListItemProps = {
|
|
451
|
+
name: string;
|
|
452
|
+
message?: string;
|
|
453
|
+
avatar?: string;
|
|
454
|
+
newMessagesCount?: number;
|
|
455
|
+
onClick?: () => void;
|
|
456
|
+
status?: 'sent' | 'viewed';
|
|
457
|
+
time?: number;
|
|
458
|
+
timeZone?: string;
|
|
459
|
+
lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
|
|
460
|
+
locale?: string;
|
|
461
|
+
isDisabled?: boolean;
|
|
462
|
+
t?: WithTranslation['t'];
|
|
463
|
+
};
|
|
464
|
+
declare const _default$P: React__default.NamedExoticComponent<ChatListItemProps>;
|
|
451
465
|
|
|
452
466
|
type ChatMessageProps = {
|
|
453
467
|
message: string | File;
|
|
@@ -1786,9 +1800,10 @@ type FieldSearchType = {
|
|
|
1786
1800
|
debounce?: number;
|
|
1787
1801
|
placeholder?: string;
|
|
1788
1802
|
hideButton?: boolean;
|
|
1803
|
+
t?: WithTranslation['t'];
|
|
1789
1804
|
};
|
|
1790
1805
|
|
|
1791
|
-
declare const InputSearch: React.FC<FieldSearchType
|
|
1806
|
+
declare const InputSearch: React.FC<FieldSearchType>;
|
|
1792
1807
|
|
|
1793
1808
|
declare enum appThemes {
|
|
1794
1809
|
client = "client",
|
|
@@ -2132,6 +2147,8 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
|
2132
2147
|
}
|
|
2133
2148
|
declare function IconTimeAdd({ color, size, ...other }: IconProps): JSX.Element;
|
|
2134
2149
|
|
|
2150
|
+
declare const IconManageAccounts: FC<IconProps$w>;
|
|
2151
|
+
|
|
2135
2152
|
type AnyRef = React__default.Ref<any>;
|
|
2136
2153
|
declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
|
|
2137
2154
|
|
|
@@ -2305,10 +2322,22 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
2305
2322
|
};
|
|
2306
2323
|
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
|
|
2307
2324
|
|
|
2308
|
-
|
|
2309
|
-
|
|
2325
|
+
type SpecialistCardWidgetProps = {
|
|
2326
|
+
t?: WithTranslation['t'];
|
|
2327
|
+
loading: boolean;
|
|
2328
|
+
videoPlayer: {
|
|
2329
|
+
isMuted: boolean;
|
|
2330
|
+
onMuteToggle: () => void;
|
|
2331
|
+
videoRef: (ref: HTMLVideoElement) => void;
|
|
2332
|
+
};
|
|
2333
|
+
specialist: SpecialistCard;
|
|
2334
|
+
isAddedToBookmark: boolean;
|
|
2335
|
+
onChooseVisitTime: () => void;
|
|
2336
|
+
onAddDeleteBookmark: () => void;
|
|
2337
|
+
};
|
|
2310
2338
|
type SpecialistCard = {
|
|
2311
2339
|
id: string;
|
|
2340
|
+
isAddedToBookmark: boolean;
|
|
2312
2341
|
areas: string[];
|
|
2313
2342
|
reviews: number;
|
|
2314
2343
|
lastName: string;
|
|
@@ -2323,6 +2352,8 @@ type SpecialistCard = {
|
|
|
2323
2352
|
sessionDurationMinutes: number;
|
|
2324
2353
|
};
|
|
2325
2354
|
|
|
2355
|
+
declare const _default: React__default.NamedExoticComponent<SpecialistCardWidgetProps>;
|
|
2356
|
+
|
|
2326
2357
|
type SpecialistCardListWidgetProps = {
|
|
2327
2358
|
t?: WithTranslation['t'];
|
|
2328
2359
|
specialists: SpecialistCard[];
|
|
@@ -2331,4 +2362,4 @@ type SpecialistCardListWidgetProps = {
|
|
|
2331
2362
|
};
|
|
2332
2363
|
declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps & WithTranslation['t']>;
|
|
2333
2364
|
|
|
2334
|
-
export { AppFooter, _default$g as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$f as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$b as Badge, _default$u as BookingScheduleTime, _default$t as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$P as ChatListItem, _default$N as ChatListSkeleton, _default$O as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$o as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$G as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$D as ConsultationModal, _default$B as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$p as CustomCheckbox, CustomRadioButton, _default$q as CustomSelect, _default$r as CustomTextarea, DatePicker, _default$z as DaySlider, DayToRender, _default$v as EducationCard, _default$M as EmptyChatList, EmptyChatMessages, _default$E as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$l as Flag, FlagTypes, _default$d as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$7 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGift, IconGoogle, IconHome, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLogout, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconResume, IconSchema, IconSearch, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$3 as Item, _default$a as ItemCard, LanguagesList, _default$T as LetterAvatar, _default$m as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$4 as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$5 as Loading, LouseConnect, _default$Q as MediaPlayer, MobilePickerFeature, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$S as PersonDateTimeCard, _default$c as Picture, _default$k as ProfileInformation, _default$x as ProfileView, _default$n as ProgressBar, _default$6 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$8 as Rating, RatingCircleWrapper, _default$A as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$R as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$F as SignUpSessionButton, _default$C as SignUpSessionModal, Skeleton, _default$e as Skeleton_v2, _default$1 as SlotsGrid, _default$w as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default as SpecialistCardWidget, _default$K as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$j as SpecialistMatch, _default$J as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$i as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$s as TextInput, _default$L as Textarea, _default$9 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$h as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$2 as Video, _default$H as VideoCallInfo, _default$I as VideoPlayer, _default$y as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|
|
2365
|
+
export { AppFooter, _default$g as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$f as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$b as Badge, _default$u as BookingScheduleTime, _default$t as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$P as ChatListItem, _default$N as ChatListSkeleton, _default$O as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$o as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$G as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$D as ConsultationModal, _default$B as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$p as CustomCheckbox, CustomRadioButton, _default$q as CustomSelect, _default$r as CustomTextarea, DatePicker, _default$z as DaySlider, DayToRender, _default$v as EducationCard, _default$M as EmptyChatList, EmptyChatMessages, _default$E as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$l as Flag, FlagTypes, _default$d as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$7 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGift, IconGoogle, IconHome, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLogout, IconManageAccounts, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconResume, IconSchema, IconSearch, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$3 as Item, _default$a as ItemCard, LanguagesList, _default$T as LetterAvatar, _default$m as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$4 as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$5 as Loading, LouseConnect, _default$Q as MediaPlayer, MobilePickerFeature, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$S as PersonDateTimeCard, _default$c as Picture, _default$k as ProfileInformation, _default$x as ProfileView, _default$n as ProgressBar, _default$6 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$8 as Rating, RatingCircleWrapper, _default$A as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$R as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$F as SignUpSessionButton, _default$C as SignUpSessionModal, Skeleton, _default$e as Skeleton_v2, _default$1 as SlotsGrid, _default$w as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default as SpecialistCardWidget, _default$K as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$j as SpecialistMatch, _default$J as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$i as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$s as TextInput, _default$L as Textarea, _default$9 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$h as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$2 as Video, _default$H as VideoCallInfo, _default$I as VideoPlayer, _default$y as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, 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.42.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -14,45 +14,45 @@
|
|
|
14
14
|
"storybook": "storybook dev -p 6006"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@babel/polyfill": "
|
|
18
|
-
"@capacitor/clipboard": "
|
|
19
|
-
"@capacitor/share": "
|
|
20
|
-
"@fontsource/inter": "
|
|
21
|
-
"@fontsource/inter-tight": "
|
|
22
|
-
"@ionic/react": "
|
|
23
|
-
"@ionic/react-router": "
|
|
24
|
-
"@react-aria/toast": "
|
|
25
|
-
"@react-stately/toast": "
|
|
26
|
-
"classnames": "
|
|
27
|
-
"date-fns": "
|
|
28
|
-
"html-react-parser": "
|
|
29
|
-
"luxon": "
|
|
30
|
-
"react": "
|
|
31
|
-
"react-aria": "
|
|
32
|
-
"react-countdown": "
|
|
33
|
-
"react-day-picker": "
|
|
34
|
-
"react-dom": "
|
|
35
|
-
"react-i18next": "
|
|
36
|
-
"react-intersection-observer": "
|
|
37
|
-
"react-mobile-picker": "
|
|
17
|
+
"@babel/polyfill": "7.12.1",
|
|
18
|
+
"@capacitor/clipboard": "5.0.7",
|
|
19
|
+
"@capacitor/share": "5.0.7",
|
|
20
|
+
"@fontsource/inter": "5.0.8",
|
|
21
|
+
"@fontsource/inter-tight": "5.0.12",
|
|
22
|
+
"@ionic/react": "6.7.5",
|
|
23
|
+
"@ionic/react-router": "6.7.5",
|
|
24
|
+
"@react-aria/toast": "3.0.0-beta.7",
|
|
25
|
+
"@react-stately/toast": "3.0.0-beta.1",
|
|
26
|
+
"classnames": "2.3.2",
|
|
27
|
+
"date-fns": "2.30.0",
|
|
28
|
+
"html-react-parser": "3.0.16",
|
|
29
|
+
"luxon": "2.5.2",
|
|
30
|
+
"react": "17.0.2",
|
|
31
|
+
"react-aria": "3.26.0",
|
|
32
|
+
"react-countdown": "2.3.5",
|
|
33
|
+
"react-day-picker": "8.8.2",
|
|
34
|
+
"react-dom": "17.0.2",
|
|
35
|
+
"react-i18next": "13.2.2",
|
|
36
|
+
"react-intersection-observer": "9.5.3",
|
|
37
|
+
"react-mobile-picker": "1.0.0",
|
|
38
38
|
"react-photo-view": "1.2.4",
|
|
39
|
-
"react-rating": "
|
|
40
|
-
"react-stately": "
|
|
41
|
-
"styled-components": "
|
|
42
|
-
"swiper": "
|
|
43
|
-
"tailwind-variants": "
|
|
39
|
+
"react-rating": "2.0.5",
|
|
40
|
+
"react-stately": "3.24.0",
|
|
41
|
+
"styled-components": "5.3.11",
|
|
42
|
+
"swiper": "8.4.7",
|
|
43
|
+
"tailwind-variants": "0.1.14"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@babel/polyfill": "
|
|
47
|
-
"@capacitor/core": "
|
|
48
|
-
"@fontsource/inter": "
|
|
49
|
-
"@fontsource/inter-tight": "
|
|
50
|
-
"@ionic/react": "
|
|
51
|
-
"@ionic/react-router": "
|
|
52
|
-
"luxon": "
|
|
53
|
-
"react": "
|
|
54
|
-
"react-dom": "
|
|
55
|
-
"styled-components": "
|
|
46
|
+
"@babel/polyfill": "7.12.1",
|
|
47
|
+
"@capacitor/core": "5.7.0",
|
|
48
|
+
"@fontsource/inter": "5.0.8",
|
|
49
|
+
"@fontsource/inter-tight": "5.0.12",
|
|
50
|
+
"@ionic/react": "6.1.11",
|
|
51
|
+
"@ionic/react-router": "6.1.11",
|
|
52
|
+
"luxon": "2.4.0",
|
|
53
|
+
"react": "17.0.2",
|
|
54
|
+
"react-dom": "17.0.2",
|
|
55
|
+
"styled-components": "5.3.1"
|
|
56
56
|
},
|
|
57
57
|
"main": "dist/cjs/index.js",
|
|
58
58
|
"module": "dist/esm/index.js",
|
|
@@ -86,62 +86,62 @@
|
|
|
86
86
|
]
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@babel/cli": "
|
|
90
|
-
"@babel/core": "
|
|
91
|
-
"@babel/plugin-proposal-private-property-in-object": "
|
|
92
|
-
"@babel/preset-typescript": "
|
|
89
|
+
"@babel/cli": "7.22.15",
|
|
90
|
+
"@babel/core": "7.22.20",
|
|
91
|
+
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
|
|
92
|
+
"@babel/preset-typescript": "7.22.15",
|
|
93
93
|
"@ionic/lab": "3.2.10",
|
|
94
|
-
"@rollup/plugin-commonjs": "
|
|
95
|
-
"@rollup/plugin-image": "
|
|
96
|
-
"@rollup/plugin-node-resolve": "
|
|
97
|
-
"@rollup/plugin-replace": "
|
|
98
|
-
"@rollup/plugin-typescript": "
|
|
99
|
-
"@storybook/addon-essentials": "
|
|
100
|
-
"@storybook/addon-interactions": "
|
|
101
|
-
"@storybook/addon-links": "
|
|
102
|
-
"@storybook/addon-onboarding": "
|
|
103
|
-
"@storybook/addon-styling": "
|
|
104
|
-
"@storybook/blocks": "
|
|
105
|
-
"@storybook/preset-create-react-app": "
|
|
106
|
-
"@storybook/react": "
|
|
107
|
-
"@storybook/react-webpack5": "
|
|
108
|
-
"@storybook/testing-library": "
|
|
109
|
-
"@svgr/rollup": "
|
|
110
|
-
"@testing-library/jest-dom": "
|
|
111
|
-
"@testing-library/react": "
|
|
112
|
-
"@testing-library/user-event": "
|
|
113
|
-
"@types/jest": "
|
|
114
|
-
"@types/luxon": "
|
|
115
|
-
"@types/node": "
|
|
116
|
-
"@types/react": "
|
|
117
|
-
"@types/react-dom": "
|
|
118
|
-
"@types/styled-components": "
|
|
119
|
-
"@typescript-eslint/eslint-plugin": "
|
|
120
|
-
"@typescript-eslint/parser": "
|
|
121
|
-
"autoprefixer": "
|
|
122
|
-
"babel-cli": "
|
|
123
|
-
"cross-env": "
|
|
124
|
-
"eslint": "
|
|
125
|
-
"eslint-config-google": "
|
|
126
|
-
"eslint-plugin-storybook": "
|
|
127
|
-
"postcss": "
|
|
128
|
-
"react-scripts": "
|
|
129
|
-
"rimraf": "
|
|
130
|
-
"rollup": "
|
|
131
|
-
"rollup-plugin-dts": "
|
|
132
|
-
"rollup-plugin-peer-deps-external": "
|
|
133
|
-
"rollup-plugin-postcss": "
|
|
134
|
-
"rollup-plugin-react-svg": "
|
|
135
|
-
"rollup-plugin-svg-import": "
|
|
136
|
-
"rollup-plugin-svg-to-jsx": "
|
|
137
|
-
"rollup-plugin-terser": "
|
|
138
|
-
"rollup-plugin-url": "
|
|
139
|
-
"rollup-plugin-visualizer": "
|
|
140
|
-
"storybook": "
|
|
141
|
-
"tailwindcss": "
|
|
142
|
-
"tslib": "
|
|
143
|
-
"typescript": "
|
|
144
|
-
"webpack": "
|
|
94
|
+
"@rollup/plugin-commonjs": "20.0.0",
|
|
95
|
+
"@rollup/plugin-image": "2.1.1",
|
|
96
|
+
"@rollup/plugin-node-resolve": "13.3.0",
|
|
97
|
+
"@rollup/plugin-replace": "3.1.0",
|
|
98
|
+
"@rollup/plugin-typescript": "8.5.0",
|
|
99
|
+
"@storybook/addon-essentials": "7.4.2",
|
|
100
|
+
"@storybook/addon-interactions": "7.4.2",
|
|
101
|
+
"@storybook/addon-links": "7.4.2",
|
|
102
|
+
"@storybook/addon-onboarding": "1.0.8",
|
|
103
|
+
"@storybook/addon-styling": "1.3.7",
|
|
104
|
+
"@storybook/blocks": "7.4.2",
|
|
105
|
+
"@storybook/preset-create-react-app": "7.4.2",
|
|
106
|
+
"@storybook/react": "7.4.2",
|
|
107
|
+
"@storybook/react-webpack5": "7.4.2",
|
|
108
|
+
"@storybook/testing-library": "0.2.1",
|
|
109
|
+
"@svgr/rollup": "5.5.0",
|
|
110
|
+
"@testing-library/jest-dom": "5.17.0",
|
|
111
|
+
"@testing-library/react": "11.2.7",
|
|
112
|
+
"@testing-library/user-event": "12.8.3",
|
|
113
|
+
"@types/jest": "26.0.24",
|
|
114
|
+
"@types/luxon": "2.4.0",
|
|
115
|
+
"@types/node": "12.20.55",
|
|
116
|
+
"@types/react": "17.0.65",
|
|
117
|
+
"@types/react-dom": "17.0.20",
|
|
118
|
+
"@types/styled-components": "5.1.27",
|
|
119
|
+
"@typescript-eslint/eslint-plugin": "4.33.0",
|
|
120
|
+
"@typescript-eslint/parser": "4.33.0",
|
|
121
|
+
"autoprefixer": "10.4.15",
|
|
122
|
+
"babel-cli": "6.26.0",
|
|
123
|
+
"cross-env": "7.0.3",
|
|
124
|
+
"eslint": "7.32.0",
|
|
125
|
+
"eslint-config-google": "0.14.0",
|
|
126
|
+
"eslint-plugin-storybook": "0.6.13",
|
|
127
|
+
"postcss": "8.4.29",
|
|
128
|
+
"react-scripts": "5.0.1",
|
|
129
|
+
"rimraf": "3.0.2",
|
|
130
|
+
"rollup": "2.79.1",
|
|
131
|
+
"rollup-plugin-dts": "4.2.3",
|
|
132
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
133
|
+
"rollup-plugin-postcss": "4.0.2",
|
|
134
|
+
"rollup-plugin-react-svg": "3.0.3",
|
|
135
|
+
"rollup-plugin-svg-import": "1.6.0",
|
|
136
|
+
"rollup-plugin-svg-to-jsx": "1.0.0",
|
|
137
|
+
"rollup-plugin-terser": "7.0.2",
|
|
138
|
+
"rollup-plugin-url": "3.0.1",
|
|
139
|
+
"rollup-plugin-visualizer": "5.9.2",
|
|
140
|
+
"storybook": "7.4.2",
|
|
141
|
+
"tailwindcss": "3.3.3",
|
|
142
|
+
"tslib": "2.6.2",
|
|
143
|
+
"typescript": "4.9.5",
|
|
144
|
+
"webpack": "5.88.2"
|
|
145
145
|
},
|
|
146
146
|
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
|
|
147
147
|
"files": [
|