@mindly/ui-components 5.99.0 → 5.99.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/cjs/configs/tailwind/colors.d.ts +5 -0
  2. package/dist/cjs/index.js +6 -6
  3. package/dist/cjs/lib/AppHeader/AppHeader.d.ts +1 -0
  4. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/OnBoardingConfirmScreenPreviewFeature.d.ts +4 -0
  5. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/index.d.ts +1 -0
  6. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/OnBoardingEmailScreenPreviewFeature.d.ts +4 -0
  7. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/index.d.ts +1 -0
  8. package/dist/cjs/lib2/features/OnBoardingFlow/OnBoardingLoaderScreenPreviewFeature/OnBoardingLoaderScreenPreviewFeature.d.ts +7 -3
  9. package/dist/cjs/lib2/features/OnBoardingFlow/index.d.ts +2 -0
  10. package/dist/cjs/lib2/shared/hooks/useCircleRating.d.ts +7 -3
  11. package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +33 -2
  12. package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +4 -0
  13. package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +1 -1
  14. package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +49 -0
  15. package/dist/cjs/lib2/shared/ui/SolidInput/SolidInput.d.ts +12 -0
  16. package/dist/cjs/lib2/shared/ui/SolidInput/SolidInput.stories.d.ts +6 -0
  17. package/dist/cjs/lib2/shared/ui/SolidInput/index.d.ts +1 -0
  18. package/dist/cjs/lib2/shared/ui/SolidInput/types.d.ts +12 -0
  19. package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
  20. package/dist/esm/configs/tailwind/colors.d.ts +5 -0
  21. package/dist/esm/index.js +6 -6
  22. package/dist/esm/lib/AppHeader/AppHeader.d.ts +1 -0
  23. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/OnBoardingConfirmScreenPreviewFeature.d.ts +4 -0
  24. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingConfirmScreenPreviewFeature/index.d.ts +1 -0
  25. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/OnBoardingEmailScreenPreviewFeature.d.ts +4 -0
  26. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingEmailScreenPreviewFeature/index.d.ts +1 -0
  27. package/dist/esm/lib2/features/OnBoardingFlow/OnBoardingLoaderScreenPreviewFeature/OnBoardingLoaderScreenPreviewFeature.d.ts +7 -3
  28. package/dist/esm/lib2/features/OnBoardingFlow/index.d.ts +2 -0
  29. package/dist/esm/lib2/shared/hooks/useCircleRating.d.ts +7 -3
  30. package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +33 -2
  31. package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +4 -0
  32. package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +1 -1
  33. package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +49 -0
  34. package/dist/esm/lib2/shared/ui/SolidInput/SolidInput.d.ts +12 -0
  35. package/dist/esm/lib2/shared/ui/SolidInput/SolidInput.stories.d.ts +6 -0
  36. package/dist/esm/lib2/shared/ui/SolidInput/index.d.ts +1 -0
  37. package/dist/esm/lib2/shared/ui/SolidInput/types.d.ts +12 -0
  38. package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
  39. package/dist/index.d.ts +136 -77
  40. package/package.json +1 -1
  41. package/src/configs/tailwind/colors.ts +6 -0
  42. package/src/lib2/shared/css/tailwind.css +1 -0
@@ -2,6 +2,7 @@ import { FC } from 'react';
2
2
  type AppHeaderProps = {
3
3
  fullwidth?: boolean;
4
4
  className?: string;
5
+ toolbarClassName?: string;
5
6
  };
6
7
  declare const AppHeader: FC<AppHeaderProps>;
7
8
  export default AppHeader;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OnBoardingConfirmScreenType } from '../../../shared';
3
+ declare const _default: React.NamedExoticComponent<OnBoardingConfirmScreenType>;
4
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as OnBoardingConfirmScreenPreviewFeature } from './OnBoardingConfirmScreenPreviewFeature';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OnBoardingEmailScreenType } from '../../../shared';
3
+ declare const _default: React.NamedExoticComponent<OnBoardingEmailScreenType>;
4
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as OnBoardingEmailScreenPreviewFeature } from './OnBoardingEmailScreenPreviewFeature';
@@ -1,4 +1,8 @@
1
- import React from 'react';
1
+ import { FC } from 'react';
2
2
  import { OnBoardingLoaderScreenType } from '../../../shared';
