@mindly/ui-components 5.87.1 → 5.88.0

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.
@@ -3,3 +3,4 @@ export * from './use-event';
3
3
  export * from './useAutoFocus';
4
4
  export * from './useToastContext';
5
5
  export * from './useCircleRating';
6
+ export * from './useElementWidth';
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ export declare function useElementWidth<T extends HTMLElement>(): [
3
+ number | undefined,
4
+ React.RefObject<T>
5
+ ];
@@ -11,6 +11,8 @@ type PictureProps = {
11
11
  srcType: string;
12
12
  alt?: string;
13
13
  className?: string;
14
+ responsive?: boolean;
15
+ containerWidth?: number;
14
16
  };
15
17
  declare const _default: React.NamedExoticComponent<PictureProps>;
16
18
  export default _default;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import * as React from 'react';
1
+ /// <reference types="react" />
2
+ import * as React$1 from 'react';
2
3
  import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent, SVGAttributes, KeyboardEvent, InputHTMLAttributes, SVGProps, PropsWithChildren } from 'react';
3
4
  import { JSX as JSX$1 } from '@ionic/core/components';
4
5
  import * as react_i18next from 'react-i18next';
@@ -1539,26 +1540,28 @@ type PictureProps = {
1539
1540
  srcType: string;
1540
1541
  alt?: string;
1541
1542
  className?: string;
1543
+ responsive?: boolean;
1544
+ containerWidth?: number;
1542
1545
  };
1543
1546
  declare const _default$y: React__default.NamedExoticComponent<PictureProps>;
1544
1547
 
1545
1548
  type BadgeType = 'default' | 'accent';
1546
1549
  type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
1547
- type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
1550
+ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
1548
1551
  variant: BadgeVariants;
1549
1552
  size?: 'S' | 'M';
1550
1553
  type?: BadgeType;
1551
1554
  };
1552
1555
 
1553
- declare const _default$x: React.NamedExoticComponent<BadgeProps>;
1556
+ declare const _default$x: React$1.NamedExoticComponent<BadgeProps>;
1554
1557
 
1555
1558
  type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
1556
- type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
1559
+ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
1557
1560
  variant: ItemCardVariants;
1558
1561
  size?: 'M' | 'M4' | 'M45';
1559
1562
  };
1560
1563
 
1561
- declare const _default$w: React.NamedExoticComponent<ItemCardProps>;
1564
+ declare const _default$w: React$1.NamedExoticComponent<ItemCardProps>;
1562
1565
 
