@mindly/ui-components 5.95.5 → 5.96.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.
Files changed (60) hide show
  1. package/dist/cjs/index.js +6 -6
  2. package/dist/cjs/lib2/features/FilterFeature/FilterBooleanFeature.d.ts +7 -0
  3. package/dist/cjs/lib2/features/FilterFeature/FilterChipsFeature.d.ts +10 -0
  4. package/dist/cjs/lib2/features/FilterFeature/FilterFeature.d.ts +19 -0
  5. package/dist/cjs/lib2/features/FilterFeature/FilterLabelFeature.d.ts +3 -0
  6. package/dist/cjs/lib2/features/FilterFeature/FilterRangeFeature.d.ts +15 -0
  7. package/dist/cjs/lib2/features/FilterFeature/FilterSelectFeature.d.ts +8 -0
  8. package/dist/cjs/lib2/features/FilterFeature/index.d.ts +2 -0
  9. package/dist/cjs/lib2/features/FilterFeature/styles.d.ts +52 -0
  10. package/dist/cjs/lib2/features/FilterFeature/types.d.ts +15 -0
  11. package/dist/cjs/lib2/features/index.d.ts +1 -0
  12. package/dist/cjs/lib2/shared/assets/icons/IconFilters.d.ts +3 -0
  13. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
  14. package/dist/cjs/lib2/shared/hooks/index.d.ts +3 -0
  15. package/dist/cjs/lib2/shared/hooks/useDeepCompareEffect.d.ts +1 -0
  16. package/dist/cjs/lib2/shared/hooks/useDeepUpdateEffect.d.ts +2 -0
  17. package/dist/cjs/lib2/shared/hooks/useUpdateEffect.d.ts +2 -0
  18. package/dist/cjs/lib2/shared/types/common.d.ts +5 -0
  19. package/dist/cjs/lib2/shared/types/filter.d.ts +8 -0
  20. package/dist/cjs/lib2/shared/types/index.d.ts +1 -0
  21. package/dist/cjs/lib2/shared/types/specialistTypes.d.ts +2 -0
  22. package/dist/cjs/lib2/shared/utils/filter.d.ts +5 -0
  23. package/dist/cjs/lib2/shared/utils/index.d.ts +1 -0
  24. package/dist/cjs/lib2/widgets/FiltersWidget/FiltersWidget.d.ts +4 -0
  25. package/dist/cjs/lib2/widgets/FiltersWidget/FiltersWidget.styles.d.ts +3 -0
  26. package/dist/cjs/lib2/widgets/FiltersWidget/FiltersWidgetSkeleton.d.ts +3 -0
  27. package/dist/cjs/lib2/widgets/FiltersWidget/index.d.ts +2 -0
  28. package/dist/cjs/lib2/widgets/FiltersWidget/types.d.ts +45 -0
  29. package/dist/cjs/lib2/widgets/index.d.ts +1 -0
  30. package/dist/esm/index.js +6 -6
  31. package/dist/esm/lib2/features/FilterFeature/FilterBooleanFeature.d.ts +7 -0
  32. package/dist/esm/lib2/features/FilterFeature/FilterChipsFeature.d.ts +10 -0
  33. package/dist/esm/lib2/features/FilterFeature/FilterFeature.d.ts +19 -0
  34. package/dist/esm/lib2/features/FilterFeature/FilterLabelFeature.d.ts +3 -0
  35. package/dist/esm/lib2/features/FilterFeature/FilterRangeFeature.d.ts +15 -0
  36. package/dist/esm/lib2/features/FilterFeature/FilterSelectFeature.d.ts +8 -0
  37. package/dist/esm/lib2/features/FilterFeature/index.d.ts +2 -0
  38. package/dist/esm/lib2/features/FilterFeature/styles.d.ts +52 -0
  39. package/dist/esm/lib2/features/FilterFeature/types.d.ts +15 -0
  40. package/dist/esm/lib2/features/index.d.ts +1 -0
  41. package/dist/esm/lib2/shared/assets/icons/IconFilters.d.ts +3 -0
  42. package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
  43. package/dist/esm/lib2/shared/hooks/index.d.ts +3 -0
  44. package/dist/esm/lib2/shared/hooks/useDeepCompareEffect.d.ts +1 -0
  45. package/dist/esm/lib2/shared/hooks/useDeepUpdateEffect.d.ts +2 -0
  46. package/dist/esm/lib2/shared/hooks/useUpdateEffect.d.ts +2 -0
  47. package/dist/esm/lib2/shared/types/common.d.ts +5 -0
  48. package/dist/esm/lib2/shared/types/filter.d.ts +8 -0
  49. package/dist/esm/lib2/shared/types/index.d.ts +1 -0
  50. package/dist/esm/lib2/shared/types/specialistTypes.d.ts +2 -0
  51. package/dist/esm/lib2/shared/utils/filter.d.ts +5 -0
  52. package/dist/esm/lib2/shared/utils/index.d.ts +1 -0
  53. package/dist/esm/lib2/widgets/FiltersWidget/FiltersWidget.d.ts +4 -0
  54. package/dist/esm/lib2/widgets/FiltersWidget/FiltersWidget.styles.d.ts +3 -0
  55. package/dist/esm/lib2/widgets/FiltersWidget/FiltersWidgetSkeleton.d.ts +3 -0
  56. package/dist/esm/lib2/widgets/FiltersWidget/index.d.ts +2 -0
  57. package/dist/esm/lib2/widgets/FiltersWidget/types.d.ts +45 -0
  58. package/dist/esm/lib2/widgets/index.d.ts +1 -0
  59. package/dist/index.d.ts +110 -2
  60. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import React, { FC } from 'react';
