@overmap-ai/forms 1.0.32-react-flow-david-fixes.11 → 1.0.32-react-flow-david-fixes.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/form/builder/components/FieldBuilder.d.ts +1 -2
  2. package/dist/form/builder/components/index.d.ts +1 -2
  3. package/dist/form/conditions/DateFieldCondition/DateFieldCondition.d.ts +6 -6
  4. package/dist/form/conditions/NumberFieldCondition/NumberFieldCondition.d.ts +16 -16
  5. package/dist/form/conditions/OTPFieldCondition/OTPFieldCondition.d.ts +1 -1
  6. package/dist/form/conditions/OTPFieldCondition/typings.d.ts +1 -2
  7. package/dist/form/conditions/RadioFieldCondition/RadioFieldCondition.d.ts +4 -4
  8. package/dist/form/conditions/SelectFieldCondition/SelectFieldCondition.d.ts +4 -4
  9. package/dist/form/conditions/components/RemoveConditionButton.d.ts +1 -1
  10. package/dist/form/fields/BaseField/BaseField.d.ts +7 -5
  11. package/dist/form/fields/BaseField/index.d.ts +0 -1
  12. package/dist/form/fields/BaseField/typings.d.ts +2 -1
  13. package/dist/form/fields/BaseFormElement/BaseFormElement.d.ts +1 -2
  14. package/dist/form/fields/BaseFormElement/typings.d.ts +8 -2
  15. package/dist/form/fields/BaseStringField/BaseStringField.d.ts +5 -2
  16. package/dist/form/fields/BooleanField/BooleanField.d.ts +6 -2
  17. package/dist/form/fields/BooleanField/BooleanInput.d.ts +1 -1
  18. package/dist/form/fields/CheckboxListField/CheckboxListField.d.ts +5 -1
  19. package/dist/form/fields/CheckboxListField/CheckboxListInput.d.ts +1 -1
  20. package/dist/form/fields/DateField/DateField.d.ts +9 -6
  21. package/dist/form/fields/DateField/DateInput.d.ts +1 -1
  22. package/dist/form/fields/FieldSection/FieldSection.d.ts +3 -4
  23. package/dist/form/fields/FieldSection/FieldSectionLayout.d.ts +1 -1
  24. package/dist/form/fields/FieldSection/typings.d.ts +1 -1
  25. package/dist/form/fields/MultiSelectField/MultiSelectField.d.ts +5 -3
  26. package/dist/form/fields/MultiSelectField/MultiSelectInput.d.ts +1 -1
  27. package/dist/form/fields/MultiStringField/MultiStringField.d.ts +6 -4
  28. package/dist/form/fields/MultiStringField/MultiStringInput.d.ts +1 -1
  29. package/dist/form/fields/NumberField/NumberField.d.ts +11 -7
  30. package/dist/form/fields/NumberField/NumberInput.d.ts +1 -1
  31. package/dist/form/fields/OneTimePasswordField/OTPField.d.ts +6 -2
  32. package/dist/form/fields/OneTimePasswordField/OTPInput.d.ts +1 -1
  33. package/dist/form/fields/RadioField/RadioField.d.ts +9 -5
  34. package/dist/form/fields/RadioField/RadioInput.d.ts +1 -1
  35. package/dist/form/fields/ScanField/ScanField.d.ts +5 -1
  36. package/dist/form/fields/ScanField/ScanInput.d.ts +1 -1
  37. package/dist/form/fields/SelectField/SelectField.d.ts +9 -5
  38. package/dist/form/fields/SelectField/SelectInput.d.ts +1 -1
  39. package/dist/form/fields/StringField/StringField.d.ts +1 -1
  40. package/dist/form/fields/StringField/StringInput.d.ts +1 -1
  41. package/dist/form/fields/TextField/TextField.d.ts +1 -1
  42. package/dist/form/fields/TextField/TextInput.d.ts +1 -1
  43. package/dist/form/fields/UploadField/UploadField.d.ts +6 -4
  44. package/dist/form/fields/UploadField/UploadInput.d.ts +1 -1
  45. package/dist/form/fields/UploadField/utils.d.ts +2 -0
  46. package/dist/form/fields/_utils.d.ts +2 -0
  47. package/dist/form/fields/hooks.d.ts +398 -2
  48. package/dist/form/fields/index.d.ts +2 -0
  49. package/dist/form/fields/typings.d.ts +2 -10
  50. package/dist/form/fields/utils.d.ts +3 -1
  51. package/dist/form/index.d.ts +1 -1
  52. package/dist/form/typings.d.ts +1 -1
  53. package/dist/form/utils.d.ts +6 -7
  54. package/dist/forms.js +698 -567
  55. package/dist/forms.umd.cjs +698 -567
  56. package/package.json +1 -1
  57. package/dist/form/fields/BaseField/hooks.d.ts +0 -397
  58. /package/dist/form/builder/{components → list}/FieldSectionBuilder.d.ts +0 -0
  59. /package/dist/form/builder/{components → list}/FieldSectionWithActions.d.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overmap-ai/forms",
