@mindly/ui-components 5.101.0 → 5.102.1

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 (36) hide show
  1. package/dist/cjs/configs/tailwind/colors.d.ts +1 -0
  2. package/dist/cjs/index.js +6 -6
  3. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingMultiSelectionScreenPreviewFeature/OnBoardingMultiSelectionScreenPreviewFeature.d.ts +2 -0
  4. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +2 -0
  5. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +2 -0
  6. package/dist/cjs/lib2/shared/assets/icons/IconCheckboxChecked.d.ts +1 -1
  7. package/dist/cjs/lib2/shared/assets/icons/IconRadioButtonChecked.d.ts +6 -2
  8. package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +4 -0
  9. package/dist/cjs/lib2/shared/ui/Button_v2/Button_v2.d.ts +2 -18
  10. package/dist/cjs/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -0
  11. package/dist/cjs/lib2/shared/ui/Button_v2/types.d.ts +19 -0
  12. package/dist/cjs/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
  13. package/dist/cjs/lib2/shared/ui/ListBox/types.d.ts +2 -0
  14. package/dist/cjs/lib2/shared/ui/ListBoxItem/constants.d.ts +2 -0
  15. package/dist/cjs/lib2/shared/ui/ListBoxItem/types.d.ts +3 -1
  16. package/dist/cjs/lib2/shared/ui/ProgressBar_v2/ProgressBar_v2.d.ts +1 -1
  17. package/dist/esm/configs/tailwind/colors.d.ts +1 -0
  18. package/dist/esm/index.js +6 -6
  19. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingMultiSelectionScreenPreviewFeature/OnBoardingMultiSelectionScreenPreviewFeature.d.ts +2 -0
  20. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingProgressFeature/OnBoardingProgressFeature.d.ts +2 -0
  21. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingSingleSelectionScreenPreviewFeature/OnBoardingSingleSelectionScreenPreviewFeature.d.ts +2 -0
  22. package/dist/esm/lib2/shared/assets/icons/IconCheckboxChecked.d.ts +1 -1
  23. package/dist/esm/lib2/shared/assets/icons/IconRadioButtonChecked.d.ts +6 -2
  24. package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +4 -0
  25. package/dist/esm/lib2/shared/ui/Button_v2/Button_v2.d.ts +2 -18
  26. package/dist/esm/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -0
  27. package/dist/esm/lib2/shared/ui/Button_v2/types.d.ts +19 -0
  28. package/dist/esm/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
  29. package/dist/esm/lib2/shared/ui/ListBox/types.d.ts +2 -0
  30. package/dist/esm/lib2/shared/ui/ListBoxItem/constants.d.ts +2 -0
  31. package/dist/esm/lib2/shared/ui/ListBoxItem/types.d.ts +3 -1
  32. package/dist/esm/lib2/shared/ui/ProgressBar_v2/ProgressBar_v2.d.ts +1 -1
  33. package/dist/index.d.ts +124 -108
  34. package/package.json +1 -1
  35. package/src/configs/tailwind/colors.ts +2 -0
  36. package/src/lib2/shared/css/tailwind.css +1 -0
package/dist/index.d.ts CHANGED
@@ -1125,13 +1125,15 @@ type ButtonProps$1 = {
1125
1125
  fullWidth?: boolean;
1126
1126
  className?: string;
1127
1127
  routerLink?: string;
1128
- onClick?: (e: React__default.MouseEvent<HTMLIonButtonElement>) => void;
1128
+ onClick?: (e: React.MouseEvent<HTMLIonButtonElement>) => void;
1129
1129
  isLoading?: boolean;
1130
- icon?: React__default.ReactNode;
1130
+ icon?: React.ReactNode;
1131
1131
  iconPosition?: 'start' | 'center';
1132
- style?: React__default.CSSProperties;
1132
+ style?: React.CSSProperties;
1133
1133
  id?: string;
1134
+ variant?: 'default' | 'blue';
1134
1135
  } & JSX$1.IonButton;
1136
+
1135
1137
  declare const Button_v2: FC<ButtonProps$1>;
1136
1138
 