2
+ export declare const ToggleStyled: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonToggle & Pick<React.HTMLAttributes<HTMLIonToggleElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/react-component-lib/interfaces").StyleReactProps & React.RefAttributes<HTMLIonToggleElement>>, any, {}, never>;
3
+ export type FilterBooleanFeatureProps = {
4
+ className?: string;
5
+ };
6
+ declare const FilterBooleanFeature: FC<FilterBooleanFeatureProps>;
7
+ export default FilterBooleanFeature;
@@ -0,0 +1,10 @@
1
+ import React, { FC } from 'react';
2
+ import { FilterOption } from '../../shared/types/filter';
3
+ export type FilterChipsFeatureProps = {
4
+ className?: string;
5
+ classNameChip?: string;
6
+ limit?: number;
7
+ renderChip?(option: FilterOption): React.ReactNode;
8
+ };
9
+ declare const FilterChipsFeature: FC<FilterChipsFeatureProps>;
10
+ export default FilterChipsFeature;
@@ -0,0 +1,19 @@
1
+ import React, { PropsWithChildren } from 'react';
2
+ import { FilterFeatureProps } from './types';
3
+ import { getMappedFilterValue } from '../../shared/utils/filter';
4
+ import { FilterValue } from '../../shared/types/filter';
5
+ type FilterFeatureContextType = {
6
+ value: ReturnType<typeof getMappedFilterValue>;
7
+ changeFilterValue(v: FilterValue): void;
8
+ modalRef: React.RefObject<HTMLIonModalElement>;
9
+ } & FilterFeatureProps;
10
+ export declare const useFilterFeatureContext: () => FilterFeatureContextType;
11
+ declare function FilterFeature(props: PropsWithChildren<FilterFeatureProps>): JSX.Element;
12
+ declare namespace FilterFeature {
13
+ var Select: React.FC<import("./FilterSelectFeature").FilterSelectFeatureProps>;
14
+ var Chips: React.FC<import("./FilterChipsFeature").FilterChipsFeatureProps>;
15
+ var Range: React.FC<import("./FilterRangeFeature").FilterRangeFeatureProps>;
16
+ var Boolean: React.FC<import("./FilterBooleanFeature").FilterBooleanFeatureProps>;
17
+ var Label: React.FC<{}>;
18
+ }
19
+ export default FilterFeature;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const FilterLabelFeature: FC;
3
+ export default FilterLabelFeature;
@@ -0,0 +1,15 @@
1
+ import React, { FC } from 'react';
2
+ import { SupportedCurrency } from '../../shared';
3
+ export type FilterRangeFeatureProps = {
4
+ className?: string;
5
+ min?: number;
6
+ max?: number;
7
+ step?: number;
8
+ dualKnobs?: boolean;
9
+ snaps?: boolean;
10
+ ticks?: boolean;
11
+ currency?: SupportedCurrency;
12
+ };
13
+ export declare const RangeStyled: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonRange & Pick<React.HTMLAttributes<HTMLIonRangeElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/react-component-lib/interfaces").StyleReactProps & React.RefAttributes<HTMLIonRangeElement>>, any, {}, never>;
14
+ declare const FilterRangeFeature: FC<FilterRangeFeatureProps>;
15
+ export default FilterRangeFeature;
@@ -0,0 +1,8 @@
1
+ import React, { FC } from 'react';
2
+ export declare const CheckboxStyled: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonCheckbox & Pick<React.HTMLAttributes<HTMLIonCheckboxElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/react-component-lib/interfaces").StyleReactProps & React.RefAttributes<HTMLIonCheckboxElement>>, any, {}, never>;
3
+ export type FilterSelectFeatureProps = {
4
+ className?: string;
5
+ optionClassName?: string;
6
+ };
7
+ declare const FilterSelectFeature: FC<FilterSelectFeatureProps>;
8
+ export default FilterSelectFeature;
@@ -0,0 +1,2 @@
1
+ export { default } from './FilterFeature';
2
+ export * from './types';
@@ -0,0 +1,52 @@
1
+ export declare const filterOptionStyles: import("tailwind-variants").TVReturnType<{
2
+ size: {
3
+ default: {
4
+ base: string;
5
+ };
6
+ };
7
+ }, {
8
+ root: string;
9
+ base: string;
10
+ }, undefined, import("tailwind-variants/dist/config").TVConfig<{
11
+ size: {
12
+ default: {
13
+ base: string;
14
+ };
15
+ };
16
+ }, {
17
+ size: {
18
+ default: {
19
+ base: string;
20
+ };
21
+ };
22
+ }>, {
23
+ size: {
24
+ default: {
25
+ base: string;
26
+ };
27
+ };
28
+ }, {
29
+ root: string;
30
+ base: string;
31
+ }, import("tailwind-variants").TVReturnType<{
32
+ size: {
33
+ default: {
34
+ base: string;
35
+ };
36
+ };
37
+ }, {
38
+ root: string;
39
+ base: string;
40
+ }, undefined, import("tailwind-variants/dist/config").TVConfig<{
41
+ size: {
42
+ default: {
43
+ base: string;
44
+ };
45
+ };
46
+ }, {
47
+ size: {
48
+ default: {
49
+ base: string;
50
+ };
51
+ };
52
+ }>, unknown, unknown, undefined>>;
@@ -0,0 +1,15 @@
1
+ import { WithTranslation } from 'react-i18next';
2
+ import { FilterOption, FilterValue } from '../../shared/types/filter';
3
+ import { BadgeProps } from '../../shared/ui/Badge/types';
4
+ export type FilterFeatureProps = {
5
+ presentingElement?: HTMLElement;
6
+ options?: FilterOption[];
7
+ value?: FilterValue;
8
+ t?: WithTranslation['t'];
9
+ className?: string;
10
+ label?: string;
11
+ badge?: BadgeProps;
12
+ description?: string;
13
+ multiple?: boolean;
14
+ onChange?(value: FilterValue): void;
15
+ };
@@ -33,6 +33,7 @@ export * from './SpecialistAreaListFeature';
33
33
  export * from './TextWithClampFeature';
