mimir-ui-kit 0.0.10 → 0.0.12
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/assets/fonts/11d5bc9f0cad36d1.woff2 +0 -0
- package/dist/assets/fonts/1a738bfdbc1e4d9d.woff +0 -0
- package/dist/assets/fonts/242d04bef81519ae.woff2 +0 -0
- package/dist/assets/fonts/3b9f59412b17ff93.woff +0 -0
- package/dist/assets/fonts/3cdd7fabbe89d2b9.woff +0 -0
- package/dist/assets/fonts/43b748f250df0f08.woff +0 -0
- package/dist/assets/fonts/585d10920d676fcd.woff2 +0 -0
- package/dist/assets/fonts/63611593e008a77c.woff2 +0 -0
- package/dist/assets/fonts/badaa6d1837432de.woff +0 -0
- package/dist/assets/fonts/cac2ba46e8c8adc9.woff2 +0 -0
- package/dist/assets/fonts/d080ae18fd04e52c.woff2 +0 -0
- package/dist/assets/fonts/e51d2feb30084bc2.woff2 +0 -0
- package/dist/assets/fonts/ee3db32f0aadef5d.woff2 +0 -0
- package/dist/assets/fonts/f4d681a788c6d497.woff2 +0 -0
- package/dist/assets/styles/index.css +1 -0
- package/dist/components/Button/Button.stories.d.ts +67 -0
- package/dist/components/Button/constants.d.ts +25 -0
- package/dist/components/Button/constants.js +7 -0
- package/dist/components/Button/index.d.ts +84 -0
- package/dist/components/Button/index.js +53 -0
- package/dist/components/Button/types.d.ts +14 -0
- package/dist/components/Button/types.js +1 -0
- package/dist/components/Input/Input.stories.d.ts +13 -0
- package/dist/components/Input/constants.d.ts +12 -0
- package/dist/components/Input/constants.js +5 -0
- package/dist/components/Input/index.d.ts +29 -0
- package/dist/components/Input/index.js +61 -0
- package/dist/components/InputPassword/Input.stories.d.ts +7 -0
- package/dist/components/InputPassword/index.d.ts +306 -0
- package/dist/components/InputPassword/index.js +22 -0
- package/dist/components/InputPhoneNumber/Input.stories.d.ts +335 -0
- package/dist/components/InputPhoneNumber/index.d.ts +306 -0
- package/dist/components/InputPhoneNumber/index.js +28 -0
- package/dist/components/InputPhoneNumber/utils.d.ts +2 -0
- package/dist/components/InputPhoneNumber/utils.js +9 -0
- package/dist/components/OtpInput/Input.stories.d.ts +26 -0
- package/dist/components/OtpInput/constants.d.ts +2 -0
- package/dist/components/OtpInput/constants.js +5 -0
- package/dist/components/OtpInput/index.d.ts +18 -0
- package/dist/components/OtpInput/index.js +87 -0
- package/dist/components/icons/Eye.d.ts +1 -0
- package/dist/components/icons/Eye.js +24 -0
- package/dist/components/icons/index.d.ts +1 -0
- package/dist/components/icons/index.js +4 -0
- package/dist/components/index.d.ts +7 -0
- package/dist/components/index.js +20 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +6 -0
- package/dist/hooks/useMediaQuery/constants.d.ts +7 -0
- package/dist/hooks/useMediaQuery/constants.js +4 -0
- package/dist/hooks/useMediaQuery/index.d.ts +2 -0
- package/dist/hooks/useMediaQuery/index.js +6 -0
- package/dist/hooks/useMediaQuery/useMediaQuery.d.ts +14 -0
- package/dist/hooks/useMediaQuery/useMediaQuery.js +16 -0
- package/dist/index-DIxK0V-G.js +44 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +22 -0
- package/dist/index2.css +1 -0
- package/dist/index3.css +1 -0
- package/dist/index4.css +1 -0
- package/dist/utils/getLog.d.ts +1 -0
- package/dist/utils/getLog.js +4 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +4 -0
- package/package.json +1 -1
@@ -0,0 +1,306 @@
|
|
1
|
+
export type ImperativeHandle = Partial<HTMLInputElement> & {
|
2
|
+
getPhoneNumber: () => string;
|
3
|
+
};
|
4
|
+
export declare const InputPhoneNumber: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<{
|
5
|
+
form?: string | undefined;
|
6
|
+
slot?: string | undefined;
|
7
|
+
style?: import('react').CSSProperties | undefined;
|
8
|
+
title?: string | undefined;
|
9
|
+
pattern?: string | undefined;
|
10
|
+
disabled?: boolean | undefined;
|
11
|
+
formAction?: string | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
12
|
+
formEncType?: string | undefined;
|
13
|
+
formMethod?: string | undefined;
|
14
|
+
formNoValidate?: boolean | undefined;
|
15
|
+
formTarget?: string | undefined;
|
16
|
+
name?: string | undefined;
|
17
|
+
type?: import('react').HTMLInputTypeAttribute | undefined;
|
18
|
+
value?: string | readonly string[] | number | undefined;
|
19
|
+
defaultChecked?: boolean | undefined;
|
20
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
21
|
+
suppressContentEditableWarning?: boolean | undefined;
|
22
|
+
suppressHydrationWarning?: boolean | undefined;
|
23
|
+
accessKey?: string | undefined;
|
24
|
+
autoFocus?: boolean | undefined;
|
25
|
+
className?: string | undefined;
|
26
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
27
|
+
contextMenu?: string | undefined;
|
28
|
+
dir?: string | undefined;
|
29
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
30
|
+
hidden?: boolean | undefined;
|
31
|
+
id?: string | undefined;
|
32
|
+
lang?: string | undefined;
|
33
|
+
nonce?: string | undefined;
|
34
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
35
|
+
tabIndex?: number | undefined;
|
36
|
+
translate?: "yes" | "no" | undefined;
|
37
|
+
radioGroup?: string | undefined;
|
38
|
+
role?: import('react').AriaRole | undefined;
|
39
|
+
about?: string | undefined;
|
40
|
+
content?: string | undefined;
|
41
|
+
datatype?: string | undefined;
|
42
|
+
inlist?: any;
|
43
|
+
prefix?: string | undefined;
|
44
|
+
property?: string | undefined;
|
45
|
+
rel?: string | undefined;
|
46
|
+
resource?: string | undefined;
|
47
|
+
rev?: string | undefined;
|
48
|
+
typeof?: string | undefined;
|
49
|
+
vocab?: string | undefined;
|
50
|
+
autoCapitalize?: string | undefined;
|
51
|
+
autoCorrect?: string | undefined;
|
52
|
+
autoSave?: string | undefined;
|
53
|
+
color?: string | undefined;
|
54
|
+
itemProp?: string | undefined;
|
55
|
+
itemScope?: boolean | undefined;
|
56
|
+
itemType?: string | undefined;
|
57
|
+
itemID?: string | undefined;
|
58
|
+
itemRef?: string | undefined;
|
59
|
+
results?: number | undefined;
|
60
|
+
security?: string | undefined;
|
61
|
+
unselectable?: "on" | "off" | undefined;
|
62
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
63
|
+
is?: string | undefined;
|
64
|
+
"aria-activedescendant"?: string | undefined;
|
65
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
66
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
67
|
+
"aria-braillelabel"?: string | undefined;
|
68
|
+
"aria-brailleroledescription"?: string | undefined;
|
69
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
70
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
71
|
+
"aria-colcount"?: number | undefined;
|
72
|
+
"aria-colindex"?: number | undefined;
|
73
|
+
"aria-colindextext"?: string | undefined;
|
74
|
+
"aria-colspan"?: number | undefined;
|
75
|
+
"aria-controls"?: string | undefined;
|
76
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
77
|
+
"aria-describedby"?: string | undefined;
|
78
|
+
"aria-description"?: string | undefined;
|
79
|
+
"aria-details"?: string | undefined;
|
80
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
81
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
82
|
+
"aria-errormessage"?: string | undefined;
|
83
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
84
|
+
"aria-flowto"?: string | undefined;
|
85
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
86
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
87
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
88
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
89
|
+
"aria-keyshortcuts"?: string | undefined;
|
90
|
+
"aria-label"?: string | undefined;
|
91
|
+
"aria-labelledby"?: string | undefined;
|
92
|
+
"aria-level"?: number | undefined;
|
93
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
94
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
95
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
96
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
97
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
98
|
+
"aria-owns"?: string | undefined;
|
99
|
+
"aria-placeholder"?: string | undefined;
|
100
|
+
"aria-posinset"?: number | undefined;
|
101
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
102
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
103
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
104
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
105
|
+
"aria-roledescription"?: string | undefined;
|
106
|
+
"aria-rowcount"?: number | undefined;
|
107
|
+
"aria-rowindex"?: number | undefined;
|
108
|
+
"aria-rowindextext"?: string | undefined;
|
109
|
+
"aria-rowspan"?: number | undefined;
|
110
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
111
|
+
"aria-setsize"?: number | undefined;
|
112
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
113
|
+
"aria-valuemax"?: number | undefined;
|
114
|
+
"aria-valuemin"?: number | undefined;
|
115
|
+
"aria-valuenow"?: number | undefined;
|
116
|
+
"aria-valuetext"?: string | undefined;
|
117
|
+
children?: import('react').ReactNode | undefined;
|
118
|
+
dangerouslySetInnerHTML?: {
|
119
|
+
__html: string | TrustedHTML;
|
120
|
+
} | undefined;
|
121
|
+
onCopy?: import('react').ClipboardEventHandler<HTMLInputElement> | undefined;
|
122
|
+
onCopyCapture?: import('react').ClipboardEventHandler<HTMLInputElement> | undefined;
|
123
|
+
onCut?: import('react').ClipboardEventHandler<HTMLInputElement> | undefined;
|
124
|
+
onCutCapture?: import('react').ClipboardEventHandler<HTMLInputElement> | undefined;
|
125
|
+
onPaste?: import('react').ClipboardEventHandler<HTMLInputElement> | undefined;
|
126
|
+
onPasteCapture?: import('react').ClipboardEventHandler<HTMLInputElement> | undefined;
|
127
|
+
onCompositionEnd?: import('react').CompositionEventHandler<HTMLInputElement> | undefined;
|
128
|
+
onCompositionEndCapture?: import('react').CompositionEventHandler<HTMLInputElement> | undefined;
|
129
|
+
onCompositionStart?: import('react').CompositionEventHandler<HTMLInputElement> | undefined;
|
130
|
+
onCompositionStartCapture?: import('react').CompositionEventHandler<HTMLInputElement> | undefined;
|
131
|
+
onCompositionUpdate?: import('react').CompositionEventHandler<HTMLInputElement> | undefined;
|
132
|
+
onCompositionUpdateCapture?: import('react').CompositionEventHandler<HTMLInputElement> | undefined;
|
133
|
+
onFocus?: import('react').FocusEventHandler<HTMLInputElement> | undefined;
|
134
|
+
onFocusCapture?: import('react').FocusEventHandler<HTMLInputElement> | undefined;
|
135
|
+
onBlur?: import('react').FocusEventHandler<HTMLInputElement> | undefined;
|
136
|
+
onBlurCapture?: import('react').FocusEventHandler<HTMLInputElement> | undefined;
|
137
|
+
onChange?: import('react').ChangeEventHandler<HTMLInputElement> | undefined;
|
138
|
+
onChangeCapture?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
139
|
+
onBeforeInput?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
140
|
+
onBeforeInputCapture?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
141
|
+
onInput?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
142
|
+
onInputCapture?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
143
|
+
onReset?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
144
|
+
onResetCapture?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
145
|
+
onSubmit?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
146
|
+
onSubmitCapture?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
147
|
+
onInvalid?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
148
|
+
onInvalidCapture?: import('react').FormEventHandler<HTMLInputElement> | undefined;
|
149
|
+
onLoad?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
150
|
+
onLoadCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
151
|
+
onError?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
152
|
+
onErrorCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
153
|
+
onKeyDown?: import('react').KeyboardEventHandler<HTMLInputElement> | undefined;
|
154
|
+
onKeyDownCapture?: import('react').KeyboardEventHandler<HTMLInputElement> | undefined;
|
155
|
+
onKeyPress?: import('react').KeyboardEventHandler<HTMLInputElement> | undefined;
|
156
|
+
onKeyPressCapture?: import('react').KeyboardEventHandler<HTMLInputElement> | undefined;
|
157
|
+
onKeyUp?: import('react').KeyboardEventHandler<HTMLInputElement> | undefined;
|
158
|
+
onKeyUpCapture?: import('react').KeyboardEventHandler<HTMLInputElement> | undefined;
|
159
|
+
onAbort?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
160
|
+
onAbortCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
161
|
+
onCanPlay?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
162
|
+
onCanPlayCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
163
|
+
onCanPlayThrough?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
164
|
+
onCanPlayThroughCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
165
|
+
onDurationChange?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
166
|
+
onDurationChangeCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
167
|
+
onEmptied?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
168
|
+
onEmptiedCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
169
|
+
onEncrypted?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
170
|
+
onEncryptedCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
171
|
+
onEnded?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
172
|
+
onEndedCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
173
|
+
onLoadedData?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
174
|
+
onLoadedDataCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
175
|
+
onLoadedMetadata?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
176
|
+
onLoadedMetadataCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
177
|
+
onLoadStart?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
178
|
+
onLoadStartCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
179
|
+
onPause?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
180
|
+
onPauseCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
181
|
+
onPlay?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
182
|
+
onPlayCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
183
|
+
onPlaying?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
184
|
+
onPlayingCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
185
|
+
onProgress?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
186
|
+
onProgressCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
187
|
+
onRateChange?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
188
|
+
onRateChangeCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
189
|
+
onResize?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
190
|
+
onResizeCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
191
|
+
onSeeked?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
192
|
+
onSeekedCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
193
|
+
onSeeking?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
194
|
+
onSeekingCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
195
|
+
onStalled?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
196
|
+
onStalledCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
197
|
+
onSuspend?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
198
|
+
onSuspendCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
199
|
+
onTimeUpdate?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
200
|
+
onTimeUpdateCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
201
|
+
onVolumeChange?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
202
|
+
onVolumeChangeCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
203
|
+
onWaiting?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
204
|
+
onWaitingCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
205
|
+
onAuxClick?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
206
|
+
onAuxClickCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
207
|
+
onClick?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
208
|
+
onClickCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
209
|
+
onContextMenu?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
210
|
+
onContextMenuCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
211
|
+
onDoubleClick?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
212
|
+
onDoubleClickCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
213
|
+
onDrag?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
214
|
+
onDragCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
215
|
+
onDragEnd?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
216
|
+
onDragEndCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
217
|
+
onDragEnter?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
218
|
+
onDragEnterCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
219
|
+
onDragExit?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
220
|
+
onDragExitCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
221
|
+
onDragLeave?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
222
|
+
onDragLeaveCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
223
|
+
onDragOver?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
224
|
+
onDragOverCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
225
|
+
onDragStart?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
226
|
+
onDragStartCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
227
|
+
onDrop?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
228
|
+
onDropCapture?: import('react').DragEventHandler<HTMLInputElement> | undefined;
|
229
|
+
onMouseDown?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
230
|
+
onMouseDownCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
231
|
+
onMouseEnter?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
232
|
+
onMouseLeave?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
233
|
+
onMouseMove?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
234
|
+
onMouseMoveCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
235
|
+
onMouseOut?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
236
|
+
onMouseOutCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
237
|
+
onMouseOver?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
238
|
+
onMouseOverCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
239
|
+
onMouseUp?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
240
|
+
onMouseUpCapture?: import('react').MouseEventHandler<HTMLInputElement> | undefined;
|
241
|
+
onSelect?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
242
|
+
onSelectCapture?: import('react').ReactEventHandler<HTMLInputElement> | undefined;
|
243
|
+
onTouchCancel?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
244
|
+
onTouchCancelCapture?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
245
|
+
onTouchEnd?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
246
|
+
onTouchEndCapture?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
247
|
+
onTouchMove?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
248
|
+
onTouchMoveCapture?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
249
|
+
onTouchStart?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
250
|
+
onTouchStartCapture?: import('react').TouchEventHandler<HTMLInputElement> | undefined;
|
251
|
+
onPointerDown?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
252
|
+
onPointerDownCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
253
|
+
onPointerMove?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
254
|
+
onPointerMoveCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
255
|
+
onPointerUp?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
256
|
+
onPointerUpCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
257
|
+
onPointerCancel?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
258
|
+
onPointerCancelCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
259
|
+
onPointerEnter?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
260
|
+
onPointerLeave?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
261
|
+
onPointerOver?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
262
|
+
onPointerOverCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
263
|
+
onPointerOut?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
264
|
+
onPointerOutCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
265
|
+
onGotPointerCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
266
|
+
onGotPointerCaptureCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
267
|
+
onLostPointerCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
268
|
+
onLostPointerCaptureCapture?: import('react').PointerEventHandler<HTMLInputElement> | undefined;
|
269
|
+
onScroll?: import('react').UIEventHandler<HTMLInputElement> | undefined;
|
270
|
+
onScrollCapture?: import('react').UIEventHandler<HTMLInputElement> | undefined;
|
271
|
+
onWheel?: import('react').WheelEventHandler<HTMLInputElement> | undefined;
|
272
|
+
onWheelCapture?: import('react').WheelEventHandler<HTMLInputElement> | undefined;
|
273
|
+
onAnimationStart?: import('react').AnimationEventHandler<HTMLInputElement> | undefined;
|
274
|
+
onAnimationStartCapture?: import('react').AnimationEventHandler<HTMLInputElement> | undefined;
|
275
|
+
onAnimationEnd?: import('react').AnimationEventHandler<HTMLInputElement> | undefined;
|
276
|
+
onAnimationEndCapture?: import('react').AnimationEventHandler<HTMLInputElement> | undefined;
|
277
|
+
onAnimationIteration?: import('react').AnimationEventHandler<HTMLInputElement> | undefined;
|
278
|
+
onAnimationIterationCapture?: import('react').AnimationEventHandler<HTMLInputElement> | undefined;
|
279
|
+
onTransitionEnd?: import('react').TransitionEventHandler<HTMLInputElement> | undefined;
|
280
|
+
onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLInputElement> | undefined;
|
281
|
+
list?: string | undefined;
|
282
|
+
accept?: string | undefined;
|
283
|
+
alt?: string | undefined;
|
284
|
+
autoComplete?: import('react').HTMLInputAutoCompleteAttribute | undefined;
|
285
|
+
capture?: boolean | "user" | "environment" | undefined;
|
286
|
+
checked?: boolean | undefined;
|
287
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
288
|
+
height?: number | string | undefined;
|
289
|
+
max?: number | string | undefined;
|
290
|
+
maxLength?: number | undefined;
|
291
|
+
min?: number | string | undefined;
|
292
|
+
minLength?: number | undefined;
|
293
|
+
multiple?: boolean | undefined;
|
294
|
+
placeholder?: string | undefined;
|
295
|
+
required?: boolean | undefined;
|
296
|
+
src?: string | undefined;
|
297
|
+
step?: number | string | undefined;
|
298
|
+
width?: number | string | undefined;
|
299
|
+
} & {
|
300
|
+
className?: string;
|
301
|
+
label?: string;
|
302
|
+
variant?: `${import('..').EInputVariant}` | import('..').EInputVariant;
|
303
|
+
autofocus?: boolean;
|
304
|
+
readonly?: boolean;
|
305
|
+
size?: `${import('..').EInputSize}` | import('..').EInputSize;
|
306
|
+
} & import('react').RefAttributes<HTMLInputElement>>>;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { jsx as n } from "react/jsx-runtime";
|
2
|
+
import { memo as d, forwardRef as i, useState as I, useCallback as c, useImperativeHandle as f } from "react";
|
3
|
+
import { Input as P } from "../Input/index.js";
|
4
|
+
import { getMaskedInputPhoneValue as m, getUnmaskedInputValue as b } from "./utils.js";
|
5
|
+
const h = d(
|
6
|
+
i(({ value: o = "", onChange: e, ...p }, r) => {
|
7
|
+
const [a, s] = I(() => m(o)), l = c(
|
8
|
+
(t) => {
|
9
|
+
const u = m(t.target.value);
|
10
|
+
s(u), e == null || e({
|
11
|
+
...t,
|
12
|
+
target: {
|
13
|
+
...t.target,
|
14
|
+
value: u
|
15
|
+
}
|
16
|
+
});
|
17
|
+
},
|
18
|
+
[e]
|
19
|
+
);
|
20
|
+
return f(r, () => ({
|
21
|
+
getPhoneNumber: () => b(a)
|
22
|
+
})), /* @__PURE__ */ n(P, { ref: r, ...p, value: a, onChange: l });
|
23
|
+
})
|
24
|
+
);
|
25
|
+
h.displayName = "InputPhoneNumber";
|
26
|
+
export {
|
27
|
+
h as InputPhoneNumber
|
28
|
+
};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
const n = (s) => {
|
2
|
+
const t = s.replace(/\D/g, "");
|
3
|
+
let e = "+7 ";
|
4
|
+
return t.startsWith("7") ? e += "(" + t.substring(1, 4) : e += t.substring(0, 3), t.length > 4 && (e += ") " + t.substring(4, 7)), t.length > 7 && (e += "-" + t.substring(7, 9)), t.length > 9 && (e += "-" + t.substring(9, 11)), e;
|
5
|
+
}, r = (s) => s.replace(/\D/g, "");
|
6
|
+
export {
|
7
|
+
n as getMaskedInputPhoneValue,
|
8
|
+
r as getUnmaskedInputValue
|
9
|
+
};
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
2
|
+
import { EInputSize, EInputVariant } from '../Input/constants';
|
3
|
+
|
4
|
+
declare const meta: {
|
5
|
+
title: string;
|
6
|
+
component: ({ value, valueLength, needSeparator, onChange, ...props }: import('.').TProps) => import("react/jsx-runtime").JSX.Element;
|
7
|
+
parameters: {
|
8
|
+
layout: string;
|
9
|
+
};
|
10
|
+
tags: string[];
|
11
|
+
argTypes: {
|
12
|
+
needSeparator: {
|
13
|
+
control: {
|
14
|
+
type: "boolean";
|
15
|
+
};
|
16
|
+
};
|
17
|
+
};
|
18
|
+
args: {
|
19
|
+
variant: EInputVariant.DefaultWhite;
|
20
|
+
size: EInputSize.L;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
export default meta;
|
24
|
+
type Story = StoryObj<typeof meta>;
|
25
|
+
export declare const Default: Story;
|
26
|
+
export declare const WithoutSeparator: Story;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { TProps as TInputProps } from '../Input';
|
2
|
+
|
3
|
+
export type TProps = Omit<TInputProps, 'onChange'> & {
|
4
|
+
value?: string;
|
5
|
+
valueLength?: number;
|
6
|
+
onChange?: (value: string) => void;
|
7
|
+
/**
|
8
|
+
* Флаг, показывающий нужно ли отображать разделитель между вводами
|
9
|
+
*/
|
10
|
+
needSeparator?: boolean;
|
11
|
+
};
|
12
|
+
/**
|
13
|
+
* Компонент ввода одноразового пароля (OTP).
|
14
|
+
*
|
15
|
+
* Компонент представляет собой набор вводов, каждый из которых может содержать только цифры.
|
16
|
+
* Пользователь может вводить цифры в каждый ввод, и при вводе каждой цифры происходит автоматическое переключение на следующий ввод.
|
17
|
+
*/
|
18
|
+
export declare const OtpInput: ({ value, valueLength, needSeparator, onChange, ...props }: TProps) => import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,87 @@
|
|
1
|
+
import { jsx as l, jsxs as N } from "react/jsx-runtime";
|
2
|
+
import { useRef as R, useMemo as T, Fragment as b } from "react";
|
3
|
+
import { c as w } from "../../index-DIxK0V-G.js";
|
4
|
+
import { Input as F } from "../Input/index.js";
|
5
|
+
import { RE_DIGIT as g, DEFAULT_VALUE_LENGTH as O } from "./constants.js";
|
6
|
+
import '../../index.css';const k = "_otp_3vrel_1", L = "_input_3vrel_7", U = "_separator_3vrel_13", i = {
|
7
|
+
otp: k,
|
8
|
+
input: L,
|
9
|
+
separator: U
|
10
|
+
}, $ = ({
|
11
|
+
value: n = "",
|
12
|
+
valueLength: p = O,
|
13
|
+
needSeparator: I = !0,
|
14
|
+
onChange: o,
|
15
|
+
...v
|
16
|
+
}) => {
|
17
|
+
const u = R([]), D = T(() => {
|
18
|
+
const r = n.split(""), t = [];
|
19
|
+
for (let e = 0; e < p; e++) {
|
20
|
+
const s = r[e];
|
21
|
+
g.test(s) ? t.push(s) : t.push("");
|
22
|
+
}
|
23
|
+
return t;
|
24
|
+
}, [n, p]), f = (r) => {
|
25
|
+
var t;
|
26
|
+
r < p - 1 && ((t = u.current[r + 1]) == null || t.focus());
|
27
|
+
}, m = (r) => {
|
28
|
+
var t;
|
29
|
+
r > 0 && ((t = u.current[r - 1]) == null || t.focus());
|
30
|
+
}, A = (r, t) => {
|
31
|
+
const e = r.target;
|
32
|
+
let s = e.value.trim();
|
33
|
+
const c = g.test(s);
|
34
|
+
if (!c && s !== "")
|
35
|
+
return;
|
36
|
+
const a = u.current[t + 1];
|
37
|
+
if (!c && a && a.value !== "")
|
38
|
+
return;
|
39
|
+
s = c ? s : " ";
|
40
|
+
const _ = s.length;
|
41
|
+
if (_ === 1) {
|
42
|
+
const E = n.substring(0, t) + s + n.substring(t + 1);
|
43
|
+
o == null || o(E), c && f(t);
|
44
|
+
} else _ === p && (o == null || o(s), e.blur());
|
45
|
+
}, V = (r, t) => {
|
46
|
+
const { key: e } = r, s = r.target;
|
47
|
+
switch (e) {
|
48
|
+
case "ArrowRight":
|
49
|
+
case "ArrowDown":
|
50
|
+
return r.preventDefault(), f(t);
|
51
|
+
case "ArrowLeft":
|
52
|
+
case "ArrowUp":
|
53
|
+
return r.preventDefault(), m(t);
|
54
|
+
}
|
55
|
+
const c = s.value;
|
56
|
+
if (s.setSelectionRange(0, c.length), r.key !== "Backspace" || c !== "")
|
57
|
+
return;
|
58
|
+
const a = `${n.substring(0, t - 1)} ${n.substring(t)}`;
|
59
|
+
o == null || o(a), m(t);
|
60
|
+
}, y = (r, t) => {
|
61
|
+
const e = r.target, s = u.current[t - 1];
|
62
|
+
s && s.value === "" && s.focus(), e.setSelectionRange(0, e.value.length);
|
63
|
+
};
|
64
|
+
return /* @__PURE__ */ l("div", { className: w(i.otp), children: D.map((r, t) => /* @__PURE__ */ N(b, { children: [
|
65
|
+
I && t === 3 && /* @__PURE__ */ l("span", { className: w(i.separator) }),
|
66
|
+
/* @__PURE__ */ l(
|
67
|
+
F,
|
68
|
+
{
|
69
|
+
ref: (e) => u.current[t] = e,
|
70
|
+
type: "text",
|
71
|
+
inputMode: "numeric",
|
72
|
+
autoComplete: "one-time-code",
|
73
|
+
pattern: "\\d{1}",
|
74
|
+
maxLength: 1,
|
75
|
+
className: i.input,
|
76
|
+
value: r,
|
77
|
+
onChange: (e) => A(e, t),
|
78
|
+
onKeyDown: (e) => V(e, t),
|
79
|
+
onFocus: (e) => y(e, t),
|
80
|
+
...v
|
81
|
+
}
|
82
|
+
)
|
83
|
+
] }, t)) });
|
84
|
+
};
|
85
|
+
export {
|
86
|
+
$ as OtpInput
|
87
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const Eye: () => import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { jsxs as e, jsx as C } from "react/jsx-runtime";
|
2
|
+
const d = () => /* @__PURE__ */ e("svg", { width: "25", height: "24", viewBox: "0 0 25 24", xmlns: "http://www.w3.org/2000/svg", children: [
|
3
|
+
/* @__PURE__ */ C(
|
4
|
+
"path",
|
5
|
+
{
|
6
|
+
fillRule: "evenodd",
|
7
|
+
clipRule: "evenodd",
|
8
|
+
d: "M12.5 14.5C13.8807 14.5 15 13.3807 15 12C15 10.6193 13.8807 9.5 12.5 9.5C11.1193 9.5 10 10.6193 10 12C10 13.3807 11.1193 14.5 12.5 14.5ZM12.5 16C14.7091 16 16.5 14.2091 16.5 12C16.5 9.79086 14.7091 8 12.5 8C10.2909 8 8.5 9.79086 8.5 12C8.5 14.2091 10.2909 16 12.5 16Z",
|
9
|
+
fill: "#666666"
|
10
|
+
}
|
11
|
+
),
|
12
|
+
/* @__PURE__ */ C(
|
13
|
+
"path",
|
14
|
+
{
|
15
|
+
fillRule: "evenodd",
|
16
|
+
clipRule: "evenodd",
|
17
|
+
d: "M2.5 12C2.5 12 6.97715 19 12.5 19C18.0228 19 22.5 12 22.5 12C22.5 12 18.0228 5 12.5 5C6.97715 5 2.5 12 2.5 12ZM4.33813 12C4.38111 12.057 4.42632 12.1163 4.47372 12.1778C4.94838 12.7934 5.63246 13.6102 6.47167 14.4217C8.20962 16.1024 10.3437 17.5 12.5 17.5C14.6563 17.5 16.7904 16.1024 18.5283 14.4217C19.3675 13.6102 20.0516 12.7934 20.5263 12.1778C20.5737 12.1163 20.6189 12.057 20.6619 12C20.6189 11.943 20.5737 11.8837 20.5263 11.8222C20.0516 11.2066 19.3675 10.3898 18.5283 9.57828C16.7904 7.89761 14.6563 6.5 12.5 6.5C10.3437 6.5 8.20962 7.89761 6.47167 9.57828C5.63246 10.3898 4.94838 11.2066 4.47372 11.8222C4.42632 11.8837 4.38111 11.943 4.33813 12Z",
|
18
|
+
fill: "#666666"
|
19
|
+
}
|
20
|
+
)
|
21
|
+
] });
|
22
|
+
export {
|
23
|
+
d as Eye
|
24
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Eye } from './Eye';
|
@@ -0,0 +1,7 @@
|
|
1
|
+
export { Button } from './Button';
|
2
|
+
export { EButtonSize, EButtonForm, EButtonVariantDefault, EButtonVariantRound } from './Button/constants';
|
3
|
+
export { Input } from './Input';
|
4
|
+
export { EInputSize, EInputVariant } from './Input/constants';
|
5
|
+
export { InputPassword } from './InputPassword';
|
6
|
+
export { InputPhoneNumber } from './InputPhoneNumber';
|
7
|
+
export { OtpInput } from './OtpInput';
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { Button as r } from "./Button/index.js";
|
2
|
+
import { EButtonForm as p, EButtonSize as u, EButtonVariantDefault as e, EButtonVariantRound as m } from "./Button/constants.js";
|
3
|
+
import { Input as f } from "./Input/index.js";
|
4
|
+
import { EInputSize as E, EInputVariant as I } from "./Input/constants.js";
|
5
|
+
import { InputPassword as B } from "./InputPassword/index.js";
|
6
|
+
import { InputPhoneNumber as d } from "./InputPhoneNumber/index.js";
|
7
|
+
import { OtpInput as z } from "./OtpInput/index.js";
|
8
|
+
export {
|
9
|
+
r as Button,
|
10
|
+
p as EButtonForm,
|
11
|
+
u as EButtonSize,
|
12
|
+
e as EButtonVariantDefault,
|
13
|
+
m as EButtonVariantRound,
|
14
|
+
E as EInputSize,
|
15
|
+
I as EInputVariant,
|
16
|
+
f as Input,
|
17
|
+
B as InputPassword,
|
18
|
+
d as InputPhoneNumber,
|
19
|
+
z as OtpInput
|
20
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { useMediaQuery, EMediaQuery } from './useMediaQuery';
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { EMediaQuery } from './constants';
|
2
|
+
|
3
|
+
/**
|
4
|
+
* @name useMediaQuery
|
5
|
+
* @description - Hook that manages a media query
|
6
|
+
* @category Browser
|
7
|
+
*
|
8
|
+
* @param {string} query The media query string
|
9
|
+
* @returns {boolean} A boolean indicating if the media query matches
|
10
|
+
*
|
11
|
+
* @example
|
12
|
+
* const matches = useMediaQuery('(max-width: 768px)');
|
13
|
+
*/
|
14
|
+
export declare const useMediaQuery: (query: EMediaQuery | `${EMediaQuery}`) => boolean;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { useCallback as a, useSyncExternalStore as o } from "react";
|
2
|
+
const r = () => !1, h = (e) => {
|
3
|
+
const s = a(
|
4
|
+
(t) => {
|
5
|
+
const n = window.matchMedia(e);
|
6
|
+
return n.addEventListener("change", t), () => {
|
7
|
+
n.removeEventListener("change", t);
|
8
|
+
};
|
9
|
+
},
|
10
|
+
[e]
|
11
|
+
);
|
12
|
+
return o(s, () => window.matchMedia(e).matches, r);
|
13
|
+
};
|
14
|
+
export {
|
15
|
+
h as useMediaQuery
|
16
|
+
};
|