3
- declare const _default: React.NamedExoticComponent<OnBoardingLoaderScreenType>;
4
- export default _default;
3
+ import { WithTranslation } from 'react-i18next';
4
+ declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
5
+ t?: WithTranslation['t'];
6
+ onProgressEnd?: () => void;
7
+ }>;
8
+ export default OnBoardingLoaderScreenPreviewFeature;
@@ -5,3 +5,5 @@ export * from './OnBoardingSingleSelectionScreenPreviewFeature';
5
5
  export * from './OnBoardingLoaderScreenPreviewFeature';
6
6
  export * from './OnBoardingProgressFeature';
7
7
  export * from './OnBoardingReviewsScreenPreviewFeature';
8
+ export * from './OnBoardingEmailScreenPreviewFeature';
9
+ export * from './OnBoardingConfirmScreenPreviewFeature';
@@ -2,7 +2,7 @@ import { SizeValues, CircleRatingRange, CircleRatingDataProps, CircleRatingDataR
2
2
  export declare const SIZES: SizeValues;
3
3
  export declare const BREAKPOINT_ICON_SIZE = 20;
4
4
  export declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, isShowBreakPoints, }: CircleRatingDataProps): CircleRatingDataResult;
5
- export declare function useRangeIndex({ progress, maxValue, ranges, isReverse }: ProgressRangeProps): number;
5
+ export declare function useRangeIndex({ progress, maxValue, ranges, isReverse, }: ProgressRangeProps): number;
6
6
  export declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
7
7
  maxValue: number;
8
8
  breakPoint: number;
@@ -13,11 +13,15 @@ export declare function useBreakPointsPosition({ maxValue, breakPoints, radius,
13
13
  radius?: number;
14
14
  strokeWidth?: number;
15
15
  }): BreakPointPositionResult[];