34
34
  export * from './ReviewListFeature';
35
35
  export * from './SpecialistEducationsFeature';
36
+ export * from './FilterFeature';
36
37
  export * from './SpecialistPreviewFeature';
37
38
  export * from './AppHeaderPageFeature';
38
39
  export * from './TabsToolbarFeature';
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { IconProps } from '../../types/iconProps';
3
+ export declare const IconFilters: React.FC<IconProps>;
@@ -97,6 +97,7 @@ export * from './IconPlay';
97
97
  export * from './IconStudyHat';
98
98
  export * from './IconMindlyColored';
99
99
  export * from './IconUser';
100
+ export * from './IconFilters';
100
101
  export * from './IconEmptyList';
101
102
  export * from './IconChat';
102
103
  export * from './IconMindlyMini';
@@ -4,3 +4,6 @@ export * from './useAutoFocus';
4
4
  export * from './useToastContext';
5
5
  export * from './useCircleRating';
6
6
  export * from './useElementWidth';
7
+ export * from './useDeepCompareEffect';
8
+ export * from './useUpdateEffect';
9
+ export * from './useDeepUpdateEffect';
@@ -0,0 +1 @@
1
+ export declare const useDeepCompareEffect: <T extends unknown[]>(callback: () => void, dependencies: T) => void;
@@ -0,0 +1,2 @@
1
+ import { EffectCallback } from 'react';
2
+ export declare const useDeepUpdateEffect: <T extends unknown[]>(effect: EffectCallback, dependencies: T) => void;
@@ -0,0 +1,2 @@
1
+ import { EffectCallback } from 'react';
2
+ export declare const useUpdateEffect: <T extends unknown[]>(effect: EffectCallback, dependencies: T) => void;
@@ -17,6 +17,11 @@ export declare const CurrencyLocaleMapper: {
17
17
  PLN: string;
18
18
  USD: string;
19
19
  };
