@mindly/ui-components 6.4.1 → 6.4.2

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.
Files changed (28) hide show
  1. package/dist/cjs/index.js +8 -8
  2. package/dist/cjs/lib2/shared/assets/icons/IconSort.d.ts +3 -0
  3. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
  4. package/dist/cjs/lib2/shared/types/filter.d.ts +7 -0
  5. package/dist/cjs/lib2/shared/ui/Counter/Counter.d.ts +4 -0
  6. package/dist/cjs/lib2/shared/ui/Counter/index.d.ts +2 -0
  7. package/dist/cjs/lib2/shared/ui/Counter/styles.d.ts +87 -0
  8. package/dist/cjs/lib2/shared/ui/Counter/types.d.ts +5 -0
  9. package/dist/cjs/lib2/shared/ui/Divider/index.d.ts +1 -0
  10. package/dist/cjs/lib2/shared/ui/Typography/types.d.ts +1 -0
  11. package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
  12. package/dist/cjs/lib2/shared/utils/filter.d.ts +4 -1
  13. package/dist/cjs/lib2/widgets/SpecialistCardWithScheduleWidget/types.d.ts +2 -0
  14. package/dist/esm/index.js +8 -8
  15. package/dist/esm/lib2/shared/assets/icons/IconSort.d.ts +3 -0
  16. package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
  17. package/dist/esm/lib2/shared/types/filter.d.ts +7 -0
  18. package/dist/esm/lib2/shared/ui/Counter/Counter.d.ts +4 -0
  19. package/dist/esm/lib2/shared/ui/Counter/index.d.ts +2 -0
  20. package/dist/esm/lib2/shared/ui/Counter/styles.d.ts +87 -0
  21. package/dist/esm/lib2/shared/ui/Counter/types.d.ts +5 -0
  22. package/dist/esm/lib2/shared/ui/Divider/index.d.ts +1 -0
  23. package/dist/esm/lib2/shared/ui/Typography/types.d.ts +1 -0
  24. package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
  25. package/dist/esm/lib2/shared/utils/filter.d.ts +4 -1
  26. package/dist/esm/lib2/widgets/SpecialistCardWithScheduleWidget/types.d.ts +2 -0
  27. package/dist/index.d.ts +25 -1
  28. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { IconProps } from '../../types/iconProps';
3
+ export declare const IconSort: React.FC<IconProps>;
@@ -140,3 +140,4 @@ export * from './IconMooving';
140
140
  export * from './IconAlignHorizontalTextCenter';
141
141
  export * from './IconAlignHorizontalTextLeft';
142
142
  export * from './IconAlignHorizontalTextRight';
143
+ export * from './IconSort';
@@ -1,5 +1,12 @@
1
1
  export type AllowFilterValueType = string | number | boolean;
2
2
  export type FilterValue = AllowFilterValueType | AllowFilterValueType[];
3
+ export type SortDirection = 'asc' | 'desc';
4
+ export type SortValue = string;
5
+ export type Sort = {
6
+ value: SortValue;
7
+ direction: SortDirection;
8
+ };
9
+ export type SortKey = `${SortValue}:${SortDirection}`;
3
10
  export type FilterOptionValue = AllowFilterValueType;