1137
1139
  type ContainerProps = {
@@ -1382,7 +1384,7 @@ type SpecialistPaymentConsultationDetailsType = {
1382
1384
  onUserClick?: () => void;
1383
1385
  };
1384
1386
 
1385
- interface IconProps$B extends SVGAttributes<SVGElement> {
1387
+ interface IconProps$C extends SVGAttributes<SVGElement> {
1386
1388
  size?: number | string;
1387
1389
  width?: number | string;
1388
1390
  height?: number | string;
@@ -1638,6 +1640,10 @@ type OnBoardingFlowType = {
1638
1640
  duration_min?: number | null;
1639
1641
  isDefault?: boolean;
1640
1642
  };
1643
+ declare enum OnboardingVariant {
1644
+ default = "default",
1645
+ blue = "blue"
1646
+ }
1641
1647
 
1642
1648
  declare enum ContractStatusEnum {
1643
1649
  active = "active",
@@ -1892,15 +1898,17 @@ declare enum ListBoxSelectionType {
1892
1898
  Checkbox = "checkbox",
1893
1899
  Radio = "radio"
1894
1900
  }
1901
+ type VariantType = 'default' | 'blue';
1895
1902
  type ListBoxProps<T> = AriaListBoxProps<T> & {
1896
1903
  type?: `${ListBoxSelectionType}`;
1897
1904
  enableSelection?: boolean;
1898
- selectedIconProps?: IconProps$B;
1905
+ selectedIconProps?: IconProps$C;
1899
1906
  selectionPosition?: 'start' | 'end';
1900
1907
  className?: string;
1908
+ variant?: VariantType;
1901
1909
  };
1902
1910
 
1903
- declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, ...props }: ListBoxProps<T>): JSX.Element;
1911
+ declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, variant, ...props }: ListBoxProps<T>): JSX.Element;
1904
1912
 
1905
1913
  type ListOptionsProps = {
1906
1914
  item: Node<unknown>;
@@ -1908,21 +1916,23 @@ type ListOptionsProps = {
1908
1916
  icon?: React$1.ReactNode;
1909
1917
  divider?: boolean;
1910
1918
  value?: string;
1911
- selectedIconProps?: IconProps$B;
1919
+ selectedIconProps?: IconProps$C;
1912
1920
  type?: `${ListBoxSelectionType}`;
1913
1921
  selectionPosition?: 'start' | 'end';
1914
1922
  enableSelection?: boolean;
1923
+ variant?: VariantType;
1915
1924
  };
1916
1925
  type ListBoxItemProps = {
1917
1926
  icon?: React$1.ReactNode;
1918
1927
  type?: `${ListBoxSelectionType}`;
1919
- selectedIconProps?: IconProps$B;
1928
+ selectedIconProps?: IconProps$C;
1920
1929
  divider?: boolean;
1921
1930
  value?: string;
1922
1931
  children: React$1.ReactNode;
1923
1932
  className?: string;
1924
1933
  customContent?: boolean;
1925
1934
  onClick?: HTMLIonItemElement['onclick'];
1935
+ variant?: VariantType;
1926
1936
  };
1927
1937
 
1928
1938
  declare const ListOption: React$1.ForwardRefExoticComponent<ListOptionsProps & React$1.RefAttributes<HTMLIonItemElement>>;
@@ -2036,7 +2046,7 @@ declare const ModalSheet: React$1.ForwardRefExoticComponent<_ionic_core_dist_typ
2036
2046
  } & React$1.RefAttributes<HTMLIonModalElement>>;
2037
2047
 
