@mindly/ui-components 7.3.0-dev.16 → 7.3.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.
Files changed (42) hide show
  1. package/dist/cjs/index.js +7 -7
  2. package/dist/cjs/lib2/features/ExploreCardSwiperFeature/ExploreCardSwiperFeature.d.ts +2 -2
  3. package/dist/cjs/lib2/features/ExploreCardSwiperFeature/index.d.ts +1 -1
  4. package/dist/cjs/lib2/features/ExploreCardSwiperFeature/types.d.ts +1 -13
  5. package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +0 -2
  6. package/dist/cjs/lib2/shared/ui/Badge/styles.d.ts +0 -7
  7. package/dist/cjs/lib2/shared/ui/Badge/types.d.ts +1 -1
  8. package/dist/cjs/lib2/shared/ui/ExploreCard/index.d.ts +1 -1
  9. package/dist/cjs/lib2/shared/ui/ExploreCard/types.d.ts +1 -1
  10. package/dist/cjs/lib2/shared/ui/PromptCard/types.d.ts +2 -2
  11. package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +0 -3
  12. package/dist/cjs/lib2/shared/ui/SolidInput/types.d.ts +0 -2
  13. package/dist/cjs/lib2/shared/ui/index.d.ts +0 -2
  14. package/dist/esm/index.js +8 -8
  15. package/dist/esm/lib2/features/ExploreCardSwiperFeature/ExploreCardSwiperFeature.d.ts +2 -2
  16. package/dist/esm/lib2/features/ExploreCardSwiperFeature/index.d.ts +1 -1
  17. package/dist/esm/lib2/features/ExploreCardSwiperFeature/types.d.ts +1 -13
  18. package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +0 -2
  19. package/dist/esm/lib2/shared/ui/Badge/styles.d.ts +0 -7
  20. package/dist/esm/lib2/shared/ui/Badge/types.d.ts +1 -1
  21. package/dist/esm/lib2/shared/ui/ExploreCard/index.d.ts +1 -1
  22. package/dist/esm/lib2/shared/ui/ExploreCard/types.d.ts +1 -1
  23. package/dist/esm/lib2/shared/ui/PromptCard/types.d.ts +2 -2
  24. package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +0 -3
  25. package/dist/esm/lib2/shared/ui/SolidInput/types.d.ts +0 -2
  26. package/dist/esm/lib2/shared/ui/index.d.ts +0 -2
  27. package/dist/index.d.ts +30 -77
  28. package/package.json +2 -3
  29. package/dist/cjs/lib2/features/ExploreCardSwiperFeature/useSlidesToShow.d.ts +0 -1
  30. package/dist/cjs/lib2/shared/ui/ProgressCard/ProgressCard.d.ts +0 -4
  31. package/dist/cjs/lib2/shared/ui/ProgressCard/index.d.ts +0 -2
  32. package/dist/cjs/lib2/shared/ui/ProgressCard/styles.d.ts +0 -1
  33. package/dist/cjs/lib2/shared/ui/ProgressCard/types.d.ts +0 -11
  34. package/dist/cjs/lib2/shared/ui/SimpleTabs/SimpleTabs.d.ts +0 -14
  35. package/dist/cjs/lib2/shared/ui/SimpleTabs/index.d.ts +0 -3
  36. package/dist/esm/lib2/features/ExploreCardSwiperFeature/useSlidesToShow.d.ts +0 -1
  37. package/dist/esm/lib2/shared/ui/ProgressCard/ProgressCard.d.ts +0 -4
  38. package/dist/esm/lib2/shared/ui/ProgressCard/index.d.ts +0 -2
  39. package/dist/esm/lib2/shared/ui/ProgressCard/styles.d.ts +0 -1
  40. package/dist/esm/lib2/shared/ui/ProgressCard/types.d.ts +0 -11
  41. package/dist/esm/lib2/shared/ui/SimpleTabs/SimpleTabs.d.ts +0 -14
  42. package/dist/esm/lib2/shared/ui/SimpleTabs/index.d.ts +0 -3
