@mindly/ui-components 5.91.12 → 5.91.13
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 +7 -7
- package/dist/cjs/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +3 -6
- package/dist/cjs/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +3 -1
- package/dist/cjs/lib2/shared/providers/VideoProvider/VideoProvider.d.ts +14 -0
- package/dist/cjs/lib2/shared/providers/VideoProvider/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/providers/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/Avatar_v2/Avatar_v2.style.d.ts +2 -2
- package/dist/cjs/lib2/shared/ui/Button_v2/Button_v2.d.ts +2 -1
- package/dist/cjs/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +16 -1
- package/dist/cjs/lib2/shared/ui/SuperSpecialist/styles.d.ts +35 -0
- package/dist/cjs/lib2/shared/ui/SuperSpecialist/types.d.ts +1 -1
- package/dist/cjs/lib2/widgets/SpecialistCardListWidget/SpecialistCardListWidget.d.ts +0 -2
- package/dist/cjs/lib2/widgets/SpecialistCardWidget/types.d.ts +0 -8
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +3 -6
- package/dist/esm/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +3 -1
- package/dist/esm/lib2/shared/providers/VideoProvider/VideoProvider.d.ts +14 -0
- package/dist/esm/lib2/shared/providers/VideoProvider/index.d.ts +1 -0
- package/dist/esm/lib2/shared/providers/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/Avatar_v2/Avatar_v2.style.d.ts +2 -2
- package/dist/esm/lib2/shared/ui/Button_v2/Button_v2.d.ts +2 -1
- package/dist/esm/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +16 -1
- package/dist/esm/lib2/shared/ui/SuperSpecialist/styles.d.ts +35 -0
- package/dist/esm/lib2/shared/ui/SuperSpecialist/types.d.ts +1 -1
- package/dist/esm/lib2/widgets/SpecialistCardListWidget/SpecialistCardListWidget.d.ts +0 -2
- package/dist/esm/lib2/widgets/SpecialistCardWidget/types.d.ts +0 -8
- package/dist/index.d.ts +32 -29
- package/package.json +8 -6
|
@@ -3,16 +3,13 @@ import { SupportedCurrency } from '../../shared';
|
|
|
3
3
|
import { WithTranslation } from 'react-i18next';
|
|
4
4
|
export type SpecialistInfoColumnFeatureProps = {
|
|
5
5
|
t?: WithTranslation['t'];
|
|
6
|
-
rating
|
|
7
|
-
reviews
|
|
8
|
-
yearsOfExperience
|
|
6
|
+
rating?: number;
|
|
7
|
+
reviews?: number;
|
|
8
|
+
yearsOfExperience?: number;
|
|
9
9
|
hoursOfPractice?: number;
|
|
10
10
|
sessionPrice: number;
|
|
11
|
-
isFavourite?: boolean;
|
|
12
11
|
sessionDurationMinutes: number;
|
|
13
12
|
currentPriceType: SupportedCurrency;
|
|
14
|
-
onToggleFavourite?(): void;
|
|
15
|
-
onCardClick?(): void;
|
|
16
13
|
};
|
|
17
14
|
declare const SpecialistInfoColumnFeature: FC<SpecialistInfoColumnFeatureProps>;
|
|
18
15
|
export default SpecialistInfoColumnFeature;
|
package/dist/esm/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { TypographyVariantsEnum } from '../../shared';
|
|
|
4
4
|
import { Avatar_v2Props } from '../../../lib2/shared/ui/Avatar_v2';
|
|
5
5
|
export type SpecialistShortInfoItemFeatureProps = {
|
|
6
6
|
t?: WithTranslation['t'];
|
|
7
|
-
match
|
|
7
|
+
match?: number;
|
|
8
8
|
matchVariant?: 'badge' | 'avatar';
|
|
9
9
|
fullName: string;
|
|
10
10
|
avatarLink: string;
|
|
@@ -17,7 +17,9 @@ export type SpecialistShortInfoItemFeatureProps = {
|
|
|
17
17
|
isSpecialistUnAvailable?: boolean;
|
|
18
18
|
isAuth?: boolean;
|
|
19
19
|
variantFullName?: TypographyVariantsEnum;
|
|
20
|
+
isFavourite?: boolean;
|
|
20
21
|
onClickReview?(): void;
|
|
22
|
+
onToggleFavourite?(): void;
|
|
21
23
|
};
|
|
22
24
|
declare const SpecialistShortInfoItemFeature: FC<SpecialistShortInfoItemFeatureProps>;
|
|
23
25
|
export default SpecialistShortInfoItemFeature;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type VideoContextValue = {
|
|
3
|
+
currentSrc: string | undefined;
|
|
4
|
+
isPlaying: boolean;
|
|
5
|
+
isLoaded: boolean;
|
|
6
|
+
isLoading: boolean | undefined;
|
|
7
|
+
playVideo(src: string): void;
|
|
8
|
+
};
|
|
9
|
+
type Props = {
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
};
|
|
12
|
+
export declare const useVideoContext: () => VideoContextValue;
|
|
13
|
+
export declare const VideoProvider: React.FC<Props>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './VideoProvider';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AvatarRoundVariants } from './Avatar_v2.style';
|
|
3
3
|
export type AvatarProps = {
|
|
4
|
-
variant?: 'small' | 'medium' | 'smaller' | 'large';
|
|
4
|
+
variant?: 'small' | 'medium' | 'smaller' | 'large' | 'xl';
|
|
5
5
|
round?: AvatarRoundVariants;
|
|
6
6
|
className?: string;
|
|
7
7
|
src?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export type AvatarRoundVariants = 'circle' | 'drop';
|
|
1
|
+
export type AvatarRoundVariants = 'circle' | 'drop' | 'small';
|
|
2
2
|
export declare function getBorderRadius(props: {
|
|
3
3
|
round: AvatarRoundVariants;
|
|
4
|
-
}):
|
|
4
|
+
}): string;
|
|
5
5
|
export declare const AvatarWrapper: import("styled-components").StyledComponent<"div", any, {
|
|
6
6
|
round: AvatarRoundVariants;
|
|
7
7
|
isLoading: boolean;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React, { FC } from 'react';
|
|
2
2
|
import { JSX } from '@ionic/core/components';
|
|
3
|
-
type ButtonProps = {
|
|
3
|
+
export type ButtonProps = {
|
|
4
4
|
fill?: 'outline' | 'clear';
|
|
5
5
|
size?: 'default' | 'large' | 'small';
|
|
6
6
|
customSize?: 'smaller';
|
|
7
|
+
withDefaultState?: boolean;
|
|
7
8
|
color?: undefined;
|
|
8
9
|
fullWidth?: boolean;
|
|
9
10
|
className?: string;
|
|
@@ -4,4 +4,19 @@ export declare const ButtonStyled: import("styled-components").StyledComponent<i
|
|
|
4
4
|
routerDirection?: "none" | "root" | "forward" | "back" | undefined;
|
|
5
5
|
routerOptions?: import("@ionic/react").RouterOptions | undefined;
|
|
6
6
|
routerAnimation?: import("@ionic/react").AnimationBuilder | undefined;
|
|
7
|
-
} & Pick<import("react").HTMLAttributes<HTMLIonButtonElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/IonicReactProps").IonicReactProps & import("react").RefAttributes<HTMLIonButtonElement>>, any, {
|
|
7
|
+
} & Pick<import("react").HTMLAttributes<HTMLIonButtonElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/IonicReactProps").IonicReactProps & import("react").RefAttributes<HTMLIonButtonElement>>, any, {
|
|
8
|
+
fill?: "clear" | "outline" | undefined;
|
|
9
|
+
size?: "small" | "default" | "large" | undefined;
|
|
10
|
+
customSize?: "smaller" | undefined;
|
|
11
|
+
withDefaultState?: boolean | undefined;
|
|
12
|
+
color?: undefined;
|
|
13
|
+
fullWidth?: boolean | undefined;
|
|
14
|
+
className?: string | undefined;
|
|
15
|
+
routerLink?: string | undefined;
|
|
16
|
+
onClick?: ((e: import("react").MouseEvent<HTMLIonButtonElement, MouseEvent>) => void) | undefined;
|
|
17
|
+
isLoading?: boolean | undefined;
|
|
18
|
+
icon?: import("react").ReactNode;
|
|
19
|
+
iconPosition?: "center" | "start" | undefined;
|
|
20
|
+
style?: import("react").CSSProperties | undefined;
|
|
21
|
+
id?: string | undefined;
|
|
22
|
+
} & import("@ionic/core/dist/types/components").JSX.IonButton, never>;
|
|
@@ -11,6 +11,11 @@ export declare const superSpecialistStyle: import("tailwind-variants").TVReturnT
|
|
|
11
11
|
iconVariant: TypographyVariantsEnum;
|
|
12
12
|
titleVariant: TypographyVariantsEnum;
|
|
13
13
|
};
|
|
14
|
+
badge: {
|
|
15
|
+
root: string;
|
|
16
|
+
iconVariant: TypographyVariantsEnum;
|
|
17
|
+
titleVariant: TypographyVariantsEnum;
|
|
18
|
+
};
|
|
14
19
|
};
|
|
15
20
|
}, {
|
|
16
21
|
iconVariant: string;
|
|
@@ -28,6 +33,11 @@ export declare const superSpecialistStyle: import("tailwind-variants").TVReturnT
|
|
|
28
33
|
iconVariant: TypographyVariantsEnum;
|
|
29
34
|
titleVariant: TypographyVariantsEnum;
|
|
30
35
|
};
|
|
36
|
+
badge: {
|
|
37
|
+
root: string;
|
|
38
|
+
iconVariant: TypographyVariantsEnum;
|
|
39
|
+
titleVariant: TypographyVariantsEnum;
|
|
40
|
+
};
|
|
31
41
|
};
|
|
32
42
|
}, {
|
|
33
43
|
variant: {
|
|
@@ -41,6 +51,11 @@ export declare const superSpecialistStyle: import("tailwind-variants").TVReturnT
|
|
|
41
51
|
iconVariant: TypographyVariantsEnum;
|
|
42
52
|
titleVariant: TypographyVariantsEnum;
|
|
43
53
|
};
|
|
54
|
+
badge: {
|
|
55
|
+
root: string;
|
|
56
|
+
iconVariant: TypographyVariantsEnum;
|
|
57
|
+
titleVariant: TypographyVariantsEnum;
|
|
58
|
+
};
|
|
44
59
|
};
|
|
45
60
|
}>, {
|
|
46
61
|
variant: {
|
|
@@ -54,6 +69,11 @@ export declare const superSpecialistStyle: import("tailwind-variants").TVReturnT
|
|
|
54
69
|
iconVariant: TypographyVariantsEnum;
|
|
55
70
|
titleVariant: TypographyVariantsEnum;
|
|
56
71
|
};
|
|
72
|
+
badge: {
|
|
73
|
+
root: string;
|
|
74
|
+
iconVariant: TypographyVariantsEnum;
|
|
75
|
+
titleVariant: TypographyVariantsEnum;
|
|
76
|
+
};
|
|
57
77
|
};
|
|
58
78
|
}, {
|
|
59
79
|
iconVariant: string;
|
|
@@ -71,6 +91,11 @@ export declare const superSpecialistStyle: import("tailwind-variants").TVReturnT
|
|
|
71
91
|
iconVariant: TypographyVariantsEnum;
|
|
72
92
|
titleVariant: TypographyVariantsEnum;
|
|
73
93
|
};
|
|
94
|
+
badge: {
|
|
95
|
+
root: string;
|
|
96
|
+
iconVariant: TypographyVariantsEnum;
|
|
97
|
+
titleVariant: TypographyVariantsEnum;
|
|
98
|
+
};
|
|
74
99
|
};
|
|
75
100
|
}, {
|
|
76
101
|
iconVariant: string;
|
|
@@ -88,6 +113,11 @@ export declare const superSpecialistStyle: import("tailwind-variants").TVReturnT
|
|
|
88
113
|
iconVariant: TypographyVariantsEnum;
|
|
89
114
|
titleVariant: TypographyVariantsEnum;
|
|
90
115
|
};
|
|
116
|
+
badge: {
|
|
117
|
+
root: string;
|
|
118
|
+
iconVariant: TypographyVariantsEnum;
|
|
119
|
+
titleVariant: TypographyVariantsEnum;
|
|
120
|
+
};
|
|
91
121
|
};
|
|
92
122
|
}, {
|
|
93
123
|
variant: {
|
|
@@ -101,5 +131,10 @@ export declare const superSpecialistStyle: import("tailwind-variants").TVReturnT
|
|
|
101
131
|
iconVariant: TypographyVariantsEnum;
|
|
102
132
|
titleVariant: TypographyVariantsEnum;
|
|
103
133
|
};
|
|
134
|
+
badge: {
|
|
135
|
+
root: string;
|
|
136
|
+
iconVariant: TypographyVariantsEnum;
|
|
137
|
+
titleVariant: TypographyVariantsEnum;
|
|
138
|
+
};
|
|
104
139
|
};
|
|
105
140
|
}>, unknown, unknown, undefined>>;
|
|
@@ -5,14 +5,12 @@ export type SpecialistCardListWidgetProps = {
|
|
|
5
5
|
t?: WithTranslation['t'];
|
|
6
6
|
specialists: Specialist[];
|
|
7
7
|
onToggleFavourite: (specialist: Specialist) => void;
|
|
8
|
-
onChooseVisitTime: (specialist: Specialist) => void;
|
|
9
8
|
onVideoPlay?: (src: string) => void;
|
|
10
9
|
onRefreshClick?(): void;
|
|
11
10
|
onFavoriteClick?(): void;
|
|
12
11
|
onCardClick?(id: string): void;
|
|
13
12
|
isLoading?: boolean;
|
|
14
13
|
currentUser?: UserType;
|
|
15
|
-
isBookingLoading?: boolean;
|
|
16
14
|
};
|
|
17
15
|
declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps>;
|
|
18
16
|
export default SpecialistCardListWidget;
|
|
@@ -4,19 +4,11 @@ import { Specialist, UserType } from '../../shared/types';
|
|
|
4
4
|
export type SpecialistCardWidgetProps = {
|
|
5
5
|
t?: WithTranslation['t'];
|
|
6
6
|
loading?: boolean;
|
|
7
|
-
videoPlayer: {
|
|
8
|
-
isMuted?: boolean;
|
|
9
|
-
onMuteToggle?(): void;
|
|
10
|
-
videoRef?(ref: HTMLVideoElement): void;
|
|
11
|
-
onPlay?(src: string): void;
|
|
12
|
-
};
|
|
13
7
|
specialist: Specialist;
|
|
14
8
|
isFavourite?: boolean;
|
|
15
|
-
onChooseVisitTime(): void;
|
|
16
9
|
onToggleFavourite(): void;
|
|
17
10
|
onCardClick(): void;
|
|
18
11
|
currentUser?: UserType;
|
|
19
|
-
isBookingLoading?: boolean;
|
|
20
12
|
};
|
|
21
13
|
export type SpecialistCard = {
|
|
22
14
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1494,10 +1494,10 @@ type AppFooterProps = {
|
|
|
1494
1494
|
};
|
|
1495
1495
|
declare const _default$H: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1496
1496
|
|
|
1497
|
-
type AvatarRoundVariants = 'circle' | 'drop';
|
|
1497
|
+
type AvatarRoundVariants = 'circle' | 'drop' | 'small';
|
|
1498
1498
|
|
|
1499
1499
|
type AvatarProps = {
|
|
1500
|
-
variant?: 'small' | 'medium' | 'smaller' | 'large';
|
|
1500
|
+
variant?: 'small' | 'medium' | 'smaller' | 'large' | 'xl';
|
|
1501
1501
|
round?: AvatarRoundVariants;
|
|
1502
1502
|
className?: string;
|
|
1503
1503
|
src?: string;
|
|
@@ -1518,6 +1518,7 @@ type ButtonProps = {
|
|
|
1518
1518
|
fill?: 'outline' | 'clear';
|
|
1519
1519
|
size?: 'default' | 'large' | 'small';
|
|
1520
1520
|
customSize?: 'smaller';
|
|
1521
|
+
withDefaultState?: boolean;
|
|
1521
1522
|
color?: undefined;
|
|
1522
1523
|
fullWidth?: boolean;
|
|
1523
1524
|
className?: string;
|
|
@@ -2263,7 +2264,7 @@ declare enum SelectItemType {
|
|
|
2263
2264
|
Checkbox = "checkbox",
|
|
2264
2265
|
Radio = "radio"
|
|
2265
2266
|
}
|
|
2266
|
-
type Props$
|
|
2267
|
+
type Props$9 = {
|
|
2267
2268
|
type: SelectItemType;
|
|
2268
2269
|
id: string;
|
|
2269
2270
|
label: string;
|
|
@@ -2272,7 +2273,7 @@ type Props$8 = {
|
|
|
2272
2273
|
checked: boolean;
|
|
2273
2274
|
onChange?: (value: string) => void;
|
|
2274
2275
|
};
|
|
2275
|
-
declare const CheckBoxItem: React__default.ForwardRefExoticComponent<Props$
|
|
2276
|
+
declare const CheckBoxItem: React__default.ForwardRefExoticComponent<Props$9 & React__default.RefAttributes<HTMLInputElement>>;
|
|
2276
2277
|
|
|
2277
2278
|
type FieldSearchType = {
|
|
2278
2279
|
className?: string;
|
|
@@ -2322,7 +2323,7 @@ type SelectionType$1 = {
|
|
|
2322
2323
|
value: any;
|
|
2323
2324
|
label: string;
|
|
2324
2325
|
};
|
|
2325
|
-
type Props$
|
|
2326
|
+
type Props$8 = {
|
|
2326
2327
|
height?: number | undefined;
|
|
2327
2328
|
selections: Record<string, SelectionType$1[]>;
|
|
2328
2329
|
defaults?: Record<string, string>;
|
|
@@ -2330,7 +2331,7 @@ type Props$7 = {
|
|
|
2330
2331
|
className?: string;
|
|
2331
2332
|
compareBy?: 'value' | 'label';
|
|
2332
2333
|
};
|
|
2333
|
-
declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, }: Props$
|
|
2334
|
+
declare const DrumListPicker: ({ height, selections, defaults, onChange, className, compareBy, }: Props$8) => JSX.Element;
|
|
2334
2335
|
|
|
2335
2336
|
type FontWeight = 'Regular' | 'Semi' | 'Bold';
|
|
2336
2337
|
type CollapsableTextProps = {
|
|
@@ -2354,7 +2355,7 @@ declare const TabItem: (props: ItemProps$1<unknown> & {
|
|
|
2354
2355
|
|
|
2355
2356
|
type SuperSpecialistProps = {
|
|
2356
2357
|
t?: WithTranslation['t'];
|
|
2357
|
-
variant?: 'default' | 'full';
|
|
2358
|
+
variant?: 'default' | 'full' | 'badge';
|
|
2358
2359
|
percent?: number;
|
|
2359
2360
|
onOpenArticle?(): void;
|
|
2360
2361
|
};
|
|
@@ -2367,15 +2368,15 @@ type MatchProgressProps = {
|
|
|
2367
2368
|
};
|
|
2368
2369
|
declare const _default$s: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
|
|
2369
2370
|
|
|
2370
|
-
interface Props$
|
|
2371
|
+
interface Props$7 {
|
|
2371
2372
|
className?: string;
|
|
2372
2373
|
title: string;
|
|
2373
2374
|
}
|
|
2374
|
-
declare const _default$r: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$
|
|
2375
|
+
declare const _default$r: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$7>>;
|
|
2375
2376
|
|
|
2376
2377
|
declare const _default$q: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
|
|
2377
2378
|
|
|
2378
|
-
type Props$
|
|
2379
|
+
type Props$6 = {
|
|
2379
2380
|
className?: string;
|
|
2380
2381
|
rating: number;
|
|
2381
2382
|
reviews: number;
|
|
@@ -2384,7 +2385,7 @@ type Props$5 = {
|
|
|
2384
2385
|
endAdornment?: React__default.ReactNode;
|
|
2385
2386
|
onClick?(): void;
|
|
2386
2387
|
};
|
|
2387
|
-
declare const ReviewsSummary: FC<Props$
|
|
2388
|
+
declare const ReviewsSummary: FC<Props$6>;
|
|
2388
2389
|
|
|
2389
2390
|
declare enum appThemes {
|
|
2390
2391
|
client = "client",
|
|
@@ -2406,6 +2407,19 @@ declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
|
2406
2407
|
t: TFunction<react_i18next.FallbackNs<Ns>, KPrefix>;
|
|
2407
2408
|
}) => JSX.Element | null;
|
|
2408
2409
|
|
|
2410
|
+
type VideoContextValue = {
|
|
2411
|
+
currentSrc: string | undefined;
|
|
2412
|
+
isPlaying: boolean;
|
|
2413
|
+
isLoaded: boolean;
|
|
2414
|
+
isLoading: boolean | undefined;
|
|
2415
|
+
playVideo(src: string): void;
|
|
2416
|
+
};
|
|
2417
|
+
type Props$5 = {
|
|
2418
|
+
children?: React__default.ReactNode;
|
|
2419
|
+
};
|
|
2420
|
+
declare const useVideoContext: () => VideoContextValue;
|
|
2421
|
+
declare const VideoProvider: React__default.FC<Props$5>;
|
|
2422
|
+
|
|
2409
2423
|
declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React$1.RefObject<T | null> | React$1.ForwardedRef<T | null>): React$1.RefObject<T>;
|
|
2410
2424
|
|
|
2411
2425
|
type AnyFunction = (...args: any[]) => any;
|
|
@@ -2921,7 +2935,7 @@ declare function PushNotificationsIsDisabledBanner({ onOpenNativeSettings, class
|
|
|
2921
2935
|
|
|
2922
2936
|
type SpecialistShortInfoItemFeatureProps = {
|
|
2923
2937
|
t?: WithTranslation['t'];
|
|
2924
|
-
match
|
|
2938
|
+
match?: number;
|
|
2925
2939
|
matchVariant?: 'badge' | 'avatar';
|
|
2926
2940
|
fullName: string;
|
|
2927
2941
|
avatarLink: string;
|
|
@@ -2934,22 +2948,21 @@ type SpecialistShortInfoItemFeatureProps = {
|
|
|
2934
2948
|
isSpecialistUnAvailable?: boolean;
|
|
2935
2949
|
isAuth?: boolean;
|
|
2936
2950
|
variantFullName?: TypographyVariantsEnum;
|
|
2951
|
+
isFavourite?: boolean;
|
|
2937
2952
|
onClickReview?(): void;
|
|
2953
|
+
onToggleFavourite?(): void;
|
|
2938
2954
|
};
|
|
2939
2955
|
declare const SpecialistShortInfoItemFeature: FC<SpecialistShortInfoItemFeatureProps>;
|
|
2940
2956
|
|
|
2941
2957
|
type SpecialistInfoColumnFeatureProps = {
|
|
2942
2958
|
t?: WithTranslation['t'];
|
|
2943
|
-
rating
|
|
2944
|
-
reviews
|
|
2945
|
-
yearsOfExperience
|
|
2959
|
+
rating?: number;
|
|
2960
|
+
reviews?: number;
|
|
2961
|
+
yearsOfExperience?: number;
|
|
2946
2962
|
hoursOfPractice?: number;
|
|
2947
2963
|
sessionPrice: number;
|
|
2948
|
-
isFavourite?: boolean;
|
|
2949
2964
|
sessionDurationMinutes: number;
|
|
2950
2965
|
currentPriceType: SupportedCurrency;
|
|
2951
|
-
onToggleFavourite?(): void;
|
|
2952
|
-
onCardClick?(): void;
|
|
2953
2966
|
};
|
|
2954
2967
|
declare const SpecialistInfoColumnFeature: FC<SpecialistInfoColumnFeatureProps>;
|
|
2955
2968
|
|
|
@@ -3322,19 +3335,11 @@ declare function getSignAgreementsTabs({ behavior, localeOrCountry, jsonTree, t,
|
|
|
3322
3335
|
type SpecialistCardWidgetProps = {
|
|
3323
3336
|
t?: WithTranslation['t'];
|
|
3324
3337
|
loading?: boolean;
|
|
3325
|
-
videoPlayer: {
|
|
3326
|
-
isMuted?: boolean;
|
|
3327
|
-
onMuteToggle?(): void;
|
|
3328
|
-
videoRef?(ref: HTMLVideoElement): void;
|
|
3329
|
-
onPlay?(src: string): void;
|
|
3330
|
-
};
|
|
3331
3338
|
specialist: Specialist;
|
|
3332
3339
|
isFavourite?: boolean;
|
|
3333
|
-
onChooseVisitTime(): void;
|
|
3334
3340
|
onToggleFavourite(): void;
|
|
3335
3341
|
onCardClick(): void;
|
|
3336
3342
|
currentUser?: UserType;
|
|
3337
|
-
isBookingLoading?: boolean;
|
|
3338
3343
|
};
|
|
3339
3344
|
|
|
3340
3345
|
declare const _default$3: React__default.NamedExoticComponent<SpecialistCardWidgetProps>;
|
|
@@ -3343,14 +3348,12 @@ type SpecialistCardListWidgetProps = {
|
|
|
3343
3348
|
t?: WithTranslation['t'];
|
|
3344
3349
|
specialists: Specialist[];
|
|
3345
3350
|
onToggleFavourite: (specialist: Specialist) => void;
|
|
3346
|
-
onChooseVisitTime: (specialist: Specialist) => void;
|
|
3347
3351
|
onVideoPlay?: (src: string) => void;
|
|
3348
3352
|
onRefreshClick?(): void;
|
|
3349
3353
|
onFavoriteClick?(): void;
|
|
3350
3354
|
onCardClick?(id: string): void;
|
|
3351
3355
|
isLoading?: boolean;
|
|
3352
3356
|
currentUser?: UserType;
|
|
3353
|
-
isBookingLoading?: boolean;
|
|
3354
3357
|
};
|
|
3355
3358
|
declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps>;
|
|
3356
3359
|
|
|
@@ -3395,4 +3398,4 @@ type SpecialistDetailWidgetProps = {
|
|
|
3395
3398
|
|
|
3396
3399
|
declare const _default: React__default.NamedExoticComponent<SpecialistDetailWidgetProps>;
|
|
3397
3400
|
|
|
3398
|
-
export { AcceptAgreementFeature, Action, _default$I as AlertCard, AppFooter, _default$H as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$G as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$C as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$j as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$Q as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$n as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$R as CustomCheckbox, CustomRadioButton, _default$S as CustomSelect, _default$T as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, _default$14 as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$N as Flag, FlagTypes, _default$E as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$y as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconRenew, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$u as Item, _default$B as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$O as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$r as ListItemWithColumns, _default$v as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$w as Loading, LouseConnect, _default$c as MarkdownContainerFeature, _default$s as MatchProgress, _default$1g as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$a as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$7 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$9 as OnBoardingMultiSelectionScreenPreviewFeature, _default$6 as OnBoardingProgressFeature, _default$5 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$8 as OnBoardingSingleSelectionScreenPreviewFeature, _default$b as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$i as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$k as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$D as Picture, _default$M as ProfileInformation, _default$Z as ProfileView, _default$P as ProgressBar, ProgressBarDashed, _default$x as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$z as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$h as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$f as ScreenDrumPickerFormFeature, ScreenInput, _default$g as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$d as SelectWithSearchFormFeature, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$q as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$F as Skeleton_v2, _default$p as SlotsGrid, _default$o as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$L as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$m as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$l as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, _default$19 as SpecialistProfileViewCard, SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$K as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$e as TextAreaFormFeature, _default$U as TextInput, _default$4 as TextWithClampFeature, _default$1b as Textarea, _default$A as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$J as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$t as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, formatByDigits, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|
|
3401
|
+
export { AcceptAgreementFeature, Action, _default$I as AlertCard, AppFooter, _default$H as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$G as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$C as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$j as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$Q as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, _default$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$n as ConsultationPricingFeature, _default$11 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$R as CustomCheckbox, CustomRadioButton, _default$S as CustomSelect, _default$T as CustomTextarea, DatePicker, _default$$ as DaySlider, DayToRender, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, _default$14 as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$N as Flag, FlagTypes, _default$E as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$y as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconRenew, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$u as Item, _default$B as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$O as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$r as ListItemWithColumns, _default$v as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$w as Loading, LouseConnect, _default$c as MarkdownContainerFeature, _default$s as MatchProgress, _default$1g as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$a as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$7 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$9 as OnBoardingMultiSelectionScreenPreviewFeature, _default$6 as OnBoardingProgressFeature, _default$5 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$8 as OnBoardingSingleSelectionScreenPreviewFeature, _default$b as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$i as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$k as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$D as Picture, _default$M as ProfileInformation, _default$Z as ProfileView, _default$P as ProgressBar, ProgressBarDashed, _default$x as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$z as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$h as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$f as ScreenDrumPickerFormFeature, ScreenInput, _default$g as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$d as SelectWithSearchFormFeature, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$q as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$F as Skeleton_v2, _default$p as SlotsGrid, _default$o as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$L as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$m as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$l as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, _default$19 as SpecialistProfileViewCard, SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$K as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$e as TextAreaFormFeature, _default$U as TextInput, _default$4 as TextWithClampFeature, _default$1b as Textarea, _default$A as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$J as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$t as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, formatByDigits, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useVideoContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindly/ui-components",
|
|
3
|
-
"version": "5.91.
|
|
3
|
+
"version": "5.91.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/polyfill": "7.12.1",
|
|
18
18
|
"@capacitor/clipboard": "6.0.1",
|
|
19
|
+
"@capacitor/haptics": "^6.0.1",
|
|
19
20
|
"@capacitor/share": "6.0.2",
|
|
20
21
|
"@fontsource/inter": "5.0.8",
|
|
21
22
|
"@fontsource/inter-tight": "5.0.12",
|
|
@@ -47,15 +48,16 @@
|
|
|
47
48
|
"peerDependencies": {
|
|
48
49
|
"@babel/polyfill": "7.12.1",
|
|
49
50
|
"@capacitor/core": "6.1.2",
|
|
51
|
+
"@capacitor/haptics": "^6.0.1",
|
|
50
52
|
"@fontsource/inter": "5.0.8",
|
|
51
53
|
"@fontsource/inter-tight": "5.0.12",
|
|
52
|
-
"@ionic/react": "6.
|
|
53
|
-
"@ionic/react-router": "6.
|
|
54
|
-
"luxon": "2.
|
|
54
|
+
"@ionic/react": "6.7.5",
|
|
55
|
+
"@ionic/react-router": "6.7.5",
|
|
56
|
+
"luxon": "2.5.2",
|
|
55
57
|
"react": "17.0.2",
|
|
56
58
|
"react-dom": "17.0.2",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
+
"react-i18next": "13.2.2",
|
|
60
|
+
"styled-components": "5.3.11"
|
|
59
61
|
},
|
|
60
62
|
"main": "dist/cjs/index.js",
|
|
61
63
|
"module": "dist/esm/index.js",
|