20
+ export declare const LocaleCurrencyMapper: {
21
+ uk: SupportedCurrency;
22
+ pl: SupportedCurrency;
23
+ es: SupportedCurrency;
24
+ };
20
25
  export declare enum CurrencySignByLocale {
21
26
  'uk' = "\u20B4",
22
27
  'pl' = "z\u0142",
@@ -0,0 +1,8 @@
1
+ export type AllowFilterValueType = string | number | boolean;
2
+ export type FilterValue = AllowFilterValueType | AllowFilterValueType[];
3
+ export type FilterOptionValue = AllowFilterValueType;
4
+ export type FilterOption = {
5
+ value?: AllowFilterValueType;
6
+ label: string;
7
+ children?: FilterOption[];
8
+ };
@@ -10,5 +10,6 @@ export * from './specialistTypes';
10
10
  export * from './review';
11
11
  export * from './contract';
12
12
  export * from './user';
13
+ export * from './filter';
13
14
  export * from './subscription';
14
15
  export * from './session';
@@ -64,4 +64,6 @@ export type Specialist = {
64
64
  subscription_discounts?: Record<string, number>;
65
65
  is_disabled?: boolean;
66
66
  activated_at?: number;
67
+ matching_by_areas?: string[];
68
+ matching_by_specialization?: string[];
67
69
  };
@@ -0,0 +1,5 @@
1
+ import { FilterItem } from '../../widgets/FiltersWidget/types';
2
+ import { AllowFilterValueType, FilterValue } from '../types/filter';
3
+ export declare const getMappedFilterValue: (value?: FilterValue) => AllowFilterValueType[];
4
+ export declare const getFiltersValues: (filters: FilterItem[]) => Record<string, FilterValue>;
5
+ export declare const getFiltersQuery: (filters: Record<string, FilterValue>) => string;
@@ -6,3 +6,4 @@ export { replaceMarkdownWithReactElements } from './replaceMarkdownWithReactElem
6
6
  export { getSignAgreementsTabs } from './getSignAgreementsTabs';
7
7
  export * from './specialistStatus';
8
8
  export * from './userCan';
9
+ export * from './filter';
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { FiltersWidgetProps } from './types';
3
+ declare const FiltersWidget: FC<FiltersWidgetProps>;
4
+ export default FiltersWidget;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare const StyledToolbar: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonToolbar & Pick<import("react").HTMLAttributes<HTMLIonToolbarElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonToolbarElement>>, any, {}, never>;
3
+ export declare const StyledFooter: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonFooter & Pick<import("react").HTMLAttributes<HTMLIonFooterElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIonFooterElement>>, any, {}, never>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const FiltersWidgetSkeleton: React.FC;
3
+ export default FiltersWidgetSkeleton;
@@ -0,0 +1,2 @@
1
+ export { default as FiltersWidget } from './FiltersWidget';
2
+ export * from './types';
@@ -0,0 +1,45 @@
1
+ import { WithTranslation } from 'react-i18next';
2
+ import { FilterFeatureProps } from '../../features';
3
+ import { FilterSelectFeatureProps } from '../../features/FilterFeature/FilterSelectFeature';
4
+ import { FilterChipsFeatureProps } from '../../features/FilterFeature/FilterChipsFeature';
5
+ import { FilterRangeFeatureProps } from '../../features/FilterFeature/FilterRangeFeature';
6
+ import { SupportedCurrency } from '../../shared';
7
+ import { FilterBooleanFeatureProps } from '../../features/FilterFeature/FilterBooleanFeature';
8
+ import { BadgeProps } from '../../shared/ui/Badge/types';
9
+ export type FilterItemSelect = {
10
+ key: string;
11
+ type: 'select';
12
+ props?: FilterSelectFeatureProps;
13
+ };
14
+ export type FilterItemChips = {
15
+ key: string;
16
+ type: 'chips';
17
+ props?: Omit<FilterChipsFeatureProps, 'renderChip'>;
18
+ };
19
+ export type FilterItemRange = {
20
+ key: string;
21
+ type: 'range';
22
+ props?: FilterRangeFeatureProps;
23
+ };
24
+ export type FilterItemBoolean = {
25
+ key: string;
26
+ type: 'boolean';
27
+ props?: FilterBooleanFeatureProps;
28
+ };
29
+ export type FilterItem = Omit<FilterFeatureProps, 'presentingElement' | 'onChange' | 't' | 'badge'> & {
30
+ badge?: Pick<BadgeProps, 'size' | 'variant' | 'type' | 'iconType'> & {
31
+ children: string;
32
+ };
33
+ } & (FilterItemSelect | FilterItemChips | FilterItemRange | FilterItemBoolean);
34
+ export type FiltersWidgetProps = {
35
+ t?: WithTranslation['t'];
36
+ isLoading?: boolean;
37
+ initialFilters: FilterItem[];
38
+ totalItems?: number;
39
+ isLoadingTotalItems?: boolean;
40
+ className?: string;
41
+ currency?: SupportedCurrency;
42
+ onClose?(): void;
43
+ onChange?(filters: FilterItem[]): void;
44
+ onApply?(action: 'apply' | 'clear', filters: FilterItem[]): void;
45
+ };
@@ -4,6 +4,7 @@ export * from './SpecialistPaymentWidget';
4
4
  export * from './SpecialistPaymentResumeWidget';
5
5
  export * from './UpdateContractWidget';
6
6
  export * from './SpecialistDetailWidget';
7
+ export * from './FiltersWidget';
7
8
  export * from './SpecialistPreviewListWidget';
8
9
  export * from './SessionsListWidget';
9
10
  export * from './SessionDetailWidget';
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import * as React$1 from 'react';
3
- import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, SVGAttributes, KeyboardEvent, InputHTMLAttributes, RefObject, SVGProps, PropsWithChildren, ReactText, ReactElement, ChangeEvent } from 'react';
3
+ import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, SVGAttributes, KeyboardEvent, InputHTMLAttributes, RefObject, EffectCallback, SVGProps, PropsWithChildren, ReactText, ReactElement, ChangeEvent } from 'react';
4
4
  import { JSX as JSX$1 } from '@ionic/core/components';