@@ -2,5 +2,5 @@ import * as React from 'react';
2
2
  import { ExploreCardSwiperFeatureProps } from './types';
3
3
  import 'slick-carousel/slick/slick.css';
4
4
  import 'slick-carousel/slick/slick-theme.css';
5
- declare const ExploreCardSwiperFeature: React.ForwardRefExoticComponent<ExploreCardSwiperFeatureProps & React.RefAttributes<HTMLDivElement>>;
6
- export default ExploreCardSwiperFeature;
5
+ declare const _default: React.NamedExoticComponent<ExploreCardSwiperFeatureProps>;
6
+ export default _default;
@@ -1,2 +1,2 @@
1
- export { default as ExploreCardSwiperFeature } from './ExploreCardSwiperFeature';
1
+ export * from './ExploreCardSwiperFeature';
2
2
  export * from './types';
@@ -5,22 +5,10 @@ export interface ExploreCardData {
5
5
  badgeText?: string;
6
6
  badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
7
7
  placeholder?: string;
8
- isProgressState?: boolean;
9
- currentMessageCount?: number;
10
- requiredMessageCount?: number;
11
8
  }
12
9
  export interface ExploreCardSwiperFeatureProps {
13
10
  cards?: ExploreCardData[];
14
11
  className?: string;
15
- onInputClicked: (cardId?: string) => void;
12
+ onCardSendMessage?: (cardId: string, message: string) => void;
16
13
  isLoading?: boolean;
17
- slidesToShow?: number;
18
- progressImage: string;
19
- progressPlaceholder: string;
20
- progressSentCount: number;
21
- progressNeededCount: number;
22
- progressTitle: string;
23
- progressDescription: string;
24
- progressCircleText: string;
25
- showProgress: boolean;
26
14
  }
@@ -11,7 +11,6 @@ export type CircleRatingContent = {
11
11
  text?: string;
12
12
  isPercentage?: boolean;
13
13
  showIcon?: boolean;
14
- hideValue?: boolean;
15
14
  };
16
15
  export type CircleRatingDataProps = {
17
16
  progress: number;
@@ -72,7 +71,6 @@ export type CircleRatingComponentProps = {
72
71
  isWithAnimation?: boolean;
73
72
  isPrimaryColor?: boolean;
74
73
  isProgressWithAnimation?: boolean;
75
- isWhiteBackgroundStroke?: boolean;
76
74
  className?: string;
77
75
  onProgressEnd?: () => void;
78
76
  };
@@ -7,7 +7,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
7
7
  success: "";
8
8
  brand: "";
9
9
  info: "";
10
- personalized: "";
11
10
  };
12
11
  size: {
13
12
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -26,7 +25,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
26
25
  success: "";
27
26
  brand: "";
28
27
  info: "";
29
- personalized: "";
30
28
  };
31
29
  size: {
32
30
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -45,7 +43,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
45
43
  success: "";
46
44
  brand: "";
47
45
  info: "";
48
- personalized: "";
49
46
  };
50
47
  size: {
51
48
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -64,7 +61,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
64
61
  success: "";
65
62
  brand: "";
66
63
  info: "";
67
- personalized: "";
68
64
  };
69
65
  size: {
70
66
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -83,7 +79,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
83
79
  success: "";
84
80
  brand: "";
85
81
  info: "";
86
- personalized: "";
87
82
  };
88
83
  size: {
89
84
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -102,7 +97,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
102
97
  success: "";
103
98
  brand: "";
104
99
  info: "";
105
- personalized: "";
106
100
  };
107
101
  size: {
108
102
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -121,7 +115,6 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
121
115
  success: "";
122
116
  brand: "";
123
117
  info: "";
124
- personalized: "";
125
118
  };