2038
2048
  type ProgressBar_v2Props = {
2039
- variant?: 'default' | 'danger' | 'success' | 'dark' | 'light';
2049
+ variant?: 'default' | 'danger' | 'success' | 'dark' | 'light' | 'blue';
2040
2050
  progress: number;
2041
2051
  className?: string;
2042
2052
  reversed?: boolean;
@@ -2360,130 +2370,130 @@ declare const useDeepUpdateEffect: <T extends unknown[]>(effect: EffectCallback,
2360
2370
 
2361
2371
  declare function useIsKeyBoardShown(): boolean;
2362
2372
 
2373
+ interface IconProps$B extends React$1.SVGAttributes<SVGElement> {
2374
+ size?: number | string;
2375
+ color?: string;
2376
+ }
2377
+ declare function IconArrowLeft({ color, size, ...other }: IconProps$B): JSX.Element;
2378
+
2363
2379
  interface IconProps$A extends React$1.SVGAttributes<SVGElement> {
2364
2380
  size?: number | string;
2365
2381
  color?: string;
2366
2382
  }
2367
- declare function IconArrowLeft({ color, size, ...other }: IconProps$A): JSX.Element;
2383
+ declare function IconArrowRight({ color, size, ...other }: IconProps$A): JSX.Element;
2368
2384
 
2369
2385
  interface IconProps$z extends React$1.SVGAttributes<SVGElement> {
2370
2386
  size?: number | string;
2371
2387
  color?: string;
2372
2388
  }
2373
- declare function IconArrowRight({ color, size, ...other }: IconProps$z): JSX.Element;
2389
+ declare function IconBeachAccess({ color, size, ...other }: IconProps$z): JSX.Element;
2374
2390
 
2375
2391
  interface IconProps$y extends React$1.SVGAttributes<SVGElement> {
2376
2392
  size?: number | string;
2377
2393
  color?: string;
2378
2394
  }
2379
- declare function IconBeachAccess({ color, size, ...other }: IconProps$y): JSX.Element;
2395
+ declare function IconCalendar({ color, size, ...other }: IconProps$y): JSX.Element;
2396
+
2397
+ declare const IconCalendarNew: FC<IconProps$C>;
2380
2398
 
2381
2399
  interface IconProps$x extends React$1.SVGAttributes<SVGElement> {
2382
2400
  size?: number | string;
2383
2401
  color?: string;
2384
2402
  }
2385
- declare function IconCalendar({ color, size, ...other }: IconProps$x): JSX.Element;
2386
-
2387
- declare const IconCalendarNew: FC<IconProps$B>;
2403
+ declare function IconCalendarMonth({ color, size, ...other }: IconProps$x): JSX.Element;
2388
2404
 
2389
2405
  interface IconProps$w extends React$1.SVGAttributes<SVGElement> {
2390
2406
  size?: number | string;
2391
2407
  color?: string;
2392
2408
  }
2393
- declare function IconCalendarMonth({ color, size, ...other }: IconProps$w): JSX.Element;
2409
+ declare function IconChatOutline({ color, size, ...other }: IconProps$w): JSX.Element;
2394
2410
 
2395
2411
  interface IconProps$v extends React$1.SVGAttributes<SVGElement> {
2396
2412
  size?: number | string;
2397
2413
  color?: string;
2398
2414
  }
2399
- declare function IconChatOutline({ color, size, ...other }: IconProps$v): JSX.Element;
2415
+ declare const IconCheckboxChecked: ({ color, size, ...other }: IconProps$v) => JSX.Element;
2400
2416
 
2401
2417
  interface IconProps$u extends React$1.SVGAttributes<SVGElement> {
2402
2418
  size?: number | string;
2403
2419
  color?: string;
2404
2420
  }
2405
- declare function IconCheckboxChecked({ color, size, ...other }: IconProps$u): JSX.Element;
2421
+ declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$u): JSX.Element;
2422
+
2423
+ declare const IconClose: FC<React$1.SVGAttributes<SVGElement>>;
2406
2424
 
2407
2425
  interface IconProps$t extends React$1.SVGAttributes<SVGElement> {
2408
2426
  size?: number | string;
2409
2427
  color?: string;
2410
2428
  }
2411
- declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$t): JSX.Element;
2412
-
2413
- declare const IconClose: FC<React$1.SVGAttributes<SVGElement>>;
2429
+ declare function IconEditCalendar({ color, size, ...props }: IconProps$t): JSX.Element;
2414
2430
 
2415
2431
  interface IconProps$s extends React$1.SVGAttributes<SVGElement> {
2416
2432
  size?: number | string;
2417
2433
  color?: string;
2418
2434
  }
2419
- declare function IconEditCalendar({ color, size, ...props }: IconProps$s): JSX.Element;
2435
+ declare function IconInvisible({ color, size, ...other }: IconProps$s): JSX.Element;
2420
2436
 
2421
2437
  interface IconProps$r extends React$1.SVGAttributes<SVGElement> {
2422
2438
  size?: number | string;
2423
2439
  color?: string;
2424
2440
  }
2425
- declare function IconInvisible({ color, size, ...other }: IconProps$r): JSX.Element;
2441
+ declare function IconLanguage({ color, size, ...other }: IconProps$r): JSX.Element;
2442
+
2443
+ declare const IconLeftArrow: FC<React$1.SVGAttributes<SVGElement>>;
2426
2444
 
2427
2445
  interface IconProps$q extends React$1.SVGAttributes<SVGElement> {
2428
2446
  size?: number | string;
2429
2447
  color?: string;
2430
2448
  }
2431
- declare function IconLanguage({ color, size, ...other }: IconProps$q): JSX.Element;
2432
-
2433
- declare const IconLeftArrow: FC<React$1.SVGAttributes<SVGElement>>;
2449
+ declare function IconLogout({ color, size, ...other }: IconProps$q): JSX.Element;
2434
2450
 
2435
2451
  interface IconProps$p extends React$1.SVGAttributes<SVGElement> {
2436
2452
  size?: number | string;
2437
2453
  color?: string;
2438
2454
  }
2439
- declare function IconLogout({ color, size, ...other }: IconProps$p): JSX.Element;
2455
+ declare function IconPause({ color, size, ...other }: IconProps$p): JSX.Element;
2456
+
2457
+ declare function IconMinus({ color, size, ...other }: IconProps$C): JSX.Element;
2458
+
2459
+ type IconPlusProps = React$1.SVGProps<any>;
2460
+ declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
2440
2461
 
2441
2462
  interface IconProps$o extends React$1.SVGAttributes<SVGElement> {
2442
2463
  size?: number | string;
2443
2464
  color?: string;
2444
2465
  }