3
- "version": "1.0.32-react-flow-david-fixes.11",
3
+ "version": "1.0.32-react-flow-david-fixes.13",
4
4
  "license": "UNLICENSED",
5
5
  "main": "dist/forms.umd.cjs",
6
6
  "module": "dist/forms.js",
@@ -1,397 +0,0 @@
1
- import { AnyField, FieldRenderProps, ValueOfField } from '../typings';
2
- export declare const useFormikInput: <TField extends AnyField>(props: FieldRenderProps & {
3
- field: TField;
4
- }) => readonly [{
5
- readonly helpText: string | null;
6
- readonly size: import('@overmap-ai/blocks').TextSize | undefined;
7
- readonly severity: "danger" | undefined;
8
- readonly inputId: string;
9
- readonly labelId: string;
10
- readonly label: string;
11
- readonly showInputOnly: boolean | undefined;
12
- readonly fieldProps: {
13
- onChange: (value: ValueOfField<TField> | undefined) => void;
14
- onBlur: (value: ValueOfField<TField> | undefined) => void;
15
- value: ValueOfField<TField> | undefined;
16
- name: string;
17
- multiple?: boolean;
18
- checked?: boolean;
19
- };
20
- readonly helpers: import('formik').FieldHelperProps<ValueOfField<TField> | undefined>;
21
- readonly field: TField;
22
- readonly touched: boolean;
23
- }, {
24
- readonly "aria-labelledby": string;
25
- readonly formId: string;
26
- readonly cite?: string | undefined;
27
- readonly data?: string | undefined;
28
- readonly form?: string | undefined;
29
- readonly label?: string | undefined;
30
- readonly slot?: string | undefined;
31
- readonly span?: number | undefined;
32
- readonly style?: import('react').CSSProperties | undefined;
33
- readonly summary?: string | undefined;
34
- readonly title?: string | undefined;
35
- readonly pattern?: string | undefined;
36
- readonly key?: import('react').Key | null | undefined;
37
- readonly defaultChecked?: boolean | undefined;
38
- readonly suppressContentEditableWarning?: boolean | undefined;
39
- readonly suppressHydrationWarning?: boolean | undefined;
40
- readonly accessKey?: string | undefined;
41
- readonly autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
42
- readonly autoFocus?: boolean | undefined;
43
- readonly className?: string | undefined;
44
- readonly contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
45
- readonly contextMenu?: string | undefined;
46
- readonly draggable?: (boolean | "true" | "false") | undefined;
47
- readonly enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
48
- readonly hidden?: boolean | undefined;
49
- readonly id?: string | undefined;
50
- readonly lang?: string | undefined;
51
- readonly nonce?: string | undefined;
52
- readonly spellCheck?: (boolean | "true" | "false") | undefined;
53
- readonly tabIndex?: number | undefined;
54
- readonly translate?: "yes" | "no" | undefined;
55
- readonly radioGroup?: string | undefined;
56
- readonly role?: import('react').AriaRole | undefined;
57
- readonly about?: string | undefined;
58
- readonly content?: string | undefined;
59
- readonly datatype?: string | undefined;
60
- readonly inlist?: any;
61
- readonly prefix?: string | undefined;
62
- readonly property?: string | undefined;
63
- readonly rel?: string | undefined;
64
- readonly resource?: string | undefined;
65
- readonly rev?: string | undefined;
66
- readonly typeof?: string | undefined;
67
- readonly vocab?: string | undefined;
68
- readonly autoCorrect?: string | undefined;
69
- readonly autoSave?: string | undefined;
70
- readonly itemProp?: string | undefined;
71
- readonly itemScope?: boolean | undefined;
72
- readonly itemType?: string | undefined;
73
- readonly itemID?: string | undefined;
74
- readonly itemRef?: string | undefined;
75
- readonly results?: number | undefined;
76
- readonly security?: string | undefined;
77
- readonly unselectable?: "on" | "off" | undefined;
78
- readonly popover?: "" | "auto" | "manual" | undefined;
79
- readonly popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
80
- readonly popoverTarget?: string | undefined;
81
- readonly inert?: boolean | undefined;
82
- readonly inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
83
- readonly is?: string | undefined;
84
- readonly "aria-activedescendant"?: string | undefined;
85
- readonly "aria-atomic"?: (boolean | "true" | "false") | undefined;
86
- readonly "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
87
- readonly "aria-braillelabel"?: string | undefined;
88
- readonly "aria-brailleroledescription"?: string | undefined;
89
- readonly "aria-busy"?: (boolean | "true" | "false") | undefined;
90
- readonly "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
91
- readonly "aria-colcount"?: number | undefined;
92
- readonly "aria-colindex"?: number | undefined;
93
- readonly "aria-colindextext"?: string | undefined;
94
- readonly "aria-colspan"?: number | undefined;
95
- readonly "aria-controls"?: string | undefined;
96
- readonly "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
97
- readonly "aria-describedby"?: string | undefined;
98
- readonly "aria-description"?: string | undefined;
99
- readonly "aria-details"?: string | undefined;
100
- readonly "aria-disabled"?: (boolean | "true" | "false") | undefined;
101
- readonly "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
102
- readonly "aria-errormessage"?: string | undefined;
103
- readonly "aria-expanded"?: (boolean | "true" | "false") | undefined;
104
- readonly "aria-flowto"?: string | undefined;
105
- readonly "aria-grabbed"?: (boolean | "true" | "false") | undefined;
106
- readonly "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
107
- readonly "aria-hidden"?: (boolean | "true" | "false") | undefined;
108
- readonly "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
109
- readonly "aria-keyshortcuts"?: string | undefined;
110
- readonly "aria-label"?: string | undefined;
111
- readonly "aria-level"?: number | undefined;
112
- readonly "aria-live"?: "off" | "assertive" | "polite" | undefined;
113
- readonly "aria-modal"?: (boolean | "true" | "false") | undefined;
114
- readonly "aria-multiline"?: (boolean | "true" | "false") | undefined;
115
- readonly "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
116
- readonly "aria-orientation"?: "horizontal" | "vertical" | undefined;
117
- readonly "aria-owns"?: string | undefined;
118
- readonly "aria-placeholder"?: string | undefined;
119
- readonly "aria-posinset"?: number | undefined;
120
- readonly "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
121
- readonly "aria-readonly"?: (boolean | "true" | "false") | undefined;
122
- readonly "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
123
- readonly "aria-required"?: (boolean | "true" | "false") | undefined;
124
- readonly "aria-roledescription"?: string | undefined;
125
- readonly "aria-rowcount"?: number | undefined;
126
- readonly "aria-rowindex"?: number | undefined;
127
- readonly "aria-rowindextext"?: string | undefined;
128
- readonly "aria-rowspan"?: number | undefined;
129
- readonly "aria-selected"?: (boolean | "true" | "false") | undefined;
130
- readonly "aria-setsize"?: number | undefined;
131
- readonly "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
132
- readonly "aria-valuemax"?: number | undefined;
133
- readonly "aria-valuemin"?: number | undefined;
134
- readonly "aria-valuenow"?: number | undefined;
135
- readonly "aria-valuetext"?: string | undefined;
136
- readonly children?: import('react').ReactNode | undefined;
137
- readonly dangerouslySetInnerHTML?: {
138
- __html: string | TrustedHTML;
139
- } | undefined;
140
- readonly onCopy?: import('react').ClipboardEventHandler<HTMLElement> | undefined;
141
- readonly onCopyCapture?: import('react').ClipboardEventHandler<HTMLElement> | undefined;
142
- readonly onCut?: import('react').ClipboardEventHandler<HTMLElement> | undefined;
143
- readonly onCutCapture?: import('react').ClipboardEventHandler<HTMLElement> | undefined;
144
- readonly onPaste?: import('react').ClipboardEventHandler<HTMLElement> | undefined;
145
- readonly onPasteCapture?: import('react').ClipboardEventHandler<HTMLElement> | undefined;
146
- readonly onCompositionEnd?: import('react').CompositionEventHandler<HTMLElement> | undefined;
147
- readonly onCompositionEndCapture?: import('react').CompositionEventHandler<HTMLElement> | undefined;
148
- readonly onCompositionStart?: import('react').CompositionEventHandler<HTMLElement> | undefined;
149
- readonly onCompositionStartCapture?: import('react').CompositionEventHandler<HTMLElement> | undefined;
150
- readonly onCompositionUpdate?: import('react').CompositionEventHandler<HTMLElement> | undefined;
151
- readonly onCompositionUpdateCapture?: import('react').CompositionEventHandler<HTMLElement> | undefined;
152
- readonly onFocus?: import('react').FocusEventHandler<HTMLElement> | undefined;
153
- readonly onFocusCapture?: import('react').FocusEventHandler<HTMLElement> | undefined;
154
- readonly onBlurCapture?: import('react').FocusEventHandler<HTMLElement> | undefined;
155
- readonly onChangeCapture?: import('react').FormEventHandler<HTMLElement> | undefined;
156
- readonly onBeforeInput?: import('react').FormEventHandler<HTMLElement> | undefined;
157
- readonly onBeforeInputCapture?: import('react').FormEventHandler<HTMLElement> | undefined;
158
- readonly onInput?: import('react').FormEventHandler<HTMLElement> | undefined;
159
- readonly onInputCapture?: import('react').FormEventHandler<HTMLElement> | undefined;
160
- readonly onReset?: import('react').FormEventHandler<HTMLElement> | undefined;
161
- readonly onResetCapture?: import('react').FormEventHandler<HTMLElement> | undefined;
162
- readonly onSubmit?: import('react').FormEventHandler<HTMLElement> | undefined;
163
- readonly onSubmitCapture?: import('react').FormEventHandler<HTMLElement> | undefined;
164
- readonly onInvalid?: import('react').FormEventHandler<HTMLElement> | undefined;
165
- readonly onInvalidCapture?: import('react').FormEventHandler<HTMLElement> | undefined;
166
- readonly onLoad?: import('react').ReactEventHandler<HTMLElement> | undefined;
167
- readonly onLoadCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
168
- readonly onError?: import('react').ReactEventHandler<HTMLElement> | undefined;
169
- readonly onErrorCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
170
- readonly onKeyDown?: import('react').KeyboardEventHandler<HTMLElement> | undefined;
171
- readonly onKeyDownCapture?: import('react').KeyboardEventHandler<HTMLElement> | undefined;
172
- readonly onKeyPress?: import('react').KeyboardEventHandler<HTMLElement> | undefined;
173
- readonly onKeyPressCapture?: import('react').KeyboardEventHandler<HTMLElement> | undefined;
174
- readonly onKeyUp?: import('react').KeyboardEventHandler<HTMLElement> | undefined;
175
- readonly onKeyUpCapture?: import('react').KeyboardEventHandler<HTMLElement> | undefined;
176
- readonly onAbort?: import('react').ReactEventHandler<HTMLElement> | undefined;
177
- readonly onAbortCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
178
- readonly onCanPlay?: import('react').ReactEventHandler<HTMLElement> | undefined;
179
- readonly onCanPlayCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
180
- readonly onCanPlayThrough?: import('react').ReactEventHandler<HTMLElement> | undefined;
181
- readonly onCanPlayThroughCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
182
- readonly onDurationChange?: import('react').ReactEventHandler<HTMLElement> | undefined;
183
- readonly onDurationChangeCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
184
- readonly onEmptied?: import('react').ReactEventHandler<HTMLElement> | undefined;
185
- readonly onEmptiedCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
186
- readonly onEncrypted?: import('react').ReactEventHandler<HTMLElement> | undefined;
187
- readonly onEncryptedCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
188
- readonly onEnded?: import('react').ReactEventHandler<HTMLElement> | undefined;
189
- readonly onEndedCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
190
- readonly onLoadedData?: import('react').ReactEventHandler<HTMLElement> | undefined;
191
- readonly onLoadedDataCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
192
- readonly onLoadedMetadata?: import('react').ReactEventHandler<HTMLElement> | undefined;
193
- readonly onLoadedMetadataCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
194
- readonly onLoadStart?: import('react').ReactEventHandler<HTMLElement> | undefined;
195
- readonly onLoadStartCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
196
- readonly onPause?: import('react').ReactEventHandler<HTMLElement> | undefined;
197
- readonly onPauseCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
198
- readonly onPlay?: import('react').ReactEventHandler<HTMLElement> | undefined;
199
- readonly onPlayCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
200
- readonly onPlaying?: import('react').ReactEventHandler<HTMLElement> | undefined;
201
- readonly onPlayingCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
202
- readonly onProgress?: import('react').ReactEventHandler<HTMLElement> | undefined;
203
- readonly onProgressCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
204
- readonly onRateChange?: import('react').ReactEventHandler<HTMLElement> | undefined;
205
- readonly onRateChangeCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
206
- readonly onResize?: import('react').ReactEventHandler<HTMLElement> | undefined;
207
- readonly onResizeCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
208
- readonly onSeeked?: import('react').ReactEventHandler<HTMLElement> | undefined;
209
- readonly onSeekedCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
210
- readonly onSeeking?: import('react').ReactEventHandler<HTMLElement> | undefined;
211
- readonly onSeekingCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
212
- readonly onStalled?: import('react').ReactEventHandler<HTMLElement> | undefined;
213
- readonly onStalledCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
214
- readonly onSuspend?: import('react').ReactEventHandler<HTMLElement> | undefined;
215
- readonly onSuspendCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
216
- readonly onTimeUpdate?: import('react').ReactEventHandler<HTMLElement> | undefined;
217
- readonly onTimeUpdateCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
218
- readonly onVolumeChange?: import('react').ReactEventHandler<HTMLElement> | undefined;
219
- readonly onVolumeChangeCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
220
- readonly onWaiting?: import('react').ReactEventHandler<HTMLElement> | undefined;
221
- readonly onWaitingCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
222
- readonly onAuxClick?: import('react').MouseEventHandler<HTMLElement> | undefined;
223
- readonly onAuxClickCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
224
- readonly onClick?: import('react').MouseEventHandler<HTMLElement> | undefined;
225
- readonly onClickCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
226
- readonly onContextMenu?: import('react').MouseEventHandler<HTMLElement> | undefined;
227
- readonly onContextMenuCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
228
- readonly onDoubleClick?: import('react').MouseEventHandler<HTMLElement> | undefined;
229
- readonly onDoubleClickCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
230
- readonly onDrag?: import('react').DragEventHandler<HTMLElement> | undefined;
231
- readonly onDragCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
232
- readonly onDragEnd?: import('react').DragEventHandler<HTMLElement> | undefined;
233
- readonly onDragEndCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
234
- readonly onDragEnter?: import('react').DragEventHandler<HTMLElement> | undefined;
235
- readonly onDragEnterCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
236
- readonly onDragExit?: import('react').DragEventHandler<HTMLElement> | undefined;
237
- readonly onDragExitCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
238
- readonly onDragLeave?: import('react').DragEventHandler<HTMLElement> | undefined;
239
- readonly onDragLeaveCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
240
- readonly onDragOver?: import('react').DragEventHandler<HTMLElement> | undefined;
241
- readonly onDragOverCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
242
- readonly onDragStart?: import('react').DragEventHandler<HTMLElement> | undefined;
243
- readonly onDragStartCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
244
- readonly onDrop?: import('react').DragEventHandler<HTMLElement> | undefined;
245
- readonly onDropCapture?: import('react').DragEventHandler<HTMLElement> | undefined;
246
- readonly onMouseDown?: import('react').MouseEventHandler<HTMLElement> | undefined;
247
- readonly onMouseDownCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
248
- readonly onMouseEnter?: import('react').MouseEventHandler<HTMLElement> | undefined;
249
- readonly onMouseLeave?: import('react').MouseEventHandler<HTMLElement> | undefined;
250
- readonly onMouseMove?: import('react').MouseEventHandler<HTMLElement> | undefined;
251
- readonly onMouseMoveCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
252
- readonly onMouseOut?: import('react').MouseEventHandler<HTMLElement> | undefined;
253
- readonly onMouseOutCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
254
- readonly onMouseOver?: import('react').MouseEventHandler<HTMLElement> | undefined;
255
- readonly onMouseOverCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
256
- readonly onMouseUp?: import('react').MouseEventHandler<HTMLElement> | undefined;
257
- readonly onMouseUpCapture?: import('react').MouseEventHandler<HTMLElement> | undefined;
258
- readonly onSelect?: import('react').ReactEventHandler<HTMLElement> | undefined;
259
- readonly onSelectCapture?: import('react').ReactEventHandler<HTMLElement> | undefined;
260
- readonly onTouchCancel?: import('react').TouchEventHandler<HTMLElement> | undefined;
261
- readonly onTouchCancelCapture?: import('react').TouchEventHandler<HTMLElement> | undefined;
262
- readonly onTouchEnd?: import('react').TouchEventHandler<HTMLElement> | undefined;
263
- readonly onTouchEndCapture?: import('react').TouchEventHandler<HTMLElement> | undefined;
264
- readonly onTouchMove?: import('react').TouchEventHandler<HTMLElement> | undefined;
265
- readonly onTouchMoveCapture?: import('react').TouchEventHandler<HTMLElement> | undefined;
266
- readonly onTouchStart?: import('react').TouchEventHandler<HTMLElement> | undefined;
267
- readonly onTouchStartCapture?: import('react').TouchEventHandler<HTMLElement> | undefined;
268
- readonly onPointerDown?: import('react').PointerEventHandler<HTMLElement> | undefined;
269
- readonly onPointerDownCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
270
- readonly onPointerMove?: import('react').PointerEventHandler<HTMLElement> | undefined;
271
- readonly onPointerMoveCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
272
- readonly onPointerUp?: import('react').PointerEventHandler<HTMLElement> | undefined;
273
- readonly onPointerUpCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
274
- readonly onPointerCancel?: import('react').PointerEventHandler<HTMLElement> | undefined;
275
- readonly onPointerCancelCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
276
- readonly onPointerEnter?: import('react').PointerEventHandler<HTMLElement> | undefined;
277
- readonly onPointerLeave?: import('react').PointerEventHandler<HTMLElement> | undefined;
278
- readonly onPointerOver?: import('react').PointerEventHandler<HTMLElement> | undefined;
279
- readonly onPointerOverCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
280
- readonly onPointerOut?: import('react').PointerEventHandler<HTMLElement> | undefined;
281
- readonly onPointerOutCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
282
- readonly onGotPointerCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
283
- readonly onGotPointerCaptureCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
284
- readonly onLostPointerCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
285
- readonly onLostPointerCaptureCapture?: import('react').PointerEventHandler<HTMLElement> | undefined;
286
- readonly onScroll?: import('react').UIEventHandler<HTMLElement> | undefined;
287
- readonly onScrollCapture?: import('react').UIEventHandler<HTMLElement> | undefined;
288
- readonly onWheel?: import('react').WheelEventHandler<HTMLElement> | undefined;
289
- readonly onWheelCapture?: import('react').WheelEventHandler<HTMLElement> | undefined;
290
- readonly onAnimationStart?: import('react').AnimationEventHandler<HTMLElement> | undefined;
291
- readonly onAnimationStartCapture?: import('react').AnimationEventHandler<HTMLElement> | undefined;
292
- readonly onAnimationEnd?: import('react').AnimationEventHandler<HTMLElement> | undefined;
293
- readonly onAnimationEndCapture?: import('react').AnimationEventHandler<HTMLElement> | undefined;
294
- readonly onAnimationIteration?: import('react').AnimationEventHandler<HTMLElement> | undefined;
295
- readonly onAnimationIterationCapture?: import('react').AnimationEventHandler<HTMLElement> | undefined;
296
- readonly onToggle?: import('react').ToggleEventHandler<HTMLElement> | undefined;
297
- readonly onBeforeToggle?: import('react').ToggleEventHandler<HTMLElement> | undefined;
298
- readonly onTransitionCancel?: import('react').TransitionEventHandler<HTMLElement> | undefined;
299
- readonly onTransitionCancelCapture?: import('react').TransitionEventHandler<HTMLElement> | undefined;
300
- readonly onTransitionEnd?: import('react').TransitionEventHandler<HTMLElement> | undefined;
301
- readonly onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLElement> | undefined;
302
- readonly onTransitionRun?: import('react').TransitionEventHandler<HTMLElement> | undefined;
303
- readonly onTransitionRunCapture?: import('react').TransitionEventHandler<HTMLElement> | undefined;
304
- readonly onTransitionStart?: import('react').TransitionEventHandler<HTMLElement> | undefined;
305
- readonly onTransitionStartCapture?: import('react').TransitionEventHandler<HTMLElement> | undefined;
306
- readonly list?: string | undefined;
307
- readonly step?: number | string | undefined;
308
- readonly height?: number | string | undefined;
309
- readonly max?: number | string | undefined;
310
- readonly media?: string | undefined;
311
- readonly method?: string | undefined;
312
- readonly min?: number | string | undefined;
313
- readonly target?: string | undefined;
314
- readonly width?: number | string | undefined;
315
- readonly crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
316
- readonly href?: string | undefined;
317
- readonly download?: any;
318
- readonly rows?: number | undefined;
319
- readonly default?: boolean | undefined;
320
- readonly required?: boolean | undefined;
321
- readonly placeholder?: string | undefined;
322
- readonly minLength?: number | undefined;
323
- readonly maxLength?: number | undefined;
324
- readonly open?: boolean | undefined;
325
- readonly loop?: boolean | undefined;
326
- readonly disabled?: boolean | undefined;
327
- readonly formAction?: string | undefined | ((formData: FormData) => void | Promise<void>) | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS];
328
- readonly formEncType?: string | undefined;
329
- readonly formMethod?: string | undefined;
330
- readonly formNoValidate?: boolean | undefined;
331
- readonly formTarget?: string | undefined;
332
- readonly src?: string | undefined;
333
- readonly alt?: string | undefined;
334
- readonly htmlFor?: string | undefined;
335
- readonly accept?: string | undefined;
336
- readonly acceptCharset?: string | undefined;
337
- readonly action?: string | undefined | ((formData: FormData) => void | Promise<void>) | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS];
338
- readonly allowFullScreen?: boolean | undefined;
339
- readonly allowTransparency?: boolean | undefined;
340
- readonly as?: string | undefined;
341
- readonly async?: boolean | undefined;
342
- readonly autoComplete?: string | undefined;
343
- readonly autoPlay?: boolean | undefined;
344
- readonly capture?: boolean | "user" | "environment" | undefined;
345
- readonly cellPadding?: number | string | undefined;
346
- readonly cellSpacing?: number | string | undefined;
347
- readonly charSet?: string | undefined;
348
- readonly challenge?: string | undefined;
349
- readonly checked?: boolean | undefined;
350
- readonly classID?: string | undefined;
351
- readonly cols?: number | undefined;
352
- readonly colSpan?: number | undefined;
353
- readonly controls?: boolean | undefined;
354
- readonly coords?: string | undefined;
355
- readonly dateTime?: string | undefined;
356
- readonly defer?: boolean | undefined;
357
- readonly encType?: string | undefined;
358
- readonly frameBorder?: number | string | undefined;
359
- readonly headers?: string | undefined;
360
- readonly high?: number | undefined;
361
- readonly hrefLang?: string | undefined;
362
- readonly httpEquiv?: string | undefined;
363
- readonly integrity?: string | undefined;
364
- readonly keyParams?: string | undefined;
365
- readonly keyType?: string | undefined;
366
- readonly kind?: string | undefined;
367
- readonly low?: number | undefined;
368
- readonly manifest?: string | undefined;
369
- readonly marginHeight?: number | undefined;
370
- readonly marginWidth?: number | undefined;
371
- readonly mediaGroup?: string | undefined;
372
- readonly multiple?: boolean | undefined;
373
- readonly muted?: boolean | undefined;
374
- readonly noValidate?: boolean | undefined;
375
- readonly optimum?: number | undefined;
376
- readonly playsInline?: boolean | undefined;
377
- readonly poster?: string | undefined;
378
- readonly preload?: string | undefined;
379
- readonly readOnly?: boolean | undefined;
380
- readonly reversed?: boolean | undefined;
381
- readonly rowSpan?: number | undefined;
382
- readonly sandbox?: string | undefined;
383
- readonly scope?: string | undefined;
384
- readonly scoped?: boolean | undefined;
385
- readonly scrolling?: string | undefined;
386
- readonly seamless?: boolean | undefined;
387
- readonly selected?: boolean | undefined;
388
- readonly shape?: string | undefined;
389
- readonly sizes?: string | undefined;
390
- readonly srcDoc?: string | undefined;
391
- readonly srcLang?: string | undefined;
392
- readonly srcSet?: string | undefined;
393
- readonly start?: number | undefined;
394
- readonly useMap?: string | undefined;
395
- readonly wmode?: string | undefined;
396
- readonly wrap?: string | undefined;
397
- }];