@norges-domstoler/dds-components 13.9.0 → 13.10.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/dist/index.d.mts +880 -9
- package/dist/index.d.ts +880 -9
- package/dist/index.js +15 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -19
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _norges_domstoler_dds_core from '@norges-domstoler/dds-core';
|
|
|
2
2
|
import { BaseComponentProps, Placement, As, PropsOf, BaseComponentPropsWithChildren, Direction as Direction$1, WithRequiredIf, TextColor, BreakpointBasedProps, ExtractStrict } from '@norges-domstoler/dds-core';
|
|
3
3
|
export * from '@norges-domstoler/dds-core';
|
|
4
4
|
import * as _norges_domstoler_dds_form from '@norges-domstoler/dds-form';
|
|
5
|
-
import { InputSize, InputProps, CommonInputProps } from '@norges-domstoler/dds-form';
|
|
5
|
+
import { InputSize, InputProps, StyledInputProps, CommonInputProps } from '@norges-domstoler/dds-form';
|
|
6
6
|
export * from '@norges-domstoler/dds-form';
|
|
7
7
|
import * as _norges_domstoler_dds_icons from '@norges-domstoler/dds-icons';
|
|
8
8
|
import { SvgIcon } from '@norges-domstoler/dds-icons';
|
|
@@ -16,6 +16,7 @@ import { Environment } from '@norges-domstoler/development-utils';
|
|
|
16
16
|
import { Property, StandardProperties } from 'csstype';
|
|
17
17
|
import { OptionProps, GroupBase, SingleValueProps, Props, SelectInstance } from 'react-select';
|
|
18
18
|
import * as styled_components from 'styled-components';
|
|
19
|
+
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
19
20
|
|
|
20
21
|
type EmbeteType = 'jordskifterett' | 'tingrett' | 'lagmannsrett' | 'høyesterett';
|
|
21
22
|
|
|
@@ -55,8 +56,279 @@ type OverflowMenuProps = BaseComponentProps<HTMLDivElement, {
|
|
|
55
56
|
type ContainerProps = {
|
|
56
57
|
isOpen: boolean;
|
|
57
58
|
};
|
|
58
|
-
declare const Container: styled_components.
|
|
59
|
-
declare const OverflowMenuList: styled_components.
|
|
59
|
+
declare const Container: styled_components.IStyledComponent<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, ContainerProps>>;
|
|
60
|
+
declare const OverflowMenuList: styled_components.IStyledComponent<"web", {
|
|
61
|
+
ref?: react.LegacyRef<HTMLUListElement> | undefined;
|
|
62
|
+
key?: react.Key | null | undefined;
|
|
63
|
+
defaultChecked?: boolean | undefined;
|
|
64
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
65
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
66
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
67
|
+
accessKey?: string | undefined;
|
|
68
|
+
autoFocus?: boolean | undefined;
|
|
69
|
+
className?: string | undefined;
|
|
70
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
71
|
+
contextMenu?: string | undefined;
|
|
72
|
+
dir?: string | undefined;
|
|
73
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
74
|
+
hidden?: boolean | undefined;
|
|
75
|
+
id?: string | undefined;
|
|
76
|
+
lang?: string | undefined;
|
|
77
|
+
nonce?: string | undefined;
|
|
78
|
+
placeholder?: string | undefined;
|
|
79
|
+
slot?: string | undefined;
|
|
80
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
81
|
+
style?: react.CSSProperties | undefined;
|
|
82
|
+
tabIndex?: number | undefined;
|
|
83
|
+
title?: string | undefined;
|
|
84
|
+
translate?: "no" | "yes" | undefined;
|
|
85
|
+
radioGroup?: string | undefined;
|
|
86
|
+
role?: react.AriaRole | undefined;
|
|
87
|
+
about?: string | undefined;
|
|
88
|
+
content?: string | undefined;
|
|
89
|
+
datatype?: string | undefined;
|
|
90
|
+
inlist?: any;
|
|
91
|
+
prefix?: string | undefined;
|
|
92
|
+
property?: string | undefined;
|
|
93
|
+
rel?: string | undefined;
|
|
94
|
+
resource?: string | undefined;
|
|
95
|
+
rev?: string | undefined;
|
|
96
|
+
typeof?: string | undefined;
|
|
97
|
+
vocab?: string | undefined;
|
|
98
|
+
autoCapitalize?: string | undefined;
|
|
99
|
+
autoCorrect?: string | undefined;
|
|
100
|
+
autoSave?: string | undefined;
|
|
101
|
+
color?: string | undefined;
|
|
102
|
+
itemProp?: string | undefined;
|
|
103
|
+
itemScope?: boolean | undefined;
|
|
104
|
+
itemType?: string | undefined;
|
|
105
|
+
itemID?: string | undefined;
|
|
106
|
+
itemRef?: string | undefined;
|
|
107
|
+
results?: number | undefined;
|
|
108
|
+
security?: string | undefined;
|
|
109
|
+
unselectable?: "off" | "on" | undefined;
|
|
110
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
111
|
+
is?: string | undefined;
|
|
112
|
+
"aria-activedescendant"?: string | undefined;
|
|
113
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
114
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
115
|
+
"aria-braillelabel"?: string | undefined;
|
|
116
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
117
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
118
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
119
|
+
"aria-colcount"?: number | undefined;
|
|
120
|
+
"aria-colindex"?: number | undefined;
|
|
121
|
+
"aria-colindextext"?: string | undefined;
|
|
122
|
+
"aria-colspan"?: number | undefined;
|
|
123
|
+
"aria-controls"?: string | undefined;
|
|
124
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
125
|
+
"aria-describedby"?: string | undefined;
|
|
126
|
+
"aria-description"?: string | undefined;
|
|
127
|
+
"aria-details"?: string | undefined;
|
|
128
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
129
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
130
|
+
"aria-errormessage"?: string | undefined;
|
|
131
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
132
|
+
"aria-flowto"?: string | undefined;
|
|
133
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
134
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
135
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
136
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
137
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
138
|
+
"aria-label"?: string | undefined;
|
|
139
|
+
"aria-labelledby"?: string | undefined;
|
|
140
|
+
"aria-level"?: number | undefined;
|
|
141
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
142
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
143
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
144
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
145
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
146
|
+
"aria-owns"?: string | undefined;
|
|
147
|
+
"aria-placeholder"?: string | undefined;
|
|
148
|
+
"aria-posinset"?: number | undefined;
|
|
149
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
150
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
151
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
152
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
153
|
+
"aria-roledescription"?: string | undefined;
|
|
154
|
+
"aria-rowcount"?: number | undefined;
|
|
155
|
+
"aria-rowindex"?: number | undefined;
|
|
156
|
+
"aria-rowindextext"?: string | undefined;
|
|
157
|
+
"aria-rowspan"?: number | undefined;
|
|
158
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
159
|
+
"aria-setsize"?: number | undefined;
|
|
160
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
161
|
+
"aria-valuemax"?: number | undefined;
|
|
162
|
+
"aria-valuemin"?: number | undefined;
|
|
163
|
+
"aria-valuenow"?: number | undefined;
|
|
164
|
+
"aria-valuetext"?: string | undefined;
|
|
165
|
+
children?: react.ReactNode;
|
|
166
|
+
dangerouslySetInnerHTML?: {
|
|
167
|
+
__html: string | TrustedHTML;
|
|
168
|
+
} | undefined;
|
|
169
|
+
onCopy?: react.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
170
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
171
|
+
onCut?: react.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
172
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
173
|
+
onPaste?: react.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
174
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLUListElement> | undefined;
|
|
175
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
176
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
177
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
178
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
179
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
180
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLUListElement> | undefined;
|
|
181
|
+
onFocus?: react.FocusEventHandler<HTMLUListElement> | undefined;
|
|
182
|
+
onFocusCapture?: react.FocusEventHandler<HTMLUListElement> | undefined;
|
|
183
|
+
onBlur?: react.FocusEventHandler<HTMLUListElement> | undefined;
|
|
184
|
+
onBlurCapture?: react.FocusEventHandler<HTMLUListElement> | undefined;
|
|
185
|
+
onChange?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
186
|
+
onChangeCapture?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
187
|
+
onBeforeInput?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
188
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
189
|
+
onInput?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
190
|
+
onInputCapture?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
191
|
+
onReset?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
192
|
+
onResetCapture?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
193
|
+
onSubmit?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
194
|
+
onSubmitCapture?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
195
|
+
onInvalid?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
196
|
+
onInvalidCapture?: react.FormEventHandler<HTMLUListElement> | undefined;
|
|
197
|
+
onLoad?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
198
|
+
onLoadCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
199
|
+
onError?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
200
|
+
onErrorCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
201
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
202
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
203
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
204
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
205
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
206
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLUListElement> | undefined;
|
|
207
|
+
onAbort?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
208
|
+
onAbortCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
209
|
+
onCanPlay?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
210
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
211
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
212
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
213
|
+
onDurationChange?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
214
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
215
|
+
onEmptied?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
216
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
217
|
+
onEncrypted?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
218
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
219
|
+
onEnded?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
220
|
+
onEndedCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
221
|
+
onLoadedData?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
222
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
223
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
224
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
225
|
+
onLoadStart?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
226
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
227
|
+
onPause?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
228
|
+
onPauseCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
229
|
+
onPlay?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
230
|
+
onPlayCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
231
|
+
onPlaying?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
232
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
233
|
+
onProgress?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
234
|
+
onProgressCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
235
|
+
onRateChange?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
236
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
237
|
+
onResize?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
238
|
+
onResizeCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
239
|
+
onSeeked?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
240
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
241
|
+
onSeeking?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
242
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
243
|
+
onStalled?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
244
|
+
onStalledCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
245
|
+
onSuspend?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
246
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
247
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
248
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
249
|
+
onVolumeChange?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
250
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
251
|
+
onWaiting?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
252
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
253
|
+
onAuxClick?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
254
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
255
|
+
onClick?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
256
|
+
onClickCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
257
|
+
onContextMenu?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
258
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
259
|
+
onDoubleClick?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
260
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
261
|
+
onDrag?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
262
|
+
onDragCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
263
|
+
onDragEnd?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
264
|
+
onDragEndCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
265
|
+
onDragEnter?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
266
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
267
|
+
onDragExit?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
268
|
+
onDragExitCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
269
|
+
onDragLeave?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
270
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
271
|
+
onDragOver?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
272
|
+
onDragOverCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
273
|
+
onDragStart?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
274
|
+
onDragStartCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
275
|
+
onDrop?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
276
|
+
onDropCapture?: react.DragEventHandler<HTMLUListElement> | undefined;
|
|
277
|
+
onMouseDown?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
278
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
279
|
+
onMouseEnter?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
280
|
+
onMouseLeave?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
281
|
+
onMouseMove?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
282
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
283
|
+
onMouseOut?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
284
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
285
|
+
onMouseOver?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
286
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
287
|
+
onMouseUp?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
288
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLUListElement> | undefined;
|
|
289
|
+
onSelect?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
290
|
+
onSelectCapture?: react.ReactEventHandler<HTMLUListElement> | undefined;
|
|
291
|
+
onTouchCancel?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
292
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
293
|
+
onTouchEnd?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
294
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
295
|
+
onTouchMove?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
296
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
297
|
+
onTouchStart?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
298
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLUListElement> | undefined;
|
|
299
|
+
onPointerDown?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
300
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
301
|
+
onPointerMove?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
302
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
303
|
+
onPointerUp?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
304
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
305
|
+
onPointerCancel?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
306
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
307
|
+
onPointerEnter?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
308
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
309
|
+
onPointerLeave?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
310
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
311
|
+
onPointerOver?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
312
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
313
|
+
onPointerOut?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
314
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
315
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
316
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
317
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
318
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLUListElement> | undefined;
|
|
319
|
+
onScroll?: react.UIEventHandler<HTMLUListElement> | undefined;
|
|
320
|
+
onScrollCapture?: react.UIEventHandler<HTMLUListElement> | undefined;
|
|
321
|
+
onWheel?: react.WheelEventHandler<HTMLUListElement> | undefined;
|
|
322
|
+
onWheelCapture?: react.WheelEventHandler<HTMLUListElement> | undefined;
|
|
323
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
324
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
325
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
326
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
327
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
328
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLUListElement> | undefined;
|
|
329
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
330
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLUListElement> | undefined;
|
|
331
|
+
}>;
|
|
60
332
|
declare const OverflowMenu: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLDivElement>, "className" | "id"> & {
|
|
61
333
|
items?: OverflowMenuContextItem[] | undefined;
|
|
62
334
|
userProps?: ({
|
|
@@ -1584,12 +1856,611 @@ declare const InlineEditTextArea: react.ForwardRefExoticComponent<Omit<react.Tex
|
|
|
1584
1856
|
|
|
1585
1857
|
declare const InlineEditInput: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "width" | "onFocus" | "onBlur" | "onChange"> & Pick<InlineEditProps, "onFocus" | "onBlur" | "onChange" | "onSetValue" | "emptiable"> & Pick<BaseInlineInputProps, "width" | "error" | "errorMessage" | "hideIcon"> & react.RefAttributes<HTMLInputElement>>;
|
|
1586
1858
|
|
|
1587
|
-
declare const StyledTextArea: styled_components.
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1859
|
+
declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_components_dist_types.Substitute<Omit<{
|
|
1860
|
+
ref?: react.LegacyRef<HTMLInputElement> | undefined;
|
|
1861
|
+
key?: react.Key | null | undefined;
|
|
1862
|
+
accept?: string | undefined;
|
|
1863
|
+
alt?: string | undefined;
|
|
1864
|
+
autoComplete?: string | undefined;
|
|
1865
|
+
capture?: boolean | "environment" | "user" | undefined;
|
|
1866
|
+
checked?: boolean | undefined;
|
|
1867
|
+
disabled?: boolean | undefined;
|
|
1868
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
1869
|
+
form?: string | undefined;
|
|
1870
|
+
formAction?: string | undefined;
|
|
1871
|
+
formEncType?: string | undefined;
|
|
1872
|
+
formMethod?: string | undefined;
|
|
1873
|
+
formNoValidate?: boolean | undefined;
|
|
1874
|
+
formTarget?: string | undefined;
|
|
1875
|
+
height?: string | number | undefined;
|
|
1876
|
+
list?: string | undefined;
|
|
1877
|
+
max?: string | number | undefined;
|
|
1878
|
+
maxLength?: number | undefined;
|
|
1879
|
+
min?: string | number | undefined;
|
|
1880
|
+
minLength?: number | undefined;
|
|
1881
|
+
multiple?: boolean | undefined;
|
|
1882
|
+
name?: string | undefined;
|
|
1883
|
+
pattern?: string | undefined;
|
|
1884
|
+
placeholder?: string | undefined;
|
|
1885
|
+
readOnly?: boolean | undefined;
|
|
1886
|
+
required?: boolean | undefined;
|
|
1887
|
+
size?: number | undefined;
|
|
1888
|
+
src?: string | undefined;
|
|
1889
|
+
step?: string | number | undefined;
|
|
1890
|
+
type?: react.HTMLInputTypeAttribute | undefined;
|
|
1891
|
+
value?: string | number | readonly string[] | undefined;
|
|
1892
|
+
width?: string | number | undefined;
|
|
1893
|
+
onChange?: react.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
1894
|
+
defaultChecked?: boolean | undefined;
|
|
1895
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1896
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1897
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1898
|
+
accessKey?: string | undefined;
|
|
1899
|
+
autoFocus?: boolean | undefined;
|
|
1900
|
+
className?: string | undefined;
|
|
1901
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1902
|
+
contextMenu?: string | undefined;
|
|
1903
|
+
dir?: string | undefined;
|
|
1904
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1905
|
+
hidden?: boolean | undefined;
|
|
1906
|
+
id?: string | undefined;
|
|
1907
|
+
lang?: string | undefined;
|
|
1908
|
+
nonce?: string | undefined;
|
|
1909
|
+
slot?: string | undefined;
|
|
1910
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1911
|
+
style?: react.CSSProperties | undefined;
|
|
1912
|
+
tabIndex?: number | undefined;
|
|
1913
|
+
title?: string | undefined;
|
|
1914
|
+
translate?: "no" | "yes" | undefined;
|
|
1915
|
+
radioGroup?: string | undefined;
|
|
1916
|
+
role?: react.AriaRole | undefined;
|
|
1917
|
+
about?: string | undefined;
|
|
1918
|
+
content?: string | undefined;
|
|
1919
|
+
datatype?: string | undefined;
|
|
1920
|
+
inlist?: any;
|
|
1921
|
+
prefix?: string | undefined;
|
|
1922
|
+
property?: string | undefined;
|
|
1923
|
+
rel?: string | undefined;
|
|
1924
|
+
resource?: string | undefined;
|
|
1925
|
+
rev?: string | undefined;
|
|
1926
|
+
typeof?: string | undefined;
|
|
1927
|
+
vocab?: string | undefined;
|
|
1928
|
+
autoCapitalize?: string | undefined;
|
|
1929
|
+
autoCorrect?: string | undefined;
|
|
1930
|
+
autoSave?: string | undefined;
|
|
1931
|
+
color?: string | undefined;
|
|
1932
|
+
itemProp?: string | undefined;
|
|
1933
|
+
itemScope?: boolean | undefined;
|
|
1934
|
+
itemType?: string | undefined;
|
|
1935
|
+
itemID?: string | undefined;
|
|
1936
|
+
itemRef?: string | undefined;
|
|
1937
|
+
results?: number | undefined;
|
|
1938
|
+
security?: string | undefined;
|
|
1939
|
+
unselectable?: "off" | "on" | undefined;
|
|
1940
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
1941
|
+
is?: string | undefined;
|
|
1942
|
+
"aria-activedescendant"?: string | undefined;
|
|
1943
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1944
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1945
|
+
"aria-braillelabel"?: string | undefined;
|
|
1946
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1947
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1948
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1949
|
+
"aria-colcount"?: number | undefined;
|
|
1950
|
+
"aria-colindex"?: number | undefined;
|
|
1951
|
+
"aria-colindextext"?: string | undefined;
|
|
1952
|
+
"aria-colspan"?: number | undefined;
|
|
1953
|
+
"aria-controls"?: string | undefined;
|
|
1954
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1955
|
+
"aria-describedby"?: string | undefined;
|
|
1956
|
+
"aria-description"?: string | undefined;
|
|
1957
|
+
"aria-details"?: string | undefined;
|
|
1958
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1959
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1960
|
+
"aria-errormessage"?: string | undefined;
|
|
1961
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1962
|
+
"aria-flowto"?: string | undefined;
|
|
1963
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1964
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
1965
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1966
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1967
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1968
|
+
"aria-label"?: string | undefined;
|
|
1969
|
+
"aria-labelledby"?: string | undefined;
|
|
1970
|
+
"aria-level"?: number | undefined;
|
|
1971
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1972
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1973
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1974
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1975
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1976
|
+
"aria-owns"?: string | undefined;
|
|
1977
|
+
"aria-placeholder"?: string | undefined;
|
|
1978
|
+
"aria-posinset"?: number | undefined;
|
|
1979
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1980
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1981
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1982
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1983
|
+
"aria-roledescription"?: string | undefined;
|
|
1984
|
+
"aria-rowcount"?: number | undefined;
|
|
1985
|
+
"aria-rowindex"?: number | undefined;
|
|
1986
|
+
"aria-rowindextext"?: string | undefined;
|
|
1987
|
+
"aria-rowspan"?: number | undefined;
|
|
1988
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1989
|
+
"aria-setsize"?: number | undefined;
|
|
1990
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1991
|
+
"aria-valuemax"?: number | undefined;
|
|
1992
|
+
"aria-valuemin"?: number | undefined;
|
|
1993
|
+
"aria-valuenow"?: number | undefined;
|
|
1994
|
+
"aria-valuetext"?: string | undefined;
|
|
1995
|
+
children?: react.ReactNode;
|
|
1996
|
+
dangerouslySetInnerHTML?: {
|
|
1997
|
+
__html: string | TrustedHTML;
|
|
1998
|
+
} | undefined;
|
|
1999
|
+
onCopy?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2000
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2001
|
+
onCut?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2002
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2003
|
+
onPaste?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2004
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2005
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2006
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2007
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2008
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2009
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2010
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2011
|
+
onFocus?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2012
|
+
onFocusCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2013
|
+
onBlur?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2014
|
+
onBlurCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2015
|
+
onChangeCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2016
|
+
onBeforeInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2017
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2018
|
+
onInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2019
|
+
onInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2020
|
+
onReset?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2021
|
+
onResetCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2022
|
+
onSubmit?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2023
|
+
onSubmitCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2024
|
+
onInvalid?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2025
|
+
onInvalidCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2026
|
+
onLoad?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2027
|
+
onLoadCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2028
|
+
onError?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2029
|
+
onErrorCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2030
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2031
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2032
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2033
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2034
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2035
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2036
|
+
onAbort?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2037
|
+
onAbortCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2038
|
+
onCanPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2039
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2040
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2041
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2042
|
+
onDurationChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2043
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2044
|
+
onEmptied?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2045
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2046
|
+
onEncrypted?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2047
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2048
|
+
onEnded?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2049
|
+
onEndedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2050
|
+
onLoadedData?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2051
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2052
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2053
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2054
|
+
onLoadStart?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2055
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2056
|
+
onPause?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2057
|
+
onPauseCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2058
|
+
onPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2059
|
+
onPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2060
|
+
onPlaying?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2061
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2062
|
+
onProgress?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2063
|
+
onProgressCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2064
|
+
onRateChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2065
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2066
|
+
onResize?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2067
|
+
onResizeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2068
|
+
onSeeked?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2069
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2070
|
+
onSeeking?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2071
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2072
|
+
onStalled?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2073
|
+
onStalledCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2074
|
+
onSuspend?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2075
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2076
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2077
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2078
|
+
onVolumeChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2079
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2080
|
+
onWaiting?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2081
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2082
|
+
onAuxClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2083
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2084
|
+
onClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2085
|
+
onClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2086
|
+
onContextMenu?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2087
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2088
|
+
onDoubleClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2089
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2090
|
+
onDrag?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2091
|
+
onDragCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2092
|
+
onDragEnd?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2093
|
+
onDragEndCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2094
|
+
onDragEnter?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2095
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2096
|
+
onDragExit?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2097
|
+
onDragExitCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2098
|
+
onDragLeave?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2099
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2100
|
+
onDragOver?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2101
|
+
onDragOverCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2102
|
+
onDragStart?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2103
|
+
onDragStartCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2104
|
+
onDrop?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2105
|
+
onDropCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2106
|
+
onMouseDown?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2107
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2108
|
+
onMouseEnter?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2109
|
+
onMouseLeave?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2110
|
+
onMouseMove?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2111
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2112
|
+
onMouseOut?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2113
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2114
|
+
onMouseOver?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2115
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2116
|
+
onMouseUp?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2117
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2118
|
+
onSelect?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2119
|
+
onSelectCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2120
|
+
onTouchCancel?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2121
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2122
|
+
onTouchEnd?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2123
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2124
|
+
onTouchMove?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2125
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2126
|
+
onTouchStart?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2127
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2128
|
+
onPointerDown?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2129
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2130
|
+
onPointerMove?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2131
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2132
|
+
onPointerUp?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2133
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2134
|
+
onPointerCancel?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2135
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2136
|
+
onPointerEnter?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2137
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2138
|
+
onPointerLeave?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2139
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2140
|
+
onPointerOver?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2141
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2142
|
+
onPointerOut?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2143
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2144
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2145
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2146
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2147
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2148
|
+
onScroll?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
2149
|
+
onScrollCapture?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
2150
|
+
onWheel?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
2151
|
+
onWheelCapture?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
2152
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2153
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2154
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2155
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2156
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2157
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2158
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2159
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2160
|
+
}, "ref"> & {
|
|
2161
|
+
ref?: ((instance: HTMLInputElement | null) => void) | react.RefObject<HTMLInputElement> | null | undefined;
|
|
2162
|
+
}, StyledInputProps>> & styled_components.IStyledComponent<"web", {
|
|
2163
|
+
ref?: react.LegacyRef<HTMLInputElement> | undefined;
|
|
2164
|
+
key?: react.Key | null | undefined;
|
|
2165
|
+
accept?: string | undefined;
|
|
2166
|
+
alt?: string | undefined;
|
|
2167
|
+
autoComplete?: string | undefined;
|
|
2168
|
+
capture?: boolean | "environment" | "user" | undefined;
|
|
2169
|
+
checked?: boolean | undefined;
|
|
2170
|
+
disabled?: boolean | undefined;
|
|
2171
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
2172
|
+
form?: string | undefined;
|
|
2173
|
+
formAction?: string | undefined;
|
|
2174
|
+
formEncType?: string | undefined;
|
|
2175
|
+
formMethod?: string | undefined;
|
|
2176
|
+
formNoValidate?: boolean | undefined;
|
|
2177
|
+
formTarget?: string | undefined;
|
|
2178
|
+
height?: string | number | undefined;
|
|
2179
|
+
list?: string | undefined;
|
|
2180
|
+
max?: string | number | undefined;
|
|
2181
|
+
maxLength?: number | undefined;
|
|
2182
|
+
min?: string | number | undefined;
|
|
2183
|
+
minLength?: number | undefined;
|
|
2184
|
+
multiple?: boolean | undefined;
|
|
2185
|
+
name?: string | undefined;
|
|
2186
|
+
pattern?: string | undefined;
|
|
2187
|
+
placeholder?: string | undefined;
|
|
2188
|
+
readOnly?: boolean | undefined;
|
|
2189
|
+
required?: boolean | undefined;
|
|
2190
|
+
size?: number | undefined;
|
|
2191
|
+
src?: string | undefined;
|
|
2192
|
+
step?: string | number | undefined;
|
|
2193
|
+
type?: react.HTMLInputTypeAttribute | undefined;
|
|
2194
|
+
value?: string | number | readonly string[] | undefined;
|
|
2195
|
+
width?: string | number | undefined;
|
|
2196
|
+
onChange?: react.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
2197
|
+
defaultChecked?: boolean | undefined;
|
|
2198
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
2199
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
2200
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
2201
|
+
accessKey?: string | undefined;
|
|
2202
|
+
autoFocus?: boolean | undefined;
|
|
2203
|
+
className?: string | undefined;
|
|
2204
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
2205
|
+
contextMenu?: string | undefined;
|
|
2206
|
+
dir?: string | undefined;
|
|
2207
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2208
|
+
hidden?: boolean | undefined;
|
|
2209
|
+
id?: string | undefined;
|
|
2210
|
+
lang?: string | undefined;
|
|
2211
|
+
nonce?: string | undefined;
|
|
2212
|
+
slot?: string | undefined;
|
|
2213
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2214
|
+
style?: react.CSSProperties | undefined;
|
|
2215
|
+
tabIndex?: number | undefined;
|
|
2216
|
+
title?: string | undefined;
|
|
2217
|
+
translate?: "no" | "yes" | undefined;
|
|
2218
|
+
radioGroup?: string | undefined;
|
|
2219
|
+
role?: react.AriaRole | undefined;
|
|
2220
|
+
about?: string | undefined;
|
|
2221
|
+
content?: string | undefined;
|
|
2222
|
+
datatype?: string | undefined;
|
|
2223
|
+
inlist?: any;
|
|
2224
|
+
prefix?: string | undefined;
|
|
2225
|
+
property?: string | undefined;
|
|
2226
|
+
rel?: string | undefined;
|
|
2227
|
+
resource?: string | undefined;
|
|
2228
|
+
rev?: string | undefined;
|
|
2229
|
+
typeof?: string | undefined;
|
|
2230
|
+
vocab?: string | undefined;
|
|
2231
|
+
autoCapitalize?: string | undefined;
|
|
2232
|
+
autoCorrect?: string | undefined;
|
|
2233
|
+
autoSave?: string | undefined;
|
|
2234
|
+
color?: string | undefined;
|
|
2235
|
+
itemProp?: string | undefined;
|
|
2236
|
+
itemScope?: boolean | undefined;
|
|
2237
|
+
itemType?: string | undefined;
|
|
2238
|
+
itemID?: string | undefined;
|
|
2239
|
+
itemRef?: string | undefined;
|
|
2240
|
+
results?: number | undefined;
|
|
2241
|
+
security?: string | undefined;
|
|
2242
|
+
unselectable?: "off" | "on" | undefined;
|
|
2243
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
2244
|
+
is?: string | undefined;
|
|
2245
|
+
"aria-activedescendant"?: string | undefined;
|
|
2246
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
2247
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2248
|
+
"aria-braillelabel"?: string | undefined;
|
|
2249
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
2250
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
2251
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2252
|
+
"aria-colcount"?: number | undefined;
|
|
2253
|
+
"aria-colindex"?: number | undefined;
|
|
2254
|
+
"aria-colindextext"?: string | undefined;
|
|
2255
|
+
"aria-colspan"?: number | undefined;
|
|
2256
|
+
"aria-controls"?: string | undefined;
|
|
2257
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2258
|
+
"aria-describedby"?: string | undefined;
|
|
2259
|
+
"aria-description"?: string | undefined;
|
|
2260
|
+
"aria-details"?: string | undefined;
|
|
2261
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
2262
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2263
|
+
"aria-errormessage"?: string | undefined;
|
|
2264
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2265
|
+
"aria-flowto"?: string | undefined;
|
|
2266
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
2267
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
2268
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
2269
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2270
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
2271
|
+
"aria-label"?: string | undefined;
|
|
2272
|
+
"aria-labelledby"?: string | undefined;
|
|
2273
|
+
"aria-level"?: number | undefined;
|
|
2274
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2275
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
2276
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
2277
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2278
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2279
|
+
"aria-owns"?: string | undefined;
|
|
2280
|
+
"aria-placeholder"?: string | undefined;
|
|
2281
|
+
"aria-posinset"?: number | undefined;
|
|
2282
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2283
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
2284
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2285
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2286
|
+
"aria-roledescription"?: string | undefined;
|
|
2287
|
+
"aria-rowcount"?: number | undefined;
|
|
2288
|
+
"aria-rowindex"?: number | undefined;
|
|
2289
|
+
"aria-rowindextext"?: string | undefined;
|
|
2290
|
+
"aria-rowspan"?: number | undefined;
|
|
2291
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2292
|
+
"aria-setsize"?: number | undefined;
|
|
2293
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2294
|
+
"aria-valuemax"?: number | undefined;
|
|
2295
|
+
"aria-valuemin"?: number | undefined;
|
|
2296
|
+
"aria-valuenow"?: number | undefined;
|
|
2297
|
+
"aria-valuetext"?: string | undefined;
|
|
2298
|
+
children?: react.ReactNode;
|
|
2299
|
+
dangerouslySetInnerHTML?: {
|
|
2300
|
+
__html: string | TrustedHTML;
|
|
2301
|
+
} | undefined;
|
|
2302
|
+
onCopy?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2303
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2304
|
+
onCut?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2305
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2306
|
+
onPaste?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2307
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
2308
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2309
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2310
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2311
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2312
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2313
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
2314
|
+
onFocus?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2315
|
+
onFocusCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2316
|
+
onBlur?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2317
|
+
onBlurCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
2318
|
+
onChangeCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2319
|
+
onBeforeInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2320
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2321
|
+
onInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2322
|
+
onInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2323
|
+
onReset?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2324
|
+
onResetCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2325
|
+
onSubmit?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2326
|
+
onSubmitCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2327
|
+
onInvalid?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2328
|
+
onInvalidCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
2329
|
+
onLoad?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2330
|
+
onLoadCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2331
|
+
onError?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2332
|
+
onErrorCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2333
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2334
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2335
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2336
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2337
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2338
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
2339
|
+
onAbort?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2340
|
+
onAbortCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2341
|
+
onCanPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2342
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2343
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2344
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2345
|
+
onDurationChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2346
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2347
|
+
onEmptied?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2348
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2349
|
+
onEncrypted?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2350
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2351
|
+
onEnded?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2352
|
+
onEndedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2353
|
+
onLoadedData?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2354
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2355
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2356
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2357
|
+
onLoadStart?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2358
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2359
|
+
onPause?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2360
|
+
onPauseCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2361
|
+
onPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2362
|
+
onPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2363
|
+
onPlaying?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2364
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2365
|
+
onProgress?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2366
|
+
onProgressCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2367
|
+
onRateChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2368
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2369
|
+
onResize?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2370
|
+
onResizeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2371
|
+
onSeeked?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2372
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2373
|
+
onSeeking?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2374
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2375
|
+
onStalled?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2376
|
+
onStalledCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2377
|
+
onSuspend?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2378
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2379
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2380
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2381
|
+
onVolumeChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2382
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2383
|
+
onWaiting?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2384
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2385
|
+
onAuxClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2386
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2387
|
+
onClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2388
|
+
onClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2389
|
+
onContextMenu?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2390
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2391
|
+
onDoubleClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2392
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2393
|
+
onDrag?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2394
|
+
onDragCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2395
|
+
onDragEnd?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2396
|
+
onDragEndCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2397
|
+
onDragEnter?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2398
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2399
|
+
onDragExit?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2400
|
+
onDragExitCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2401
|
+
onDragLeave?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2402
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2403
|
+
onDragOver?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2404
|
+
onDragOverCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2405
|
+
onDragStart?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2406
|
+
onDragStartCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2407
|
+
onDrop?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2408
|
+
onDropCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
2409
|
+
onMouseDown?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2410
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2411
|
+
onMouseEnter?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2412
|
+
onMouseLeave?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2413
|
+
onMouseMove?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2414
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2415
|
+
onMouseOut?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2416
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2417
|
+
onMouseOver?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2418
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2419
|
+
onMouseUp?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2420
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
2421
|
+
onSelect?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2422
|
+
onSelectCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
2423
|
+
onTouchCancel?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2424
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2425
|
+
onTouchEnd?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2426
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2427
|
+
onTouchMove?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2428
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2429
|
+
onTouchStart?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2430
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
2431
|
+
onPointerDown?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2432
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2433
|
+
onPointerMove?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2434
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2435
|
+
onPointerUp?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2436
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2437
|
+
onPointerCancel?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2438
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2439
|
+
onPointerEnter?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2440
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2441
|
+
onPointerLeave?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2442
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2443
|
+
onPointerOver?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2444
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2445
|
+
onPointerOut?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2446
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2447
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2448
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2449
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2450
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
2451
|
+
onScroll?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
2452
|
+
onScrollCapture?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
2453
|
+
onWheel?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
2454
|
+
onWheelCapture?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
2455
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2456
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2457
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2458
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2459
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2460
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
2461
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2462
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2463
|
+
}>;
|
|
1593
2464
|
declare const TextArea: react.ForwardRefExoticComponent<_norges_domstoler_dds_form.CommonInputProps & react.TextareaHTMLAttributes<HTMLTextAreaElement> & react.RefAttributes<HTMLTextAreaElement>>;
|
|
1594
2465
|
|
|
1595
2466
|
type TextAreaProps = CommonInputProps & TextareaHTMLAttributes<HTMLTextAreaElement>;
|