4
11
  export type FilterOption = {
5
12
  value?: AllowFilterValueType;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { CounterProps } from './types';
3
+ declare const Counter: React.FC<CounterProps>;
4
+ export default Counter;
@@ -0,0 +1,2 @@
1
+ export { default as Counter } from './Counter';
2
+ export * from './types';
@@ -0,0 +1,87 @@
1
+ export declare const counterStyles: import("tailwind-variants").TVReturnType<{
2
+ variant: {
3
+ default: {
4
+ root: string;
5
+ };
6
+ };
7
+ size: {
8
+ xs: {
9
+ root: string;
10
+ };
11
+ };
12
+ }, {
13
+ root: string;
14
+ text: string;
15
+ }, undefined, import("tailwind-variants/dist/config").TVConfig<{
16
+ variant: {
17
+ default: {
18
+ root: string;
19
+ };
20
+ };
21
+ size: {
22
+ xs: {
23
+ root: string;
24
+ };
25
+ };
26
+ }, {
27
+ variant: {
28
+ default: {
29
+ root: string;
30
+ };
31
+ };
32
+ size: {
33
+ xs: {
34
+ root: string;
35
+ };
36
+ };
37
+ }>, {
38
+ variant: {
39
+ default: {
40
+ root: string;
41
+ };
42
+ };
43
+ size: {
44
+ xs: {
45
+ root: string;
46
+ };
47
+ };
48
+ }, {
49
+ root: string;
50
+ text: string;
51
+ }, import("tailwind-variants").TVReturnType<{
52
+ variant: {
53
+ default: {
54
+ root: string;
55
+ };
56
+ };
57
+ size: {
58
+ xs: {
59
+ root: string;
60
+ };
61
+ };
62
+ }, {
63
+ root: string;
64
+ text: string;
65
+ }, undefined, import("tailwind-variants/dist/config").TVConfig<{
66
+ variant: {
67
+ default: {
68
+ root: string;
69
+ };
70
+ };
71
+ size: {
72
+ xs: {
73
+ root: string;
74
+ };
75
+ };
76
+ }, {
77
+ variant: {
78
+ default: {
79
+ root: string;
80
+ };
81
+ };
82
+ size: {
83
+ xs: {
84
+ root: string;
85
+ };
86
+ };
87
+ }>, unknown, unknown, undefined>>;
@@ -0,0 +1,5 @@
1
+ export type CounterProps = {
2
+ className?: string;
3
+ variant?: 'default';
4
+ size?: 'xs';
5
+ };
@@ -1,2 +1,3 @@
1
1
  export { default } from './Divider';
2
+ export { default as Divider } from './Divider';
2
3
  export * from './types';
@@ -27,6 +27,7 @@ export declare enum TypographyVariantsEnum {
27
27
  Text12Regular = "Text/12 Regular",
28
28
  Tabbar10Medium = "Tabbar/10 Medium",
29
29
  Text8Regular = "Text/8 Regular",
30
+ Text8Semi = "Text/8 Semi",
30
31
  Text7Regular = "Text/7 Regular",
31
32
  Text6Regular = "Text/6 Regular",
32
33
  Badge12Semi = "Badge/12 Semi",
@@ -45,3 +45,4 @@ export * from './EmptyList';
45
45
  export * from './SpecialistProfileNotFound';
46
46
  export * from './NewSpecialist';
47
47
  export * from './SolidInput';
48
+ export * from './Counter';
@@ -1,6 +1,9 @@
1
1
  import { FilterItem } from '../../widgets/FiltersWidget/types';
2
- import { AllowFilterValueType, FilterValue } from '../types/filter';
2
+ import { AllowFilterValueType, FilterValue, Sort, SortDirection, SortKey, SortValue } from '../types/filter';
3
3
  export declare const getMappedFilterValue: (value?: FilterValue) => AllowFilterValueType[];
4
4
  export declare const getFiltersValues: (filters: FilterItem[]) => Record<string, FilterValue>;
5
5
  export declare const isFilterSet: (filtersValues: Record<string, FilterValue>) => boolean;
6
+ export declare const getFilterCount: (filtersValues: Record<string, FilterValue>) => number;
6
7
  export declare const getFiltersQuery: (filters: Record<string, FilterValue>) => string;
8
+ export declare const getSortKey: (sort: SortValue, direction: SortDirection) => string;
9
+ export declare const getSortFromKey: (key: SortKey) => Sort;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { WithTranslation } from 'react-i18next';
2
3
  import { ScheduleDate, ScheduleSlot, Specialist, UserType } from '../../shared/types';
3
4
  export type SpecialistCardWithScheduleWidgetProps = {
@@ -9,6 +10,7 @@ export type SpecialistCardWithScheduleWidgetProps = {
9
10
  onCardClick(): void;
10
11
  currentUser?: UserType;
11
12
  isBookingLoading?: boolean;
13
+ children?: React.ReactNode;
12
14
  events?: {
13
15
  onVideoClick?(): void;
14
16
  onScheduleDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
package/dist/index.d.ts CHANGED
@@ -742,6 +742,7 @@ declare enum TypographyVariantsEnum {
742
742
  Text12Regular = "Text/12 Regular",
743
743
  Tabbar10Medium = "Tabbar/10 Medium",
744
744
  Text8Regular = "Text/8 Regular",
745
+ Text8Semi = "Text/8 Semi",
745
746
  Text7Regular = "Text/7 Regular",
746
747
  Text6Regular = "Text/6 Regular",
747
748
  Badge12Semi = "Badge/12 Semi",
@@ -1641,6 +1642,13 @@ type MindlyReview = {
1641
1642
 
1642
1643
  type AllowFilterValueType = string | number | boolean;
1643
1644
  type FilterValue = AllowFilterValueType | AllowFilterValueType[];
1645
+ type SortDirection = 'asc' | 'desc';
1646
+ type SortValue = string;
1647
+ type Sort = {
1648
+ value: SortValue;
1649
+ direction: SortDirection;
1650
+ };
1651
+ type SortKey = `${SortValue}:${SortDirection}`;
1644
1652
  type FilterOptionValue = AllowFilterValueType;
1645
1653
  type FilterOption = {
1646
1654
  value?: AllowFilterValueType;
@@ -2129,6 +2137,8 @@ type DividerProps = {
2129
2137
  variant?: 'default';
2130
2138
  };
2131
2139
 
2140
+ declare const Divider: React__default.FC<DividerProps>;
2141
+
2132
2142
  type EmptyListProps = {
2133
2143
  className?: string;
2134
2144
  t?: WithTranslation['t'];
@@ -2170,6 +2180,14 @@ type SolidInputProps = {
2170
2180
 
2171
2181
  declare const SolidInput: React__default.ForwardRefExoticComponent<SolidInputProps & React__default.RefAttributes<HTMLIonInputElement>>;
2172
2182
 
2183
+ type CounterProps = {
2184
+ className?: string;
2185
+ variant?: 'default';
2186
+ size?: 'xs';
2187
+ };
2188
+
2189
+ declare const Counter: React__default.FC<CounterProps>;
2190
+
2173
2191
  declare enum appThemes {
2174
2192
  client = "client",
2175
2193
  specialist = "specialist"
@@ -2758,6 +2776,8 @@ interface IconProps extends React$1.SVGAttributes<SVGElement> {
2758
2776
  }
2759
2777
  declare function IconAlignHorizontalTextRight({ size, ...other }: IconProps): react_jsx_runtime.JSX.Element;
2760
2778
 
2779
+ declare const IconSort: React$1.FC<IconProps$H>;
2780
+
2761
2781
  declare const formatByDigits: (value: number) => string;
2762
2782
  declare const roundToPrecision: (value: number, decimals?: number) => number;
2763
2783
  declare const getDateLocale: (locale: string) => Locale;
@@ -3439,7 +3459,10 @@ type FiltersWidgetProps = {
3439
3459
  declare const getMappedFilterValue: (value?: FilterValue) => AllowFilterValueType[];
3440
3460
  declare const getFiltersValues: (filters: FilterItem[]) => Record<string, FilterValue>;
3441
3461
  declare const isFilterSet: (filtersValues: Record<string, FilterValue>) => boolean;
3462
+ declare const getFilterCount: (filtersValues: Record<string, FilterValue>) => number;
3442
3463
  declare const getFiltersQuery: (filters: Record<string, FilterValue>) => string;
3464
+ declare const getSortKey: (sort: SortValue, direction: SortDirection) => string;
3465
+ declare const getSortFromKey: (key: SortKey) => Sort;
3443
3466
 
3444
3467
  type SpecialistPreviewFeatureProps = {
3445
3468
  specialist?: Specialist;
@@ -4369,6 +4392,7 @@ type SpecialistCardWithScheduleWidgetProps = {
4369
4392
  onCardClick(): void;
4370
4393
  currentUser?: UserType;
4371
4394
  isBookingLoading?: boolean;
4395
+ children?: React.ReactNode;
4372
4396
  events?: {
4373
4397
  onVideoClick?(): void;
4374
4398
  onScheduleDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
@@ -4381,4 +4405,4 @@ declare const _default: React__default.NamedExoticComponent<SpecialistCardWithSc
4381
4405
 
4382
4406
  declare const SpecialistCardSkeleton: React__default.FC;
4383
4407
 
4384
- export { AcceptAgreementFeature, Action, _default$Y as AlertCard, AllowFilterValueType, AppFooter, _default$X as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$W as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$S as Badge, _default$$ as BookingScheduleTime, _default$_ as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$z as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1i as ChatListItem, _default$1g as ChatListSkeleton, _default$1h as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$1b as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$18 as ConsultationModal, _default$D as ConsultationPricingFeature, _default$16 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$14 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$10 as EducationCard, _default$1f as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$19 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$a as Flag, FlagTypes, _default$U as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$O as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$K as Item, _default$R as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$H as ListItemWithColumns, _default$L as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$M as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$s as MarkdownContainerFeature, _default$I as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$k as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$l as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$j as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$q as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$p as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$n as OnBoardingProgressFeature, _default$m as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$o as OnBoardingSingleSelectionScreenPreviewFeature, _default$r as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$y as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$A as PaymentSessionsList, _default$T as Picture, PoweredByStripeFeature, _default$9 as ProfileInformation, _default$12 as ProfileView, _default$c as ProgressBar, ProgressBarDashed, _default$N as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$P as Rating, RatingCircleWrapper, _default$15 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$x as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$v as ScreenDrumPickerFormFeature, ScreenInput, _default$w as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$t as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$G as ShowMore, _default$1a as SignUpSessionButton, _default$17 as SignUpSessionModal, SizeValues, Skeleton, _default$V as Skeleton_v2, _default$F as SlotsGrid, _default$E as SlotsGridItem, SolidInput, Specialist, _default$11 as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$6 as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$3 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$1 as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$8 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$C as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$B as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$4 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$5 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$2 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$7 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$u as TextAreaFormFeature, _default$h as TextInput, _default$i as TextWithClampFeature, _default$1e as Textarea, _default$Q as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$Z as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$J as Video, _default$1c as VideoCallInfo, _default$1d as VideoPlayer, VideoProvider, _default$13 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
4408
+ export { AcceptAgreementFeature, Action, _default$Y as AlertCard, AllowFilterValueType, AppFooter, _default$X as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$W as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$S as Badge, _default$$ as BookingScheduleTime, _default$_ as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$z as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1i as ChatListItem, _default$1g as ChatListSkeleton, _default$1h as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$1b as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$18 as ConsultationModal, _default$D as ConsultationPricingFeature, _default$16 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$14 as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$10 as EducationCard, _default$1f as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$19 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$a as Flag, FlagTypes, _default$U as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$O as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSort, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$K as Item, _default$R as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$H as ListItemWithColumns, _default$L as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$M as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$s as MarkdownContainerFeature, _default$I as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$k as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$l as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$j as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$q as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$p as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$n as OnBoardingProgressFeature, _default$m as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$o as OnBoardingSingleSelectionScreenPreviewFeature, _default$r as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$y as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$A as PaymentSessionsList, _default$T as Picture, PoweredByStripeFeature, _default$9 as ProfileInformation, _default$12 as ProfileView, _default$c as ProgressBar, ProgressBarDashed, _default$N as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$P as Rating, RatingCircleWrapper, _default$15 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$x as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$v as ScreenDrumPickerFormFeature, ScreenInput, _default$w as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$t as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$G as ShowMore, _default$1a as SignUpSessionButton, _default$17 as SignUpSessionModal, SizeValues, Skeleton, _default$V as Skeleton_v2, _default$F as SlotsGrid, _default$E as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$11 as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$6 as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$3 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$1 as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$8 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$C as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$B as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$4 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$5 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$2 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$7 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$u as TextAreaFormFeature, _default$h as TextInput, _default$i as TextWithClampFeature, _default$1e as Textarea, _default$Q as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$Z as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$J as Video, _default$1c as VideoCallInfo, _default$1d as VideoPlayer, VideoProvider, _default$13 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFilterCount, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getSortFromKey, getSortKey, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "6.4.1",
3
+ "version": "6.4.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",