5
5
  import * as react_i18next from 'react-i18next';
6
6
  import { WithTranslation } from 'react-i18next';
@@ -1401,6 +1401,11 @@ declare const CurrencyLocaleMapper: {
1401
1401
  PLN: string;
1402
1402
  USD: string;
1403
1403
  };
1404
+ declare const LocaleCurrencyMapper: {
1405
+ uk: SupportedCurrency;
1406
+ pl: SupportedCurrency;
1407
+ es: SupportedCurrency;
1408
+ };
1404
1409
  declare enum CurrencySignByLocale {
1405
1410
  'uk' = "\u20B4",
1406
1411
  'pl' = "z\u0142",
@@ -1676,6 +1681,8 @@ type Specialist = {
1676
1681
  subscription_discounts?: Record<string, number>;
1677
1682
  is_disabled?: boolean;
1678
1683
  activated_at?: number;
1684
+ matching_by_areas?: string[];
1685
+ matching_by_specialization?: string[];
1679
1686
  };
1680
1687
 
1681
1688
  type SpecialistReview = {
@@ -1698,6 +1705,15 @@ type SpecialistReview = {
1698
1705
  review_status: 'on_review' | 'approved' | 'rejected';
1699
1706
  };
1700
1707
 
1708
+ type AllowFilterValueType = string | number | boolean;
1709
+ type FilterValue = AllowFilterValueType | AllowFilterValueType[];
1710
+ type FilterOptionValue = AllowFilterValueType;
1711
+ type FilterOption = {
1712
+ value?: AllowFilterValueType;
1713
+ label: string;
1714
+ children?: FilterOption[];
1715
+ };
1716
+
1701
1717
  type SubscriptionStatuses = 'incomplete' | 'incomplete_expired' | 'trialing' | 'active' | 'past_due' | 'canceled' | 'unpaid';
1702
1718
  type Subscription = {
1703
1719
  id: string;
@@ -2232,6 +2248,12 @@ declare function useElementWidth<T extends HTMLElement>(): [
2232
2248
  RefObject<T>
2233
2249
  ];
2234
2250
 
2251
+ declare const useDeepCompareEffect: <T extends unknown[]>(callback: () => void, dependencies: T) => void;
2252
+
2253
+ declare const useUpdateEffect: <T extends unknown[]>(effect: EffectCallback, dependencies: T) => void;
2254
+
2255
+ declare const useDeepUpdateEffect: <T extends unknown[]>(effect: EffectCallback, dependencies: T) => void;
2256
+
2235
2257
  interface IconProps$A extends React$1.SVGAttributes<SVGElement> {
2236
2258
  size?: number | string;
2237
2259
  color?: string;
@@ -2585,6 +2607,8 @@ declare const IconMindlyColored: React$1.FC<IconProps$B>;
2585
2607
 
2586
2608
  declare const IconUser: React$1.FC<IconProps$B>;
2587
2609
 
2610
+ declare const IconFilters: React$1.FC<IconProps$B>;
2611
+
2588
2612
  declare const IconEmptyList: React$1.FC<IconProps$B>;
2589
2613
 
2590
2614
  declare const IconChat: React$1.FC<IconProps$B>;
@@ -3098,6 +3122,88 @@ type Props = {
3098
3122
  };
3099
3123
  declare const SpecialistEducationsFeature: FC<Props>;
3100
3124
 
3125
+ type FilterBooleanFeatureProps = {
3126
+ className?: string;
3127
+ };
3128
+
3129
+ type FilterRangeFeatureProps = {
3130
+ className?: string;
3131
+ min?: number;
3132
+ max?: number;
3133
+ step?: number;
3134
+ dualKnobs?: boolean;
3135
+ snaps?: boolean;
3136
+ ticks?: boolean;
3137
+ currency?: SupportedCurrency;
3138
+ };
3139
+
3140
+ type FilterChipsFeatureProps = {
3141
+ className?: string;
3142
+ classNameChip?: string;
3143
+ limit?: number;
3144
+ renderChip?(option: FilterOption): React__default.ReactNode;
3145
+ };
3146
+
3147
+ type FilterSelectFeatureProps = {
3148
+ className?: string;
3149
+ optionClassName?: string;
3150
+ };
3151
+
3152
+ type FilterFeatureProps = {
3153
+ presentingElement?: HTMLElement;
3154
+ options?: FilterOption[];
3155
+ value?: FilterValue;
3156
+ t?: WithTranslation['t'];
3157
+ className?: string;
3158
+ label?: string;
3159
+ badge?: BadgeProps;
3160
+ description?: string;
3161
+ multiple?: boolean;
3162
+ onChange?(value: FilterValue): void;
3163
+ };
3164
+
3165
+ type FilterItemSelect = {
3166
+ key: string;
3167
+ type: 'select';
3168
+ props?: FilterSelectFeatureProps;
3169
+ };
3170
+ type FilterItemChips = {
3171
+ key: string;
3172
+ type: 'chips';
3173
+ props?: Omit<FilterChipsFeatureProps, 'renderChip'>;
3174
+ };
3175
+ type FilterItemRange = {
3176
+ key: string;
3177
+ type: 'range';
3178
+ props?: FilterRangeFeatureProps;
3179
+ };
3180
+ type FilterItemBoolean = {
3181
+ key: string;
3182
+ type: 'boolean';
3183
+ props?: FilterBooleanFeatureProps;
3184
+ };
3185
+ type FilterItem = Omit<FilterFeatureProps, 'presentingElement' | 'onChange' | 't' | 'badge'> & {
3186
+ badge?: Pick<BadgeProps, 'size' | 'variant' | 'type' | 'iconType'> & {
3187
+ children: string;
3188
+ };
3189
+ } & (FilterItemSelect | FilterItemChips | FilterItemRange | FilterItemBoolean);
3190
+ type FiltersWidgetProps = {
3191
+ t?: WithTranslation['t'];
3192
+ isLoading?: boolean;
3193
+ initialFilters: FilterItem[];
3194
+ totalItems?: number;
3195
+ isLoadingTotalItems?: boolean;
3196
+ className?: string;
3197
+ currency?: SupportedCurrency;
3198
+ onClose?(): void;
3199
+ onChange?(filters: FilterItem[]): void;
3200
+ onApply?(action: 'apply' | 'clear', filters: FilterItem[]): void;
3201
+ };
3202
+
3203
+ declare const getMappedFilterValue: (value?: FilterValue) => AllowFilterValueType[];
3204
+ declare const getFiltersValues: (filters: FilterItem[]) => Record<string, FilterValue>;
3205
+ declare const getFiltersQuery: (filters: Record<string, FilterValue>) => string;
3206
+
3101
3207
  type SpecialistPreviewFeatureProps = {
3102
3208
  specialist?: Specialist;
3103
3209
  className?: string;
@@ -3663,6 +3769,8 @@ type SpecialistDetailWidgetProps = {
3663
3769
 
3664
3770
  declare const _default: React__default.NamedExoticComponent<SpecialistDetailWidgetProps>;
3665
3771
 
3772
+ declare const FiltersWidget: FC<FiltersWidgetProps>;
3773
+
3666
3774
  type SpecialistPreviewListWidgetProps = {
3667
3775
  specialists: Specialist[];
3668
3776
  isLoading?: boolean;
@@ -3721,4 +3829,4 @@ type SessionPaymentsWidgetProps = {
3721
3829
 
3722
3830
  declare const SessionPaymentsWidget: React__default.FC<SessionPaymentsWidgetProps>;
3723
3831
 
3724
- export { AcceptAgreementFeature, Action, _default$T as AlertCard, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e 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$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 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$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, 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, IconEye, IconEyeOff, IconGallery, IconGift, 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, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, 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$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getGMTOffset, getProgressForBreakPoint, getSignAgreementsTabs, isClientCan, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useElementWidth, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext, useVideoContext };
3832
+ export { AcceptAgreementFeature, Action, _default$T as AlertCard, AllowFilterValueType, AppFooter, _default$S as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, ArchivedConsultationCard, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$R as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$N as Badge, _default$W as BookingScheduleTime, _default$V as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, COUNTRIES_MAPPER, Calendar, _default$u as CalendarPickerFeature, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$1f as ChatListItem, _default$1d as ChatListSkeleton, _default$1e 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$16 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$13 as ConsultationModal, _default$y as ConsultationPricingFeature, _default$11 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$$ as DaySlider, DayToRender, DividerProps, DrumListPicker, DynamicCommissionValue, _default$X as EducationCard, _default$1c as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$14 as EmptyConsultations, EmptyList, EntryNotFound, EntryNotFoundProps, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$7 as Flag, FlagTypes, _default$P as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconAddModerator, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$J as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, 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, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, 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, IconSchedule, IconSchema, IconSearch, IconSend, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, InputSearch, _default$F as Item, _default$M as ItemCard, LabelArrowRedirect, LanguagesList, _default$1j as LetterAvatar, _default$8 as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListButton, ListItemType, _default$C as ListItemWithColumns, _default$G as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$H as Loading, LocaleCurrencyMapper, LouseConnect, MapStatusContractToUIStatus, _default$n as MarkdownContainerFeature, _default$D as MatchProgress, _default$1g as MediaPlayer, MenuFeature, Modal, ModalCalendar, ModalSheet, NavigationBar, NewSpecialist, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, OnBoardingBaseScreenType, OnBoardingFlowType, _default$l as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, _default$i as OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$k as OnBoardingMultiSelectionScreenPreviewFeature, _default$h as OnBoardingProgressFeature, _default$g as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenBgType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenOptionType, OnBoardingScreenOptions, OnBoardingScreenStyleOptions, OnBoardingScreensType, OnBoardingSingleSelectScreenType, _default$j as OnBoardingSingleSelectionScreenPreviewFeature, _default$m as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$t as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$v as PaymentSessionsList, _default$1i as PersonDateTimeCard, _default$O as Picture, _default$6 as ProfileInformation, _default$Z as ProfileView, _default$9 as ProgressBar, ProgressBarDashed, _default$I as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$K as Rating, RatingCircleWrapper, _default$10 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$s as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSwiperSection, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, _default$q as ScreenDrumPickerFormFeature, ScreenInput, _default$r as ScreenInputFormFeature, ScreenInputUpdateFeature, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1h as SelectImpressionEmoji, SelectItemType, _default$o as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, Sex, ShareModalFeature, ShortCurrencySignByLocale, _default$B as ShowMore, _default$15 as SignUpSessionButton, _default$12 as SignUpSessionModal, SizeValues, Skeleton, _default$Q as Skeleton_v2, _default$A as SlotsGrid, _default$z as SlotsGridItem, Specialist, _default$Y as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$3 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default as SpecialistDetailWidget, SpecialistEducation, _default$1a as SpecialistEducationCard, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$5 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$x as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$w as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$1 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$2 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, SpecialistProfileNotFound, _default$19 as SpecialistProfileViewCard, 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$p as TextAreaFormFeature, _default$e as TextInput, _default$f as TextWithClampFeature, _default$1b as Textarea, _default$L as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$U as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$E as Video, _default$17 as VideoCallInfo, _default$18 as VideoPlayer, VideoProvider, _default$_ as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getProgressForBreakPoint, getSignAgreementsTabs, isClientCan, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, mergeRefs, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDomRef, useElementWidth, useEvent, 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.95.5",
3
+ "version": "5.96.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",