2445
- declare function IconPause({ color, size, ...other }: IconProps$o): JSX.Element;
2446
-
2447
- declare function IconMinus({ color, size, ...other }: IconProps$B): JSX.Element;
2448
-
2449
- type IconPlusProps = React$1.SVGProps<any>;
2450
- declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
2466
+ declare function IconProfileChecked({ color, size, ...other }: IconProps$o): JSX.Element;
2451
2467
 
2452
2468
  interface IconProps$n extends React$1.SVGAttributes<SVGElement> {
2453
2469
  size?: number | string;
2454
2470
  color?: string;
2455
2471
  }
2456
- declare function IconProfileChecked({ color, size, ...other }: IconProps$n): JSX.Element;
2472
+ declare function IconProfileCircle({ color, size, ...other }: IconProps$n): JSX.Element;
2457
2473
 
2458
2474
  interface IconProps$m extends React$1.SVGAttributes<SVGElement> {
2459
2475
  size?: number | string;
2460
2476
  color?: string;
2461
2477
  }
2462
- declare function IconProfileCircle({ color, size, ...other }: IconProps$m): JSX.Element;
2478
+ declare function IconProfileSetting({ color, size, ...other }: IconProps$m): JSX.Element;
2463
2479
 
2464
2480
  interface IconProps$l extends React$1.SVGAttributes<SVGElement> {
2465
2481
  size?: number | string;
2466
2482
  color?: string;
2467
2483
  }
2468
- declare function IconProfileSetting({ color, size, ...other }: IconProps$l): JSX.Element;
2484
+ declare function IconProfileUnderReview({ color, size, ...other }: IconProps$l): JSX.Element;
2469
2485
 
2470
2486
  interface IconProps$k extends React$1.SVGAttributes<SVGElement> {
2471
2487
  size?: number | string;
2472
2488
  color?: string;
2473
2489
  }
2474
- declare function IconProfileUnderReview({ color, size, ...other }: IconProps$k): JSX.Element;
2490
+ declare function IconResume({ color, size, ...other }: IconProps$k): JSX.Element;
2475
2491
 
2476
2492
  interface IconProps$j extends React$1.SVGAttributes<SVGElement> {
2477
2493
  size?: number | string;
2478
2494
  color?: string;
2479
2495
  }
2480
- declare function IconResume({ color, size, ...other }: IconProps$j): JSX.Element;
2481
-
2482
- interface IconProps$i extends React$1.SVGAttributes<SVGElement> {
2483
- size?: number | string;
2484
- color?: string;
2485
- }
2486
- declare function IconSettings({ color, size, ...other }: IconProps$i): JSX.Element;
2496
+ declare function IconSettings({ color, size, ...other }: IconProps$j): JSX.Element;
2487
2497
 
2488
2498
  declare const IconStar: FC<React$1.SVGAttributes<SVGElement>>;
2489
2499
 
@@ -2491,23 +2501,23 @@ declare const IconStarFilled: FC<React$1.SVGAttributes<SVGElement>>;
2491
2501
 
2492
2502
  declare const IconSuccess: FC<React$1.SVGAttributes<SVGElement>>;
2493
2503
 