16
- export declare function useRatingCircleLegend({ ranges, t, isReverse, isPercentage, }: CircleRatingLegendProps): string[];
17
- export declare function useRatingCircleContentValue({ progress, isPercentage, decimal, }: {
16
+ export declare function useRatingCircleLegend({ ranges, t, isReverse, isPercentage, isShowLegend, }: CircleRatingLegendProps): string[];
17
+ export declare function useRatingCircleContentValue({ progress, isPercentage, decimal, isWithAnimation, animationDuration, targetPercentage, onProgressEnd, }: {
18
18
  progress: number;
19
19
  isPercentage?: boolean;
20
20
  decimal?: number;
21
+ isWithAnimation?: boolean;
22
+ animationDuration?: number;
23
+ targetPercentage?: number;
24
+ onProgressEnd?: () => void;
21
25
  }): string;
22
26
  export declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
23
27
  ranges: CircleRatingRange[];
@@ -1,6 +1,7 @@
1
1
  import { ResponseFileType } from './responseFileType';
2
2
  import { ISpecialistReview } from '../../../lib/ReviewSwiperSection';
3
3
  import { TranslationType } from './common';
4
+ import { WithTranslation } from 'react-i18next';
4
5
  export declare enum ConditionRulesType {
5
6
  IS = "is"
6
7
  }
@@ -24,7 +25,9 @@ export declare enum OnBoardingScreenOptions {
24
25
  SINGLE_SELECT = "SINGLE_SELECT",
25
26
  INFO = "INFO",
26
27
  LOADER = "LOADER",
27
- REVIEWS = "REVIEWS"
28
+ REVIEWS = "REVIEWS",
29
+ EMAIL = "EMAIL",
30
+ CONFIRM = "CONFIRM"
28
31
  }
29
32
  export type OnBoardingScreenOptionType = {
30
33
  id: string;
@@ -50,6 +53,23 @@ export type OnBoardingScreenDescriptionType = {
50
53
  title?: string | null;
51
54
  description?: string | null;
52
55
  };
56
+ export type OnBoardingScreenPrivacyType = {
57
+ privacyText?: string;
58
+ showPrivacyText?: boolean;
59
+ };
60
+ export type OnBoardingScreenEmailType = {
61
+ emailPlaceholder?: string;
62
+ };
63
+ export type OnBoardingScreenPasswordType = {
64
+ passwordPlaceholder?: string;
65
+ };
66
+ export type OnBoardingScreenAlertType = {
67
+ alertTitle?: string;
68
+ alertText?: string;
69
+ };
70
+ export type OnBoardingScreenTranslationsType = {
71
+ t?: WithTranslation['t'];
72
+ };
53
73
  export type OnBoardingBaseScreenType = {
54
74
  id: string;
55
75
  type: OnBoardingScreenOptions;
@@ -87,6 +107,11 @@ export type OnBoardingLoaderScreenType = OnBoardingBaseScreenType & {
87
107
  answerScreenId?: string[];
88
108
  allScreens?: Record<string, OnBoardingScreensType>;
89
109
  selectedAnswers?: Record<string, string[]>;
110
+ loadingItemDuration?: number;
111
+ listItems?: {
112
+ id: string;
113
+ label: string;
114
+ }[];
90
115
  };
91
116
  export type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & TranslationType & {
92
117
  title?: string | null;
@@ -94,7 +119,13 @@ export type OnBoardingReviewsScreenType = OnBoardingBaseScreenType & OnBoardingS
94
119
  reviews: ISpecialistReview[];
95
120
  isLoading?: boolean;
96
121
  };
97
- export type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType;
122
+ export type OnBoardingEmailScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenEmailType & OnBoardingScreenPrivacyType & {
123
+ title: string;
124
+ };
125
+ export type OnBoardingConfirmScreenType = OnBoardingBaseScreenType & OnBoardingScreenButtonType & OnBoardingScreenTranslationsType & OnBoardingScreenEmailType & OnBoardingScreenPasswordType & OnBoardingScreenAlertType & {
126
+ title: string;
127
+ };
128
+ export type OnBoardingScreensType = OnBoardingStartScreenType | OnBoardingMultiSelectScreenType | OnBoardingSingleSelectScreenType | OnBoardingInfoScreenType | OnBoardingLoaderScreenType | OnBoardingReviewsScreenType | OnBoardingEmailScreenType | OnBoardingConfirmScreenType;
98
129
  export type OnBoardingFlowType = {
99
130
  id: string;
100
131
  locale: string;
@@ -52,6 +52,7 @@ export type CircleRatingLegendProps = {
52
52
  t: WithTranslation['t'];
53
53
  isReverse?: boolean;
54
54
  isPercentage?: boolean;
55
+ isShowLegend?: boolean;
55
56
  };
56
57
  export type CircleRatingComponentProps = {
57
58
  size: keyof typeof CircleRatingSize;
@@ -68,7 +69,10 @@ export type CircleRatingComponentProps = {
68
69
  isZeroTransparent?: boolean;
69
70
  isWithOverlap?: boolean;
70
71
  isWithAnimation?: boolean;
72
+ isPrimaryColor?: boolean;
73
+ isProgressWithAnimation?: boolean;
71
74
  className?: string;
75
+ onProgressEnd?: () => void;
72
76
  };
73
77
  export type CircleRatingContextProps = CircleRatingComponentProps & {
74
78
  legend?: string[];
@@ -2,6 +2,6 @@ import { FC } from 'react';
2
2
  import { WithTranslation } from 'react-i18next';
3
3
  import { CircleRatingComponentProps } from '../../types';
4
4
  declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
5
- t: WithTranslation | any;
5
+ t: WithTranslation['t'] | any;
6
6
  }>;
7
7
  export default RatingCircleWrapper;
@@ -28,6 +28,13 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
28
28
  icon: string;
29
29
  };
30
30
  };
31
+ isPrimaryColor: {
32
+ true: {
33
+ coloredStroke: string;
34
+ contentColor: string;
35
+ icon: string;
36
+ };
37
+ };
31
38
  }, {
32
39
  breakPoint: string;
33
40
  defaultStroke: string;
@@ -66,6 +73,13 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
66
73
  icon: string;
67
74
  };
68
75
  };
76
+ isPrimaryColor: {
77
+ true: {
78
+ coloredStroke: string;
79
+ contentColor: string;
80
+ icon: string;
81
+ };
82
+ };
69
83
  }, {
70
84
  transparent: {
71
85
  true: {
@@ -96,6 +110,13 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
96
110
  icon: string;
97
111
  };
98
112
  };
113
+ isPrimaryColor: {
114
+ true: {
115
+ coloredStroke: string;
116
+ contentColor: string;
117
+ icon: string;
118
+ };
119
+ };
99
120
  }>, {
100
121
  transparent: {
101
122
  true: {
@@ -126,6 +147,13 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
126
147
  icon: string;
127
148
  };
128
149
  };
150
+ isPrimaryColor: {
151
+ true: {
152
+ coloredStroke: string;
153
+ contentColor: string;
154
+ icon: string;
155
+ };
156
+ };
129
157
  }, {
130
158
  breakPoint: string;
131
159
  defaultStroke: string;
@@ -164,6 +192,13 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
164
192
  icon: string;
165
193
  };
166
194
  };
