@bolttech/atoms-checkbox 0.20.3 → 0.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{index.cjs → index.cjs.js} +53 -68
- package/index.d.ts +1 -0
- package/package.json +9 -12
- package/src/lib/atoms-checkbox.styles.d.ts +334 -307
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="react" />
|
|
3
3
|
declare const CheckboxContainer: import("styled-components").IStyledComponent<"web", {
|
|
4
|
-
ref?: import("react").
|
|
4
|
+
ref?: import("react").Ref<HTMLElement> | undefined;
|
|
5
5
|
key?: import("react").Key | null | undefined;
|
|
6
6
|
defaultChecked?: boolean | undefined;
|
|
7
7
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
8
8
|
suppressContentEditableWarning?: boolean | undefined;
|
|
9
9
|
suppressHydrationWarning?: boolean | undefined;
|
|
10
10
|
accessKey?: string | undefined;
|
|
11
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
11
12
|
autoFocus?: boolean | undefined;
|
|
12
13
|
className?: string | undefined;
|
|
13
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
14
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
14
15
|
contextMenu?: string | undefined;
|
|
15
16
|
dir?: string | undefined;
|
|
16
17
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
18
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
17
19
|
hidden?: boolean | undefined;
|
|
18
20
|
id?: string | undefined;
|
|
19
21
|
lang?: string | undefined;
|
|
20
22
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
23
|
slot?: string | undefined;
|
|
23
24
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
24
25
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -38,7 +39,6 @@ declare const CheckboxContainer: import("styled-components").IStyledComponent<"w
|
|
|
38
39
|
rev?: string | undefined;
|
|
39
40
|
typeof?: string | undefined;
|
|
40
41
|
vocab?: string | undefined;
|
|
41
|
-
autoCapitalize?: string | undefined;
|
|
42
42
|
autoCorrect?: string | undefined;
|
|
43
43
|
autoSave?: string | undefined;
|
|
44
44
|
color?: string | undefined;
|
|
@@ -49,62 +49,68 @@ declare const CheckboxContainer: import("styled-components").IStyledComponent<"w
|
|
|
49
49
|
itemRef?: string | undefined;
|
|
50
50
|
results?: number | undefined;
|
|
51
51
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
52
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
54
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
55
|
+
popoverTarget?: string | undefined;
|
|
56
|
+
inert?: boolean | undefined;
|
|
53
57
|
inputMode?: "text" | "email" | "search" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
54
58
|
is?: string | undefined;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
59
|
+
exportparts?: string | undefined;
|
|
60
|
+
part?: string | undefined;
|
|
61
|
+
"aria-activedescendant"?: string | undefined;
|
|
62
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
63
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
64
|
+
"aria-braillelabel"?: string | undefined;
|
|
65
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
66
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
67
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
68
|
+
"aria-colcount"?: number | undefined;
|
|
69
|
+
"aria-colindex"?: number | undefined;
|
|
70
|
+
"aria-colindextext"?: string | undefined;
|
|
71
|
+
"aria-colspan"?: number | undefined;
|
|
72
|
+
"aria-controls"?: string | undefined;
|
|
73
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
74
|
+
"aria-describedby"?: string | undefined;
|
|
75
|
+
"aria-description"?: string | undefined;
|
|
76
|
+
"aria-details"?: string | undefined;
|
|
77
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
78
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
79
|
+
"aria-errormessage"?: string | undefined;
|
|
80
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
81
|
+
"aria-flowto"?: string | undefined;
|
|
82
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
83
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
84
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
86
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
87
|
+
"aria-label"?: string | undefined;
|
|
88
|
+
"aria-labelledby"?: string | undefined;
|
|
89
|
+
"aria-level"?: number | undefined;
|
|
90
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
91
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
92
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
94
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
95
|
+
"aria-owns"?: string | undefined;
|
|
96
|
+
"aria-placeholder"?: string | undefined;
|
|
97
|
+
"aria-posinset"?: number | undefined;
|
|
98
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
99
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
100
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
101
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
102
|
+
"aria-roledescription"?: string | undefined;
|
|
103
|
+
"aria-rowcount"?: number | undefined;
|
|
104
|
+
"aria-rowindex"?: number | undefined;
|
|
105
|
+
"aria-rowindextext"?: string | undefined;
|
|
106
|
+
"aria-rowspan"?: number | undefined;
|
|
107
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
108
|
+
"aria-setsize"?: number | undefined;
|
|
109
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
110
|
+
"aria-valuemax"?: number | undefined;
|
|
111
|
+
"aria-valuemin"?: number | undefined;
|
|
112
|
+
"aria-valuenow"?: number | undefined;
|
|
113
|
+
"aria-valuetext"?: string | undefined;
|
|
108
114
|
children?: import("react").ReactNode;
|
|
109
115
|
dangerouslySetInnerHTML?: {
|
|
110
116
|
__html: string | TrustedHTML;
|
|
@@ -127,7 +133,7 @@ declare const CheckboxContainer: import("styled-components").IStyledComponent<"w
|
|
|
127
133
|
onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
128
134
|
onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
129
135
|
onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
130
|
-
onBeforeInput?: import("react").
|
|
136
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLElement> | undefined;
|
|
131
137
|
onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
132
138
|
onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
133
139
|
onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
@@ -177,8 +183,6 @@ declare const CheckboxContainer: import("styled-components").IStyledComponent<"w
|
|
|
177
183
|
onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
178
184
|
onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
179
185
|
onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
180
|
-
onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
181
|
-
onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
182
186
|
onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
183
187
|
onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
184
188
|
onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
@@ -248,9 +252,7 @@ declare const CheckboxContainer: import("styled-components").IStyledComponent<"w
|
|
|
248
252
|
onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
249
253
|
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
250
254
|
onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
251
|
-
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
252
255
|
onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
253
|
-
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
254
256
|
onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
255
257
|
onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
256
258
|
onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
@@ -261,6 +263,8 @@ declare const CheckboxContainer: import("styled-components").IStyledComponent<"w
|
|
|
261
263
|
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
262
264
|
onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
263
265
|
onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
266
|
+
onScrollEnd?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
267
|
+
onScrollEndCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
264
268
|
onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
265
269
|
onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
266
270
|
onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
@@ -269,28 +273,37 @@ declare const CheckboxContainer: import("styled-components").IStyledComponent<"w
|
|
|
269
273
|
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
270
274
|
onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
271
275
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
276
|
+
onToggle?: import("react").ToggleEventHandler<HTMLElement> | undefined;
|
|
277
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLElement> | undefined;
|
|
278
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
279
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
272
280
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
273
281
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
282
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
283
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
284
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
285
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
274
286
|
}>;
|
|
275
287
|
declare const InputContainer: import("styled-components").IStyledComponent<"web", {
|
|
276
|
-
ref?: import("react").
|
|
288
|
+
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
277
289
|
key?: import("react").Key | null | undefined;
|
|
278
290
|
defaultChecked?: boolean | undefined;
|
|
279
291
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
280
292
|
suppressContentEditableWarning?: boolean | undefined;
|
|
281
293
|
suppressHydrationWarning?: boolean | undefined;
|
|
282
294
|
accessKey?: string | undefined;
|
|
295
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
283
296
|
autoFocus?: boolean | undefined;
|
|
284
297
|
className?: string | undefined;
|
|
285
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
298
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
286
299
|
contextMenu?: string | undefined;
|
|
287
300
|
dir?: string | undefined;
|
|
288
301
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
302
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
289
303
|
hidden?: boolean | undefined;
|
|
290
304
|
id?: string | undefined;
|
|
291
305
|
lang?: string | undefined;
|
|
292
306
|
nonce?: string | undefined;
|
|
293
|
-
placeholder?: string | undefined;
|
|
294
307
|
slot?: string | undefined;
|
|
295
308
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
296
309
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -310,7 +323,6 @@ declare const InputContainer: import("styled-components").IStyledComponent<"web"
|
|
|
310
323
|
rev?: string | undefined;
|
|
311
324
|
typeof?: string | undefined;
|
|
312
325
|
vocab?: string | undefined;
|
|
313
|
-
autoCapitalize?: string | undefined;
|
|
314
326
|
autoCorrect?: string | undefined;
|
|
315
327
|
autoSave?: string | undefined;
|
|
316
328
|
color?: string | undefined;
|
|
@@ -321,62 +333,68 @@ declare const InputContainer: import("styled-components").IStyledComponent<"web"
|
|
|
321
333
|
itemRef?: string | undefined;
|
|
322
334
|
results?: number | undefined;
|
|
323
335
|
security?: string | undefined;
|
|
324
|
-
unselectable?: "
|
|
336
|
+
unselectable?: "off" | "on" | undefined;
|
|
337
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
338
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
339
|
+
popoverTarget?: string | undefined;
|
|
340
|
+
inert?: boolean | undefined;
|
|
325
341
|
inputMode?: "text" | "email" | "search" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
326
342
|
is?: string | undefined;
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
343
|
+
exportparts?: string | undefined;
|
|
344
|
+
part?: string | undefined;
|
|
345
|
+
"aria-activedescendant"?: string | undefined;
|
|
346
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
347
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
348
|
+
"aria-braillelabel"?: string | undefined;
|
|
349
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
350
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
351
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
352
|
+
"aria-colcount"?: number | undefined;
|
|
353
|
+
"aria-colindex"?: number | undefined;
|
|
354
|
+
"aria-colindextext"?: string | undefined;
|
|
355
|
+
"aria-colspan"?: number | undefined;
|
|
356
|
+
"aria-controls"?: string | undefined;
|
|
357
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
358
|
+
"aria-describedby"?: string | undefined;
|
|
359
|
+
"aria-description"?: string | undefined;
|
|
360
|
+
"aria-details"?: string | undefined;
|
|
361
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
362
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
363
|
+
"aria-errormessage"?: string | undefined;
|
|
364
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
365
|
+
"aria-flowto"?: string | undefined;
|
|
366
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
367
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
368
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
369
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
370
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
371
|
+
"aria-label"?: string | undefined;
|
|
372
|
+
"aria-labelledby"?: string | undefined;
|
|
373
|
+
"aria-level"?: number | undefined;
|
|
374
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
375
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
376
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
377
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
378
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
379
|
+
"aria-owns"?: string | undefined;
|
|
380
|
+
"aria-placeholder"?: string | undefined;
|
|
381
|
+
"aria-posinset"?: number | undefined;
|
|
382
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
383
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
384
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
385
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
386
|
+
"aria-roledescription"?: string | undefined;
|
|
387
|
+
"aria-rowcount"?: number | undefined;
|
|
388
|
+
"aria-rowindex"?: number | undefined;
|
|
389
|
+
"aria-rowindextext"?: string | undefined;
|
|
390
|
+
"aria-rowspan"?: number | undefined;
|
|
391
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
392
|
+
"aria-setsize"?: number | undefined;
|
|
393
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
394
|
+
"aria-valuemax"?: number | undefined;
|
|
395
|
+
"aria-valuemin"?: number | undefined;
|
|
396
|
+
"aria-valuenow"?: number | undefined;
|
|
397
|
+
"aria-valuetext"?: string | undefined;
|
|
380
398
|
children?: import("react").ReactNode;
|
|
381
399
|
dangerouslySetInnerHTML?: {
|
|
382
400
|
__html: string | TrustedHTML;
|
|
@@ -399,7 +417,7 @@ declare const InputContainer: import("styled-components").IStyledComponent<"web"
|
|
|
399
417
|
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
400
418
|
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
401
419
|
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
402
|
-
onBeforeInput?: import("react").
|
|
420
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLDivElement> | undefined;
|
|
403
421
|
onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
404
422
|
onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
405
423
|
onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
@@ -449,8 +467,6 @@ declare const InputContainer: import("styled-components").IStyledComponent<"web"
|
|
|
449
467
|
onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
450
468
|
onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
451
469
|
onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
452
|
-
onResize?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
453
|
-
onResizeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
454
470
|
onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
455
471
|
onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
456
472
|
onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
@@ -520,9 +536,7 @@ declare const InputContainer: import("styled-components").IStyledComponent<"web"
|
|
|
520
536
|
onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
521
537
|
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
522
538
|
onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
523
|
-
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
524
539
|
onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
525
|
-
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
526
540
|
onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
527
541
|
onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
528
542
|
onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
@@ -533,6 +547,8 @@ declare const InputContainer: import("styled-components").IStyledComponent<"web"
|
|
|
533
547
|
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
534
548
|
onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
535
549
|
onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
550
|
+
onScrollEnd?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
551
|
+
onScrollEndCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
536
552
|
onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
537
553
|
onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
538
554
|
onAnimationStart?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
@@ -541,27 +557,68 @@ declare const InputContainer: import("styled-components").IStyledComponent<"web"
|
|
|
541
557
|
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
542
558
|
onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
543
559
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
560
|
+
onToggle?: import("react").ToggleEventHandler<HTMLDivElement> | undefined;
|
|
561
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLDivElement> | undefined;
|
|
562
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
563
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
544
564
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
545
565
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
566
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
567
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
568
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
569
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
546
570
|
}>;
|
|
547
571
|
declare const Input: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<{
|
|
572
|
+
ref?: import("react").Ref<HTMLInputElement> | undefined;
|
|
548
573
|
key?: import("react").Key | null | undefined;
|
|
574
|
+
accept?: string | undefined;
|
|
575
|
+
alt?: string | undefined;
|
|
576
|
+
autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
|
|
577
|
+
capture?: boolean | "user" | "environment" | undefined;
|
|
578
|
+
checked?: boolean | undefined;
|
|
579
|
+
disabled?: boolean | undefined;
|
|
580
|
+
form?: string | undefined;
|
|
581
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
582
|
+
formEncType?: string | undefined;
|
|
583
|
+
formMethod?: string | undefined;
|
|
584
|
+
formNoValidate?: boolean | undefined;
|
|
585
|
+
formTarget?: string | undefined;
|
|
586
|
+
height?: string | number | undefined;
|
|
587
|
+
list?: string | undefined;
|
|
588
|
+
max?: string | number | undefined;
|
|
589
|
+
maxLength?: number | undefined;
|
|
590
|
+
min?: string | number | undefined;
|
|
591
|
+
minLength?: number | undefined;
|
|
592
|
+
multiple?: boolean | undefined;
|
|
593
|
+
name?: string | undefined;
|
|
594
|
+
pattern?: string | undefined;
|
|
595
|
+
placeholder?: string | undefined;
|
|
596
|
+
readOnly?: boolean | undefined;
|
|
597
|
+
required?: boolean | undefined;
|
|
598
|
+
size?: number | undefined;
|
|
599
|
+
src?: string | undefined;
|
|
600
|
+
step?: string | number | undefined;
|
|
601
|
+
type?: import("react").HTMLInputTypeAttribute | undefined;
|
|
602
|
+
value?: string | number | readonly string[] | undefined;
|
|
603
|
+
width?: string | number | undefined;
|
|
604
|
+
onChange?: import("react").ChangeEventHandler<HTMLInputElement> | undefined;
|
|
549
605
|
defaultChecked?: boolean | undefined;
|
|
550
606
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
551
607
|
suppressContentEditableWarning?: boolean | undefined;
|
|
552
608
|
suppressHydrationWarning?: boolean | undefined;
|
|
553
609
|
accessKey?: string | undefined;
|
|
610
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
554
611
|
autoFocus?: boolean | undefined;
|
|
555
612
|
className?: string | undefined;
|
|
556
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
613
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
557
614
|
contextMenu?: string | undefined;
|
|
558
615
|
dir?: string | undefined;
|
|
559
616
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
617
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
560
618
|
hidden?: boolean | undefined;
|
|
561
619
|
id?: string | undefined;
|
|
562
620
|
lang?: string | undefined;
|
|
563
621
|
nonce?: string | undefined;
|
|
564
|
-
placeholder?: string | undefined;
|
|
565
622
|
slot?: string | undefined;
|
|
566
623
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
567
624
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -581,7 +638,6 @@ declare const Input: import("styled-components").IStyledComponent<"web", import(
|
|
|
581
638
|
rev?: string | undefined;
|
|
582
639
|
typeof?: string | undefined;
|
|
583
640
|
vocab?: string | undefined;
|
|
584
|
-
autoCapitalize?: string | undefined;
|
|
585
641
|
autoCorrect?: string | undefined;
|
|
586
642
|
autoSave?: string | undefined;
|
|
587
643
|
color?: string | undefined;
|
|
@@ -592,62 +648,68 @@ declare const Input: import("styled-components").IStyledComponent<"web", import(
|
|
|
592
648
|
itemRef?: string | undefined;
|
|
593
649
|
results?: number | undefined;
|
|
594
650
|
security?: string | undefined;
|
|
595
|
-
unselectable?: "
|
|
651
|
+
unselectable?: "off" | "on" | undefined;
|
|
652
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
653
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
654
|
+
popoverTarget?: string | undefined;
|
|
655
|
+
inert?: boolean | undefined;
|
|
596
656
|
inputMode?: "text" | "email" | "search" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
597
657
|
is?: string | undefined;
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
658
|
+
exportparts?: string | undefined;
|
|
659
|
+
part?: string | undefined;
|
|
660
|
+
"aria-activedescendant"?: string | undefined;
|
|
661
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
662
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
663
|
+
"aria-braillelabel"?: string | undefined;
|
|
664
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
665
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
666
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
667
|
+
"aria-colcount"?: number | undefined;
|
|
668
|
+
"aria-colindex"?: number | undefined;
|
|
669
|
+
"aria-colindextext"?: string | undefined;
|
|
670
|
+
"aria-colspan"?: number | undefined;
|
|
671
|
+
"aria-controls"?: string | undefined;
|
|
672
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
673
|
+
"aria-describedby"?: string | undefined;
|
|
674
|
+
"aria-description"?: string | undefined;
|
|
675
|
+
"aria-details"?: string | undefined;
|
|
676
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
677
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
678
|
+
"aria-errormessage"?: string | undefined;
|
|
679
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
680
|
+
"aria-flowto"?: string | undefined;
|
|
681
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
682
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
683
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
684
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
685
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
686
|
+
"aria-label"?: string | undefined;
|
|
687
|
+
"aria-labelledby"?: string | undefined;
|
|
688
|
+
"aria-level"?: number | undefined;
|
|
689
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
690
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
691
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
692
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
693
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
694
|
+
"aria-owns"?: string | undefined;
|
|
695
|
+
"aria-placeholder"?: string | undefined;
|
|
696
|
+
"aria-posinset"?: number | undefined;
|
|
697
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
698
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
699
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
700
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
701
|
+
"aria-roledescription"?: string | undefined;
|
|
702
|
+
"aria-rowcount"?: number | undefined;
|
|
703
|
+
"aria-rowindex"?: number | undefined;
|
|
704
|
+
"aria-rowindextext"?: string | undefined;
|
|
705
|
+
"aria-rowspan"?: number | undefined;
|
|
706
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
707
|
+
"aria-setsize"?: number | undefined;
|
|
708
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
709
|
+
"aria-valuemax"?: number | undefined;
|
|
710
|
+
"aria-valuemin"?: number | undefined;
|
|
711
|
+
"aria-valuenow"?: number | undefined;
|
|
712
|
+
"aria-valuetext"?: string | undefined;
|
|
651
713
|
children?: import("react").ReactNode;
|
|
652
714
|
dangerouslySetInnerHTML?: {
|
|
653
715
|
__html: string | TrustedHTML;
|
|
@@ -668,9 +730,8 @@ declare const Input: import("styled-components").IStyledComponent<"web", import(
|
|
|
668
730
|
onFocusCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
669
731
|
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
670
732
|
onBlurCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
671
|
-
onChange?: import("react").ChangeEventHandler<HTMLInputElement> | undefined;
|
|
672
733
|
onChangeCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
673
|
-
onBeforeInput?: import("react").
|
|
734
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLInputElement> | undefined;
|
|
674
735
|
onBeforeInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
675
736
|
onInput?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
676
737
|
onInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
@@ -720,8 +781,6 @@ declare const Input: import("styled-components").IStyledComponent<"web", import(
|
|
|
720
781
|
onProgressCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
721
782
|
onRateChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
722
783
|
onRateChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
723
|
-
onResize?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
724
|
-
onResizeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
725
784
|
onSeeked?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
726
785
|
onSeekedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
727
786
|
onSeeking?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
@@ -791,9 +850,7 @@ declare const Input: import("styled-components").IStyledComponent<"web", import(
|
|
|
791
850
|
onPointerCancel?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
792
851
|
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
793
852
|
onPointerEnter?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
794
|
-
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
795
853
|
onPointerLeave?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
796
|
-
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
797
854
|
onPointerOver?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
798
855
|
onPointerOverCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
799
856
|
onPointerOut?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
@@ -804,6 +861,8 @@ declare const Input: import("styled-components").IStyledComponent<"web", import(
|
|
|
804
861
|
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
|
|
805
862
|
onScroll?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
806
863
|
onScrollCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
864
|
+
onScrollEnd?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
865
|
+
onScrollEndCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
|
|
807
866
|
onWheel?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
|
|
808
867
|
onWheelCapture?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
|
|
809
868
|
onAnimationStart?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
@@ -812,68 +871,24 @@ declare const Input: import("styled-components").IStyledComponent<"web", import(
|
|
|
812
871
|
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
813
872
|
onAnimationIteration?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
814
873
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
|
|
874
|
+
onToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
|
|
875
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
|
|
876
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
877
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
815
878
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
816
879
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
alt?: string | undefined;
|
|
822
|
-
autoComplete?: string | undefined;
|
|
823
|
-
capture?: boolean | "user" | "environment" | undefined;
|
|
824
|
-
checked?: boolean | undefined;
|
|
825
|
-
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
826
|
-
disabled?: boolean | undefined;
|
|
827
|
-
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
828
|
-
formAction?: string | undefined;
|
|
829
|
-
formEncType?: string | undefined;
|
|
830
|
-
formMethod?: string | undefined;
|
|
831
|
-
formNoValidate?: boolean | undefined;
|
|
832
|
-
formTarget?: string | undefined;
|
|
833
|
-
height?: string | number | undefined;
|
|
834
|
-
list?: string | undefined;
|
|
835
|
-
max?: string | number | undefined;
|
|
836
|
-
maxLength?: number | undefined;
|
|
837
|
-
min?: string | number | undefined;
|
|
838
|
-
minLength?: number | undefined;
|
|
839
|
-
multiple?: boolean | undefined;
|
|
840
|
-
name?: string | undefined;
|
|
841
|
-
readOnly?: boolean | undefined;
|
|
842
|
-
required?: boolean | undefined;
|
|
843
|
-
size?: number | undefined;
|
|
844
|
-
src?: string | undefined;
|
|
845
|
-
step?: string | number | undefined;
|
|
846
|
-
value?: string | number | readonly string[] | undefined;
|
|
847
|
-
width?: string | number | undefined;
|
|
848
|
-
ref?: ((instance: HTMLInputElement | null) => void) | import("react").RefObject<HTMLInputElement> | null | undefined;
|
|
880
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
881
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
882
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
883
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
849
884
|
}, {
|
|
850
885
|
$error?: string | undefined;
|
|
851
886
|
}>>;
|
|
852
|
-
declare const Label: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
className?: string | undefined;
|
|
856
|
-
children?: string | string[] | undefined;
|
|
857
|
-
type?: string | undefined;
|
|
858
|
-
variant?: string | undefined;
|
|
859
|
-
align?: "center" | "left" | "right" | undefined;
|
|
860
|
-
text?: string | undefined;
|
|
861
|
-
htmlFor?: string | undefined;
|
|
862
|
-
} & import("react").RefAttributes<HTMLHeadingElement | HTMLLabelElement | HTMLParagraphElement | HTMLSpanElement | null>, {
|
|
863
|
-
disabled?: boolean | undefined;
|
|
864
|
-
}>> & import("react").ForwardRefExoticComponent<import("dist/libs/utils/src").DefaultProps & {
|
|
865
|
-
id?: string | undefined;
|
|
866
|
-
dataTestId?: string | undefined;
|
|
867
|
-
className?: string | undefined;
|
|
868
|
-
children?: string | string[] | undefined;
|
|
869
|
-
type?: string | undefined;
|
|
870
|
-
variant?: string | undefined;
|
|
871
|
-
align?: "center" | "left" | "right" | undefined;
|
|
872
|
-
text?: string | undefined;
|
|
873
|
-
htmlFor?: string | undefined;
|
|
874
|
-
} & import("react").RefAttributes<HTMLHeadingElement | HTMLLabelElement | HTMLParagraphElement | HTMLSpanElement | null>>;
|
|
887
|
+
declare const Label: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
888
|
+
$disabled?: boolean | undefined;
|
|
889
|
+
}>>;
|
|
875
890
|
declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
876
|
-
ref?: import("react").
|
|
891
|
+
ref?: import("react").Ref<HTMLLabelElement> | undefined;
|
|
877
892
|
key?: import("react").Key | null | undefined;
|
|
878
893
|
form?: string | undefined;
|
|
879
894
|
htmlFor?: string | undefined;
|
|
@@ -882,17 +897,18 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
882
897
|
suppressContentEditableWarning?: boolean | undefined;
|
|
883
898
|
suppressHydrationWarning?: boolean | undefined;
|
|
884
899
|
accessKey?: string | undefined;
|
|
900
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
885
901
|
autoFocus?: boolean | undefined;
|
|
886
902
|
className?: string | undefined;
|
|
887
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
903
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
888
904
|
contextMenu?: string | undefined;
|
|
889
905
|
dir?: string | undefined;
|
|
890
906
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
907
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
891
908
|
hidden?: boolean | undefined;
|
|
892
909
|
id?: string | undefined;
|
|
893
910
|
lang?: string | undefined;
|
|
894
911
|
nonce?: string | undefined;
|
|
895
|
-
placeholder?: string | undefined;
|
|
896
912
|
slot?: string | undefined;
|
|
897
913
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
898
914
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -912,7 +928,6 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
912
928
|
rev?: string | undefined;
|
|
913
929
|
typeof?: string | undefined;
|
|
914
930
|
vocab?: string | undefined;
|
|
915
|
-
autoCapitalize?: string | undefined;
|
|
916
931
|
autoCorrect?: string | undefined;
|
|
917
932
|
autoSave?: string | undefined;
|
|
918
933
|
color?: string | undefined;
|
|
@@ -923,62 +938,68 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
923
938
|
itemRef?: string | undefined;
|
|
924
939
|
results?: number | undefined;
|
|
925
940
|
security?: string | undefined;
|
|
926
|
-
unselectable?: "
|
|
941
|
+
unselectable?: "off" | "on" | undefined;
|
|
942
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
943
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
944
|
+
popoverTarget?: string | undefined;
|
|
945
|
+
inert?: boolean | undefined;
|
|
927
946
|
inputMode?: "text" | "email" | "search" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
928
947
|
is?: string | undefined;
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
948
|
+
exportparts?: string | undefined;
|
|
949
|
+
part?: string | undefined;
|
|
950
|
+
"aria-activedescendant"?: string | undefined;
|
|
951
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
952
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
953
|
+
"aria-braillelabel"?: string | undefined;
|
|
954
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
955
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
956
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
957
|
+
"aria-colcount"?: number | undefined;
|
|
958
|
+
"aria-colindex"?: number | undefined;
|
|
959
|
+
"aria-colindextext"?: string | undefined;
|
|
960
|
+
"aria-colspan"?: number | undefined;
|
|
961
|
+
"aria-controls"?: string | undefined;
|
|
962
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
963
|
+
"aria-describedby"?: string | undefined;
|
|
964
|
+
"aria-description"?: string | undefined;
|
|
965
|
+
"aria-details"?: string | undefined;
|
|
966
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
967
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
968
|
+
"aria-errormessage"?: string | undefined;
|
|
969
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
970
|
+
"aria-flowto"?: string | undefined;
|
|
971
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
972
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
973
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
974
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
975
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
976
|
+
"aria-label"?: string | undefined;
|
|
977
|
+
"aria-labelledby"?: string | undefined;
|
|
978
|
+
"aria-level"?: number | undefined;
|
|
979
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
980
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
981
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
982
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
983
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
984
|
+
"aria-owns"?: string | undefined;
|
|
985
|
+
"aria-placeholder"?: string | undefined;
|
|
986
|
+
"aria-posinset"?: number | undefined;
|
|
987
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
988
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
989
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
990
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
991
|
+
"aria-roledescription"?: string | undefined;
|
|
992
|
+
"aria-rowcount"?: number | undefined;
|
|
993
|
+
"aria-rowindex"?: number | undefined;
|
|
994
|
+
"aria-rowindextext"?: string | undefined;
|
|
995
|
+
"aria-rowspan"?: number | undefined;
|
|
996
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
997
|
+
"aria-setsize"?: number | undefined;
|
|
998
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
999
|
+
"aria-valuemax"?: number | undefined;
|
|
1000
|
+
"aria-valuemin"?: number | undefined;
|
|
1001
|
+
"aria-valuenow"?: number | undefined;
|
|
1002
|
+
"aria-valuetext"?: string | undefined;
|
|
982
1003
|
children?: import("react").ReactNode;
|
|
983
1004
|
dangerouslySetInnerHTML?: {
|
|
984
1005
|
__html: string | TrustedHTML;
|
|
@@ -1001,7 +1022,7 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
1001
1022
|
onBlurCapture?: import("react").FocusEventHandler<HTMLLabelElement> | undefined;
|
|
1002
1023
|
onChange?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
|
1003
1024
|
onChangeCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
|
1004
|
-
onBeforeInput?: import("react").
|
|
1025
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLLabelElement> | undefined;
|
|
1005
1026
|
onBeforeInputCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
|
1006
1027
|
onInput?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
|
1007
1028
|
onInputCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
|
@@ -1051,8 +1072,6 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
1051
1072
|
onProgressCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
1052
1073
|
onRateChange?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
1053
1074
|
onRateChangeCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
1054
|
-
onResize?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
1055
|
-
onResizeCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
1056
1075
|
onSeeked?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
1057
1076
|
onSeekedCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
1058
1077
|
onSeeking?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
|
@@ -1122,9 +1141,7 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
1122
1141
|
onPointerCancel?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1123
1142
|
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1124
1143
|
onPointerEnter?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1125
|
-
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1126
1144
|
onPointerLeave?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1127
|
-
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1128
1145
|
onPointerOver?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1129
1146
|
onPointerOverCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1130
1147
|
onPointerOut?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
@@ -1135,6 +1152,8 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
1135
1152
|
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
|
1136
1153
|
onScroll?: import("react").UIEventHandler<HTMLLabelElement> | undefined;
|
|
1137
1154
|
onScrollCapture?: import("react").UIEventHandler<HTMLLabelElement> | undefined;
|
|
1155
|
+
onScrollEnd?: import("react").UIEventHandler<HTMLLabelElement> | undefined;
|
|
1156
|
+
onScrollEndCapture?: import("react").UIEventHandler<HTMLLabelElement> | undefined;
|
|
1138
1157
|
onWheel?: import("react").WheelEventHandler<HTMLLabelElement> | undefined;
|
|
1139
1158
|
onWheelCapture?: import("react").WheelEventHandler<HTMLLabelElement> | undefined;
|
|
1140
1159
|
onAnimationStart?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
|
@@ -1143,7 +1162,15 @@ declare const LabelError: import("styled-components").IStyledComponent<"web", {
|
|
|
1143
1162
|
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
|
1144
1163
|
onAnimationIteration?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
|
1145
1164
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
|
1165
|
+
onToggle?: import("react").ToggleEventHandler<HTMLLabelElement> | undefined;
|
|
1166
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLLabelElement> | undefined;
|
|
1167
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1168
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1146
1169
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1147
1170
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1171
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1172
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1173
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1174
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
1148
1175
|
}>;
|
|
1149
1176
|
export { CheckboxContainer, InputContainer, Input, Label, LabelError };
|