1563
1566
  type AppHeaderProps = {
1564
1567
  fullwidth?: boolean;
@@ -1917,7 +1920,7 @@ declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps,
1917
1920
  type ListOptionsProps = {
1918
1921
  item: Node<unknown>;
1919
1922
  state: ListState<unknown>;
1920
- icon?: React.ReactNode;
1923
+ icon?: React$1.ReactNode;
1921
1924
  divider?: boolean;
1922
1925
  value?: string;
1923
1926
  selectedIconProps?: IconProps$B;
@@ -1926,26 +1929,26 @@ type ListOptionsProps = {
1926
1929
  enableSelection?: boolean;
1927
1930
  };
1928
1931
  type ListBoxItemProps = {
1929
- icon?: React.ReactNode;
1932
+ icon?: React$1.ReactNode;
1930
1933
  type?: `${ListBoxSelectionType}`;
1931
1934
  selectedIconProps?: IconProps$B;
1932
1935
  divider?: boolean;
1933
1936
  value?: string;
1934
- children: React.ReactNode;
1937
+ children: React$1.ReactNode;
1935
1938
  className?: string;
1936
1939
  customContent?: boolean;
1937
1940
  onClick?: HTMLIonItemElement['onclick'];
1938
1941
  };
1939
1942
 
1940
- declare const ListOption: React.ForwardRefExoticComponent<ListOptionsProps & React.RefAttributes<HTMLIonItemElement>>;
1943
+ declare const ListOption: React$1.ForwardRefExoticComponent<ListOptionsProps & React$1.RefAttributes<HTMLIonItemElement>>;
1941
1944
  declare const ListBoxItem: (props: ItemProps$1<unknown> & ListBoxItemProps) => JSX.Element;
1942
1945
 
1943
1946
  type BaseTypeProps = {
1944
- onDatePress?: (date: string, evt: React.MouseEvent<HTMLButtonElement>) => void;
1947
+ onDatePress?: (date: string, evt: React$1.MouseEvent<HTMLButtonElement>) => void;
1945
1948
  locale: string;
1946
1949
  timeZone?: string;
1947
1950
  selectionMode?: SelectionMode;
1948
- renderCustomDateContent?: (date: string, formattedDate: string, isSelected: boolean, isToday: boolean) => React.ReactNode;
1951
+ renderCustomDateContent?: (date: string, formattedDate: string, isSelected: boolean, isToday: boolean) => React$1.ReactNode;
1949
1952
  };
1950
1953
  type CalendarProps = Omit<AriaCalendarProps<DateValue>, 'minValue' | 'defaultValue' | 'maxValue'> & BaseTypeProps & {
1951
1954
  minValue?: string;
@@ -2018,7 +2021,7 @@ interface ToastRegionProps<T> extends AriaToastRegionProps {
2018
2021
  state: ToastState<T>;
2019
2022
  }
2020
2023
 
2021
- declare function ToastRegion<T extends React.ReactNode>({ state, ...props }: ToastRegionProps<T>): JSX.Element;
2024
+ declare function ToastRegion<T extends React$1.ReactNode>({ state, ...props }: ToastRegionProps<T>): JSX.Element;
2022
2025
 
2023
2026
  interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
2024
2027
  variant?: 'default' | 'large';
@@ -2037,12 +2040,12 @@ type SpinnerProps = {
2037
2040
  };
2038
2041
  declare const Spinner_v2: FC<SpinnerProps>;
2039
2042
 
2040
- declare const ModalSheet: React.ForwardRefExoticComponent<_ionic_core_dist_types_components.JSX.IonModal & {
2041
- children?: React.ReactNode;
2043
+ declare const ModalSheet: React$1.ForwardRefExoticComponent<_ionic_core_dist_types_components.JSX.IonModal & {
2044
+ children?: React$1.ReactNode;
2042
2045
  } & {
2043
2046
  heightInPx?: number | undefined;
2044
2047
  className?: string | undefined;
2045
- } & React.RefAttributes<HTMLIonModalElement>>;
2048
+ } & React$1.RefAttributes<HTMLIonModalElement>>;
2046
2049
 
2047
2050
  type ProgressBar_v2Props = {
2048
2051
  variant?: 'default' | 'danger' | 'success' | 'dark' | 'light';
@@ -2059,14 +2062,14 @@ type LoadingProps = {
2059
2062
  };
2060
2063
  declare const _default$r: React__default.NamedExoticComponent<LoadingProps>;
2061
2064
 
2062
- type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
2065
+ type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
2063
2066
  withBorders?: boolean;
2064
2067
  };
2065
- declare const _default$q: React.NamedExoticComponent<ListItemsProps>;
2068
+ declare const _default$q: React$1.NamedExoticComponent<ListItemsProps>;
2066
2069
 
2067
- type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
2068
- leftContent?: React.ReactNode;
2069
- rightContent?: React.ReactNode;
2070
+ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
2071
+ leftContent?: React$1.ReactNode;
2072
+ rightContent?: React$1.ReactNode;
2070
2073
  innerItemClassName?: string;
2071
2074
  withBorders?: boolean;
2072
2075
  isDisabled?: boolean;
@@ -2074,7 +2077,7 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
2074
2077
  isError?: boolean;
2075
2078
  status?: 'error' | 'attention';
2076
2079
  };
2077
- declare const _default$p: React.NamedExoticComponent<ItemProps>;
2080
+ declare const _default$p: React$1.NamedExoticComponent<ItemProps>;
2078
2081
 
2079
2082
  type VideoProps = {
2080
2083
  src: string;
@@ -2114,7 +2117,7 @@ type FieldSearchType = {
2114
2117
  t?: WithTranslation['t'];
2115
2118
  };
2116
2119
 
2117
- declare const InputSearch: React.FC<FieldSearchType>;
2120
+ declare const InputSearch: React$1.FC<FieldSearchType>;
2118
2121
 
2119
2122
  type LabelArrowRedirectProps = {
2120
2123
  transparent?: boolean;
@@ -2191,8 +2194,8 @@ type ThemeProviderProps = {
2191
2194
 
2192
2195
  declare const ThemeProvider: FC<ThemeProviderProps>;
2193
2196
 
2194
- declare const ToastContext: React.Context<ToastState<MindlyToastProps> | undefined>;
2195
- declare function ToastProvider({ children, ...props }: React.PropsWithChildren<ToastProviderProps>): JSX.Element;
2197
+ declare const ToastContext: React$1.Context<ToastState<MindlyToastProps> | undefined>;
2198
+ declare function ToastProvider({ children, ...props }: React$1.PropsWithChildren<ToastProviderProps>): JSX.Element;
2196
2199
 
2197
2200
  declare const CircleRatingContext: React__default.Context<CircleRatingContextData>;
2198
2201
  declare const CircleRatingProvider: ({ children, data, t, }: {
@@ -2201,7 +2204,7 @@ declare const CircleRatingProvider: ({ children, data, t, }: {
2201
2204
  t: TFunction<react_i18next.FallbackNs<Ns>, KPrefix>;
2202
2205
  }) => JSX.Element | null;
2203
2206
 
2204
- declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React.RefObject<T | null> | React.ForwardedRef<T | null>): React.RefObject<T>;
2207
+ declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React$1.RefObject<T | null> | React$1.ForwardedRef<T | null>): React$1.RefObject<T>;
2205
2208
 
2206
2209
  type AnyFunction = (...args: any[]) => any;
2207
2210
  /**
@@ -2213,7 +2216,7 @@ type AnyFunction = (...args: any[]) => any;
2213
2216
  declare function useEvent<TCallback extends AnyFunction>(callback: TCallback): TCallback;
2214
2217
 
2215
2218
  type InputRefType = HTMLIonInputElement | HTMLIonTextareaElement;
2216
- declare function useAutoFocus<T extends InputRefType>(): React.RefObject<T>;
2219
+ declare function useAutoFocus<T extends InputRefType>(): React$1.RefObject<T>;
2217
2220
 
2218
2221
  declare function useToastContext(): ToastState<MindlyToastProps>;
2219
2222
 
@@ -2244,83 +2247,88 @@ declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
2244
2247
  }): number[];
2245
2248
  declare function useRatingContext(): CircleRatingContextData;
2246
2249
 
2247
- interface IconProps$A extends React.SVGAttributes<SVGElement> {
2250
+ declare function useElementWidth<T extends HTMLElement>(): [
2251
+ number | undefined,
2252
+ React.RefObject<T>
2253
+ ];
2254
+
2255
+ interface IconProps$A extends React$1.SVGAttributes<SVGElement> {
2248
2256
  size?: number | string;
2249
2257
  color?: string;
2250
2258
  }
2251
2259
  declare function IconArrowLeft({ color, size, ...other }: IconProps$A): JSX.Element;
2252
2260
 
2253
- interface IconProps$z extends React.SVGAttributes<SVGElement> {
2261
+ interface IconProps$z extends React$1.SVGAttributes<SVGElement> {
2254
2262
  size?: number | string;
2255
2263
  color?: string;
2256
2264
  }
2257
2265
  declare function IconArrowRight({ color, size, ...other }: IconProps$z): JSX.Element;
2258
2266
 
2259
- interface IconProps$y extends React.SVGAttributes<SVGElement> {
2267
+ interface IconProps$y extends React$1.SVGAttributes<SVGElement> {
2260
2268
  size?: number | string;
2261
2269
  color?: string;
2262
2270
  }
2263
2271
  declare function IconBeachAccess({ color, size, ...other }: IconProps$y): JSX.Element;
2264
2272
 
2265
- interface IconProps$x extends React.SVGAttributes<SVGElement> {
2273
+ interface IconProps$x extends React$1.SVGAttributes<SVGElement> {
2266
2274
  size?: number | string;
2267
2275
  color?: string;
2268
2276
  }
2269
2277
  declare function IconCalendar({ color, size, ...other }: IconProps$x): JSX.Element;
2270
2278
 
2271
- interface IconProps$w extends React.SVGAttributes<SVGElement> {
2279
+ interface IconProps$w extends React$1.SVGAttributes<SVGElement> {
2272
2280
  size?: number | string;
2273
2281
  color?: string;
2274
2282
  }
2275
2283
  declare function IconCalendarMonth({ color, size, ...other }: IconProps$w): JSX.Element;
2276
2284
 
2277
- interface IconProps$v extends React.SVGAttributes<SVGElement> {
2285
+ interface IconProps$v extends React$1.SVGAttributes<SVGElement> {
2278
2286
  size?: number | string;
2279
2287
  color?: string;
2280
2288
  }
2281
2289
  declare function IconChatOutline({ color, size, ...other }: IconProps$v): JSX.Element;
2282
2290
 
2283
- interface IconProps$u extends React.SVGAttributes<SVGElement> {
2291
+ interface IconProps$u extends React$1.SVGAttributes<SVGElement> {
2284
2292
  size?: number | string;
2285
2293
  color?: string;
2286
2294
  }
2287
2295
  declare function IconCheckboxChecked({ color, size, ...other }: IconProps$u): JSX.Element;
2288
2296
 
2289
- interface IconProps$t extends React.SVGAttributes<SVGElement> {
2297
+ interface IconProps$t extends React$1.SVGAttributes<SVGElement> {
2290
2298
  size?: number | string;
2291
2299
  color?: string;
2292
2300
  }
2293
2301
  declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$t): JSX.Element;
2294
2302
 
2295
- declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
2303
+ declare const IconClose: FC<React$1.SVGAttributes<SVGElement>>;
2296
2304
 
2297
- interface IconProps$s extends React.SVGAttributes<SVGElement> {
2305
+ interface IconProps$s extends React$1.SVGAttributes<SVGElement> {
2298
2306
  size?: number | string;
2299
2307
  color?: string;
2300
2308
  }
2301
2309
  declare function IconEditCalendar({ color, size, ...props }: IconProps$s): JSX.Element;
2302
2310
 
2303
- interface IconProps$r extends React.SVGAttributes<SVGElement> {
2311
+ interface IconProps$r extends React$1.SVGAttributes<SVGElement> {
2304
2312
  size?: number | string;
2305
2313
  color?: string;
2306
2314
  }
2307
2315
  declare function IconInvisible({ color, size, ...other }: IconProps$r): JSX.Element;
2308
2316
 
2309
- interface IconProps$q extends React.SVGAttributes<SVGElement> {
2317
+ interface IconProps$q extends React$1.SVGAttributes<SVGElement> {
2310
2318
  size?: number | string;
2311
2319
  color?: string;
2312
2320
  }
2313
2321
  declare function IconLanguage({ color, size, ...other }: IconProps$q): JSX.Element;
2314
2322
 
2315
- declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
2323
+ declare const IconLeftArrow: FC<React$1.SVGAttributes<SVGElement>>;
2316
2324
 
2317
- interface IconProps$p extends React.SVGAttributes<SVGElement> {
2325
+ interface IconProps$p extends React$1.SVGAttributes<SVGElement> {
2318
2326
  size?: number | string;
2319
2327
  color?: string;
2320
2328
  }
2321
2329
  declare function IconLogout({ color, size, ...other }: IconProps$p): JSX.Element;
2322
2330
 
2323
- interface IconProps$o extends React.SVGAttributes<SVGElement> {
2331
+ interface IconProps$o extends React$1.SVGAttributes<SVGElement> {
2324
2332
  size?: number | string;
2325
2333
  color?: string;
2326
2334
  }
@@ -2328,132 +2336,132 @@ declare function IconPause({ color, size, ...other }: IconProps$o): JSX.Element;
2328
2336
 
2329
2337
  declare function IconMinus({ color, size, ...other }: IconProps$B): JSX.Element;
2330
2338
 
2331
- type IconPlusProps = React.SVGProps<any>;
2339
+ type IconPlusProps = React$1.SVGProps<any>;
2332
2340
  declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
2333
2341
 
2334
- interface IconProps$n extends React.SVGAttributes<SVGElement> {
2342
+ interface IconProps$n extends React$1.SVGAttributes<SVGElement> {
2335
2343
  size?: number | string;
2336
2344
  color?: string;
2337
2345
  }
2338
2346
  declare function IconProfileChecked({ color, size, ...other }: IconProps$n): JSX.Element;
2339
2347
 
2340
- interface IconProps$m extends React.SVGAttributes<SVGElement> {
2348
+ interface IconProps$m extends React$1.SVGAttributes<SVGElement> {
2341
2349
  size?: number | string;
2342
2350
  color?: string;
2343
2351
  }
2344
2352
  declare function IconProfileCircle({ color, size, ...other }: IconProps$m): JSX.Element;
2345
2353
 
2346
- interface IconProps$l extends React.SVGAttributes<SVGElement> {
2354
+ interface IconProps$l extends React$1.SVGAttributes<SVGElement> {
2347
2355
  size?: number | string;
2348
2356
  color?: string;
2349
2357
  }
2350
2358
  declare function IconProfileSetting({ color, size, ...other }: IconProps$l): JSX.Element;
2351
2359
 
2352
- interface IconProps$k extends React.SVGAttributes<SVGElement> {
2360
+ interface IconProps$k extends React$1.SVGAttributes<SVGElement> {
2353
2361
  size?: number | string;
2354
2362
  color?: string;
2355
2363
  }
2356
2364
  declare function IconProfileUnderReview({ color, size, ...other }: IconProps$k): JSX.Element;
2357
2365
 
2358
- interface IconProps$j extends React.SVGAttributes<SVGElement> {
2366
+ interface IconProps$j extends React$1.SVGAttributes<SVGElement> {
2359
2367
  size?: number | string;
2360
2368
  color?: string;
2361
2369
  }
2362
2370
  declare function IconResume({ color, size, ...other }: IconProps$j): JSX.Element;
2363
2371
 
2364
- interface IconProps$i extends React.SVGAttributes<SVGElement> {
2372
+ interface IconProps$i extends React$1.SVGAttributes<SVGElement> {
2365
2373
  size?: number | string;
2366
2374
  color?: string;
2367
2375
  }
2368
2376
  declare function IconSettings({ color, size, ...other }: IconProps$i): JSX.Element;
2369
2377
 
2370
- declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
2378
+ declare const IconStar: FC<React$1.SVGAttributes<SVGElement>>;
2371
2379
 
2372
- declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
2380
+ declare const IconStarFilled: FC<React$1.SVGAttributes<SVGElement>>;
2373
2381
 
2374
- declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
2382
+ declare const IconSuccess: FC<React$1.SVGAttributes<SVGElement>>;
2375
2383
 
2376
- interface IconProps$h extends React.SVGAttributes<SVGElement> {
2384
+ interface IconProps$h extends React$1.SVGAttributes<SVGElement> {
2377
2385
  size?: number | string;
2378
2386
  color?: string;
2379
2387
  }
2380
2388
  declare function IconTime({ color, size, ...other }: IconProps$h): JSX.Element;
2381
2389
 
2382
- interface IconProps$g extends React.SVGAttributes<SVGElement> {
2390
+ interface IconProps$g extends React$1.SVGAttributes<SVGElement> {
2383
2391
  size?: number | string;
2384
2392
  color?: string;
2385
2393
  }
2386
2394
  declare function IconVerifiedUser({ color, size, ...other }: IconProps$g): JSX.Element;
2387
2395
 
2388
- interface IconProps$f extends React.SVGAttributes<SVGElement> {
2396
+ interface IconProps$f extends React$1.SVGAttributes<SVGElement> {
2389
2397
  size?: number | string;
2390
2398
  color?: string;
2391
2399
  }
2392
2400
  declare function IconVisible({ color, size, ...other }: IconProps$f): JSX.Element;
2393
2401
 
2394
- declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
2402
+ declare const IconApple: FC<React$1.SVGAttributes<SVGElement>>;
2395
2403
 
2396
- declare const IconGoogle: FC<React.SVGAttributes<SVGElement>>;
2404
+ declare const IconGoogle: FC<React$1.SVGAttributes<SVGElement>>;
2397
2405
 
2398
- declare const IconLetter: FC<React.SVGAttributes<SVGElement>>;
2406
+ declare const IconLetter: FC<React$1.SVGAttributes<SVGElement>>;
2399
2407
 
2400
- declare const IconSpinner: FC<React.SVGAttributes<SVGElement>>;
2408
+ declare const IconSpinner: FC<React$1.SVGAttributes<SVGElement>>;
2401
2409
 
2402
- declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
2410
+ declare const IconEye: FC<React$1.SVGAttributes<SVGElement>>;
2403
2411
 
2404
- declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
2412
+ declare const IconEyeOff: FC<React$1.SVGAttributes<SVGElement>>;
2405
2413
 
2406
- interface IconProps$e extends React.SVGAttributes<SVGElement> {
2414
+ interface IconProps$e extends React$1.SVGAttributes<SVGElement> {
2407
2415
  size?: number | string;
2408
2416
  color?: string;
2409
2417
  }
2410
2418
  declare function IconWarning({ color, size, ...other }: IconProps$e): JSX.Element;
2411
2419
 
2412
- declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
2420
+ declare const IconGift: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2413
2421
 
2414
- declare const IconCreditCard: React.FC<React.SVGAttributes<SVGElement>>;
2422
+ declare const IconCreditCard: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2415
2423
 
2416
- declare const IconQuestion: React.FC<React.SVGAttributes<SVGElement>>;
2424
+ declare const IconQuestion: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2417
2425
 
2418
- declare const IconPaper: React.FC<React.SVGAttributes<SVGElement>>;
2426
+ declare const IconPaper: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2419
2427
 
2420
2428
  declare const IconChat3d: (props: SVGProps<SVGSVGElement>) => JSX.Element;
2421
2429
 
2422
2430
  declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Element;
2423
2431
 
2424
- declare const IconCheckSmall: React.FC<React.SVGAttributes<SVGElement>>;
2432
+ declare const IconCheckSmall: React$1.FC<React$1.SVGAttributes<SVGElement>>;
2425
2433
 
2426
- interface IconProps$d extends React.SVGAttributes<SVGElement> {
2434
+ interface IconProps$d extends React$1.SVGAttributes<SVGElement> {
2427
2435
  size?: number | string;
2428
2436
  color?: string;
2429
2437
  className?: string;
2430
- style?: React.CSSProperties;
2438
+ style?: React$1.CSSProperties;
2431
2439
  }
2432
2440
  declare function IconCheck({ color, size, ...other }: IconProps$d): JSX.Element;
2433
2441
 
2434
- interface IconProps$c extends React.SVGAttributes<SVGElement> {
2442
+ interface IconProps$c extends React$1.SVGAttributes<SVGElement> {
2435
2443
  size?: number | string;
2436
2444
  color?: string;
2437
2445
  className?: string;
2438
- style?: React.CSSProperties;
2446
+ style?: React$1.CSSProperties;
2439
2447
  }
2440
2448
  declare const IconCapFilled: FC<IconProps$c>;
2441
2449
 
2442
- interface IconProps$b extends React.SVGAttributes<SVGElement> {
2450
+ interface IconProps$b extends React$1.SVGAttributes<SVGElement> {
2443
2451
  size?: number | string;
2444
2452
  color?: string;
2445
2453
  className?: string;
2446
- style?: React.CSSProperties;
2454
+ style?: React$1.CSSProperties;
2447
2455
  }
2448
2456
  declare function IconCancelRounded({ color, size, ...other }: IconProps$b): JSX.Element;
2449
2457
 
2450
- interface IconProps$a extends React.SVGAttributes<SVGElement> {
2458
+ interface IconProps$a extends React$1.SVGAttributes<SVGElement> {
2451
2459
  size?: number | string;
2452
2460
  color?: string;
2453
2461
  }
2454
2462
  declare function IconMute({ color, size, ...other }: IconProps$a): JSX.Element;
2455
2463
 
2456
- interface IconProps$9 extends React.SVGAttributes<SVGElement> {
2464
+ interface IconProps$9 extends React$1.SVGAttributes<SVGElement> {
2457
2465
  size?: number | string;
2458
2466
  color?: string;
2459
2467
  }
@@ -2461,7 +2469,7 @@ declare function IconUnmute({ color, size, ...other }: IconProps$9): JSX.Element
2461
2469
 
2462
2470
  declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
2463
2471
 
2464
- interface IconProps$8 extends React.SVGAttributes<SVGElement> {
2472
+ interface IconProps$8 extends React$1.SVGAttributes<SVGElement> {
2465
2473
  size?: number | string;
2466
2474
  color?: string;
2467
2475
  }
@@ -2487,13 +2495,13 @@ declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSV
2487
2495
 
2488
2496
  declare const IconRadioButtonChecked: (props: SVGProps<SVGSVGElement>) => JSX.Element;
2489
2497
 
2490
- interface IconProps$7 extends React.SVGAttributes<SVGElement> {
2498
+ interface IconProps$7 extends React$1.SVGAttributes<SVGElement> {
2491
2499
  size?: number | string;
2492
2500
  color?: string;
2493
2501
  }
2494
2502
  declare function IconShare({ size, ...props }: IconProps$7): JSX.Element;
2495
2503
 
2496
- interface IconProps$6 extends React.SVGAttributes<SVGElement> {
2504
+ interface IconProps$6 extends React$1.SVGAttributes<SVGElement> {
2497
2505
  size?: number | string;
2498
2506
  color?: string;
2499
2507
  }
@@ -2521,7 +2529,7 @@ declare const IconEdit: FC<IconProps$B>;
2521
2529
 
2522
2530
  declare const IconCopy: FC<IconProps$B>;
2523
2531
 
2524
- interface IconProps$5 extends React.SVGAttributes<SVGElement> {
2532
+ interface IconProps$5 extends React$1.SVGAttributes<SVGElement> {
2525
2533
  size?: number | string;
2526
2534
  color?: string;
2527
2535
  }
@@ -2531,27 +2539,27 @@ declare const IconManageAccounts: FC<IconProps$B>;
2531
2539
 
2532
2540
  declare const IconSend: FC<IconProps$B>;
2533
2541
 
2534
- interface IconProps$4 extends React.SVGAttributes<SVGElement> {
2542
+ interface IconProps$4 extends React$1.SVGAttributes<SVGElement> {
2535
2543
  size?: number | string;
2536
2544
  color?: string;
2537
2545
  }
2538
2546
  declare function IconGallery({ color, size, ...other }: IconProps$4): JSX.Element;
2539
2547
 
2540
- interface IconProps$3 extends React.SVGAttributes<SVGElement> {
2548
+ interface IconProps$3 extends React$1.SVGAttributes<SVGElement> {
2541
2549
  size?: number | string;
2542
2550
  color?: string;
2543
2551
  }
2544
2552
  declare function IconText({ color, size, ...other }: IconProps$3): JSX.Element;
2545
2553
 
2546
- interface IconProps$2 extends React.SVGAttributes<SVGElement> {
2554
+ interface IconProps$2 extends React$1.SVGAttributes<SVGElement> {
2547
2555
  size?: number | string;
2548
2556
  color?: string;
2549
2557
  className?: string;
2550
- style?: React.CSSProperties;
2558
+ style?: React$1.CSSProperties;
2551
2559
  }
2552
2560
  declare function IconCheckCircle({ color, size, ...props }: IconProps$2): JSX.Element;
2553
2561
 
2554
- interface IconProps$1 extends React.SVGAttributes<SVGElement> {
2562
+ interface IconProps$1 extends React$1.SVGAttributes<SVGElement> {
2555
2563
  size?: number | string;
2556
2564
  color?: string;
2557
2565
  }
@@ -2561,7 +2569,7 @@ declare const IconArrowTopRight: FC<IconProps$B>;
2561
2569
 
2562
2570
  declare const IconMoreVertical: FC<IconProps$B>;
2563
2571
 
2564
- interface IconProps extends React.SVGAttributes<SVGElement> {
2572
+ interface IconProps extends React$1.SVGAttributes<SVGElement> {
2565
2573
  size?: number | string;
2566
2574
  color?: string;
2567
2575
  }
@@ -2660,7 +2668,7 @@ type SlotsGridItemProps = {
2660
2668
 
2661
2669
  declare const _default$n: React__default.NamedExoticComponent<SlotsGridProps>;
2662
2670
 
2663
- declare const _default$m: React.NamedExoticComponent<SlotsGridItemProps>;
2671
+ declare const _default$m: React$1.NamedExoticComponent<SlotsGridItemProps>;
2664
2672
 
2665
2673
  type PushNotificationsModalProps = {
2666
2674
  onApplyPermission: () => void;
@@ -2676,7 +2684,7 @@ type PushNotificationsModalProps = {
2676
2684
  renderHeader?: (props: {
2677
2685
  backButton?: boolean;
2678
2686
  onClose: () => void;
2679
- }) => React.ReactNode;
2687
+ }) => React$1.ReactNode;
2680
2688
  };
2681
2689
 
2682
2690
  declare function PushNotificationsModal({ onApplyPermission, isOpen, title, description, image, applyPermissionText, ...props }: PushNotificationsModalProps): JSX.Element;
@@ -3078,4 +3086,4 @@ type UpdateContractWidgetProps = {
3078
3086
  };
3079
3087
  declare function UpdateContractWidget({ applyText, onApply, heading, image, avatar, agreementText, handlePressLink, isAccepted, setIsAccepted, isLoading, }: UpdateContractWidgetProps): JSX.Element;
3080
3088
 
3081
- export { AcceptAgreementFeature, Action, AppFooter, _default$C as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$B as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$x as Badge, _default$Q as BookingScheduleTime, _default$P as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$h as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$19 as ChatListItem, _default$17 as ChatListSkeleton, _default$18 as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$K as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, CollapsableText, ConditionRulesType, _default$10 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$Z as ConsultationModal, _default$l as ConsultationPricingFeature, _default$X as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$L as CustomCheckbox, CustomRadioButton, _default$M as CustomSelect, _default$N as CustomTextarea, DatePicker, _default$V as DaySlider, DayToRender, DrumListPicker, DynamicCommissionValue, _default$R as EducationCard, _default$16 as EmptyChatList, EmptyChatMessages, _default$_ as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$H as Flag, FlagTypes, _default$z as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$t as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$p as Item, _default$w as ItemCard, LabelArrowRedirect, LanguagesList, _default$1d as LetterAvatar, _default$I as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$q as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$r as Loading, LouseConnect, _default$a as MarkdownContainerFeature, _default$1a as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$8 as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$5 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$7 as OnBoardingMultiSelectionScreenPreviewFeature, _default$4 as OnBoardingProgressFeature, _default$3 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$6 as OnBoardingSingleSelectionScreenPreviewFeature, _default$9 as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$g as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$i as PaymentSessionsList, _default$1c as PersonDateTimeCard, _default$y as Picture, _default$G as ProfileInformation, _default$T as ProfileView, _default$J as ProgressBar, ProgressBarDashed, _default$s as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$u as Rating, RatingCircleWrapper, _default$W as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$f as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$d as ScreenDrumPickerFormFeature, ScreenInput, _default$e as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1b as SelectImpressionEmoji, SelectItemType, _default$b as SelectWithSearchFormFeature, ShareModalFeature, ShortCurrencySignByLocale, _default$$ as SignUpSessionButton, _default$Y as SignUpSessionModal, SizeValues, Skeleton, _default$A as Skeleton_v2, _default$n as SlotsGrid, _default$m as SlotsGridItem, _default$S as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$14 as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$F as SpecialistMatch, SpecialistPaymentCardProps, _default$k as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$j as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$1 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, _default$13 as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$E as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$c as TextAreaFormFeature, _default$O as TextInput, _default$15 as Textarea, _default$v as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$D as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$o as Video, _default$11 as VideoCallInfo, _default$12 as VideoPlayer, _default$U as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
3089
+ export { AcceptAgreementFeature, Action, AppFooter, _default$C as AppFooter_v2, AppHeader, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$B as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$x as Badge, _default$Q as BookingScheduleTime, _default$P as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$h as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$19 as ChatListItem, _default$17 as ChatListSkeleton, _default$18 as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$K as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, CollapsableText, ConditionRulesType, _default$10 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$Z as ConsultationModal, _default$l as ConsultationPricingFeature, _default$X as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentCard, ContentRendererProps, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$L as CustomCheckbox, CustomRadioButton, _default$M as CustomSelect, _default$N as CustomTextarea, DatePicker, _default$V as DaySlider, DayToRender, DrumListPicker, DynamicCommissionValue, _default$R as EducationCard, _default$16 as EmptyChatList, EmptyChatMessages, _default$_ as EmptyConsultations, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, _default$H as Flag, FlagTypes, _default$z as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$t as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCopy, IconCreditCard, IconDelete, IconDocument, IconEcgHeart, IconEdit, IconEditCalendar, IconEventBusy, IconEye, IconEyeOff, IconGallery, IconGift, IconGoogle, IconHome, IconIdCard, IconInvisible, IconInvoice, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconManageAccounts, IconMinus, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPersonAlert, IconPlus, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$B as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconReceiptLong, IconResume, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$p as Item, _default$w as ItemCard, LabelArrowRedirect, LanguagesList, _default$1d as LetterAvatar, _default$I as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$q as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$r as Loading, LouseConnect, _default$a as MarkdownContainerFeature, _default$1a as MediaPlayer, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$8 as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$5 as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$7 as OnBoardingMultiSelectionScreenPreviewFeature, _default$4 as OnBoardingProgressFeature, _default$3 as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$6 as OnBoardingSingleSelectionScreenPreviewFeature, _default$9 as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$g as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$i as PaymentSessionsList, _default$1c as PersonDateTimeCard, _default$y as Picture, _default$G as ProfileInformation, _default$T as ProfileView, _default$J as ProgressBar, ProgressBarDashed, _default$s as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$u as Rating, RatingCircleWrapper, _default$W as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$f as ReviewCardFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$d as ScreenDrumPickerFormFeature, ScreenInput, _default$e as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1b as SelectImpressionEmoji, SelectItemType, _default$b as SelectWithSearchFormFeature, ShareModalFeature, ShortCurrencySignByLocale, _default$$ as SignUpSessionButton, _default$Y as SignUpSessionModal, SizeValues, Skeleton, _default$A as Skeleton_v2, _default$n as SlotsGrid, _default$m as SlotsGridItem, _default$S as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default$2 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$14 as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$F as SpecialistMatch, SpecialistPaymentCardProps, _default$k as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$j as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$1 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, _default$13 as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$E as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabBar, TabItem, Tabs$1 as Tabs, Tag, _default$c as TextAreaFormFeature, _default$O as TextInput, _default$15 as Textarea, _default$v as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$D as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$o as Video, _default$11 as VideoCallInfo, _default$12 as VideoPlayer, _default$U as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getCountryKeyByName, getProgressForBreakPoint, getSignAgreementsTabs, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.87.1",
3
+ "version": "5.88.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",