@pingux/astro 2.44.0 → 2.45.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/components/AccordionGroup/Accordion.styles.d.ts +70 -0
- package/lib/cjs/components/AccordionGroup/AccordionGroup.d.ts +13 -0
- package/lib/cjs/components/AccordionGroup/AccordionGroup.js +16 -32
- package/lib/cjs/components/AccordionGroup/AccordionGroup.stories.d.ts +52 -0
- package/lib/cjs/components/AccordionGroup/AccordionGroup.stories.js +12 -7
- package/lib/cjs/components/AccordionGroup/AccordionGroup.test.d.ts +1 -0
- package/lib/cjs/components/AccordionGroup/AccordionGroup.test.js +13 -11
- package/lib/cjs/components/AccordionGroup/index.d.ts +1 -0
- package/lib/cjs/components/AccordionItem/AccordionItem.d.ts +17 -0
- package/lib/cjs/components/AccordionItem/AccordionItem.js +9 -34
- package/lib/cjs/components/AccordionItem/index.d.ts +1 -0
- package/lib/cjs/components/FileInputField/FileInputField.js +71 -28
- package/lib/cjs/components/FileInputField/FileInputField.test.js +2 -1
- package/lib/cjs/components/FileInputField/FileItem.js +6 -6
- package/lib/cjs/hooks/useField/useField.d.ts +185 -185
- package/lib/cjs/hooks/useRockerButton/useRockerButton.d.ts +19 -19
- package/lib/cjs/types/item.d.ts +6 -2
- package/lib/components/AccordionGroup/AccordionGroup.js +18 -31
- package/lib/components/AccordionGroup/AccordionGroup.stories.js +12 -7
- package/lib/components/AccordionGroup/AccordionGroup.test.js +13 -11
- package/lib/components/AccordionItem/AccordionItem.js +13 -35
- package/lib/components/FileInputField/FileInputField.js +73 -30
- package/lib/components/FileInputField/FileInputField.test.js +2 -1
- package/lib/components/FileInputField/FileItem.js +6 -6
- package/package.json +4 -2
@@ -117,30 +117,9 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
117
117
|
isDisabled?: boolean | undefined;
|
118
118
|
isFocused?: boolean | undefined;
|
119
119
|
variant?: string | undefined;
|
120
|
-
as?: string | number | boolean | import("react").
|
120
|
+
as?: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | import("react").ReactPortal | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | null | undefined;
|
121
121
|
style?: string | import("react").CSSProperties | undefined;
|
122
|
-
|
123
|
-
filter?: import("theme-ui").StylePropertyValue<import("csstype").Property.Filter | undefined>;
|
124
|
-
marker?: import("theme-ui").StylePropertyValue<import("csstype").Property.Marker | undefined>;
|
125
|
-
mask?: import("theme-ui").StylePropertyValue<import("csstype").Property.Mask<string | number> | undefined>;
|
126
|
-
height?: import("theme-ui").StylePropertyValue<import("csstype").Property.Height<string | number> | undefined>;
|
127
|
-
width?: import("theme-ui").StylePropertyValue<import("csstype").Property.Width<string | number> | undefined>;
|
128
|
-
translate?: import("theme-ui").StylePropertyValue<import("csstype").Property.Translate<string | number> | undefined>;
|
129
|
-
content?: import("theme-ui").StylePropertyValue<import("csstype").Property.Content | undefined>;
|
130
|
-
color?: import("theme-ui").StylePropertyValue<import("csstype").Property.Color | undefined>;
|
131
|
-
fill?: import("theme-ui").StylePropertyValue<import("csstype").Property.Fill | undefined>;
|
132
|
-
margin?: import("theme-ui").StylePropertyValue<import("csstype").Property.Margin<string | number> | undefined>;
|
133
|
-
marginTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginTop<string | number> | undefined>;
|
134
|
-
marginRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginRight<string | number> | undefined>;
|
135
|
-
marginBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBottom<string | number> | undefined>;
|
136
|
-
marginLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
|
137
|
-
padding?: import("theme-ui").StylePropertyValue<import("csstype").Property.Padding<string | number> | undefined>;
|
138
|
-
paddingTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
|
139
|
-
paddingRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingRight<string | number> | undefined>;
|
140
|
-
paddingBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBottom<string | number> | undefined>;
|
141
|
-
paddingLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
|
142
|
-
backgroundColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundColor | undefined>;
|
143
|
-
opacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.Opacity | undefined>;
|
122
|
+
grid?: import("theme-ui").StylePropertyValue<import("csstype").Property.Grid | undefined>;
|
144
123
|
accentColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.AccentColor | undefined>;
|
145
124
|
alignContent?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignContent | undefined>;
|
146
125
|
alignItems?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignItems | undefined>;
|
@@ -163,6 +142,7 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
163
142
|
backgroundAttachment?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundAttachment | undefined>;
|
164
143
|
backgroundBlendMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundBlendMode | undefined>;
|
165
144
|
backgroundClip?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundClip | undefined>;
|
145
|
+
backgroundColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundColor | undefined>;
|
166
146
|
backgroundImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundImage | undefined>;
|
167
147
|
backgroundOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundOrigin | undefined>;
|
168
148
|
backgroundPositionX?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundPositionX<string | number> | undefined>;
|
@@ -221,6 +201,8 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
221
201
|
captionSide?: import("theme-ui").StylePropertyValue<import("csstype").Property.CaptionSide | undefined>;
|
222
202
|
caretColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.CaretColor | undefined>;
|
223
203
|
clear?: import("theme-ui").StylePropertyValue<import("csstype").Property.Clear | undefined>;
|
204
|
+
clipPath?: import("theme-ui").StylePropertyValue<import("csstype").Property.ClipPath | undefined>;
|
205
|
+
color?: import("theme-ui").StylePropertyValue<import("csstype").Property.Color | undefined>;
|
224
206
|
colorAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.PrintColorAdjust | undefined>;
|
225
207
|
colorScheme?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColorScheme | undefined>;
|
226
208
|
columnCount?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnCount | undefined>;
|
@@ -232,6 +214,7 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
232
214
|
columnSpan?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnSpan | undefined>;
|
233
215
|
columnWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
|
234
216
|
contain?: import("theme-ui").StylePropertyValue<import("csstype").Property.Contain | undefined>;
|
217
|
+
content?: import("theme-ui").StylePropertyValue<import("csstype").Property.Content | undefined>;
|
235
218
|
contentVisibility?: import("theme-ui").StylePropertyValue<import("csstype").Property.ContentVisibility | undefined>;
|
236
219
|
counterIncrement?: import("theme-ui").StylePropertyValue<import("csstype").Property.CounterIncrement | undefined>;
|
237
220
|
counterReset?: import("theme-ui").StylePropertyValue<import("csstype").Property.CounterReset | undefined>;
|
@@ -240,6 +223,7 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
240
223
|
direction?: import("theme-ui").StylePropertyValue<import("csstype").Property.Direction | undefined>;
|
241
224
|
display?: import("theme-ui").StylePropertyValue<import("csstype").Property.Display | undefined>;
|
242
225
|
emptyCells?: import("theme-ui").StylePropertyValue<import("csstype").Property.EmptyCells | undefined>;
|
226
|
+
filter?: import("theme-ui").StylePropertyValue<import("csstype").Property.Filter | undefined>;
|
243
227
|
flexBasis?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
|
244
228
|
flexDirection?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexDirection | undefined>;
|
245
229
|
flexGrow?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexGrow | undefined>;
|
@@ -277,6 +261,7 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
277
261
|
gridTemplateColumns?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
|
278
262
|
gridTemplateRows?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
|
279
263
|
hangingPunctuation?: import("theme-ui").StylePropertyValue<import("csstype").Property.HangingPunctuation | undefined>;
|
264
|
+
height?: import("theme-ui").StylePropertyValue<import("csstype").Property.Height<string | number> | undefined>;
|
280
265
|
hyphenateCharacter?: import("theme-ui").StylePropertyValue<import("csstype").Property.HyphenateCharacter | undefined>;
|
281
266
|
hyphens?: import("theme-ui").StylePropertyValue<import("csstype").Property.Hyphens | undefined>;
|
282
267
|
imageOrientation?: import("theme-ui").StylePropertyValue<import("csstype").Property.ImageOrientation | undefined>;
|
@@ -308,9 +293,13 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
308
293
|
marginBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBlock<string | number> | undefined>;
|
309
294
|
marginBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBlockEnd<string | number> | undefined>;
|
310
295
|
marginBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBlockStart<string | number> | undefined>;
|
296
|
+
marginBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBottom<string | number> | undefined>;
|
311
297
|
marginInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInline<string | number> | undefined>;
|
312
298
|
marginInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
|
313
299
|
marginInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
|
300
|
+
marginLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
|
301
|
+
marginRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginRight<string | number> | undefined>;
|
302
|
+
marginTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginTop<string | number> | undefined>;
|
314
303
|
maskBorderMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderMode | undefined>;
|
315
304
|
maskBorderOutset?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
|
316
305
|
maskBorderRepeat?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderRepeat | undefined>;
|
@@ -349,6 +338,7 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
349
338
|
offsetPath?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetPath | undefined>;
|
350
339
|
offsetRotate?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetRotate | undefined>;
|
351
340
|
offsetRotation?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetRotate | undefined>;
|
341
|
+
opacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.Opacity | undefined>;
|
352
342
|
order?: import("theme-ui").StylePropertyValue<import("csstype").Property.Order | undefined>;
|
353
343
|
orphans?: import("theme-ui").StylePropertyValue<import("csstype").Property.Orphans | undefined>;
|
354
344
|
outlineColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.OutlineColor | undefined>;
|
@@ -370,9 +360,13 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
370
360
|
paddingBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBlock<string | number> | undefined>;
|
371
361
|
paddingBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>;
|
372
362
|
paddingBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBlockStart<string | number> | undefined>;
|
363
|
+
paddingBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBottom<string | number> | undefined>;
|
373
364
|
paddingInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInline<string | number> | undefined>;
|
374
365
|
paddingInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
|
375
366
|
paddingInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
|
367
|
+
paddingLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
|
368
|
+
paddingRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingRight<string | number> | undefined>;
|
369
|
+
paddingTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
|
376
370
|
pageBreakAfter?: import("theme-ui").StylePropertyValue<import("csstype").Property.PageBreakAfter | undefined>;
|
377
371
|
pageBreakBefore?: import("theme-ui").StylePropertyValue<import("csstype").Property.PageBreakBefore | undefined>;
|
378
372
|
pageBreakInside?: import("theme-ui").StylePropertyValue<import("csstype").Property.PageBreakInside | undefined>;
|
@@ -463,12 +457,14 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
463
457
|
transitionDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
|
464
458
|
transitionProperty?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionProperty | undefined>;
|
465
459
|
transitionTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionTimingFunction | undefined>;
|
460
|
+
translate?: import("theme-ui").StylePropertyValue<import("csstype").Property.Translate<string | number> | undefined>;
|
466
461
|
unicodeBidi?: import("theme-ui").StylePropertyValue<import("csstype").Property.UnicodeBidi | undefined>;
|
467
462
|
userSelect?: import("theme-ui").StylePropertyValue<import("csstype").Property.UserSelect | undefined>;
|
468
463
|
verticalAlign?: import("theme-ui").StylePropertyValue<import("csstype").Property.VerticalAlign<string | number> | undefined>;
|
469
464
|
visibility?: import("theme-ui").StylePropertyValue<import("csstype").Property.Visibility | undefined>;
|
470
465
|
whiteSpace?: import("theme-ui").StylePropertyValue<import("csstype").Property.WhiteSpace | undefined>;
|
471
466
|
widows?: import("theme-ui").StylePropertyValue<import("csstype").Property.Widows | undefined>;
|
467
|
+
width?: import("theme-ui").StylePropertyValue<import("csstype").Property.Width<string | number> | undefined>;
|
472
468
|
willChange?: import("theme-ui").StylePropertyValue<import("csstype").Property.WillChange | undefined>;
|
473
469
|
wordBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.WordBreak | undefined>;
|
474
470
|
wordSpacing?: import("theme-ui").StylePropertyValue<import("csstype").Property.WordSpacing<string | number> | undefined>;
|
@@ -500,19 +496,21 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
500
496
|
flexFlow?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexFlow | undefined>;
|
501
497
|
font?: import("theme-ui").StylePropertyValue<import("csstype").Property.Font | undefined>;
|
502
498
|
gap?: import("theme-ui").StylePropertyValue<import("csstype").Property.Gap<string | number> | undefined>;
|
503
|
-
grid?: import("theme-ui").StylePropertyValue<import("csstype").Property.Grid | undefined>;
|
504
499
|
gridArea?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridArea | undefined>;
|
505
500
|
gridColumn?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridColumn | undefined>;
|
506
501
|
gridRow?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridRow | undefined>;
|
507
502
|
gridTemplate?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridTemplate | undefined>;
|
508
503
|
lineClamp?: import("theme-ui").StylePropertyValue<import("csstype").Property.LineClamp | undefined>;
|
509
504
|
listStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.ListStyle | undefined>;
|
505
|
+
margin?: import("theme-ui").StylePropertyValue<import("csstype").Property.Margin<string | number> | undefined>;
|
506
|
+
mask?: import("theme-ui").StylePropertyValue<import("csstype").Property.Mask<string | number> | undefined>;
|
510
507
|
maskBorder?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorder | undefined>;
|
511
508
|
motion?: import("theme-ui").StylePropertyValue<import("csstype").Property.Offset<string | number> | undefined>;
|
512
509
|
offset?: import("theme-ui").StylePropertyValue<import("csstype").Property.Offset<string | number> | undefined>;
|
513
510
|
outline?: import("theme-ui").StylePropertyValue<import("csstype").Property.Outline<string | number> | undefined>;
|
514
511
|
overflow?: import("theme-ui").StylePropertyValue<import("csstype").Property.Overflow | undefined>;
|
515
512
|
overscrollBehavior?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverscrollBehavior | undefined>;
|
513
|
+
padding?: import("theme-ui").StylePropertyValue<import("csstype").Property.Padding<string | number> | undefined>;
|
516
514
|
placeItems?: import("theme-ui").StylePropertyValue<import("csstype").Property.PlaceItems | undefined>;
|
517
515
|
placeSelf?: import("theme-ui").StylePropertyValue<import("csstype").Property.PlaceSelf | undefined>;
|
518
516
|
textDecoration?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecoration<string | number> | undefined>;
|
@@ -525,12 +523,14 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
525
523
|
colorInterpolation?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColorInterpolation | undefined>;
|
526
524
|
colorRendering?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColorRendering | undefined>;
|
527
525
|
dominantBaseline?: import("theme-ui").StylePropertyValue<import("csstype").Property.DominantBaseline | undefined>;
|
526
|
+
fill?: import("theme-ui").StylePropertyValue<import("csstype").Property.Fill | undefined>;
|
528
527
|
fillOpacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.FillOpacity | undefined>;
|
529
528
|
fillRule?: import("theme-ui").StylePropertyValue<import("csstype").Property.FillRule | undefined>;
|
530
529
|
floodColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.FloodColor | undefined>;
|
531
530
|
floodOpacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.FloodOpacity | undefined>;
|
532
531
|
glyphOrientationVertical?: import("theme-ui").StylePropertyValue<import("csstype").Property.GlyphOrientationVertical | undefined>;
|
533
532
|
lightingColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.LightingColor | undefined>;
|
533
|
+
marker?: import("theme-ui").StylePropertyValue<import("csstype").Property.Marker | undefined>;
|
534
534
|
markerEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarkerEnd | undefined>;
|
535
535
|
markerMid?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarkerMid | undefined>;
|
536
536
|
markerStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarkerStart | undefined>;
|
@@ -831,52 +831,52 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
831
831
|
role?: import("../../types").AriaRole | undefined;
|
832
832
|
className: string;
|
833
833
|
'aria-activedescendant'?: string | undefined;
|
834
|
-
'aria-atomic'?: (boolean | "
|
835
|
-
'aria-autocomplete'?: "list" | "none" | "
|
834
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
835
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
836
836
|
'aria-braillelabel'?: string | undefined;
|
837
837
|
'aria-brailleroledescription'?: string | undefined;
|
838
|
-
'aria-busy'?: (boolean | "
|
839
|
-
'aria-checked'?: boolean | "
|
838
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
839
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
840
840
|
'aria-colcount'?: number | undefined;
|
841
841
|
'aria-colindex'?: number | undefined;
|
842
842
|
'aria-colindextext'?: string | undefined;
|
843
843
|
'aria-colspan'?: number | undefined;
|
844
844
|
'aria-controls'?: string | undefined;
|
845
|
-
'aria-current'?: boolean | "time" | "
|
845
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
846
846
|
'aria-describedby'?: string | undefined;
|
847
847
|
'aria-description'?: string | undefined;
|
848
848
|
'aria-details'?: string | undefined;
|
849
|
-
'aria-disabled'?: (boolean | "
|
850
|
-
'aria-dropeffect'?: "link" | "none" | "copy" | "
|
849
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
850
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
851
851
|
'aria-errormessage'?: string | undefined;
|
852
|
-
'aria-expanded'?: (boolean | "
|
852
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
853
853
|
'aria-flowto'?: string | undefined;
|
854
|
-
'aria-grabbed'?: (boolean | "
|
855
|
-
'aria-haspopup'?: boolean | "dialog" | "
|
856
|
-
'aria-hidden'?: (boolean | "
|
857
|
-
'aria-invalid'?: boolean | "
|
854
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
855
|
+
'aria-haspopup'?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "false" | "true" | undefined;
|
856
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
857
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
858
858
|
'aria-keyshortcuts'?: string | undefined;
|
859
859
|
'aria-label'?: string | undefined;
|
860
860
|
'aria-labelledby'?: string | undefined;
|
861
861
|
'aria-level'?: number | undefined;
|
862
862
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
863
|
-
'aria-modal'?: (boolean | "
|
864
|
-
'aria-multiline'?: (boolean | "
|
865
|
-
'aria-multiselectable'?: (boolean | "
|
866
|
-
'aria-orientation'?: "
|
863
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
864
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
865
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
866
|
+
'aria-orientation'?: "vertical" | "horizontal" | undefined;
|
867
867
|
'aria-owns'?: string | undefined;
|
868
868
|
'aria-placeholder'?: string | undefined;
|
869
869
|
'aria-posinset'?: number | undefined;
|
870
|
-
'aria-pressed'?: boolean | "
|
871
|
-
'aria-readonly'?: (boolean | "
|
872
|
-
'aria-relevant'?: "
|
873
|
-
'aria-required'?: (boolean | "
|
870
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
871
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
872
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
873
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
874
874
|
'aria-roledescription'?: string | undefined;
|
875
875
|
'aria-rowcount'?: number | undefined;
|
876
876
|
'aria-rowindex'?: number | undefined;
|
877
877
|
'aria-rowindextext'?: string | undefined;
|
878
878
|
'aria-rowspan'?: number | undefined;
|
879
|
-
'aria-selected'?: (boolean | "
|
879
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
880
880
|
'aria-setsize'?: number | undefined;
|
881
881
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
882
882
|
'aria-valuemax'?: number | undefined;
|
@@ -1056,109 +1056,68 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
1056
1056
|
[className: string]: boolean;
|
1057
1057
|
} | undefined;
|
1058
1058
|
form?: string | undefined;
|
1059
|
-
slot?: string | undefined;
|
1060
|
-
style?: import("react").CSSProperties | undefined;
|
1061
|
-
title?: string | undefined;
|
1062
|
-
key?: Key | null | undefined;
|
1063
|
-
defaultChecked?: boolean | undefined;
|
1064
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
1065
|
-
suppressContentEditableWarning?: boolean | undefined;
|
1066
|
-
suppressHydrationWarning?: boolean | undefined;
|
1067
|
-
accessKey?: string | undefined;
|
1068
|
-
autoFocus?: boolean | undefined;
|
1069
|
-
className: string;
|
1070
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
1071
|
-
contextMenu?: string | undefined;
|
1072
|
-
dir?: string | undefined;
|
1073
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
1074
|
-
hidden?: boolean | undefined;
|
1075
|
-
id?: string | undefined;
|
1076
|
-
lang?: string | undefined;
|
1077
|
-
nonce?: string | undefined;
|
1078
|
-
placeholder?: string | undefined;
|
1079
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
1080
|
-
tabIndex?: number | undefined;
|
1081
|
-
translate?: "yes" | "no" | undefined;
|
1082
|
-
radioGroup?: string | undefined;
|
1083
1059
|
role?: import("react").AriaRole | undefined;
|
1084
|
-
|
1085
|
-
content?: string | undefined;
|
1086
|
-
datatype?: string | undefined;
|
1087
|
-
inlist?: any;
|
1088
|
-
prefix?: string | undefined;
|
1089
|
-
property?: string | undefined;
|
1090
|
-
rel?: string | undefined;
|
1091
|
-
resource?: string | undefined;
|
1092
|
-
rev?: string | undefined;
|
1093
|
-
typeof?: string | undefined;
|
1094
|
-
vocab?: string | undefined;
|
1095
|
-
autoCapitalize?: string | undefined;
|
1096
|
-
autoCorrect?: string | undefined;
|
1097
|
-
autoSave?: string | undefined;
|
1098
|
-
color?: string | undefined;
|
1099
|
-
itemProp?: string | undefined;
|
1100
|
-
itemScope?: boolean | undefined;
|
1101
|
-
itemType?: string | undefined;
|
1102
|
-
itemID?: string | undefined;
|
1103
|
-
itemRef?: string | undefined;
|
1104
|
-
results?: number | undefined;
|
1105
|
-
security?: string | undefined;
|
1106
|
-
unselectable?: "on" | "off" | undefined;
|
1107
|
-
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1108
|
-
is?: string | undefined;
|
1060
|
+
className: string;
|
1109
1061
|
'aria-activedescendant'?: string | undefined;
|
1110
|
-
'aria-atomic'?: (boolean | "
|
1111
|
-
'aria-autocomplete'?: "list" | "none" | "
|
1062
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
1063
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
1112
1064
|
'aria-braillelabel'?: string | undefined;
|
1113
1065
|
'aria-brailleroledescription'?: string | undefined;
|
1114
|
-
'aria-busy'?: (boolean | "
|
1115
|
-
'aria-checked'?: boolean | "
|
1066
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
1067
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
1116
1068
|
'aria-colcount'?: number | undefined;
|
1117
1069
|
'aria-colindex'?: number | undefined;
|
1118
1070
|
'aria-colindextext'?: string | undefined;
|
1119
1071
|
'aria-colspan'?: number | undefined;
|
1120
1072
|
'aria-controls'?: string | undefined;
|
1121
|
-
'aria-current'?: boolean | "time" | "
|
1073
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
1122
1074
|
'aria-describedby'?: string | undefined;
|
1123
1075
|
'aria-description'?: string | undefined;
|
1124
1076
|
'aria-details'?: string | undefined;
|
1125
|
-
'aria-disabled'?: (boolean | "
|
1126
|
-
'aria-dropeffect'?: "link" | "none" | "copy" | "
|
1077
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
1078
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
1127
1079
|
'aria-errormessage'?: string | undefined;
|
1128
|
-
'aria-expanded'?: (boolean | "
|
1080
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
1129
1081
|
'aria-flowto'?: string | undefined;
|
1130
|
-
'aria-grabbed'?: (boolean | "
|
1131
|
-
'aria-haspopup'?: boolean | "dialog" | "
|
1132
|
-
'aria-hidden'?: (boolean | "
|
1133
|
-
'aria-invalid'?: boolean | "
|
1082
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
1083
|
+
'aria-haspopup'?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "false" | "true" | undefined;
|
1084
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
1085
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
1134
1086
|
'aria-keyshortcuts'?: string | undefined;
|
1135
1087
|
'aria-label'?: string | undefined;
|
1136
1088
|
'aria-labelledby'?: string | undefined;
|
1137
1089
|
'aria-level'?: number | undefined;
|
1138
1090
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
1139
|
-
'aria-modal'?: (boolean | "
|
1140
|
-
'aria-multiline'?: (boolean | "
|
1141
|
-
'aria-multiselectable'?: (boolean | "
|
1142
|
-
'aria-orientation'?: "
|
1091
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
1092
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
1093
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
1094
|
+
'aria-orientation'?: "vertical" | "horizontal" | undefined;
|
1143
1095
|
'aria-owns'?: string | undefined;
|
1144
1096
|
'aria-placeholder'?: string | undefined;
|
1145
1097
|
'aria-posinset'?: number | undefined;
|
1146
|
-
'aria-pressed'?: boolean | "
|
1147
|
-
'aria-readonly'?: (boolean | "
|
1148
|
-
'aria-relevant'?: "
|
1149
|
-
'aria-required'?: (boolean | "
|
1098
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
1099
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
1100
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
1101
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
1150
1102
|
'aria-roledescription'?: string | undefined;
|
1151
1103
|
'aria-rowcount'?: number | undefined;
|
1152
1104
|
'aria-rowindex'?: number | undefined;
|
1153
1105
|
'aria-rowindextext'?: string | undefined;
|
1154
1106
|
'aria-rowspan'?: number | undefined;
|
1155
|
-
'aria-selected'?: (boolean | "
|
1107
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
1156
1108
|
'aria-setsize'?: number | undefined;
|
1157
1109
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
1158
1110
|
'aria-valuemax'?: number | undefined;
|
1159
1111
|
'aria-valuemin'?: number | undefined;
|
1160
1112
|
'aria-valuenow'?: number | undefined;
|
1161
1113
|
'aria-valuetext'?: string | undefined;
|
1114
|
+
color?: string | undefined;
|
1115
|
+
content?: string | undefined;
|
1116
|
+
translate?: "yes" | "no" | undefined;
|
1117
|
+
style?: import("react").CSSProperties | undefined;
|
1118
|
+
slot?: string | undefined;
|
1119
|
+
title?: string | undefined;
|
1120
|
+
id?: string | undefined;
|
1162
1121
|
children: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined;
|
1163
1122
|
dangerouslySetInnerHTML?: {
|
1164
1123
|
__html: string | TrustedHTML;
|
@@ -1325,6 +1284,47 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
1325
1284
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
1326
1285
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
1327
1286
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
1287
|
+
key?: Key | null | undefined;
|
1288
|
+
defaultChecked?: boolean | undefined;
|
1289
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
1290
|
+
suppressContentEditableWarning?: boolean | undefined;
|
1291
|
+
suppressHydrationWarning?: boolean | undefined;
|
1292
|
+
accessKey?: string | undefined;
|
1293
|
+
autoFocus?: boolean | undefined;
|
1294
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
1295
|
+
contextMenu?: string | undefined;
|
1296
|
+
dir?: string | undefined;
|
1297
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
1298
|
+
hidden?: boolean | undefined;
|
1299
|
+
lang?: string | undefined;
|
1300
|
+
nonce?: string | undefined;
|
1301
|
+
placeholder?: string | undefined;
|
1302
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
1303
|
+
tabIndex?: number | undefined;
|
1304
|
+
radioGroup?: string | undefined;
|
1305
|
+
about?: string | undefined;
|
1306
|
+
datatype?: string | undefined;
|
1307
|
+
inlist?: any;
|
1308
|
+
prefix?: string | undefined;
|
1309
|
+
property?: string | undefined;
|
1310
|
+
rel?: string | undefined;
|
1311
|
+
resource?: string | undefined;
|
1312
|
+
rev?: string | undefined;
|
1313
|
+
typeof?: string | undefined;
|
1314
|
+
vocab?: string | undefined;
|
1315
|
+
autoCapitalize?: string | undefined;
|
1316
|
+
autoCorrect?: string | undefined;
|
1317
|
+
autoSave?: string | undefined;
|
1318
|
+
itemProp?: string | undefined;
|
1319
|
+
itemScope?: boolean | undefined;
|
1320
|
+
itemType?: string | undefined;
|
1321
|
+
itemID?: string | undefined;
|
1322
|
+
itemRef?: string | undefined;
|
1323
|
+
results?: number | undefined;
|
1324
|
+
security?: string | undefined;
|
1325
|
+
unselectable?: "off" | "on" | undefined;
|
1326
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1327
|
+
is?: string | undefined;
|
1328
1328
|
htmlFor?: string | undefined;
|
1329
1329
|
ref?: ((instance: HTMLLabelElement | null) => void) | import("react").RefObject<HTMLLabelElement> | null | undefined;
|
1330
1330
|
as?: import("react").ElementType<any> | undefined;
|
@@ -1371,109 +1371,68 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
1371
1371
|
[className: string]: boolean;
|
1372
1372
|
} | undefined;
|
1373
1373
|
form?: string | undefined;
|
1374
|
-
slot?: string | undefined;
|
1375
|
-
style?: import("react").CSSProperties | undefined;
|
1376
|
-
title?: string | undefined;
|
1377
|
-
key?: Key | null | undefined;
|
1378
|
-
defaultChecked?: boolean | undefined;
|
1379
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
1380
|
-
suppressContentEditableWarning?: boolean | undefined;
|
1381
|
-
suppressHydrationWarning?: boolean | undefined;
|
1382
|
-
accessKey?: string | undefined;
|
1383
|
-
autoFocus?: boolean | undefined;
|
1384
|
-
className: string;
|
1385
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
1386
|
-
contextMenu?: string | undefined;
|
1387
|
-
dir?: string | undefined;
|
1388
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
1389
|
-
hidden?: boolean | undefined;
|
1390
|
-
id?: string | undefined;
|
1391
|
-
lang?: string | undefined;
|
1392
|
-
nonce?: string | undefined;
|
1393
|
-
placeholder?: string | undefined;
|
1394
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
1395
|
-
tabIndex?: number | undefined;
|
1396
|
-
translate?: "yes" | "no" | undefined;
|
1397
|
-
radioGroup?: string | undefined;
|
1398
1374
|
role?: import("react").AriaRole | undefined;
|
1399
|
-
|
1400
|
-
content?: string | undefined;
|
1401
|
-
datatype?: string | undefined;
|
1402
|
-
inlist?: any;
|
1403
|
-
prefix?: string | undefined;
|
1404
|
-
property?: string | undefined;
|
1405
|
-
rel?: string | undefined;
|
1406
|
-
resource?: string | undefined;
|
1407
|
-
rev?: string | undefined;
|
1408
|
-
typeof?: string | undefined;
|
1409
|
-
vocab?: string | undefined;
|
1410
|
-
autoCapitalize?: string | undefined;
|
1411
|
-
autoCorrect?: string | undefined;
|
1412
|
-
autoSave?: string | undefined;
|
1413
|
-
color?: string | undefined;
|
1414
|
-
itemProp?: string | undefined;
|
1415
|
-
itemScope?: boolean | undefined;
|
1416
|
-
itemType?: string | undefined;
|
1417
|
-
itemID?: string | undefined;
|
1418
|
-
itemRef?: string | undefined;
|
1419
|
-
results?: number | undefined;
|
1420
|
-
security?: string | undefined;
|
1421
|
-
unselectable?: "on" | "off" | undefined;
|
1422
|
-
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1423
|
-
is?: string | undefined;
|
1375
|
+
className: string;
|
1424
1376
|
'aria-activedescendant'?: string | undefined;
|
1425
|
-
'aria-atomic'?: (boolean | "
|
1426
|
-
'aria-autocomplete'?: "list" | "none" | "
|
1377
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
1378
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
1427
1379
|
'aria-braillelabel'?: string | undefined;
|
1428
1380
|
'aria-brailleroledescription'?: string | undefined;
|
1429
|
-
'aria-busy'?: (boolean | "
|
1430
|
-
'aria-checked'?: boolean | "
|
1381
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
1382
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
1431
1383
|
'aria-colcount'?: number | undefined;
|
1432
1384
|
'aria-colindex'?: number | undefined;
|
1433
1385
|
'aria-colindextext'?: string | undefined;
|
1434
1386
|
'aria-colspan'?: number | undefined;
|
1435
1387
|
'aria-controls'?: string | undefined;
|
1436
|
-
'aria-current'?: boolean | "time" | "
|
1388
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
1437
1389
|
'aria-describedby'?: string | undefined;
|
1438
1390
|
'aria-description'?: string | undefined;
|
1439
1391
|
'aria-details'?: string | undefined;
|
1440
|
-
'aria-disabled'?: (boolean | "
|
1441
|
-
'aria-dropeffect'?: "link" | "none" | "copy" | "
|
1392
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
1393
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
1442
1394
|
'aria-errormessage'?: string | undefined;
|
1443
|
-
'aria-expanded'?: (boolean | "
|
1395
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
1444
1396
|
'aria-flowto'?: string | undefined;
|
1445
|
-
'aria-grabbed'?: (boolean | "
|
1446
|
-
'aria-haspopup'?: boolean | "dialog" | "
|
1447
|
-
'aria-hidden'?: (boolean | "
|
1448
|
-
'aria-invalid'?: boolean | "
|
1397
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
1398
|
+
'aria-haspopup'?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "false" | "true" | undefined;
|
1399
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
1400
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
1449
1401
|
'aria-keyshortcuts'?: string | undefined;
|
1450
1402
|
'aria-label'?: string | undefined;
|
1451
1403
|
'aria-labelledby'?: string | undefined;
|
1452
1404
|
'aria-level'?: number | undefined;
|
1453
1405
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
1454
|
-
'aria-modal'?: (boolean | "
|
1455
|
-
'aria-multiline'?: (boolean | "
|
1456
|
-
'aria-multiselectable'?: (boolean | "
|
1457
|
-
'aria-orientation'?: "
|
1406
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
1407
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
1408
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
1409
|
+
'aria-orientation'?: "vertical" | "horizontal" | undefined;
|
1458
1410
|
'aria-owns'?: string | undefined;
|
1459
1411
|
'aria-placeholder'?: string | undefined;
|
1460
1412
|
'aria-posinset'?: number | undefined;
|
1461
|
-
'aria-pressed'?: boolean | "
|
1462
|
-
'aria-readonly'?: (boolean | "
|
1463
|
-
'aria-relevant'?: "
|
1464
|
-
'aria-required'?: (boolean | "
|
1413
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
1414
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
1415
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
1416
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
1465
1417
|
'aria-roledescription'?: string | undefined;
|
1466
1418
|
'aria-rowcount'?: number | undefined;
|
1467
1419
|
'aria-rowindex'?: number | undefined;
|
1468
1420
|
'aria-rowindextext'?: string | undefined;
|
1469
1421
|
'aria-rowspan'?: number | undefined;
|
1470
|
-
'aria-selected'?: (boolean | "
|
1422
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
1471
1423
|
'aria-setsize'?: number | undefined;
|
1472
1424
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
1473
1425
|
'aria-valuemax'?: number | undefined;
|
1474
1426
|
'aria-valuemin'?: number | undefined;
|
1475
1427
|
'aria-valuenow'?: number | undefined;
|
1476
1428
|
'aria-valuetext'?: string | undefined;
|
1429
|
+
color?: string | undefined;
|
1430
|
+
content?: string | undefined;
|
1431
|
+
translate?: "yes" | "no" | undefined;
|
1432
|
+
style?: import("react").CSSProperties | undefined;
|
1433
|
+
slot?: string | undefined;
|
1434
|
+
title?: string | undefined;
|
1435
|
+
id?: string | undefined;
|
1477
1436
|
children: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined;
|
1478
1437
|
dangerouslySetInnerHTML?: {
|
1479
1438
|
__html: string | TrustedHTML;
|
@@ -1640,6 +1599,47 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
|
|
1640
1599
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1641
1600
|
onTransitionEnd?: import("react").TransitionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1642
1601
|
onTransitionEndCapture?: import("react").TransitionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1602
|
+
key?: Key | null | undefined;
|
1603
|
+
defaultChecked?: boolean | undefined;
|
1604
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
1605
|
+
suppressContentEditableWarning?: boolean | undefined;
|
1606
|
+
suppressHydrationWarning?: boolean | undefined;
|
1607
|
+
accessKey?: string | undefined;
|
1608
|
+
autoFocus?: boolean | undefined;
|
1609
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
1610
|
+
contextMenu?: string | undefined;
|
1611
|
+
dir?: string | undefined;
|
1612
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
1613
|
+
hidden?: boolean | undefined;
|
1614
|
+
lang?: string | undefined;
|
1615
|
+
nonce?: string | undefined;
|
1616
|
+
placeholder?: string | undefined;
|
1617
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
1618
|
+
tabIndex?: number | undefined;
|
1619
|
+
radioGroup?: string | undefined;
|
1620
|
+
about?: string | undefined;
|
1621
|
+
datatype?: string | undefined;
|
1622
|
+
inlist?: any;
|
1623
|
+
prefix?: string | undefined;
|
1624
|
+
property?: string | undefined;
|
1625
|
+
rel?: string | undefined;
|
1626
|
+
resource?: string | undefined;
|
1627
|
+
rev?: string | undefined;
|
1628
|
+
typeof?: string | undefined;
|
1629
|
+
vocab?: string | undefined;
|
1630
|
+
autoCapitalize?: string | undefined;
|
1631
|
+
autoCorrect?: string | undefined;
|
1632
|
+
autoSave?: string | undefined;
|
1633
|
+
itemProp?: string | undefined;
|
1634
|
+
itemScope?: boolean | undefined;
|
1635
|
+
itemType?: string | undefined;
|
1636
|
+
itemID?: string | undefined;
|
1637
|
+
itemRef?: string | undefined;
|
1638
|
+
results?: number | undefined;
|
1639
|
+
security?: string | undefined;
|
1640
|
+
unselectable?: "off" | "on" | undefined;
|
1641
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1642
|
+
is?: string | undefined;
|
1643
1643
|
htmlFor?: string | undefined;
|
1644
1644
|
ref?: ((instance: HTMLLabelElement | null) => void) | import("react").RefObject<HTMLLabelElement> | null | undefined;
|
1645
1645
|
as?: import("react").ElementType<any> | undefined;
|