126
119
  size: {
127
120
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  export type BadgeType = 'default' | 'accent';
3
- export type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info' | 'personalized';
3
+ export type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
4
4
  export type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
5
5
  variant: BadgeVariants;
6
6
  size?: 'S' | 'M';
@@ -1,2 +1,2 @@
1
- export { default as ExploreCard } from './ExploreCard';
1
+ export * from './ExploreCard';
2
2
  export * from './types';
@@ -4,6 +4,6 @@ export interface ExploreCardProps {
4
4
  badgeText?: string;
5
5
  badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
6
6
  placeholder?: string;
7
- onInputClicked?: () => void;
7
+ onSendMessage?: (message: string) => void;
8
8
  className?: string;
9
9
  }
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
2
  export type PromptCardProps = React.ComponentPropsWithoutRef<'div'> & {
3
- title?: string;
4
- description?: string;
3
+ title: string;
4
+ description: string;
5
5
  badgeText?: string;
6
6
  onStartConversation?: () => void;
7
7
  isLoading?: boolean;
@@ -39,7 +39,6 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
39
39
  breakPoint: string;
40
40
  defaultStroke: string;
41
41
  coloredStroke: string;
42
- whiteStroke: string;
43
42
  icon: string;
44
43
  contentWrapper: string;
45
44
  contentColor: string;
@@ -159,7 +158,6 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
159
158
  breakPoint: string;
160
159
  defaultStroke: string;
161
160
  coloredStroke: string;
162
- whiteStroke: string;
163
161
  icon: string;
164
162
  contentWrapper: string;
165
163
  contentColor: string;
@@ -205,7 +203,6 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
205
203
  breakPoint: string;
206
204
  defaultStroke: string;
207
205
  coloredStroke: string;
208
- whiteStroke: string;
209
206
  icon: string;
210
207
  contentWrapper: string;
211
208
  contentColor: string;
@@ -17,6 +17,4 @@ export type SolidInputProps = {
17
17
  onButtonClick?: () => void;
18
18
  onChange?: (event: IonInputCustomEvent<InputChangeEventDetail>) => void;
19
19
  onKeyDown?: KeyboardEventHandler;
20
- readonly?: boolean;
21
- onClick?: () => void;
22
20
  };
@@ -34,7 +34,6 @@ export * from './ProgressBarDashed';
34
34
  export * from './DrumListPicker';
35
35
  export * from './CollapsableText';
36
36
  export * from './Tabs';
37
- export * from './SimpleTabs';
38
37
  export * from './AlertCard';
39
38
  export * from './SuperSpecialist';
40
39
  export * from './MatchProgress';
@@ -49,4 +48,3 @@ export * from './SolidInput';
49
48
  export * from './Counter';
50
49
  export * from './PromptCard';
51
50
  export * from './ExploreCard';
52
- export * from './ProgressCard';
package/dist/index.d.ts CHANGED
@@ -80,7 +80,7 @@ type LetterAvatarProps = {
80
80
  fontSize?: number;
81
81
  onClick?: () => void;
82
82
  };
83
- declare const _default$1k: React__default.NamedExoticComponent<LetterAvatarProps>;
83
+ declare const _default$1i: React__default.NamedExoticComponent<LetterAvatarProps>;
84
84
 
85
85
  type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
86
86
  onErrorContent: React__default.ReactElement;
@@ -179,7 +179,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
179
179
  showControls: boolean;
180
180
  isScreenSharing?: boolean;
181
181
  } & HTMLAttributes<HTMLDivElement>;
182
- declare const _default$1j: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
182
+ declare const _default$1h: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
183
183
 
184
184
  type RoundButtonPropsType = {
185
185
  disabled?: boolean;
@@ -273,7 +273,7 @@ type VideoPlayerProps = {
273
273
  closeModalHandler?: () => void;
274
274
  onErrorContent: React__default.ReactElement;
275
275
  } & JSX$1.IonModal;
276
- declare const _default$1i: React__default.NamedExoticComponent<VideoPlayerProps>;
276
+ declare const _default$1g: React__default.NamedExoticComponent<VideoPlayerProps>;
277
277
 
278
278
  type NotSupportModalProps = {
279
279
  closeModal?: () => void;
@@ -339,7 +339,7 @@ type TypographyProps = {
339
339
  id?: string;
340
340
  };
341
341
 
342
- declare const _default$1h: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
342
+ declare const _default$1f: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
343
343
 
344
344
  type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
345
345
  type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
@@ -355,7 +355,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
355
355
  };
356
356
  };
357
357
 
358
- declare const _default$1g: React$1.NamedExoticComponent<AlertCardProps>;
358
+ declare const _default$1e: React$1.NamedExoticComponent<AlertCardProps>;
359
359
 
360
360
  type AppFooterProps = {
361
361
  children?: React__default.ReactNode;
@@ -366,7 +366,7 @@ type AppFooterProps = {
366
366
  toolbarStyle?: CSSProperties;
367
367
  className?: string;
368
368
  };
369
- declare const _default$1f: React__default.NamedExoticComponent<AppFooterProps>;
369
+ declare const _default$1d: React__default.NamedExoticComponent<AppFooterProps>;
370
370
 
371
371
  type AvatarRoundVariants = 'circle' | 'drop' | 'small';
372
372
 
@@ -381,14 +381,14 @@ type AvatarProps = {
381
381
  onClick?(e: React__default.MouseEvent<HTMLDivElement>): void;
382
382
  border?: boolean | string;
383
383
  };
384
- declare const _default$1e: React__default.NamedExoticComponent<AvatarProps>;
384
+ declare const _default$1c: React__default.NamedExoticComponent<AvatarProps>;
385
385
 
386
386
  type SkeletonProps = {
387
387
  animated?: boolean;
388
388
  className?: string;
389
389
  style?: React__default.CSSProperties;
390
390
  };
391
- declare const _default$1d: React__default.NamedExoticComponent<SkeletonProps>;
391
+ declare const _default$1b: React__default.NamedExoticComponent<SkeletonProps>;
392
392
 
393
393
  declare enum CircleRatingSize {
394
394
  'S' = "S",
@@ -402,7 +402,6 @@ type CircleRatingContent = {
402
402
  text?: string;
403
403
  isPercentage?: boolean;
404
404
  showIcon?: boolean;
405
- hideValue?: boolean;
406
405
  };
407
406
  type CircleRatingDataProps = {
408
407
  progress: number;
@@ -463,7 +462,6 @@ type CircleRatingComponentProps = {
463
462
  isWithAnimation?: boolean;
464
463
  isPrimaryColor?: boolean;
465
464
  isProgressWithAnimation?: boolean;
466
- isWhiteBackgroundStroke?: boolean;
467
465
  className?: string;
468
466
  onProgressEnd?: () => void;
469
467
  };
@@ -1372,7 +1370,7 @@ type FlagProps$1 = {
1372
1370
  name: string;
1373
1371
  className?: string;
1374
1372
  };
1375
- declare const _default$1c: React__default.NamedExoticComponent<FlagProps$1>;
1373
+ declare const _default$1a: React__default.NamedExoticComponent<FlagProps$1>;
1376
1374
 
1377
1375
  type PictureProps = {
1378
1376
  width: number;
@@ -1390,10 +1388,10 @@ type PictureProps = {
1390
1388
  containerWidth?: number;
1391
1389
  imageClassName?: string;
1392
1390
  };
1393
- declare const _default$1b: React__default.NamedExoticComponent<PictureProps>;
1391
+ declare const _default$19: React__default.NamedExoticComponent<PictureProps>;
1394
1392
 
1395
1393
  type BadgeType = 'default' | 'accent';
1396
- type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info' | 'personalized';
1394
+ type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
1397
1395
  type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
1398
1396
  variant: BadgeVariants;
1399
1397
  size?: 'S' | 'M';
@@ -1401,7 +1399,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
1401
1399
  iconType?: 'check' | React$1.ReactNode;
1402
1400
  };
1403
1401
 
1404
- declare const _default$1a: React$1.NamedExoticComponent<BadgeProps>;
1402
+ declare const _default$18: React$1.NamedExoticComponent<BadgeProps>;
1405
1403
 
1406
1404
  type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
1407
1405
  type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
@@ -1409,7 +1407,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
1409
1407
  size?: 'M' | 'M4' | 'M45';
1410
1408
  };
1411
1409
 
1412
- declare const _default$19: React$1.NamedExoticComponent<ItemCardProps>;
1410
+ declare const _default$17: React$1.NamedExoticComponent<ItemCardProps>;
1413
1411
 
1414
1412
  type AppHeaderProps = {
1415
1413
  fullwidth?: boolean;
@@ -1529,7 +1527,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
1529
1527
  onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
1530
1528
  }
1531
1529
 
1532
- declare const _default$18: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1530
+ declare const _default$16: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1533
1531
 
1534
1532
  type RatingProps = {
1535
1533
  initialRating?: number;
@@ -1542,7 +1540,7 @@ type RatingProps = {
1542
1540
  readonly?: boolean;
1543
1541
  } & RatingComponentProps;
1544
1542
 
1545
- declare const _default$17: React__default.NamedExoticComponent<RatingProps>;
1543
+ declare const _default$15: React__default.NamedExoticComponent<RatingProps>;
1546
1544
 
1547
1545
  declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
1548
1546
  t: WithTranslation['t'] | any;
@@ -1556,7 +1554,7 @@ type IconButtonProps = {
1556
1554
  fill?: 'clear' | 'filled';
1557
1555
  type?: 'button' | 'submit' | 'reset';
1558
1556
  };
1559
- declare const _default$16: React__default.NamedExoticComponent<IconButtonProps>;
1557
+ declare const _default$14: React__default.NamedExoticComponent<IconButtonProps>;
1560
1558
 
1561
1559
  type ToastProviderProps = ToastStateProps;
1562
1560
  type MindlyToastProps = {
@@ -1603,17 +1601,17 @@ type ProgressBar_v2Props = {
1603
1601
  onProgressEnd?: () => void;
1604
1602
  style?: CSSVarStyles;
1605
1603
  };
1606
- declare const _default$15: React__default.NamedExoticComponent<ProgressBar_v2Props>;
1604
+ declare const _default$13: React__default.NamedExoticComponent<ProgressBar_v2Props>;
1607
1605
 
1608
1606
  type LoadingProps = {
1609
1607
  isOpen: boolean;
1610
1608
  };
1611
- declare const _default$14: React__default.NamedExoticComponent<LoadingProps>;
1609
+ declare const _default$12: React__default.NamedExoticComponent<LoadingProps>;
1612
1610
 
1613
1611
  type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
1614
1612
  withBorders?: boolean;
1615
1613
  };
1616
- declare const _default$13: React$1.NamedExoticComponent<ListItemsProps>;
1614
+ declare const _default$11: React$1.NamedExoticComponent<ListItemsProps>;
1617
1615
 
1618
1616
  type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
1619
1617
  leftContent?: React$1.ReactNode;
@@ -1625,7 +1623,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
1625
1623
  isError?: boolean;
1626
1624
  status?: 'error' | 'attention';
1627
1625
  };
1628
- declare const _default$12: React$1.NamedExoticComponent<ItemProps>;
1626
+ declare const _default$10: React$1.NamedExoticComponent<ItemProps>;
1629
1627
 
1630
1628
  declare enum VariantEnum {
1631
1629
  default = "default",
@@ -1655,7 +1653,7 @@ type VideoMethods = {
1655
1653
  play(): void;
1656
1654
  };
1657
1655
  type VideoRef = HTMLVideoElement | VideoMethods;
1658
- declare const _default$11: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
1656
+ declare const _default$$: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
1659
1657
  children?: React__default.ReactNode;
1660
1658
  } & React__default.RefAttributes<VideoRef>>>;
1661
1659
 
@@ -1759,19 +1757,6 @@ declare const TabItem: (props: ItemProps$1<unknown> & {
1759
1757
  textTransform?: 'uppercase' | 'capitalize' | 'lowercase' | 'none';
1760
1758
  }) => JSX.Element;
1761
1759
 
1762
- type SimpleTabsProps = {
1763
- tabs: {
1764
- id: string;
1765
- title: string;
1766
- content: React__default.ReactNode;
1767
- }[];
1768
- className?: string;
1769
- fullWidth?: boolean;
1770
- defaultActiveTab?: string;
1771
- onTabChange?(tabId: string): void;
1772
- };
1773
- declare const SimpleTabs: React__default.FC<SimpleTabsProps>;
1774
-
1775
1760
  type SuperSpecialistProps = {
1776
1761
  t?: WithTranslation['t'];
1777
1762
  variant?: 'default' | 'full' | 'badge';
@@ -1786,15 +1771,15 @@ type MatchProgressProps = {
1786
1771
  className?: string;
1787
1772
  percentMatch: number;
1788
1773
  };
1789
- declare const _default$10: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
1774
+ declare const _default$_: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
1790
1775
 
1791
1776
  interface Props$8 {
1792
1777
  className?: string;
1793
1778
  title: string;
1794
1779
  }
1795
- declare const _default$$: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
1780
+ declare const _default$Z: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
1796
1781
 
1797
- declare const _default$_: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
1782
+ declare const _default$Y: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
1798
1783
 
1799
1784
  type Props$7 = {
1800
1785
  className?: string;
@@ -1855,8 +1840,6 @@ type SolidInputProps = {
1855
1840
  onButtonClick?: () => void;
1856
1841
  onChange?: (event: IonInputCustomEvent<InputChangeEventDetail>) => void;
1857
1842
  onKeyDown?: KeyboardEventHandler;
1858
- readonly?: boolean;
1859
- onClick?: () => void;
1860
1843
  };
1861
1844
 
1862
1845
  declare const SolidInput: React__default.ForwardRefExoticComponent<SolidInputProps & React__default.RefAttributes<HTMLIonInputElement>>;
@@ -1870,14 +1853,14 @@ type CounterProps = {
1870
1853
  declare const Counter: React__default.FC<CounterProps>;
1871
1854
 
1872
1855
  type PromptCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
1873
- title?: string;
1874
- description?: string;
1856
+ title: string;
1857
+ description: string;
1875
1858
  badgeText?: string;
1876
1859
  onStartConversation?: () => void;
1877
1860
  isLoading?: boolean;
1878
1861
  };
1879
1862
 
1880
- declare const _default$Z: React$1.NamedExoticComponent<PromptCardProps>;
1863
+ declare const _default$X: React$1.NamedExoticComponent<PromptCardProps>;
1881
1864
 
1882
1865
  interface ExploreCardProps {
1883
1866
  title: string;
@@ -1885,26 +1868,10 @@ interface ExploreCardProps {
1885
1868
  badgeText?: string;
1886
1869
  badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
1887
1870
  placeholder?: string;
1888
- onInputClicked?: () => void;
1871
+ onSendMessage?: (message: string) => void;
1889
1872
  className?: string;
1890
1873
  }
1891
1874
 
1892
- declare const _default$Y: React$1.NamedExoticComponent<ExploreCardProps>;
1893
-
1894
- interface ProgressCardProps {
1895
- title: string;
1896
- description: string;
1897
- currentMessageCount: number;
1898
- requiredMessageCount: number;
1899
- className?: string;
1900
- loadingImage: string;
1901
- placeholder: string;
1902
- circleText: string;
1903
- onInputClicked?: () => void;
1904
- }
1905
-
1906
- declare const _default$X: React$1.NamedExoticComponent<ProgressCardProps>;
1907
-
1908
1875
  declare enum appThemes {
1909
1876
  client = "client",
1910
1877
  specialist = "specialist"
@@ -3560,28 +3527,14 @@ interface ExploreCardData {
3560
3527
  badgeText?: string;
3561
3528
  badgeVariant?: 'success' | 'info' | 'attention' | 'warning' | 'neutral' | 'brand';
3562
3529
  placeholder?: string;
3563
- isProgressState?: boolean;
3564
- currentMessageCount?: number;
3565
- requiredMessageCount?: number;
3566
3530
  }
3567
3531
  interface ExploreCardSwiperFeatureProps {
3568
3532
  cards?: ExploreCardData[];
3569
3533
  className?: string;
3570
- onInputClicked: (cardId?: string) => void;
3534
+ onCardSendMessage?: (cardId: string, message: string) => void;
3571
3535
  isLoading?: boolean;
3572
- slidesToShow?: number;
3573
- progressImage: string;
3574
- progressPlaceholder: string;
3575
- progressSentCount: number;
3576
- progressNeededCount: number;
3577
- progressTitle: string;
3578
- progressDescription: string;
3579
- progressCircleText: string;
3580
- showProgress: boolean;
3581
3536
  }
3582
3537
 
3583
- declare const ExploreCardSwiperFeature: React$1.ForwardRefExoticComponent<ExploreCardSwiperFeatureProps & React$1.RefAttributes<HTMLDivElement>>;
3584
-
3585
3538
  type SupportedCountryLocale = string;
3586
3539
  type Tabs = {
3587
3540
  behavior: 'tax-country' | 'profile-lang';
@@ -4739,4 +4692,4 @@ type RowSelectProps = {
4739
4692
 
4740
4693
  declare const RowSelect: FC<RowSelectProps>;
4741
4694
 
4742
- export { AcceptAgreementFeature, Action, _default$1g as AlertCard, AllowFilterValueType, AppFooter, _default$1f as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1e as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$1a as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, _default$Y as ExploreCard, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeature, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1c as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$16 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, IconCouple, IconCreditCard, IconDelete, IconDivercity, 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$12 as Item, _default$19 as ItemCard, LabelArrowRedirect, _default$1k as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$$ as ListItemWithColumns, _default$13 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$14 as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$10 as MatchProgress, _default$1j as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$1b as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$15 as ProgressBar_v2, _default$X as ProgressCard, ProgressCardProps, ProgressRangeProps, _default$Z as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$17 as Rating, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$O 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$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$_ as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SimpleTabs, SimpleTabsProps, SizeValues, Skeleton, _default$1d as Skeleton_v2, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$18 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1h as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$11 as Video, _default$p as VideoCallInfo, _default$1i as VideoPlayer, VideoProvider, _default$g 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, payoutPriceNormalize, 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 };
4695
+ export { AcceptAgreementFeature, Action, _default$1e as AlertCard, AllowFilterValueType, AppFooter, _default$1d as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AuthContext, AuthProvider, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$1c as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$18 as Badge, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, CSSVarStyles, Calendar, _default$Q as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$U as ConsultationPricingFeature, _default$j as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, Counter, CounterProps, CountryOfOriginModal, CoupleTherapySheetModalFeature, CoupleTherapySheetModalFeatureProps, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, Divider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$d as EducationCard, EmptyChatModalFeature, _default$m as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, ExploreCardData, ExploreCardProps, ExploreCardSwiperFeatureProps, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$3 as Flag, FlagTypes, _default$1a as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconArrowUp, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$14 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, IconCouple, IconCreditCard, IconDelete, IconDivercity, 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$10 as Item, _default$17 as ItemCard, LabelArrowRedirect, _default$1i as LetterAvatar, _default$4 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$Z as ListItemWithColumns, _default$11 as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$12 as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$J as MarkdownContainerFeature, _default$_ as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingAreasOfWorkSelectScreenType, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$B as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$C as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGoalSelectScreenType, _default$A as OnBoardingGoalSelectionScreenPreviewFeature, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$H as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$G as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$E as OnBoardingProgressFeature, OnBoardingProgressSettingsScreenType, _default$D as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenProgressType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenSubgoalButtonType, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$F as OnBoardingSingleSelectionScreenPreviewFeature, OnBoardingSpecializationSelectScreenType, _default$I as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnBoardingThemeV2Type, OnboardingProgressTemplate, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$P as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$R as PaymentSessionsList, PayoutCurrencySignByLocale, PayoutShortCurrencySignByLocale, _default$19 as Picture, PoweredByStripeFeature, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, ProgressBarDashed, _default$13 as ProgressBar_v2, ProgressRangeProps, _default$X as PromptCard, PromptCardData, PromptCardProps, _default$x as PromptCardsFeature, PromptCardsFeatureProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$15 as Rating, RatingCircleWrapper, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$O 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$M as ScreenDrumPickerFormFeature, ScreenInput, _default$N as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$K as SelectWithSearchFormFeature, _default$y as SelectionListFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$Y as ShowMore, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, SizeValues, Skeleton, _default$1b as Skeleton_v2, _default$W as SlotsGrid, _default$V as SlotsGridItem, SolidInput, Sort, SortDirection, SortKey, SortValue, Specialist, _default$e as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$w as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default$q as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$t as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$r as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$1 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$T as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$S as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$u as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$v as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$s as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SupportedLocales, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$L as TextAreaFormFeature, _default$a as TextInput, _default$z as TextWithClampFeature, _default$16 as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$1f as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$$ as Video, _default$p as VideoCallInfo, _default$1g as VideoPlayer, VideoProvider, _default$g 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, payoutPriceNormalize, 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": "7.3.0-dev.16",
3
+ "version": "7.3.0-dev.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",
@@ -16,7 +16,6 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@babel/polyfill": "7.12.1",
19
- "@capacitor/core": "7.4.1",
20
19
  "@capacitor/app": "7.0.1",
21
20
  "@capacitor/clipboard": "7.0.1",
22
21
  "@capacitor/haptics": "7.0.1",
@@ -44,7 +43,7 @@
44
43
  "react-mobile-picker": "1.0.0",
45
44
  "react-photo-view": "1.2.4",
46
45
  "react-rating": "2.0.5",
47
- "react-slick": "^0.31.0",
46
+ "react-slick": "^0.30.3",
48
47
  "react-stately": "3.24.0",
49
48
  "recharts": "^2.15.4",
50
49
  "slick-carousel": "^1.8.1",
@@ -1 +0,0 @@
1
- export declare function useSlidesToShow(): number;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- import { ProgressCardProps } from './types';
3
- declare const _default: React.NamedExoticComponent<ProgressCardProps>;
4
- export default _default;
@@ -1,2 +0,0 @@
1
- export { default as ProgressCard } from './ProgressCard';
2
- export type { ProgressCardProps } from './types';
@@ -1 +0,0 @@
1
- export declare const progressCardStyles: import("tailwind-variants").TVReturnType<{}, undefined, "bg-color-background-anti-flash-light flex flex-col items-center justify-between pb-7 pt-10 px-7 size-full rounded-[20px] h-full", import("tailwind-variants/dist/config").TVConfig<{}, {}>, {}, undefined, import("tailwind-variants").TVReturnType<{}, undefined, "bg-color-background-anti-flash-light flex flex-col items-center justify-between pb-7 pt-10 px-7 size-full rounded-[20px] h-full", import("tailwind-variants/dist/config").TVConfig<{}, {}>, unknown, unknown, undefined>>;
@@ -1,11 +0,0 @@
1
- export interface ProgressCardProps {
2
- title: string;
3
- description: string;
4
- currentMessageCount: number;
5
- requiredMessageCount: number;
6
- className?: string;
7
- loadingImage: string;
8
- placeholder: string;
9
- circleText: string;
10
- onInputClicked?: () => void;
11
- }
@@ -1,14 +0,0 @@
1
- import React from 'react';
2
- export type SimpleTabsProps = {
3
- tabs: {
4
- id: string;
5
- title: string;
6
- content: React.ReactNode;
7
- }[];
8
- className?: string;
9
- fullWidth?: boolean;
10
- defaultActiveTab?: string;
11
- onTabChange?(tabId: string): void;
12
- };
13
- export declare const SimpleTabs: React.FC<SimpleTabsProps>;
14
- export default SimpleTabs;
@@ -1,3 +0,0 @@
1
- export { SimpleTabs } from './SimpleTabs';
2
- export { default } from './SimpleTabs';
3
- export type { SimpleTabsProps } from './SimpleTabs';
@@ -1 +0,0 @@
1
- export declare function useSlidesToShow(): number;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- import { ProgressCardProps } from './types';
3
- declare const _default: React.NamedExoticComponent<ProgressCardProps>;
4
- export default _default;
@@ -1,2 +0,0 @@
1
- export { default as ProgressCard } from './ProgressCard';
2
- export type { ProgressCardProps } from './types';