@mindly/ui-components 6.6.0-dev.12 → 6.6.0-dev.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.
- package/dist/cjs/index.js +8 -8
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +1 -6
- package/dist/cjs/lib2/shared/assets/icons/IconArrowLeft.d.ts +1 -1
- package/dist/cjs/lib2/shared/hooks/useStopPropagationEvent.d.ts +1 -2
- package/dist/cjs/lib2/shared/providers/AuthProvider/AuthProvider.d.ts +3 -11
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +0 -18
- package/dist/esm/index.js +8 -8
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +1 -6
- package/dist/esm/lib2/shared/assets/icons/IconArrowLeft.d.ts +1 -1
- package/dist/esm/lib2/shared/hooks/useStopPropagationEvent.d.ts +1 -2
- package/dist/esm/lib2/shared/providers/AuthProvider/AuthProvider.d.ts +3 -11
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +0 -18
- package/dist/index.d.ts +6 -35
- package/package.json +1 -2
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/CounterProgress.d.ts +0 -19
- package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/DefaultProgress.d.ts +0 -15
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/CounterProgress.d.ts +0 -19
- package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/DefaultProgress.d.ts +0 -15
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { OnBoardingScreenStyleOptions } from '../../../shared';
|
|
3
3
|
import { OnboardingVariant } from '../../../shared';
|
|
4
4
|
type OnBoardingProgressFeatureProps = {
|
|
5
5
|
progress: number;
|
|
@@ -10,11 +10,6 @@ type OnBoardingProgressFeatureProps = {
|
|
|
10
10
|
startAdornment?: React.ReactNode;
|
|
11
11
|
variant?: OnboardingVariant;
|
|
12
12
|
empty?: boolean;
|
|
13
|
-
template?: 'default' | 'counter';
|
|
14
|
-
totalCount?: number;
|
|
15
|
-
currentCount?: number;
|
|
16
|
-
image?: ResponseFileType | null;
|
|
17
|
-
progressSettings?: OnBoardingProgressSettingsScreenType | null;
|
|
18
13
|
};
|
|
19
14
|
declare const _default: React.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
20
15
|
export default _default;
|
|
@@ -3,5 +3,5 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
|
3
3
|
size?: number | string;
|
|
4
4
|
color?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function IconArrowLeft({ color,
|
|
6
|
+
export declare function IconArrowLeft({ color, ...other }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const useStopPropagationEvent: (ref: React.RefObject<HTMLElement>, event: string, deps?: DependencyList) => void;
|
|
1
|
+
export declare const useStopPropagationEvent: (ref: React.RefObject<HTMLElement>, event: string) => void;
|
|
@@ -1,12 +1,4 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
|
-
import { User } from '@capacitor-firebase/authentication';
|
|
1
|
+
import React, { FC } from 'react';
|
|
3
2
|
import { AuthContextType } from './types';
|
|
4
|
-
export declare const AuthContext:
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* REMOVE WHEN WE MOVE AUTH TO NATIVE CAPACITOR PLUGIN
|
|
8
|
-
*/
|
|
9
|
-
webAuthListener?: (callback: (user: User | null) => void) => () => void;
|
|
10
|
-
};
|
|
11
|
-
export declare const AuthProvider: FC<AuthProviderProps>;
|
|
12
|
-
export {};
|
|
3
|
+
export declare const AuthContext: React.Context<AuthContextType | null>;
|
|
4
|
+
export declare const AuthProvider: FC;
|
|
@@ -62,10 +62,6 @@ export type OnBoardingScreenSubgoalButtonType = {
|
|
|
62
62
|
subgoalButtonColor?: string | null;
|
|
63
63
|
subgoalButtonTextColor?: string | null;
|
|
64
64
|
};
|
|
65
|
-
export type OnBoardingScreenProgressType = {
|
|
66
|
-
template?: OnboardingProgressTemplate;
|
|
67
|
-
image?: ResponseFileType | null;
|
|
68
|
-
};
|
|
69
65
|
export type OnBoardingScreenSkipButtonType = {
|
|
70
66
|
skipButtonText?: string | null;
|
|
71
67
|
showSkipButton?: boolean;
|
|
@@ -94,13 +90,6 @@ export type OnBoardingScreenTranslationsType = {
|
|
|
94
90
|
export type OnBoardingScreenErrorsType = {
|
|
95
91
|
errors?: Record<string, string>;
|
|
96
92
|
};
|
|
97
|
-
export type OnBoardingProgressSettingsScreenType = {
|
|
98
|
-
isBackButton?: boolean;
|
|
99
|
-
isLogo?: boolean;
|
|
100
|
-
isCounter?: boolean;
|
|
101
|
-
isProgress?: boolean;
|
|
102
|
-
horizontalImageAlignment?: 'left' | 'right' | 'center';
|
|
103
|
-
};
|
|
104
93
|
export type OnBoardingBaseScreenType = {
|
|
105
94
|
id: string;
|
|
106
95
|
type: OnBoardingScreenOptions;
|
|
@@ -120,8 +109,6 @@ export type OnBoardingBaseScreenType = {
|
|
|
120
109
|
isStartScreen?: boolean;
|
|
121
110
|
backgroundColor?: string | null;
|
|
122
111
|
contentStyle: OnBoardingScreenStyleOptions;
|
|
123
|
-
progressSettings?: OnBoardingProgressSettingsScreenType;
|
|
124
|
-
isProgressVisible?: boolean;
|
|
125
112
|
/**
|
|
126
113
|
* @deprecated This field is deprecated and will be removed in future versions
|
|
127
114
|
*/
|
|
@@ -262,13 +249,8 @@ export type OnBoardingFlowType = {
|
|
|
262
249
|
duration_min?: number | null;
|
|
263
250
|
isDefault?: boolean;
|
|
264
251
|
theme?: OnboardingVariant;
|
|
265
|
-
progress?: OnBoardingScreenProgressType;
|
|
266
252
|
};
|
|
267
253
|
export declare enum OnboardingVariant {
|
|
268
254
|
default = "default",
|
|
269
255
|
blue = "blue"
|
|
270
256
|
}
|
|
271
|
-
export declare enum OnboardingProgressTemplate {
|
|
272
|
-
default = "default",
|
|
273
|
-
counter = "counter"
|
|
274
|
-
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { CSSProperties, FC, HTMLAttributes, RefAttributes, SVGAttributes, KeyboardEvent, InputHTMLAttributes, KeyboardEventHandler, RefObject, EffectCallback,
|
|
3
|
+
import React__default, { CSSProperties, FC, HTMLAttributes, RefAttributes, SVGAttributes, KeyboardEvent, InputHTMLAttributes, KeyboardEventHandler, RefObject, EffectCallback, SVGProps, PropsWithChildren, ReactNode, ReactText, ReactElement, ChangeEvent } from 'react';
|
|
4
4
|
import { WithTranslation } from 'react-i18next';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
@@ -1294,10 +1294,6 @@ type OnBoardingScreenSubgoalButtonType = {
|
|
|
1294
1294
|
subgoalButtonColor?: string | null;
|
|
1295
1295
|
subgoalButtonTextColor?: string | null;
|
|
1296
1296
|
};
|
|
1297
|
-
type OnBoardingScreenProgressType = {
|
|
1298
|
-
template?: OnboardingProgressTemplate;
|
|
1299
|
-
image?: ResponseFileType | null;
|
|
1300
|
-
};
|
|
1301
1297
|
type OnBoardingScreenSkipButtonType = {
|
|
1302
1298
|
skipButtonText?: string | null;
|
|
1303
1299
|
showSkipButton?: boolean;
|
|
@@ -1326,13 +1322,6 @@ type OnBoardingScreenTranslationsType = {
|
|
|
1326
1322
|
type OnBoardingScreenErrorsType = {
|
|
1327
1323
|
errors?: Record<string, string>;
|
|
1328
1324
|
};
|
|
1329
|
-
type OnBoardingProgressSettingsScreenType = {
|
|
1330
|
-
isBackButton?: boolean;
|
|
1331
|
-
isLogo?: boolean;
|
|
1332
|
-
isCounter?: boolean;
|
|
1333
|
-
isProgress?: boolean;
|
|
1334
|
-
horizontalImageAlignment?: 'left' | 'right' | 'center';
|
|
1335
|
-
};
|
|
1336
1325
|
type OnBoardingBaseScreenType = {
|
|
1337
1326
|
id: string;
|
|
1338
1327
|
type: OnBoardingScreenOptions;
|
|
@@ -1352,8 +1341,6 @@ type OnBoardingBaseScreenType = {
|
|
|
1352
1341
|
isStartScreen?: boolean;
|
|
1353
1342
|
backgroundColor?: string | null;
|
|
1354
1343
|
contentStyle: OnBoardingScreenStyleOptions;
|
|
1355
|
-
progressSettings?: OnBoardingProgressSettingsScreenType;
|
|
1356
|
-
isProgressVisible?: boolean;
|
|
1357
1344
|
/**
|
|
1358
1345
|
* @deprecated This field is deprecated and will be removed in future versions
|
|
1359
1346
|
*/
|
|
@@ -1494,16 +1481,11 @@ type OnBoardingFlowType = {
|
|
|
1494
1481
|
duration_min?: number | null;
|
|
1495
1482
|
isDefault?: boolean;
|
|
1496
1483
|
theme?: OnboardingVariant;
|
|
1497
|
-
progress?: OnBoardingScreenProgressType;
|
|
1498
1484
|
};
|
|
1499
1485
|
declare enum OnboardingVariant {
|
|
1500
1486
|
default = "default",
|
|
1501
1487
|
blue = "blue"
|
|
1502
1488
|
}
|
|
1503
|
-
declare enum OnboardingProgressTemplate {
|
|
1504
|
-
default = "default",
|
|
1505
|
-
counter = "counter"
|
|
1506
|
-
}
|
|
1507
1489
|
|
|
1508
1490
|
declare enum ContractStatusEnum {
|
|
1509
1491
|
active = "active",
|
|
@@ -2283,14 +2265,8 @@ type AuthContextType = {
|
|
|
2283
2265
|
sendEmailVerification: () => Promise<void>;
|
|
2284
2266
|
};
|
|
2285
2267
|
|
|
2286
|
-
declare const AuthContext:
|
|
2287
|
-
|
|
2288
|
-
/**
|
|
2289
|
-
* REMOVE WHEN WE MOVE AUTH TO NATIVE CAPACITOR PLUGIN
|
|
2290
|
-
*/
|
|
2291
|
-
webAuthListener?: (callback: (user: User | null) => void) => () => void;
|
|
2292
|
-
};
|
|
2293
|
-
declare const AuthProvider: FC<AuthProviderProps>;
|
|
2268
|
+
declare const AuthContext: React__default.Context<AuthContextType | null>;
|
|
2269
|
+
declare const AuthProvider: FC;
|
|
2294
2270
|
|
|
2295
2271
|
declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React$1.RefObject<T | null> | React$1.ForwardedRef<T | null>): React$1.RefObject<T>;
|
|
2296
2272
|
|
|
@@ -2354,13 +2330,13 @@ declare function useIsKeyBoardShown(): boolean;
|
|
|
2354
2330
|
|
|
2355
2331
|
declare const useDelayMount: (delay: number) => boolean;
|
|
2356
2332
|
|
|
2357
|
-
declare const useStopPropagationEvent: (ref: React.RefObject<HTMLElement>, event: string
|
|
2333
|
+
declare const useStopPropagationEvent: (ref: React.RefObject<HTMLElement>, event: string) => void;
|
|
2358
2334
|
|
|
2359
2335
|
interface IconProps$G extends React$1.SVGAttributes<SVGElement> {
|
|
2360
2336
|
size?: number | string;
|
|
2361
2337
|
color?: string;
|
|
2362
2338
|
}
|
|
2363
|
-
declare function IconArrowLeft({ color,
|
|
2339
|
+
declare function IconArrowLeft({ color, ...other }: IconProps$G): react_jsx_runtime.JSX.Element;
|
|
2364
2340
|
|
|
2365
2341
|
interface IconProps$F extends React$1.SVGAttributes<SVGElement> {
|
|
2366
2342
|
size?: number | string;
|
|
@@ -3285,11 +3261,6 @@ type OnBoardingProgressFeatureProps = {
|
|
|
3285
3261
|
startAdornment?: React__default.ReactNode;
|
|
3286
3262
|
variant?: OnboardingVariant;
|
|
3287
3263
|
empty?: boolean;
|
|
3288
|
-
template?: 'default' | 'counter';
|
|
3289
|
-
totalCount?: number;
|
|
3290
|
-
currentCount?: number;
|
|
3291
|
-
image?: ResponseFileType | null;
|
|
3292
|
-
progressSettings?: OnBoardingProgressSettingsScreenType | null;
|
|
3293
3264
|
};
|
|
3294
3265
|
declare const _default$n: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
|
|
3295
3266
|
|
|
@@ -4599,4 +4570,4 @@ declare const _default: React__default.NamedExoticComponent<SpecialistCardWithSc
|
|
|
4599
4570
|
|
|
4600
4571
|
declare const SpecialistCardSkeleton: React__default.FC;
|
|
4601
4572
|
|
|
4602
|
-
export { AcceptAgreementFeature, Action, _default$Y as AlertCard, AllowFilterValueType, AppFooter, _default$X as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, 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, OnBoardingProgressSettingsScreenType, _default$m as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$o as OnBoardingSingleSelectionScreenPreviewFeature, _default$r as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingProgressTemplate, 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, globalAuthState, 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 };
|
|
4573
|
+
export { AcceptAgreementFeature, Action, _default$Y as AlertCard, AllowFilterValueType, AppFooter, _default$X as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, 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, globalAuthState, 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.6.0-dev.
|
|
3
|
+
"version": "6.6.0-dev.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/polyfill": "7.12.1",
|
|
19
19
|
"@capacitor-firebase/authentication": "7.3.0",
|
|
20
|
-
"@capacitor/app": "7.0.1",
|
|
21
20
|
"@capacitor/clipboard": "7.0.1",
|
|
22
21
|
"@capacitor/haptics": "7.0.1",
|
|
23
22
|
"@capacitor/keyboard": "7.0.1",
|
package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/CounterProgress.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { OnBoardingScreenStyleOptions, ResponseFileType, OnBoardingProgressSettingsScreenType } from '../../../shared';
|
|
3
|
-
import { OnboardingVariant } from '../../../shared';
|
|
4
|
-
type CounterProgressProps = {
|
|
5
|
-
progress: number;
|
|
6
|
-
isPreview?: boolean;
|
|
7
|
-
isBackButtonDisabled?: boolean;
|
|
8
|
-
onBackButtonClick?: () => void;
|
|
9
|
-
contentStyle?: OnBoardingScreenStyleOptions;
|
|
10
|
-
startAdornment?: React.ReactNode;
|
|
11
|
-
variant?: OnboardingVariant;
|
|
12
|
-
empty?: boolean;
|
|
13
|
-
totalCount?: number;
|
|
14
|
-
currentCount?: number;
|
|
15
|
-
image?: ResponseFileType | null;
|
|
16
|
-
progressSettings?: OnBoardingProgressSettingsScreenType | null;
|
|
17
|
-
};
|
|
18
|
-
declare const _default: React.NamedExoticComponent<CounterProgressProps>;
|
|
19
|
-
export default _default;
|
package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/DefaultProgress.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { OnBoardingScreenStyleOptions } from '../../../shared';
|
|
3
|
-
import { OnboardingVariant } from '../../../shared';
|
|
4
|
-
type DefaultProgressProps = {
|
|
5
|
-
progress: number;
|
|
6
|
-
isPreview?: boolean;
|
|
7
|
-
isBackButtonDisabled?: boolean;
|
|
8
|
-
onBackButtonClick?: () => void;
|
|
9
|
-
contentStyle?: OnBoardingScreenStyleOptions;
|
|
10
|
-
startAdornment?: React.ReactNode;
|
|
11
|
-
variant?: OnboardingVariant;
|
|
12
|
-
empty?: boolean;
|
|
13
|
-
};
|
|
14
|
-
declare const _default: React.NamedExoticComponent<DefaultProgressProps>;
|
|
15
|
-
export default _default;
|
package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/CounterProgress.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { OnBoardingScreenStyleOptions, ResponseFileType, OnBoardingProgressSettingsScreenType } from '../../../shared';
|
|
3
|
-
import { OnboardingVariant } from '../../../shared';
|
|
4
|
-
type CounterProgressProps = {
|
|
5
|
-
progress: number;
|
|
6
|
-
isPreview?: boolean;
|
|
7
|
-
isBackButtonDisabled?: boolean;
|
|
8
|
-
onBackButtonClick?: () => void;
|
|
9
|
-
contentStyle?: OnBoardingScreenStyleOptions;
|
|
10
|
-
startAdornment?: React.ReactNode;
|
|
11
|
-
variant?: OnboardingVariant;
|
|
12
|
-
empty?: boolean;
|
|
13
|
-
totalCount?: number;
|
|
14
|
-
currentCount?: number;
|
|
15
|
-
image?: ResponseFileType | null;
|
|
16
|
-
progressSettings?: OnBoardingProgressSettingsScreenType | null;
|
|
17
|
-
};
|
|
18
|
-
declare const _default: React.NamedExoticComponent<CounterProgressProps>;
|
|
19
|
-
export default _default;
|
package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/DefaultProgress.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { OnBoardingScreenStyleOptions } from '../../../shared';
|
|
3
|
-
import { OnboardingVariant } from '../../../shared';
|
|
4
|
-
type DefaultProgressProps = {
|
|
5
|
-
progress: number;
|
|
6
|
-
isPreview?: boolean;
|
|
7
|
-
isBackButtonDisabled?: boolean;
|
|
8
|
-
onBackButtonClick?: () => void;
|
|
9
|
-
contentStyle?: OnBoardingScreenStyleOptions;
|
|
10
|
-
startAdornment?: React.ReactNode;
|
|
11
|
-
variant?: OnboardingVariant;
|
|
12
|
-
empty?: boolean;
|
|
13
|
-
};
|
|
14
|
-
declare const _default: React.NamedExoticComponent<DefaultProgressProps>;
|
|
15
|
-
export default _default;
|