2494
- interface IconProps$h extends React$1.SVGAttributes<SVGElement> {
2504
+ interface IconProps$i extends React$1.SVGAttributes<SVGElement> {
2495
2505
  size?: number | string;
2496
2506
  color?: string;
2497
2507
  }
2498
- declare function IconTime({ color, size, ...other }: IconProps$h): JSX.Element;
2508
+ declare function IconTime({ color, size, ...other }: IconProps$i): JSX.Element;
2499
2509
 
2500
- interface IconProps$g extends React$1.SVGAttributes<SVGElement> {
2510
+ interface IconProps$h extends React$1.SVGAttributes<SVGElement> {
2501
2511
  size?: number | string;
2502
2512
  color?: string;
2503
2513
  }
2504
- declare function IconVerifiedUser({ color, size, ...other }: IconProps$g): JSX.Element;
2514
+ declare function IconVerifiedUser({ color, size, ...other }: IconProps$h): JSX.Element;
2505
2515
 
2506
- interface IconProps$f extends React$1.SVGAttributes<SVGElement> {
2516
+ interface IconProps$g extends React$1.SVGAttributes<SVGElement> {
2507
2517
  size?: number | string;
2508
2518
  color?: string;
2509
2519
  }
2510
- declare function IconVisible({ color, size, ...other }: IconProps$f): JSX.Element;
2520
+ declare function IconVisible({ color, size, ...other }: IconProps$g): JSX.Element;
2511
2521
 
2512
2522
  declare const IconApple: FC<React$1.SVGAttributes<SVGElement>>;
2513
2523
 
@@ -2521,15 +2531,15 @@ declare const IconEye: FC<React$1.SVGAttributes<SVGElement>>;
2521
2531
 
2522
2532
  declare const IconEyeOff: FC<React$1.SVGAttributes<SVGElement>>;
2523
2533
 
2524
- interface IconProps$e extends React$1.SVGAttributes<SVGElement> {
2534
+ interface IconProps$f extends React$1.SVGAttributes<SVGElement> {
2525
2535
  size?: number | string;
2526
2536
  color?: string;
2527
2537
  }
2528
- declare function IconWarning({ color, size, ...other }: IconProps$e): JSX.Element;
2538
+ declare function IconWarning({ color, size, ...other }: IconProps$f): JSX.Element;
2529
2539
 
2530
2540
  declare const IconGift: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2531
2541
 
2532
- declare const IconGiftNew: FC<IconProps$B>;
2542
+ declare const IconGiftNew: FC<IconProps$C>;
2533
2543
 
2534
2544
  declare const IconCreditCard: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2535
2545
 
@@ -2545,49 +2555,49 @@ declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Ele
2545
2555
 
2546
2556
  declare const IconCheckSmall: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2547
2557
 
2548
- interface IconProps$d extends React$1.SVGAttributes<SVGElement> {
2558
+ interface IconProps$e extends React$1.SVGAttributes<SVGElement> {
2549
2559
  size?: number | string;
2550
2560
  color?: string;
2551
2561
  className?: string;
2552
2562
  style?: React$1.CSSProperties;
2553
2563
  }
2554
- declare function IconCheck({ color, size, ...other }: IconProps$d): JSX.Element;
2564
+ declare function IconCheck({ color, size, ...other }: IconProps$e): JSX.Element;
2555
2565
 
2556
- interface IconProps$c extends React$1.SVGAttributes<SVGElement> {
2566
+ interface IconProps$d extends React$1.SVGAttributes<SVGElement> {
2557
2567
  size?: number | string;
2558
2568
  color?: string;
2559
2569
  className?: string;
2560
2570
  style?: React$1.CSSProperties;
2561
2571
  }
2562
- declare const IconCapFilled: FC<IconProps$c>;
2572
+ declare const IconCapFilled: FC<IconProps$d>;
2563
2573
 
2564
- interface IconProps$b extends React$1.SVGAttributes<SVGElement> {
2574
+ interface IconProps$c extends React$1.SVGAttributes<SVGElement> {
2565
2575
  size?: number | string;
2566
2576
  color?: string;
2567
2577
  className?: string;
2568
2578
  style?: React$1.CSSProperties;
2569
2579
  }
2570
- declare function IconCancelRounded({ color, size, ...other }: IconProps$b): JSX.Element;
2580
+ declare function IconCancelRounded({ color, size, ...other }: IconProps$c): JSX.Element;
2571
2581
 
2572
- interface IconProps$a extends React$1.SVGAttributes<SVGElement> {
2582
+ interface IconProps$b extends React$1.SVGAttributes<SVGElement> {
2573
2583
  size?: number | string;
2574
2584
  color?: string;
2575
2585
  }
2576
- declare function IconMute({ color, size, ...other }: IconProps$a): JSX.Element;
2586
+ declare function IconMute({ color, size, ...other }: IconProps$b): JSX.Element;
2577
2587
 
2578
- interface IconProps$9 extends React$1.SVGAttributes<SVGElement> {
2588
+ interface IconProps$a extends React$1.SVGAttributes<SVGElement> {
2579
2589
  size?: number | string;
2580
2590
  color?: string;
2581
2591
  }
2582
- declare function IconUnmute({ color, size, ...other }: IconProps$9): JSX.Element;
2592
+ declare function IconUnmute({ color, size, ...other }: IconProps$a): JSX.Element;
2583
2593
 
2584
2594
  declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2585
2595
 
2586
- interface IconProps$8 extends React$1.SVGAttributes<SVGElement> {
2596
+ interface IconProps$9 extends React$1.SVGAttributes<SVGElement> {
2587
2597
  size?: number | string;
2588
2598
  color?: string;
2589
2599
  }
2590
- declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$8): JSX.Element;
2600
+ declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$9): JSX.Element;
2591
2601
 
2592
2602
  declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
2593
2603
 
@@ -2607,7 +2617,10 @@ declare const IconCalendarFilled: ({ width, height, color, ...props }: SVGProps<
2607
2617
 
2608
2618
  declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2609
2619
 
2610
- declare const IconRadioButtonChecked: (props: SVGProps<SVGSVGElement>) => JSX.Element;
2620
+ interface IconProps$8 extends React$1.SVGAttributes<SVGElement> {
2621
+ color?: string;
2622
+ }
2623
+ declare const IconRadioButtonChecked: ({ color, ...rest }: IconProps$8) => JSX.Element;
2611
2624
 
2612
2625
  interface IconProps$7 extends React$1.SVGAttributes<SVGElement> {
2613
2626
  size?: number | string;
@@ -2621,27 +2634,27 @@ interface IconProps$6 extends React$1.SVGAttributes<SVGElement> {
2621
2634
  }
2622
2635
  declare function IconLink({ size, ...props }: IconProps$6): JSX.Element;
2623
2636
 
2624
- declare const IconHome: FC<IconProps$B>;
2637
+ declare const IconHome: FC<IconProps$C>;
2625
2638
 
2626
- declare const IconEcgHeart: FC<IconProps$B>;
2639
+ declare const IconEcgHeart: FC<IconProps$C>;
2627
2640
 
2628
- declare const IconAddModerator: FC<IconProps$B>;
2641
+ declare const IconAddModerator: FC<IconProps$C>;
2629
2642
 
2630
- declare const IconQueryStats: FC<IconProps$B>;
2643
+ declare const IconQueryStats: FC<IconProps$C>;
2631
2644
 
2632
- declare const IconSchema: FC<IconProps$B>;
2645
+ declare const IconSchema: FC<IconProps$C>;
2633
2646
 
2634
- declare const IconPromocode: FC<IconProps$B>;
2647
+ declare const IconPromocode: FC<IconProps$C>;
2635
2648
 
2636
- declare const IconEventBusy: FC<IconProps$B>;
2649
+ declare const IconEventBusy: FC<IconProps$C>;
2637
2650
 
2638
- declare const IconDelete: FC<IconProps$B>;
2651
+ declare const IconDelete: FC<IconProps$C>;
2639
2652
 
2640
- declare const IconLock: FC<IconProps$B>;
2653
+ declare const IconLock: FC<IconProps$C>;
2641
2654
 
2642
- declare const IconEdit: FC<IconProps$B>;
2655
+ declare const IconEdit: FC<IconProps$C>;
2643
2656
 
2644
- declare const IconCopy: FC<IconProps$B>;
2657
+ declare const IconCopy: FC<IconProps$C>;
2645
2658
 
2646
2659
  interface IconProps$5 extends React$1.SVGAttributes<SVGElement> {
2647
2660
  size?: number | string;
@@ -2649,9 +2662,9 @@ interface IconProps$5 extends React$1.SVGAttributes<SVGElement> {
2649
2662
  }
2650
2663
  declare function IconTimeAdd({ color, size, ...other }: IconProps$5): JSX.Element;
2651
2664
 
2652
- declare const IconManageAccounts: FC<IconProps$B>;
2665
+ declare const IconManageAccounts: FC<IconProps$C>;
2653
2666
 
2654
- declare const IconSend: FC<IconProps$B>;
2667
+ declare const IconSend: FC<IconProps$C>;
2655
2668
 
2656
2669
  interface IconProps$4 extends React$1.SVGAttributes<SVGElement> {
2657
2670
  size?: number | string;
@@ -2679,9 +2692,9 @@ interface IconProps$1 extends React$1.SVGAttributes<SVGElement> {
2679
2692
  }
2680
2693
  declare function IconAttachMoney({ size, color, style, ...props }: IconProps$1): JSX.Element;
2681
2694
 
2682
- declare const IconArrowTopRight: FC<IconProps$B>;
2695
+ declare const IconArrowTopRight: FC<IconProps$C>;
2683
2696
 
2684
- declare const IconMoreVertical: FC<IconProps$B>;
2697
+ declare const IconMoreVertical: FC<IconProps$C>;
2685
2698
 
2686
2699
  interface IconProps extends React$1.SVGAttributes<SVGElement> {
2687
2700
  size?: number | string;
@@ -2689,57 +2702,57 @@ interface IconProps extends React$1.SVGAttributes<SVGElement> {
2689
2702
  }
2690
2703
  declare const IconStylus: FC<IconProps>;
2691
2704
 
2692
- declare const IconDocument: FC<IconProps$B>;
2705
+ declare const IconDocument: FC<IconProps$C>;
2693
2706
 
2694
- declare const IconPersonAlert: FC<IconProps$B>;
2707
+ declare const IconPersonAlert: FC<IconProps$C>;
2695
2708
 
2696
- declare const IconIdCard: FC<IconProps$B>;
2709
+ declare const IconIdCard: FC<IconProps$C>;
2697
2710
 
2698
- declare const IconProfile: FC<IconProps$B>;
2711
+ declare const IconProfile: FC<IconProps$C>;
2699
2712
 
2700
- declare const IconReceiptLong: FC<IconProps$B>;
2713
+ declare const IconReceiptLong: FC<IconProps$C>;
2701
2714
 
2702
- declare const IconInvoice: FC<IconProps$B>;
2715
+ declare const IconInvoice: FC<IconProps$C>;
2703
2716
 
2704
- declare const IconRenew: React$1.FC<IconProps$B>;
2717
+ declare const IconRenew: React$1.FC<IconProps$C>;
2705
2718
 
2706
- declare const IconDot: React$1.FC<IconProps$B>;
2719
+ declare const IconDot: React$1.FC<IconProps$C>;
2707
2720
 
2708
- declare const IconHeart: React$1.FC<IconProps$B>;
2721
+ declare const IconHeart: React$1.FC<IconProps$C>;
2709
2722
 
2710
- declare const IconMindly: React$1.FC<IconProps$B>;
2723
+ declare const IconMindly: React$1.FC<IconProps$C>;
2711
2724
 
2712
- declare const IconPlay: React$1.FC<IconProps$B>;
2725
+ declare const IconPlay: React$1.FC<IconProps$C>;
2713
2726
 
2714
- declare const IconStudyHat: React$1.FC<IconProps$B>;
2727
+ declare const IconStudyHat: React$1.FC<IconProps$C>;
2715
2728
 
2716
- declare const IconMindlyColored: React$1.FC<IconProps$B>;
2729
+ declare const IconMindlyColored: React$1.FC<IconProps$C>;
2717
2730
 
2718
- declare const IconUser: React$1.FC<IconProps$B>;
2731
+ declare const IconUser: React$1.FC<IconProps$C>;
2719
2732
 
2720
- declare const IconFilters: React$1.FC<IconProps$B>;
2733
+ declare const IconFilters: React$1.FC<IconProps$C>;
2721
2734
 
2722
- declare const IconEmptyList: React$1.FC<IconProps$B>;
2735
+ declare const IconEmptyList: React$1.FC<IconProps$C>;
2723
2736
 
2724
- declare const IconChat: React$1.FC<IconProps$B>;
2737
+ declare const IconChat: React$1.FC<IconProps$C>;
2725
2738
 
2726
- declare const IconMindlyMini: React$1.FC<IconProps$B>;
2739
+ declare const IconMindlyMini: React$1.FC<IconProps$C>;
2727
2740
 
2728
- declare const IconSchedule: React$1.FC<IconProps$B>;
2741
+ declare const IconSchedule: React$1.FC<IconProps$C>;
2729
2742
 
2730
- declare const IconContract: React$1.FC<IconProps$B>;
2743
+ declare const IconContract: React$1.FC<IconProps$C>;
2731
2744
 
2732
- declare const IconReceipt: React$1.FC<IconProps$B>;
2745
+ declare const IconReceipt: React$1.FC<IconProps$C>;
2733
2746
 
2734
- declare const IconCalendarWithDot: React$1.FC<IconProps$B>;
2747
+ declare const IconCalendarWithDot: React$1.FC<IconProps$C>;
2735
2748
 
2736
- declare const IconExperience: React$1.FC<IconProps$B>;
2749
+ declare const IconExperience: React$1.FC<IconProps$C>;
2737
2750
 
2738
- declare const IconSpecialistsEnded: React$1.FC<IconProps$B>;
2751
+ declare const IconSpecialistsEnded: React$1.FC<IconProps$C>;
2739
2752
 
2740
- declare const IconReviewSessionSubscription: React$1.FC<IconProps$B>;
2753
+ declare const IconReviewSessionSubscription: React$1.FC<IconProps$C>;
2741
2754
 
2742
- declare const IconReviewSessionTrial: React$1.FC<IconProps$B>;
2755
+ declare const IconReviewSessionTrial: React$1.FC<IconProps$C>;
2743
2756
 
2744
2757
  declare const formatByDigits: (value: number) => string;
2745
2758
  declare const roundToPrecision: (value: number, decimals?: number) => number;
@@ -3162,12 +3175,14 @@ declare const _default$m: React__default.NamedExoticComponent<OnBoardingInfoScre
3162
3175
  type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
3163
3176
  onChange?: (value: string[]) => void;
3164
3177
  defaultValues?: string[];
3178
+ variant?: OnboardingVariant;
3165
3179
  } & OnBoardingMultiSelectScreenType;
3166
3180
  declare const _default$l: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
3167
3181
 
3168
3182
  type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
3169
3183
  onChange?: (value: string) => void;
3170
3184
  defaultValues?: string[];
3185
+ variant?: OnboardingVariant;
3171
3186
  } & OnBoardingSingleSelectScreenType;
3172
3187
  declare const _default$k: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
3173
3188
 
@@ -3183,6 +3198,7 @@ type OnBoardingProgressFeatureProps = {
3183
3198
  onBackButtonClick?: () => void;
3184
3199
  contentStyle?: OnBoardingScreenStyleOptions;
3185
3200
  startAdornment?: React__default.ReactNode;
3201
+ variant?: OnboardingVariant;
3186
3202
  };
3187
3203
  declare const _default$j: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
3188
3204
 
@@ -4083,4 +4099,4 @@ type SessionPaymentsWidgetProps = {
4083
4099
 
4084
4100
  declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
4085
4101
 
4086
- export { AcceptAgreementFeature, Action, _default$U as AlertCard, AllowFilterValueType, AppFooter, _default$T as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$S as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$O as Badge, _default$X as BookingScheduleTime, _default$W as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$v as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$17 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$14 as ConsultationModal, _default$z as ConsultationPricingFeature, _default$12 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$10 as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$Y as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$15 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$Q as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$K as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$G as Item, _default$N as ItemCard, LabelArrowRedirect, LanguagesList, _default$1k as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$D as ListItemWithColumns, _default$H as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$I as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$o as MarkdownContainerFeature, _default$E as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, _default$g as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$h as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$m as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$l as OnBoardingMultiSelectionScreenPreviewFeature, _default$j as OnBoardingProgressFeature, _default$i as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$k as OnBoardingSingleSelectionScreenPreviewFeature, _default$n as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$u as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$w as PaymentSessionsList, _default$1j as PersonDateTimeCard, _default$P as Picture, _default$6 as ProfileInformation, _default$_ as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$J as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$L as Rating, RatingCircleWrapper, _default$11 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$t as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$r as ScreenDrumPickerFormFeature, ScreenInput, _default$s as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1i as SelectImpressionEmoji, SelectItemType, _default$p as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$C as ShowMore, _default$16 as SignUpSessionButton, _default$13 as SignUpSessionModal, SizeValues, Skeleton, _default$R as Skeleton_v2, _default$B as SlotsGrid, _default$A as SlotsGridItem, SolidInput, Specialist, _default$Z as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1b as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$x as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$1a as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$q as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1c as Textarea, _default$M as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$V as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as Video, _default$18 as VideoCallInfo, _default$19 as VideoPlayer, VideoProvider, _default$$ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
4102
+ export { AcceptAgreementFeature, Action, _default$U as AlertCard, AllowFilterValueType, AppFooter, _default$T as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$S as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$O as Badge, _default$X as BookingScheduleTime, _default$W as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$v as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$a as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$17 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$14 as ConsultationModal, _default$z as ConsultationPricingFeature, _default$12 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$b as CustomCheckbox, CustomRadioButton, _default$c as CustomSelect, _default$d as CustomTextarea, DatePicker, _default$10 as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$Y as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$15 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$Q as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$K as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelRounded, IconCapFilled, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconContract, IconCopy, IconCreditCard, IconDelete, IconDocument, IconDot, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGoogle, IconHeart, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlay, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$C as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$G as Item, _default$N as ItemCard, LabelArrowRedirect, LanguagesList, _default$1k as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$D as ListItemWithColumns, _default$H as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$I as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$o as MarkdownContainerFeature, _default$E as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReviewFeature, Modal, ModalCalendar, ModalSheet, NEAR_SESSION_TIME_SECONDS, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, _default$g as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$h as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, _default$m as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$l as OnBoardingMultiSelectionScreenPreviewFeature, _default$j as OnBoardingProgressFeature, _default$i as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$k as OnBoardingSingleSelectionScreenPreviewFeature, _default$n as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$u as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$w as PaymentSessionsList, _default$1j as PersonDateTimeCard, _default$P as Picture, _default$6 as ProfileInformation, _default$_ as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$J as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$L as Rating, RatingCircleWrapper, _default$11 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$t as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, _default$r as ScreenDrumPickerFormFeature, ScreenInput, _default$s as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1i as SelectImpressionEmoji, SelectItemType, _default$p as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$C as ShowMore, _default$16 as SignUpSessionButton, _default$13 as SignUpSessionModal, SizeValues, Skeleton, _default$R as Skeleton_v2, _default$B as SlotsGrid, _default$A as SlotsGridItem, SolidInput, Specialist, _default$Z as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistEducation, _default$1b as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$y as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$x as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$1a as SpecialistProfileViewCard, SpecialistReview$1 as SpecialistReview, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$4 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, TabsToolbarFeature, Tag, _default$q as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1c as Textarea, _default$M as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$V as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$F as Video, _default$18 as VideoCallInfo, _default$19 as VideoPlayer, VideoProvider, _default$$ as WorkDirections, YourLocalTimeBlock, appThemes, canManageSession, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useUpdateEffect, useVideoContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.101.0",
3
+ "version": "5.102.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",
@@ -43,6 +43,8 @@ export default {
43
43
  client: {
44
44
  celestialBlue:
45
45
  'rgba(var(--color-brand-client-celestial-blue) / <alpha-value>)',
46
+ celestialBlueDarker:
47
+ 'rgba(var(--color-brand-client-celestial-blue-darker) / <alpha-value>)',
46
48
  },
47
49
  },
48
50
  },
@@ -18,6 +18,7 @@
18
18
 
19
19
  --color-info-light-red-not-red: 255 231 224;
20
20
  --color-brand-client-celestial-blue: 2 156 238;
21
+ --color-brand-client-celestial-blue-darker: 2 136 209;
21
22
 
22
23
  /* badge variables start */
23
24
  /* badges attentions */