195
+ isPrimaryColor: {
196
+ true: {
197
+ coloredStroke: string;
198
+ contentColor: string;
199
+ icon: string;
200
+ };
201
+ };
167
202
  }, {
168
203
  breakPoint: string;
169
204
  defaultStroke: string;
@@ -202,6 +237,13 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
202
237
  icon: string;
203
238
  };
204
239
  };
240
+ isPrimaryColor: {
241
+ true: {
242
+ coloredStroke: string;
243
+ contentColor: string;
244
+ icon: string;
245
+ };
246
+ };
205
247
  }, {
206
248
  transparent: {
207
249
  true: {
@@ -232,4 +274,11 @@ export declare const circleRatingStyles: import("tailwind-variants").TVReturnTyp
232
274
  icon: string;
233
275
  };
234
276
  };
277
+ isPrimaryColor: {
278
+ true: {
279
+ coloredStroke: string;
280
+ contentColor: string;
281
+ icon: string;
282
+ };
283
+ };
235
284
  }>, unknown, unknown, undefined>>;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { SolidInputProps } from './types';
3
+ export declare const StyledIonItem: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<Pick<import("@ionic/core/dist/types/components").JSX.IonItem, "button" | "type" | "disabled" | "rel" | "color" | "download" | "href" | "target" | "mode" | "fill" | "lines" | "routerAnimation" | "shape" | "counter" | "counterFormatter" | "detail" | "detailIcon"> & {
4
+ routerLink?: string | undefined;
5
+ routerDirection?: "none" | "root" | "forward" | "back" | undefined;
6
+ routerOptions?: import("@ionic/react").RouterOptions | undefined;
7
+ routerAnimation?: import("@ionic/react").AnimationBuilder | undefined;
8
+ } & Pick<React.HTMLAttributes<HTMLIonItemElement>, "slot" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("@ionic/react/dist/types/components/IonicReactProps").IonicReactProps & React.RefAttributes<HTMLIonItemElement>>, any, {}, never>;
9
+ export declare const StyledIonInput: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonInput & Pick<React.HTMLAttributes<HTMLIonInputElement>, "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<HTMLIonInputElement>>, any, {}, never>;
10
+ export declare const StyledIonLabel: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonLabel & Pick<React.HTMLAttributes<HTMLIonLabelElement>, "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<HTMLIonLabelElement>>, any, {}, never>;
11
+ declare const SolidInput: React.FC<SolidInputProps>;
12
+ export default SolidInput;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import SolidInput from './SolidInput';
3
+ declare const meta: Meta<typeof SolidInput>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof SolidInput>;
6
+ export declare const Default: Story;
@@ -0,0 +1 @@
1
+ export { default as SolidInput } from './SolidInput';
@@ -0,0 +1,12 @@
1
+ import { TextFieldTypes } from '@ionic/core';
2
+ import { FormEventHandler } from 'react';
3
+ export type SolidInputProps = {
4
+ placeholder: string;
5
+ value?: string;
6
+ name?: string;
7
+ type?: TextFieldTypes;
8
+ itemClassName?: string;
9
+ inputClassName?: string;
10
+ labelClassName?: string;
11
+ onChange?: FormEventHandler<HTMLIonInputElement>;
12
+ };
@@ -44,3 +44,4 @@ export * from './Divider';
44
44
  export * from './EmptyList';
45
45
  export * from './SpecialistProfileNotFound';
46
46
  export * from './NewSpecialist';
47
+ export * from './SolidInput';