@norges-domstoler/dds-components 13.11.2 → 13.11.4
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 +3550 -142
- package/dist/index.d.ts +3550 -142
- package/dist/index.js +5777 -2674
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5501 -2918
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,22 +1,3454 @@
|
|
|
1
|
-
import * as _norges_domstoler_dds_core from '@norges-domstoler/dds-core';
|
|
2
|
-
import { BaseComponentProps, Placement, As, PropsOf, BaseComponentPropsWithChildren, Direction as Direction$1, WithRequiredIf, TextColor, BreakpointBasedProps, ExtractStrict } from '@norges-domstoler/dds-core';
|
|
3
|
-
export * from '@norges-domstoler/dds-core';
|
|
4
|
-
import * as _norges_domstoler_dds_form from '@norges-domstoler/dds-form';
|
|
5
|
-
import { InputSize, InputProps, StyledInputProps, CommonInputProps } from '@norges-domstoler/dds-form';
|
|
6
|
-
export * from '@norges-domstoler/dds-form';
|
|
7
|
-
import * as _norges_domstoler_dds_icons from '@norges-domstoler/dds-icons';
|
|
8
|
-
import { SvgIcon } from '@norges-domstoler/dds-icons';
|
|
9
|
-
export * from '@norges-domstoler/dds-icons';
|
|
10
|
-
import { TypographyBodyType, StaticTypographyType } from '@norges-domstoler/dds-typography';
|
|
11
|
-
export * from '@norges-domstoler/dds-typography';
|
|
12
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
13
|
-
import * as react from 'react';
|
|
14
|
-
import react__default, { ButtonHTMLAttributes, AnchorHTMLAttributes, RefObject, ReactNode, PropsWithChildren, ReactElement, MouseEventHandler, InputHTMLAttributes, ChangeEvent, HTMLAttributes, Ref, MouseEvent as MouseEvent$1, TdHTMLAttributes, ThHTMLAttributes, Dispatch, SetStateAction, ForwardRefExoticComponent, TextareaHTMLAttributes } from 'react';
|
|
15
|
-
import { Environment } from '@norges-domstoler/development-utils';
|
|
16
2
|
import { Property, StandardProperties } from 'csstype';
|
|
17
|
-
import { OptionProps, GroupBase, SingleValueProps, Props, SelectInstance } from 'react-select';
|
|
18
3
|
import * as styled_components from 'styled-components';
|
|
4
|
+
import * as react from 'react';
|
|
5
|
+
import react__default, { CSSProperties, PropsWithChildren, HTMLAttributes, ElementType, ComponentPropsWithoutRef, AnchorHTMLAttributes, LabelHTMLAttributes, InputHTMLAttributes, RefCallback, RefObject, KeyboardEvent as KeyboardEvent$1, Dispatch, SetStateAction, SVGAttributes, ButtonHTMLAttributes, ReactNode, ReactElement, MouseEventHandler, ChangeEvent, Ref, MouseEvent as MouseEvent$1, TdHTMLAttributes, ThHTMLAttributes, ForwardRefExoticComponent, TextareaHTMLAttributes } from 'react';
|
|
19
6
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
7
|
+
import { TextColor as TextColor$1 } from '@norges-domstoler/dds-components/src/utils';
|
|
8
|
+
import * as _floating_ui_react_dom from '@floating-ui/react-dom';
|
|
9
|
+
import { Strategy, Placement as Placement$1 } from '@floating-ui/react-dom';
|
|
10
|
+
import { Environment } from '@norges-domstoler/development-utils';
|
|
11
|
+
import { OptionProps, GroupBase, SingleValueProps, Props, SelectInstance } from 'react-select';
|
|
12
|
+
|
|
13
|
+
interface SvgChevronProps {
|
|
14
|
+
isUp?: boolean;
|
|
15
|
+
height?: Property.Height<string>;
|
|
16
|
+
width?: Property.Width<string>;
|
|
17
|
+
}
|
|
18
|
+
declare const AnimatedChevronUpDown: ({ isUp, height, width, }: SvgChevronProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const HiddenInput: styled_components.IStyledComponent<"web", {
|
|
21
|
+
ref?: react.LegacyRef<HTMLInputElement> | undefined;
|
|
22
|
+
key?: react.Key | null | undefined;
|
|
23
|
+
accept?: string | undefined;
|
|
24
|
+
alt?: string | undefined;
|
|
25
|
+
autoComplete?: string | undefined;
|
|
26
|
+
capture?: boolean | "environment" | "user" | undefined;
|
|
27
|
+
checked?: boolean | undefined;
|
|
28
|
+
disabled?: boolean | undefined;
|
|
29
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
30
|
+
form?: string | undefined;
|
|
31
|
+
formAction?: string | undefined;
|
|
32
|
+
formEncType?: string | undefined;
|
|
33
|
+
formMethod?: string | undefined;
|
|
34
|
+
formNoValidate?: boolean | undefined;
|
|
35
|
+
formTarget?: string | undefined;
|
|
36
|
+
height?: string | number | undefined;
|
|
37
|
+
list?: string | undefined;
|
|
38
|
+
max?: string | number | undefined;
|
|
39
|
+
maxLength?: number | undefined;
|
|
40
|
+
min?: string | number | undefined;
|
|
41
|
+
minLength?: number | undefined;
|
|
42
|
+
multiple?: boolean | undefined;
|
|
43
|
+
name?: string | undefined;
|
|
44
|
+
pattern?: string | undefined;
|
|
45
|
+
placeholder?: string | undefined;
|
|
46
|
+
readOnly?: boolean | undefined;
|
|
47
|
+
required?: boolean | undefined;
|
|
48
|
+
size?: number | undefined;
|
|
49
|
+
src?: string | undefined;
|
|
50
|
+
step?: string | number | undefined;
|
|
51
|
+
type?: react.HTMLInputTypeAttribute | undefined;
|
|
52
|
+
value?: string | number | readonly string[] | undefined;
|
|
53
|
+
width?: string | number | undefined;
|
|
54
|
+
onChange?: react.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
55
|
+
defaultChecked?: boolean | undefined;
|
|
56
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
57
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
58
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
59
|
+
accessKey?: string | undefined;
|
|
60
|
+
autoFocus?: boolean | undefined;
|
|
61
|
+
className?: string | undefined;
|
|
62
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
63
|
+
contextMenu?: string | undefined;
|
|
64
|
+
dir?: string | undefined;
|
|
65
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
66
|
+
hidden?: boolean | undefined;
|
|
67
|
+
id?: string | undefined;
|
|
68
|
+
lang?: string | undefined;
|
|
69
|
+
nonce?: string | undefined;
|
|
70
|
+
slot?: string | undefined;
|
|
71
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
72
|
+
style?: react.CSSProperties | undefined;
|
|
73
|
+
tabIndex?: number | undefined;
|
|
74
|
+
title?: string | undefined;
|
|
75
|
+
translate?: "yes" | "no" | undefined;
|
|
76
|
+
radioGroup?: string | undefined;
|
|
77
|
+
role?: react.AriaRole | undefined;
|
|
78
|
+
about?: string | undefined;
|
|
79
|
+
content?: string | undefined;
|
|
80
|
+
datatype?: string | undefined;
|
|
81
|
+
inlist?: any;
|
|
82
|
+
prefix?: string | undefined;
|
|
83
|
+
property?: string | undefined;
|
|
84
|
+
rel?: string | undefined;
|
|
85
|
+
resource?: string | undefined;
|
|
86
|
+
rev?: string | undefined;
|
|
87
|
+
typeof?: string | undefined;
|
|
88
|
+
vocab?: string | undefined;
|
|
89
|
+
autoCapitalize?: string | undefined;
|
|
90
|
+
autoCorrect?: string | undefined;
|
|
91
|
+
autoSave?: string | undefined;
|
|
92
|
+
color?: string | undefined;
|
|
93
|
+
itemProp?: string | undefined;
|
|
94
|
+
itemScope?: boolean | undefined;
|
|
95
|
+
itemType?: string | undefined;
|
|
96
|
+
itemID?: string | undefined;
|
|
97
|
+
itemRef?: string | undefined;
|
|
98
|
+
results?: number | undefined;
|
|
99
|
+
security?: string | undefined;
|
|
100
|
+
unselectable?: "on" | "off" | undefined;
|
|
101
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
102
|
+
is?: string | undefined;
|
|
103
|
+
"aria-activedescendant"?: string | undefined;
|
|
104
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
105
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
106
|
+
"aria-braillelabel"?: string | undefined;
|
|
107
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
108
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
109
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
110
|
+
"aria-colcount"?: number | undefined;
|
|
111
|
+
"aria-colindex"?: number | undefined;
|
|
112
|
+
"aria-colindextext"?: string | undefined;
|
|
113
|
+
"aria-colspan"?: number | undefined;
|
|
114
|
+
"aria-controls"?: string | undefined;
|
|
115
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
116
|
+
"aria-describedby"?: string | undefined;
|
|
117
|
+
"aria-description"?: string | undefined;
|
|
118
|
+
"aria-details"?: string | undefined;
|
|
119
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
120
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
121
|
+
"aria-errormessage"?: string | undefined;
|
|
122
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
123
|
+
"aria-flowto"?: string | undefined;
|
|
124
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
125
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
126
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
127
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
128
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
129
|
+
"aria-label"?: string | undefined;
|
|
130
|
+
"aria-labelledby"?: string | undefined;
|
|
131
|
+
"aria-level"?: number | undefined;
|
|
132
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
133
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
134
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
135
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
136
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
137
|
+
"aria-owns"?: string | undefined;
|
|
138
|
+
"aria-placeholder"?: string | undefined;
|
|
139
|
+
"aria-posinset"?: number | undefined;
|
|
140
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
141
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
142
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
143
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
144
|
+
"aria-roledescription"?: string | undefined;
|
|
145
|
+
"aria-rowcount"?: number | undefined;
|
|
146
|
+
"aria-rowindex"?: number | undefined;
|
|
147
|
+
"aria-rowindextext"?: string | undefined;
|
|
148
|
+
"aria-rowspan"?: number | undefined;
|
|
149
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
150
|
+
"aria-setsize"?: number | undefined;
|
|
151
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
152
|
+
"aria-valuemax"?: number | undefined;
|
|
153
|
+
"aria-valuemin"?: number | undefined;
|
|
154
|
+
"aria-valuenow"?: number | undefined;
|
|
155
|
+
"aria-valuetext"?: string | undefined;
|
|
156
|
+
children?: react.ReactNode;
|
|
157
|
+
dangerouslySetInnerHTML?: {
|
|
158
|
+
__html: string | TrustedHTML;
|
|
159
|
+
} | undefined;
|
|
160
|
+
onCopy?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
161
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
162
|
+
onCut?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
163
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
164
|
+
onPaste?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
165
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
166
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
167
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
168
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
169
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
170
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
171
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
172
|
+
onFocus?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
173
|
+
onFocusCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
174
|
+
onBlur?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
175
|
+
onBlurCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
176
|
+
onChangeCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
177
|
+
onBeforeInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
178
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
179
|
+
onInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
180
|
+
onInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
181
|
+
onReset?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
182
|
+
onResetCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
183
|
+
onSubmit?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
184
|
+
onSubmitCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
185
|
+
onInvalid?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
186
|
+
onInvalidCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
187
|
+
onLoad?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
188
|
+
onLoadCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
189
|
+
onError?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
190
|
+
onErrorCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
191
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
192
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
193
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
194
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
195
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
196
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
197
|
+
onAbort?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
198
|
+
onAbortCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
199
|
+
onCanPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
200
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
201
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
202
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
203
|
+
onDurationChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
204
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
205
|
+
onEmptied?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
206
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
207
|
+
onEncrypted?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
208
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
209
|
+
onEnded?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
210
|
+
onEndedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
211
|
+
onLoadedData?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
212
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
213
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
214
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
215
|
+
onLoadStart?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
216
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
217
|
+
onPause?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
218
|
+
onPauseCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
219
|
+
onPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
220
|
+
onPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
221
|
+
onPlaying?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
222
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
223
|
+
onProgress?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
224
|
+
onProgressCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
225
|
+
onRateChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
226
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
227
|
+
onResize?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
228
|
+
onResizeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
229
|
+
onSeeked?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
230
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
231
|
+
onSeeking?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
232
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
233
|
+
onStalled?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
234
|
+
onStalledCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
235
|
+
onSuspend?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
236
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
237
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
238
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
239
|
+
onVolumeChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
240
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
241
|
+
onWaiting?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
242
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
243
|
+
onAuxClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
244
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
245
|
+
onClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
246
|
+
onClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
247
|
+
onContextMenu?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
248
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
249
|
+
onDoubleClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
250
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
251
|
+
onDrag?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
252
|
+
onDragCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
253
|
+
onDragEnd?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
254
|
+
onDragEndCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
255
|
+
onDragEnter?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
256
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
257
|
+
onDragExit?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
258
|
+
onDragExitCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
259
|
+
onDragLeave?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
260
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
261
|
+
onDragOver?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
262
|
+
onDragOverCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
263
|
+
onDragStart?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
264
|
+
onDragStartCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
265
|
+
onDrop?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
266
|
+
onDropCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
267
|
+
onMouseDown?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
268
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
269
|
+
onMouseEnter?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
270
|
+
onMouseLeave?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
271
|
+
onMouseMove?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
272
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
273
|
+
onMouseOut?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
274
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
275
|
+
onMouseOver?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
276
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
277
|
+
onMouseUp?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
278
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
279
|
+
onSelect?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
280
|
+
onSelectCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
281
|
+
onTouchCancel?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
282
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
283
|
+
onTouchEnd?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
284
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
285
|
+
onTouchMove?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
286
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
287
|
+
onTouchStart?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
288
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
289
|
+
onPointerDown?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
290
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
291
|
+
onPointerMove?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
292
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
293
|
+
onPointerUp?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
294
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
295
|
+
onPointerCancel?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
296
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
297
|
+
onPointerEnter?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
298
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
299
|
+
onPointerLeave?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
300
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
301
|
+
onPointerOver?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
302
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
303
|
+
onPointerOut?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
304
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
305
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
306
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
307
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
308
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
309
|
+
onScroll?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
310
|
+
onScrollCapture?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
311
|
+
onWheel?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
312
|
+
onWheelCapture?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
313
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
314
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
315
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
316
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
317
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
318
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
319
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
320
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
321
|
+
}>;
|
|
322
|
+
|
|
323
|
+
declare const Input: styled_components.IStyledComponent<"web", {
|
|
324
|
+
ref?: react.LegacyRef<HTMLInputElement> | undefined;
|
|
325
|
+
key?: react.Key | null | undefined;
|
|
326
|
+
accept?: string | undefined;
|
|
327
|
+
alt?: string | undefined;
|
|
328
|
+
autoComplete?: string | undefined;
|
|
329
|
+
capture?: boolean | "environment" | "user" | undefined;
|
|
330
|
+
checked?: boolean | undefined;
|
|
331
|
+
disabled?: boolean | undefined;
|
|
332
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
333
|
+
form?: string | undefined;
|
|
334
|
+
formAction?: string | undefined;
|
|
335
|
+
formEncType?: string | undefined;
|
|
336
|
+
formMethod?: string | undefined;
|
|
337
|
+
formNoValidate?: boolean | undefined;
|
|
338
|
+
formTarget?: string | undefined;
|
|
339
|
+
height?: string | number | undefined;
|
|
340
|
+
list?: string | undefined;
|
|
341
|
+
max?: string | number | undefined;
|
|
342
|
+
maxLength?: number | undefined;
|
|
343
|
+
min?: string | number | undefined;
|
|
344
|
+
minLength?: number | undefined;
|
|
345
|
+
multiple?: boolean | undefined;
|
|
346
|
+
name?: string | undefined;
|
|
347
|
+
pattern?: string | undefined;
|
|
348
|
+
placeholder?: string | undefined;
|
|
349
|
+
readOnly?: boolean | undefined;
|
|
350
|
+
required?: boolean | undefined;
|
|
351
|
+
size?: number | undefined;
|
|
352
|
+
src?: string | undefined;
|
|
353
|
+
step?: string | number | undefined;
|
|
354
|
+
type?: react.HTMLInputTypeAttribute | undefined;
|
|
355
|
+
value?: string | number | readonly string[] | undefined;
|
|
356
|
+
width?: string | number | undefined;
|
|
357
|
+
onChange?: react.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
358
|
+
defaultChecked?: boolean | undefined;
|
|
359
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
360
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
361
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
362
|
+
accessKey?: string | undefined;
|
|
363
|
+
autoFocus?: boolean | undefined;
|
|
364
|
+
className?: string | undefined;
|
|
365
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
366
|
+
contextMenu?: string | undefined;
|
|
367
|
+
dir?: string | undefined;
|
|
368
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
369
|
+
hidden?: boolean | undefined;
|
|
370
|
+
id?: string | undefined;
|
|
371
|
+
lang?: string | undefined;
|
|
372
|
+
nonce?: string | undefined;
|
|
373
|
+
slot?: string | undefined;
|
|
374
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
375
|
+
style?: react.CSSProperties | undefined;
|
|
376
|
+
tabIndex?: number | undefined;
|
|
377
|
+
title?: string | undefined;
|
|
378
|
+
translate?: "yes" | "no" | undefined;
|
|
379
|
+
radioGroup?: string | undefined;
|
|
380
|
+
role?: react.AriaRole | undefined;
|
|
381
|
+
about?: string | undefined;
|
|
382
|
+
content?: string | undefined;
|
|
383
|
+
datatype?: string | undefined;
|
|
384
|
+
inlist?: any;
|
|
385
|
+
prefix?: string | undefined;
|
|
386
|
+
property?: string | undefined;
|
|
387
|
+
rel?: string | undefined;
|
|
388
|
+
resource?: string | undefined;
|
|
389
|
+
rev?: string | undefined;
|
|
390
|
+
typeof?: string | undefined;
|
|
391
|
+
vocab?: string | undefined;
|
|
392
|
+
autoCapitalize?: string | undefined;
|
|
393
|
+
autoCorrect?: string | undefined;
|
|
394
|
+
autoSave?: string | undefined;
|
|
395
|
+
color?: string | undefined;
|
|
396
|
+
itemProp?: string | undefined;
|
|
397
|
+
itemScope?: boolean | undefined;
|
|
398
|
+
itemType?: string | undefined;
|
|
399
|
+
itemID?: string | undefined;
|
|
400
|
+
itemRef?: string | undefined;
|
|
401
|
+
results?: number | undefined;
|
|
402
|
+
security?: string | undefined;
|
|
403
|
+
unselectable?: "on" | "off" | undefined;
|
|
404
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
405
|
+
is?: string | undefined;
|
|
406
|
+
"aria-activedescendant"?: string | undefined;
|
|
407
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
408
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
409
|
+
"aria-braillelabel"?: string | undefined;
|
|
410
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
411
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
412
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
413
|
+
"aria-colcount"?: number | undefined;
|
|
414
|
+
"aria-colindex"?: number | undefined;
|
|
415
|
+
"aria-colindextext"?: string | undefined;
|
|
416
|
+
"aria-colspan"?: number | undefined;
|
|
417
|
+
"aria-controls"?: string | undefined;
|
|
418
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
419
|
+
"aria-describedby"?: string | undefined;
|
|
420
|
+
"aria-description"?: string | undefined;
|
|
421
|
+
"aria-details"?: string | undefined;
|
|
422
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
423
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
424
|
+
"aria-errormessage"?: string | undefined;
|
|
425
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
426
|
+
"aria-flowto"?: string | undefined;
|
|
427
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
428
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
429
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
430
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
431
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
432
|
+
"aria-label"?: string | undefined;
|
|
433
|
+
"aria-labelledby"?: string | undefined;
|
|
434
|
+
"aria-level"?: number | undefined;
|
|
435
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
436
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
437
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
438
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
439
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
440
|
+
"aria-owns"?: string | undefined;
|
|
441
|
+
"aria-placeholder"?: string | undefined;
|
|
442
|
+
"aria-posinset"?: number | undefined;
|
|
443
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
444
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
445
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
446
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
447
|
+
"aria-roledescription"?: string | undefined;
|
|
448
|
+
"aria-rowcount"?: number | undefined;
|
|
449
|
+
"aria-rowindex"?: number | undefined;
|
|
450
|
+
"aria-rowindextext"?: string | undefined;
|
|
451
|
+
"aria-rowspan"?: number | undefined;
|
|
452
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
453
|
+
"aria-setsize"?: number | undefined;
|
|
454
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
455
|
+
"aria-valuemax"?: number | undefined;
|
|
456
|
+
"aria-valuemin"?: number | undefined;
|
|
457
|
+
"aria-valuenow"?: number | undefined;
|
|
458
|
+
"aria-valuetext"?: string | undefined;
|
|
459
|
+
children?: react.ReactNode;
|
|
460
|
+
dangerouslySetInnerHTML?: {
|
|
461
|
+
__html: string | TrustedHTML;
|
|
462
|
+
} | undefined;
|
|
463
|
+
onCopy?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
464
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
465
|
+
onCut?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
466
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
467
|
+
onPaste?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
468
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
469
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
470
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
471
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
472
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
473
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
474
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
475
|
+
onFocus?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
476
|
+
onFocusCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
477
|
+
onBlur?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
478
|
+
onBlurCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
479
|
+
onChangeCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
480
|
+
onBeforeInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
481
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
482
|
+
onInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
483
|
+
onInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
484
|
+
onReset?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
485
|
+
onResetCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
486
|
+
onSubmit?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
487
|
+
onSubmitCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
488
|
+
onInvalid?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
489
|
+
onInvalidCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
490
|
+
onLoad?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
491
|
+
onLoadCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
492
|
+
onError?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
493
|
+
onErrorCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
494
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
495
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
496
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
497
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
498
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
499
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
500
|
+
onAbort?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
501
|
+
onAbortCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
502
|
+
onCanPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
503
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
504
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
505
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
506
|
+
onDurationChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
507
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
508
|
+
onEmptied?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
509
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
510
|
+
onEncrypted?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
511
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
512
|
+
onEnded?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
513
|
+
onEndedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
514
|
+
onLoadedData?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
515
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
516
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
517
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
518
|
+
onLoadStart?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
519
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
520
|
+
onPause?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
521
|
+
onPauseCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
522
|
+
onPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
523
|
+
onPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
524
|
+
onPlaying?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
525
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
526
|
+
onProgress?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
527
|
+
onProgressCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
528
|
+
onRateChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
529
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
530
|
+
onResize?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
531
|
+
onResizeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
532
|
+
onSeeked?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
533
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
534
|
+
onSeeking?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
535
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
536
|
+
onStalled?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
537
|
+
onStalledCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
538
|
+
onSuspend?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
539
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
540
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
541
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
542
|
+
onVolumeChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
543
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
544
|
+
onWaiting?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
545
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
546
|
+
onAuxClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
547
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
548
|
+
onClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
549
|
+
onClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
550
|
+
onContextMenu?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
551
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
552
|
+
onDoubleClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
553
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
554
|
+
onDrag?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
555
|
+
onDragCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
556
|
+
onDragEnd?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
557
|
+
onDragEndCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
558
|
+
onDragEnter?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
559
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
560
|
+
onDragExit?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
561
|
+
onDragExitCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
562
|
+
onDragLeave?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
563
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
564
|
+
onDragOver?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
565
|
+
onDragOverCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
566
|
+
onDragStart?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
567
|
+
onDragStartCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
568
|
+
onDrop?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
569
|
+
onDropCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
570
|
+
onMouseDown?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
571
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
572
|
+
onMouseEnter?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
573
|
+
onMouseLeave?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
574
|
+
onMouseMove?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
575
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
576
|
+
onMouseOut?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
577
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
578
|
+
onMouseOver?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
579
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
580
|
+
onMouseUp?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
581
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
582
|
+
onSelect?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
583
|
+
onSelectCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
584
|
+
onTouchCancel?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
585
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
586
|
+
onTouchEnd?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
587
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
588
|
+
onTouchMove?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
589
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
590
|
+
onTouchStart?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
591
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
592
|
+
onPointerDown?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
593
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
594
|
+
onPointerMove?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
595
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
596
|
+
onPointerUp?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
597
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
598
|
+
onPointerCancel?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
599
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
600
|
+
onPointerEnter?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
601
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
602
|
+
onPointerLeave?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
603
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
604
|
+
onPointerOver?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
605
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
606
|
+
onPointerOut?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
607
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
608
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
609
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
610
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
611
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
612
|
+
onScroll?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
613
|
+
onScrollCapture?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
614
|
+
onWheel?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
615
|
+
onWheelCapture?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
616
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
617
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
618
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
619
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
620
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
621
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
622
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
623
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
624
|
+
}>;
|
|
625
|
+
declare const StatefulInput: styled_components.IStyledComponent<"web", styled_components_dist_types.Substitute<Omit<{
|
|
626
|
+
ref?: react.LegacyRef<HTMLInputElement> | undefined;
|
|
627
|
+
key?: react.Key | null | undefined;
|
|
628
|
+
accept?: string | undefined;
|
|
629
|
+
alt?: string | undefined;
|
|
630
|
+
autoComplete?: string | undefined;
|
|
631
|
+
capture?: boolean | "environment" | "user" | undefined;
|
|
632
|
+
checked?: boolean | undefined;
|
|
633
|
+
disabled?: boolean | undefined;
|
|
634
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
635
|
+
form?: string | undefined;
|
|
636
|
+
formAction?: string | undefined;
|
|
637
|
+
formEncType?: string | undefined;
|
|
638
|
+
formMethod?: string | undefined;
|
|
639
|
+
formNoValidate?: boolean | undefined;
|
|
640
|
+
formTarget?: string | undefined;
|
|
641
|
+
height?: string | number | undefined;
|
|
642
|
+
list?: string | undefined;
|
|
643
|
+
max?: string | number | undefined;
|
|
644
|
+
maxLength?: number | undefined;
|
|
645
|
+
min?: string | number | undefined;
|
|
646
|
+
minLength?: number | undefined;
|
|
647
|
+
multiple?: boolean | undefined;
|
|
648
|
+
name?: string | undefined;
|
|
649
|
+
pattern?: string | undefined;
|
|
650
|
+
placeholder?: string | undefined;
|
|
651
|
+
readOnly?: boolean | undefined;
|
|
652
|
+
required?: boolean | undefined;
|
|
653
|
+
size?: number | undefined;
|
|
654
|
+
src?: string | undefined;
|
|
655
|
+
step?: string | number | undefined;
|
|
656
|
+
type?: react.HTMLInputTypeAttribute | undefined;
|
|
657
|
+
value?: string | number | readonly string[] | undefined;
|
|
658
|
+
width?: string | number | undefined;
|
|
659
|
+
onChange?: react.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
660
|
+
defaultChecked?: boolean | undefined;
|
|
661
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
662
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
663
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
664
|
+
accessKey?: string | undefined;
|
|
665
|
+
autoFocus?: boolean | undefined;
|
|
666
|
+
className?: string | undefined;
|
|
667
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
668
|
+
contextMenu?: string | undefined;
|
|
669
|
+
dir?: string | undefined;
|
|
670
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
671
|
+
hidden?: boolean | undefined;
|
|
672
|
+
id?: string | undefined;
|
|
673
|
+
lang?: string | undefined;
|
|
674
|
+
nonce?: string | undefined;
|
|
675
|
+
slot?: string | undefined;
|
|
676
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
677
|
+
style?: react.CSSProperties | undefined;
|
|
678
|
+
tabIndex?: number | undefined;
|
|
679
|
+
title?: string | undefined;
|
|
680
|
+
translate?: "yes" | "no" | undefined;
|
|
681
|
+
radioGroup?: string | undefined;
|
|
682
|
+
role?: react.AriaRole | undefined;
|
|
683
|
+
about?: string | undefined;
|
|
684
|
+
content?: string | undefined;
|
|
685
|
+
datatype?: string | undefined;
|
|
686
|
+
inlist?: any;
|
|
687
|
+
prefix?: string | undefined;
|
|
688
|
+
property?: string | undefined;
|
|
689
|
+
rel?: string | undefined;
|
|
690
|
+
resource?: string | undefined;
|
|
691
|
+
rev?: string | undefined;
|
|
692
|
+
typeof?: string | undefined;
|
|
693
|
+
vocab?: string | undefined;
|
|
694
|
+
autoCapitalize?: string | undefined;
|
|
695
|
+
autoCorrect?: string | undefined;
|
|
696
|
+
autoSave?: string | undefined;
|
|
697
|
+
color?: string | undefined;
|
|
698
|
+
itemProp?: string | undefined;
|
|
699
|
+
itemScope?: boolean | undefined;
|
|
700
|
+
itemType?: string | undefined;
|
|
701
|
+
itemID?: string | undefined;
|
|
702
|
+
itemRef?: string | undefined;
|
|
703
|
+
results?: number | undefined;
|
|
704
|
+
security?: string | undefined;
|
|
705
|
+
unselectable?: "on" | "off" | undefined;
|
|
706
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
707
|
+
is?: string | undefined;
|
|
708
|
+
"aria-activedescendant"?: string | undefined;
|
|
709
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
710
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
711
|
+
"aria-braillelabel"?: string | undefined;
|
|
712
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
713
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
714
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
715
|
+
"aria-colcount"?: number | undefined;
|
|
716
|
+
"aria-colindex"?: number | undefined;
|
|
717
|
+
"aria-colindextext"?: string | undefined;
|
|
718
|
+
"aria-colspan"?: number | undefined;
|
|
719
|
+
"aria-controls"?: string | undefined;
|
|
720
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
721
|
+
"aria-describedby"?: string | undefined;
|
|
722
|
+
"aria-description"?: string | undefined;
|
|
723
|
+
"aria-details"?: string | undefined;
|
|
724
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
725
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
726
|
+
"aria-errormessage"?: string | undefined;
|
|
727
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
728
|
+
"aria-flowto"?: string | undefined;
|
|
729
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
730
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
731
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
732
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
733
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
734
|
+
"aria-label"?: string | undefined;
|
|
735
|
+
"aria-labelledby"?: string | undefined;
|
|
736
|
+
"aria-level"?: number | undefined;
|
|
737
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
738
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
739
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
740
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
741
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
742
|
+
"aria-owns"?: string | undefined;
|
|
743
|
+
"aria-placeholder"?: string | undefined;
|
|
744
|
+
"aria-posinset"?: number | undefined;
|
|
745
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
746
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
747
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
748
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
749
|
+
"aria-roledescription"?: string | undefined;
|
|
750
|
+
"aria-rowcount"?: number | undefined;
|
|
751
|
+
"aria-rowindex"?: number | undefined;
|
|
752
|
+
"aria-rowindextext"?: string | undefined;
|
|
753
|
+
"aria-rowspan"?: number | undefined;
|
|
754
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
755
|
+
"aria-setsize"?: number | undefined;
|
|
756
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
757
|
+
"aria-valuemax"?: number | undefined;
|
|
758
|
+
"aria-valuemin"?: number | undefined;
|
|
759
|
+
"aria-valuenow"?: number | undefined;
|
|
760
|
+
"aria-valuetext"?: string | undefined;
|
|
761
|
+
children?: react.ReactNode;
|
|
762
|
+
dangerouslySetInnerHTML?: {
|
|
763
|
+
__html: string | TrustedHTML;
|
|
764
|
+
} | undefined;
|
|
765
|
+
onCopy?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
766
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
767
|
+
onCut?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
768
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
769
|
+
onPaste?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
770
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
771
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
772
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
773
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
774
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
775
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
776
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
777
|
+
onFocus?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
778
|
+
onFocusCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
779
|
+
onBlur?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
780
|
+
onBlurCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
781
|
+
onChangeCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
782
|
+
onBeforeInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
783
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
784
|
+
onInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
785
|
+
onInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
786
|
+
onReset?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
787
|
+
onResetCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
788
|
+
onSubmit?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
789
|
+
onSubmitCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
790
|
+
onInvalid?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
791
|
+
onInvalidCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
792
|
+
onLoad?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
793
|
+
onLoadCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
794
|
+
onError?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
795
|
+
onErrorCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
796
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
797
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
798
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
799
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
800
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
801
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
802
|
+
onAbort?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
803
|
+
onAbortCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
804
|
+
onCanPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
805
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
806
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
807
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
808
|
+
onDurationChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
809
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
810
|
+
onEmptied?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
811
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
812
|
+
onEncrypted?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
813
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
814
|
+
onEnded?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
815
|
+
onEndedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
816
|
+
onLoadedData?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
817
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
818
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
819
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
820
|
+
onLoadStart?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
821
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
822
|
+
onPause?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
823
|
+
onPauseCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
824
|
+
onPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
825
|
+
onPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
826
|
+
onPlaying?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
827
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
828
|
+
onProgress?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
829
|
+
onProgressCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
830
|
+
onRateChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
831
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
832
|
+
onResize?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
833
|
+
onResizeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
834
|
+
onSeeked?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
835
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
836
|
+
onSeeking?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
837
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
838
|
+
onStalled?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
839
|
+
onStalledCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
840
|
+
onSuspend?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
841
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
842
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
843
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
844
|
+
onVolumeChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
845
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
846
|
+
onWaiting?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
847
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
848
|
+
onAuxClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
849
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
850
|
+
onClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
851
|
+
onClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
852
|
+
onContextMenu?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
853
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
854
|
+
onDoubleClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
855
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
856
|
+
onDrag?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
857
|
+
onDragCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
858
|
+
onDragEnd?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
859
|
+
onDragEndCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
860
|
+
onDragEnter?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
861
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
862
|
+
onDragExit?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
863
|
+
onDragExitCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
864
|
+
onDragLeave?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
865
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
866
|
+
onDragOver?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
867
|
+
onDragOverCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
868
|
+
onDragStart?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
869
|
+
onDragStartCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
870
|
+
onDrop?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
871
|
+
onDropCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
872
|
+
onMouseDown?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
873
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
874
|
+
onMouseEnter?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
875
|
+
onMouseLeave?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
876
|
+
onMouseMove?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
877
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
878
|
+
onMouseOut?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
879
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
880
|
+
onMouseOver?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
881
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
882
|
+
onMouseUp?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
883
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
884
|
+
onSelect?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
885
|
+
onSelectCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
886
|
+
onTouchCancel?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
887
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
888
|
+
onTouchEnd?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
889
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
890
|
+
onTouchMove?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
891
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
892
|
+
onTouchStart?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
893
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
894
|
+
onPointerDown?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
895
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
896
|
+
onPointerMove?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
897
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
898
|
+
onPointerUp?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
899
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
900
|
+
onPointerCancel?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
901
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
902
|
+
onPointerEnter?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
903
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
904
|
+
onPointerLeave?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
905
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
906
|
+
onPointerOver?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
907
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
908
|
+
onPointerOut?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
909
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
910
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
911
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
912
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
913
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
914
|
+
onScroll?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
915
|
+
onScrollCapture?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
916
|
+
onWheel?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
917
|
+
onWheelCapture?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
918
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
919
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
920
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
921
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
922
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
923
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
924
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
925
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
926
|
+
}, "ref"> & {
|
|
927
|
+
ref?: ((instance: HTMLInputElement | null) => void) | react.RefObject<HTMLInputElement> | null | undefined;
|
|
928
|
+
}, StyledInputProps>> & styled_components.IStyledComponent<"web", {
|
|
929
|
+
ref?: react.LegacyRef<HTMLInputElement> | undefined;
|
|
930
|
+
key?: react.Key | null | undefined;
|
|
931
|
+
accept?: string | undefined;
|
|
932
|
+
alt?: string | undefined;
|
|
933
|
+
autoComplete?: string | undefined;
|
|
934
|
+
capture?: boolean | "environment" | "user" | undefined;
|
|
935
|
+
checked?: boolean | undefined;
|
|
936
|
+
disabled?: boolean | undefined;
|
|
937
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
938
|
+
form?: string | undefined;
|
|
939
|
+
formAction?: string | undefined;
|
|
940
|
+
formEncType?: string | undefined;
|
|
941
|
+
formMethod?: string | undefined;
|
|
942
|
+
formNoValidate?: boolean | undefined;
|
|
943
|
+
formTarget?: string | undefined;
|
|
944
|
+
height?: string | number | undefined;
|
|
945
|
+
list?: string | undefined;
|
|
946
|
+
max?: string | number | undefined;
|
|
947
|
+
maxLength?: number | undefined;
|
|
948
|
+
min?: string | number | undefined;
|
|
949
|
+
minLength?: number | undefined;
|
|
950
|
+
multiple?: boolean | undefined;
|
|
951
|
+
name?: string | undefined;
|
|
952
|
+
pattern?: string | undefined;
|
|
953
|
+
placeholder?: string | undefined;
|
|
954
|
+
readOnly?: boolean | undefined;
|
|
955
|
+
required?: boolean | undefined;
|
|
956
|
+
size?: number | undefined;
|
|
957
|
+
src?: string | undefined;
|
|
958
|
+
step?: string | number | undefined;
|
|
959
|
+
type?: react.HTMLInputTypeAttribute | undefined;
|
|
960
|
+
value?: string | number | readonly string[] | undefined;
|
|
961
|
+
width?: string | number | undefined;
|
|
962
|
+
onChange?: react.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
963
|
+
defaultChecked?: boolean | undefined;
|
|
964
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
965
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
966
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
967
|
+
accessKey?: string | undefined;
|
|
968
|
+
autoFocus?: boolean | undefined;
|
|
969
|
+
className?: string | undefined;
|
|
970
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
971
|
+
contextMenu?: string | undefined;
|
|
972
|
+
dir?: string | undefined;
|
|
973
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
974
|
+
hidden?: boolean | undefined;
|
|
975
|
+
id?: string | undefined;
|
|
976
|
+
lang?: string | undefined;
|
|
977
|
+
nonce?: string | undefined;
|
|
978
|
+
slot?: string | undefined;
|
|
979
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
980
|
+
style?: react.CSSProperties | undefined;
|
|
981
|
+
tabIndex?: number | undefined;
|
|
982
|
+
title?: string | undefined;
|
|
983
|
+
translate?: "yes" | "no" | undefined;
|
|
984
|
+
radioGroup?: string | undefined;
|
|
985
|
+
role?: react.AriaRole | undefined;
|
|
986
|
+
about?: string | undefined;
|
|
987
|
+
content?: string | undefined;
|
|
988
|
+
datatype?: string | undefined;
|
|
989
|
+
inlist?: any;
|
|
990
|
+
prefix?: string | undefined;
|
|
991
|
+
property?: string | undefined;
|
|
992
|
+
rel?: string | undefined;
|
|
993
|
+
resource?: string | undefined;
|
|
994
|
+
rev?: string | undefined;
|
|
995
|
+
typeof?: string | undefined;
|
|
996
|
+
vocab?: string | undefined;
|
|
997
|
+
autoCapitalize?: string | undefined;
|
|
998
|
+
autoCorrect?: string | undefined;
|
|
999
|
+
autoSave?: string | undefined;
|
|
1000
|
+
color?: string | undefined;
|
|
1001
|
+
itemProp?: string | undefined;
|
|
1002
|
+
itemScope?: boolean | undefined;
|
|
1003
|
+
itemType?: string | undefined;
|
|
1004
|
+
itemID?: string | undefined;
|
|
1005
|
+
itemRef?: string | undefined;
|
|
1006
|
+
results?: number | undefined;
|
|
1007
|
+
security?: string | undefined;
|
|
1008
|
+
unselectable?: "on" | "off" | undefined;
|
|
1009
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1010
|
+
is?: string | undefined;
|
|
1011
|
+
"aria-activedescendant"?: string | undefined;
|
|
1012
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1013
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1014
|
+
"aria-braillelabel"?: string | undefined;
|
|
1015
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1016
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1017
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1018
|
+
"aria-colcount"?: number | undefined;
|
|
1019
|
+
"aria-colindex"?: number | undefined;
|
|
1020
|
+
"aria-colindextext"?: string | undefined;
|
|
1021
|
+
"aria-colspan"?: number | undefined;
|
|
1022
|
+
"aria-controls"?: string | undefined;
|
|
1023
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1024
|
+
"aria-describedby"?: string | undefined;
|
|
1025
|
+
"aria-description"?: string | undefined;
|
|
1026
|
+
"aria-details"?: string | undefined;
|
|
1027
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1028
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1029
|
+
"aria-errormessage"?: string | undefined;
|
|
1030
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1031
|
+
"aria-flowto"?: string | undefined;
|
|
1032
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1033
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1034
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1035
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1036
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1037
|
+
"aria-label"?: string | undefined;
|
|
1038
|
+
"aria-labelledby"?: string | undefined;
|
|
1039
|
+
"aria-level"?: number | undefined;
|
|
1040
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1041
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1042
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1043
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1044
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1045
|
+
"aria-owns"?: string | undefined;
|
|
1046
|
+
"aria-placeholder"?: string | undefined;
|
|
1047
|
+
"aria-posinset"?: number | undefined;
|
|
1048
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1049
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1050
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1051
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1052
|
+
"aria-roledescription"?: string | undefined;
|
|
1053
|
+
"aria-rowcount"?: number | undefined;
|
|
1054
|
+
"aria-rowindex"?: number | undefined;
|
|
1055
|
+
"aria-rowindextext"?: string | undefined;
|
|
1056
|
+
"aria-rowspan"?: number | undefined;
|
|
1057
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1058
|
+
"aria-setsize"?: number | undefined;
|
|
1059
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1060
|
+
"aria-valuemax"?: number | undefined;
|
|
1061
|
+
"aria-valuemin"?: number | undefined;
|
|
1062
|
+
"aria-valuenow"?: number | undefined;
|
|
1063
|
+
"aria-valuetext"?: string | undefined;
|
|
1064
|
+
children?: react.ReactNode;
|
|
1065
|
+
dangerouslySetInnerHTML?: {
|
|
1066
|
+
__html: string | TrustedHTML;
|
|
1067
|
+
} | undefined;
|
|
1068
|
+
onCopy?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1069
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1070
|
+
onCut?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1071
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1072
|
+
onPaste?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1073
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
1074
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1075
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1076
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1077
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1078
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1079
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
1080
|
+
onFocus?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
1081
|
+
onFocusCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
1082
|
+
onBlur?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
1083
|
+
onBlurCapture?: react.FocusEventHandler<HTMLInputElement> | undefined;
|
|
1084
|
+
onChangeCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1085
|
+
onBeforeInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1086
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1087
|
+
onInput?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1088
|
+
onInputCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1089
|
+
onReset?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1090
|
+
onResetCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1091
|
+
onSubmit?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1092
|
+
onSubmitCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1093
|
+
onInvalid?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1094
|
+
onInvalidCapture?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
1095
|
+
onLoad?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1096
|
+
onLoadCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1097
|
+
onError?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1098
|
+
onErrorCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1099
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1100
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1101
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1102
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1103
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1104
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
1105
|
+
onAbort?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1106
|
+
onAbortCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1107
|
+
onCanPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1108
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1109
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1110
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1111
|
+
onDurationChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1112
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1113
|
+
onEmptied?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1114
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1115
|
+
onEncrypted?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1116
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1117
|
+
onEnded?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1118
|
+
onEndedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1119
|
+
onLoadedData?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1120
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1121
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1122
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1123
|
+
onLoadStart?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1124
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1125
|
+
onPause?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1126
|
+
onPauseCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1127
|
+
onPlay?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1128
|
+
onPlayCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1129
|
+
onPlaying?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1130
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1131
|
+
onProgress?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1132
|
+
onProgressCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1133
|
+
onRateChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1134
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1135
|
+
onResize?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1136
|
+
onResizeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1137
|
+
onSeeked?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1138
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1139
|
+
onSeeking?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1140
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1141
|
+
onStalled?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1142
|
+
onStalledCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1143
|
+
onSuspend?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1144
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1145
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1146
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1147
|
+
onVolumeChange?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1148
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1149
|
+
onWaiting?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1150
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1151
|
+
onAuxClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1152
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1153
|
+
onClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1154
|
+
onClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1155
|
+
onContextMenu?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1156
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1157
|
+
onDoubleClick?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1158
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1159
|
+
onDrag?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1160
|
+
onDragCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1161
|
+
onDragEnd?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1162
|
+
onDragEndCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1163
|
+
onDragEnter?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1164
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1165
|
+
onDragExit?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1166
|
+
onDragExitCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1167
|
+
onDragLeave?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1168
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1169
|
+
onDragOver?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1170
|
+
onDragOverCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1171
|
+
onDragStart?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1172
|
+
onDragStartCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1173
|
+
onDrop?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1174
|
+
onDropCapture?: react.DragEventHandler<HTMLInputElement> | undefined;
|
|
1175
|
+
onMouseDown?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1176
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1177
|
+
onMouseEnter?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1178
|
+
onMouseLeave?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1179
|
+
onMouseMove?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1180
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1181
|
+
onMouseOut?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1182
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1183
|
+
onMouseOver?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1184
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1185
|
+
onMouseUp?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1186
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLInputElement> | undefined;
|
|
1187
|
+
onSelect?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1188
|
+
onSelectCapture?: react.ReactEventHandler<HTMLInputElement> | undefined;
|
|
1189
|
+
onTouchCancel?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1190
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1191
|
+
onTouchEnd?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1192
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1193
|
+
onTouchMove?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1194
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1195
|
+
onTouchStart?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1196
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLInputElement> | undefined;
|
|
1197
|
+
onPointerDown?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1198
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1199
|
+
onPointerMove?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1200
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1201
|
+
onPointerUp?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1202
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1203
|
+
onPointerCancel?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1204
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1205
|
+
onPointerEnter?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1206
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1207
|
+
onPointerLeave?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1208
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1209
|
+
onPointerOver?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1210
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1211
|
+
onPointerOut?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1212
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1213
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1214
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1215
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1216
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLInputElement> | undefined;
|
|
1217
|
+
onScroll?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
1218
|
+
onScrollCapture?: react.UIEventHandler<HTMLInputElement> | undefined;
|
|
1219
|
+
onWheel?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
1220
|
+
onWheelCapture?: react.WheelEventHandler<HTMLInputElement> | undefined;
|
|
1221
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1222
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1223
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1224
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1225
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1226
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
1227
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1228
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
1229
|
+
}>;
|
|
1230
|
+
interface OuterInputContainerProps {
|
|
1231
|
+
width?: Property.Width;
|
|
1232
|
+
}
|
|
1233
|
+
declare const OuterInputContainer: styled_components.IStyledComponent<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, OuterInputContainerProps>>;
|
|
1234
|
+
/**Brukes som container til input og ikon for posisjonering. */
|
|
1235
|
+
declare const InputContainer: styled_components.IStyledComponent<"web", {
|
|
1236
|
+
ref?: react.LegacyRef<HTMLDivElement> | undefined;
|
|
1237
|
+
key?: react.Key | null | undefined;
|
|
1238
|
+
defaultChecked?: boolean | undefined;
|
|
1239
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1240
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1241
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1242
|
+
accessKey?: string | undefined;
|
|
1243
|
+
autoFocus?: boolean | undefined;
|
|
1244
|
+
className?: string | undefined;
|
|
1245
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
1246
|
+
contextMenu?: string | undefined;
|
|
1247
|
+
dir?: string | undefined;
|
|
1248
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1249
|
+
hidden?: boolean | undefined;
|
|
1250
|
+
id?: string | undefined;
|
|
1251
|
+
lang?: string | undefined;
|
|
1252
|
+
nonce?: string | undefined;
|
|
1253
|
+
slot?: string | undefined;
|
|
1254
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1255
|
+
style?: react.CSSProperties | undefined;
|
|
1256
|
+
tabIndex?: number | undefined;
|
|
1257
|
+
title?: string | undefined;
|
|
1258
|
+
translate?: "yes" | "no" | undefined;
|
|
1259
|
+
radioGroup?: string | undefined;
|
|
1260
|
+
role?: react.AriaRole | undefined;
|
|
1261
|
+
about?: string | undefined;
|
|
1262
|
+
content?: string | undefined;
|
|
1263
|
+
datatype?: string | undefined;
|
|
1264
|
+
inlist?: any;
|
|
1265
|
+
prefix?: string | undefined;
|
|
1266
|
+
property?: string | undefined;
|
|
1267
|
+
rel?: string | undefined;
|
|
1268
|
+
resource?: string | undefined;
|
|
1269
|
+
rev?: string | undefined;
|
|
1270
|
+
typeof?: string | undefined;
|
|
1271
|
+
vocab?: string | undefined;
|
|
1272
|
+
autoCapitalize?: string | undefined;
|
|
1273
|
+
autoCorrect?: string | undefined;
|
|
1274
|
+
autoSave?: string | undefined;
|
|
1275
|
+
color?: string | undefined;
|
|
1276
|
+
itemProp?: string | undefined;
|
|
1277
|
+
itemScope?: boolean | undefined;
|
|
1278
|
+
itemType?: string | undefined;
|
|
1279
|
+
itemID?: string | undefined;
|
|
1280
|
+
itemRef?: string | undefined;
|
|
1281
|
+
results?: number | undefined;
|
|
1282
|
+
security?: string | undefined;
|
|
1283
|
+
unselectable?: "on" | "off" | undefined;
|
|
1284
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1285
|
+
is?: string | undefined;
|
|
1286
|
+
"aria-activedescendant"?: string | undefined;
|
|
1287
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1288
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1289
|
+
"aria-braillelabel"?: string | undefined;
|
|
1290
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1291
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1292
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1293
|
+
"aria-colcount"?: number | undefined;
|
|
1294
|
+
"aria-colindex"?: number | undefined;
|
|
1295
|
+
"aria-colindextext"?: string | undefined;
|
|
1296
|
+
"aria-colspan"?: number | undefined;
|
|
1297
|
+
"aria-controls"?: string | undefined;
|
|
1298
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1299
|
+
"aria-describedby"?: string | undefined;
|
|
1300
|
+
"aria-description"?: string | undefined;
|
|
1301
|
+
"aria-details"?: string | undefined;
|
|
1302
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1303
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1304
|
+
"aria-errormessage"?: string | undefined;
|
|
1305
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1306
|
+
"aria-flowto"?: string | undefined;
|
|
1307
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1308
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1309
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1310
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1311
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1312
|
+
"aria-label"?: string | undefined;
|
|
1313
|
+
"aria-labelledby"?: string | undefined;
|
|
1314
|
+
"aria-level"?: number | undefined;
|
|
1315
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1316
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1317
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1318
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1319
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1320
|
+
"aria-owns"?: string | undefined;
|
|
1321
|
+
"aria-placeholder"?: string | undefined;
|
|
1322
|
+
"aria-posinset"?: number | undefined;
|
|
1323
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1324
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1325
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1326
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1327
|
+
"aria-roledescription"?: string | undefined;
|
|
1328
|
+
"aria-rowcount"?: number | undefined;
|
|
1329
|
+
"aria-rowindex"?: number | undefined;
|
|
1330
|
+
"aria-rowindextext"?: string | undefined;
|
|
1331
|
+
"aria-rowspan"?: number | undefined;
|
|
1332
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1333
|
+
"aria-setsize"?: number | undefined;
|
|
1334
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1335
|
+
"aria-valuemax"?: number | undefined;
|
|
1336
|
+
"aria-valuemin"?: number | undefined;
|
|
1337
|
+
"aria-valuenow"?: number | undefined;
|
|
1338
|
+
"aria-valuetext"?: string | undefined;
|
|
1339
|
+
children?: react.ReactNode;
|
|
1340
|
+
dangerouslySetInnerHTML?: {
|
|
1341
|
+
__html: string | TrustedHTML;
|
|
1342
|
+
} | undefined;
|
|
1343
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1344
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1345
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1346
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1347
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1348
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1349
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1350
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1351
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1352
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1353
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1354
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1355
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1356
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1357
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1358
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1359
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1360
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1361
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1362
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1363
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1364
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1365
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1366
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1367
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1368
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1369
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1370
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1371
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1372
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1373
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1374
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1375
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1376
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1377
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1378
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1379
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1380
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1381
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1382
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1383
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1384
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1385
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1386
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1387
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1388
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1389
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1390
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1391
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1392
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1393
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1394
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1395
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1396
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1397
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1398
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1399
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1400
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1401
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1402
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1403
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1404
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1405
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1406
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1407
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1408
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1409
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1410
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1411
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1412
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1413
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1414
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1415
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1416
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1417
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1418
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1419
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1420
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1421
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1422
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1423
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1424
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1425
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1426
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1427
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1428
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1429
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1430
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1431
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1432
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1433
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1434
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1435
|
+
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1436
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1437
|
+
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1438
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1439
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1440
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1441
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1442
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1443
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1444
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1445
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1446
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1447
|
+
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1448
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1449
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1450
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1451
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1452
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1453
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1454
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1455
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1456
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1457
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1458
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1459
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1460
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1461
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1462
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1463
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1464
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1465
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1466
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1467
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1468
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1469
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1470
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1471
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1472
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1473
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1474
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1475
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1476
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1477
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1478
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1479
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1480
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1481
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1482
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1483
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1484
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1485
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1486
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1487
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1488
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1489
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1490
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1491
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1492
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1493
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1494
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1495
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1496
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1497
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1498
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1499
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1500
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1501
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1502
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1503
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1504
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1505
|
+
}>;
|
|
1506
|
+
declare const InputAffixContainer: styled_components.IStyledComponent<"web", {
|
|
1507
|
+
ref?: react.LegacyRef<HTMLDivElement> | undefined;
|
|
1508
|
+
key?: react.Key | null | undefined;
|
|
1509
|
+
defaultChecked?: boolean | undefined;
|
|
1510
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1511
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1512
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1513
|
+
accessKey?: string | undefined;
|
|
1514
|
+
autoFocus?: boolean | undefined;
|
|
1515
|
+
className?: string | undefined;
|
|
1516
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
1517
|
+
contextMenu?: string | undefined;
|
|
1518
|
+
dir?: string | undefined;
|
|
1519
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1520
|
+
hidden?: boolean | undefined;
|
|
1521
|
+
id?: string | undefined;
|
|
1522
|
+
lang?: string | undefined;
|
|
1523
|
+
nonce?: string | undefined;
|
|
1524
|
+
slot?: string | undefined;
|
|
1525
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1526
|
+
style?: react.CSSProperties | undefined;
|
|
1527
|
+
tabIndex?: number | undefined;
|
|
1528
|
+
title?: string | undefined;
|
|
1529
|
+
translate?: "yes" | "no" | undefined;
|
|
1530
|
+
radioGroup?: string | undefined;
|
|
1531
|
+
role?: react.AriaRole | undefined;
|
|
1532
|
+
about?: string | undefined;
|
|
1533
|
+
content?: string | undefined;
|
|
1534
|
+
datatype?: string | undefined;
|
|
1535
|
+
inlist?: any;
|
|
1536
|
+
prefix?: string | undefined;
|
|
1537
|
+
property?: string | undefined;
|
|
1538
|
+
rel?: string | undefined;
|
|
1539
|
+
resource?: string | undefined;
|
|
1540
|
+
rev?: string | undefined;
|
|
1541
|
+
typeof?: string | undefined;
|
|
1542
|
+
vocab?: string | undefined;
|
|
1543
|
+
autoCapitalize?: string | undefined;
|
|
1544
|
+
autoCorrect?: string | undefined;
|
|
1545
|
+
autoSave?: string | undefined;
|
|
1546
|
+
color?: string | undefined;
|
|
1547
|
+
itemProp?: string | undefined;
|
|
1548
|
+
itemScope?: boolean | undefined;
|
|
1549
|
+
itemType?: string | undefined;
|
|
1550
|
+
itemID?: string | undefined;
|
|
1551
|
+
itemRef?: string | undefined;
|
|
1552
|
+
results?: number | undefined;
|
|
1553
|
+
security?: string | undefined;
|
|
1554
|
+
unselectable?: "on" | "off" | undefined;
|
|
1555
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1556
|
+
is?: string | undefined;
|
|
1557
|
+
"aria-activedescendant"?: string | undefined;
|
|
1558
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1559
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1560
|
+
"aria-braillelabel"?: string | undefined;
|
|
1561
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1562
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1563
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1564
|
+
"aria-colcount"?: number | undefined;
|
|
1565
|
+
"aria-colindex"?: number | undefined;
|
|
1566
|
+
"aria-colindextext"?: string | undefined;
|
|
1567
|
+
"aria-colspan"?: number | undefined;
|
|
1568
|
+
"aria-controls"?: string | undefined;
|
|
1569
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1570
|
+
"aria-describedby"?: string | undefined;
|
|
1571
|
+
"aria-description"?: string | undefined;
|
|
1572
|
+
"aria-details"?: string | undefined;
|
|
1573
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1574
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1575
|
+
"aria-errormessage"?: string | undefined;
|
|
1576
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1577
|
+
"aria-flowto"?: string | undefined;
|
|
1578
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1579
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1580
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1581
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1582
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1583
|
+
"aria-label"?: string | undefined;
|
|
1584
|
+
"aria-labelledby"?: string | undefined;
|
|
1585
|
+
"aria-level"?: number | undefined;
|
|
1586
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1587
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1588
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1589
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1590
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1591
|
+
"aria-owns"?: string | undefined;
|
|
1592
|
+
"aria-placeholder"?: string | undefined;
|
|
1593
|
+
"aria-posinset"?: number | undefined;
|
|
1594
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1595
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1596
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1597
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1598
|
+
"aria-roledescription"?: string | undefined;
|
|
1599
|
+
"aria-rowcount"?: number | undefined;
|
|
1600
|
+
"aria-rowindex"?: number | undefined;
|
|
1601
|
+
"aria-rowindextext"?: string | undefined;
|
|
1602
|
+
"aria-rowspan"?: number | undefined;
|
|
1603
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1604
|
+
"aria-setsize"?: number | undefined;
|
|
1605
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1606
|
+
"aria-valuemax"?: number | undefined;
|
|
1607
|
+
"aria-valuemin"?: number | undefined;
|
|
1608
|
+
"aria-valuenow"?: number | undefined;
|
|
1609
|
+
"aria-valuetext"?: string | undefined;
|
|
1610
|
+
children?: react.ReactNode;
|
|
1611
|
+
dangerouslySetInnerHTML?: {
|
|
1612
|
+
__html: string | TrustedHTML;
|
|
1613
|
+
} | undefined;
|
|
1614
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1615
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1616
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1617
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1618
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1619
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1620
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1621
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1622
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1623
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1624
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1625
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1626
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1627
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1628
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1629
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1630
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1631
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1632
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1633
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1634
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1635
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1636
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1637
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1638
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1639
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1640
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1641
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1642
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1643
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1644
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1645
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1646
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1647
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1648
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1649
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1650
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1651
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1652
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1653
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1654
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1655
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1656
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1657
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1658
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1659
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1660
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1661
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1662
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1663
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1664
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1665
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1666
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1667
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1668
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1669
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1670
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1671
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1672
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1673
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1674
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1675
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1676
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1677
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1678
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1679
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1680
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1681
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1682
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1683
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1684
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1685
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1686
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1687
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1688
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1689
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1690
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1691
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1692
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1693
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1694
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1695
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1696
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1697
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1698
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1699
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1700
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1701
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1702
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1703
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1704
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1705
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1706
|
+
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1707
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1708
|
+
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1709
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1710
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1711
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1712
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1713
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1714
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1715
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1716
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1717
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1718
|
+
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1719
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1720
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1721
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1722
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1723
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1724
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1725
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1726
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1727
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1728
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1729
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1730
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1731
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1732
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1733
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1734
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1735
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1736
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1737
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1738
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1739
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1740
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1741
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1742
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1743
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1744
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1745
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1746
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1747
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1748
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1749
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1750
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1751
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1752
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1753
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1754
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1755
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1756
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1757
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1758
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1759
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1760
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1761
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1762
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1763
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1764
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1765
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1766
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1767
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1768
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1769
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1770
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1771
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1772
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1773
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1774
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1775
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1776
|
+
}>;
|
|
1777
|
+
|
|
1778
|
+
declare const TextOverflowEllipsisWrapper: styled_components.IStyledComponent<"web", {
|
|
1779
|
+
ref?: react.LegacyRef<HTMLSpanElement> | undefined;
|
|
1780
|
+
key?: react.Key | null | undefined;
|
|
1781
|
+
defaultChecked?: boolean | undefined;
|
|
1782
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1783
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1784
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1785
|
+
accessKey?: string | undefined;
|
|
1786
|
+
autoFocus?: boolean | undefined;
|
|
1787
|
+
className?: string | undefined;
|
|
1788
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
1789
|
+
contextMenu?: string | undefined;
|
|
1790
|
+
dir?: string | undefined;
|
|
1791
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1792
|
+
hidden?: boolean | undefined;
|
|
1793
|
+
id?: string | undefined;
|
|
1794
|
+
lang?: string | undefined;
|
|
1795
|
+
nonce?: string | undefined;
|
|
1796
|
+
slot?: string | undefined;
|
|
1797
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1798
|
+
style?: react.CSSProperties | undefined;
|
|
1799
|
+
tabIndex?: number | undefined;
|
|
1800
|
+
title?: string | undefined;
|
|
1801
|
+
translate?: "yes" | "no" | undefined;
|
|
1802
|
+
radioGroup?: string | undefined;
|
|
1803
|
+
role?: react.AriaRole | undefined;
|
|
1804
|
+
about?: string | undefined;
|
|
1805
|
+
content?: string | undefined;
|
|
1806
|
+
datatype?: string | undefined;
|
|
1807
|
+
inlist?: any;
|
|
1808
|
+
prefix?: string | undefined;
|
|
1809
|
+
property?: string | undefined;
|
|
1810
|
+
rel?: string | undefined;
|
|
1811
|
+
resource?: string | undefined;
|
|
1812
|
+
rev?: string | undefined;
|
|
1813
|
+
typeof?: string | undefined;
|
|
1814
|
+
vocab?: string | undefined;
|
|
1815
|
+
autoCapitalize?: string | undefined;
|
|
1816
|
+
autoCorrect?: string | undefined;
|
|
1817
|
+
autoSave?: string | undefined;
|
|
1818
|
+
color?: string | undefined;
|
|
1819
|
+
itemProp?: string | undefined;
|
|
1820
|
+
itemScope?: boolean | undefined;
|
|
1821
|
+
itemType?: string | undefined;
|
|
1822
|
+
itemID?: string | undefined;
|
|
1823
|
+
itemRef?: string | undefined;
|
|
1824
|
+
results?: number | undefined;
|
|
1825
|
+
security?: string | undefined;
|
|
1826
|
+
unselectable?: "on" | "off" | undefined;
|
|
1827
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1828
|
+
is?: string | undefined;
|
|
1829
|
+
"aria-activedescendant"?: string | undefined;
|
|
1830
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1831
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1832
|
+
"aria-braillelabel"?: string | undefined;
|
|
1833
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1834
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1835
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1836
|
+
"aria-colcount"?: number | undefined;
|
|
1837
|
+
"aria-colindex"?: number | undefined;
|
|
1838
|
+
"aria-colindextext"?: string | undefined;
|
|
1839
|
+
"aria-colspan"?: number | undefined;
|
|
1840
|
+
"aria-controls"?: string | undefined;
|
|
1841
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1842
|
+
"aria-describedby"?: string | undefined;
|
|
1843
|
+
"aria-description"?: string | undefined;
|
|
1844
|
+
"aria-details"?: string | undefined;
|
|
1845
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1846
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1847
|
+
"aria-errormessage"?: string | undefined;
|
|
1848
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1849
|
+
"aria-flowto"?: string | undefined;
|
|
1850
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1851
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1852
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1853
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1854
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1855
|
+
"aria-label"?: string | undefined;
|
|
1856
|
+
"aria-labelledby"?: string | undefined;
|
|
1857
|
+
"aria-level"?: number | undefined;
|
|
1858
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1859
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1860
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1861
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1862
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1863
|
+
"aria-owns"?: string | undefined;
|
|
1864
|
+
"aria-placeholder"?: string | undefined;
|
|
1865
|
+
"aria-posinset"?: number | undefined;
|
|
1866
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1867
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1868
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1869
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1870
|
+
"aria-roledescription"?: string | undefined;
|
|
1871
|
+
"aria-rowcount"?: number | undefined;
|
|
1872
|
+
"aria-rowindex"?: number | undefined;
|
|
1873
|
+
"aria-rowindextext"?: string | undefined;
|
|
1874
|
+
"aria-rowspan"?: number | undefined;
|
|
1875
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1876
|
+
"aria-setsize"?: number | undefined;
|
|
1877
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1878
|
+
"aria-valuemax"?: number | undefined;
|
|
1879
|
+
"aria-valuemin"?: number | undefined;
|
|
1880
|
+
"aria-valuenow"?: number | undefined;
|
|
1881
|
+
"aria-valuetext"?: string | undefined;
|
|
1882
|
+
children?: react.ReactNode;
|
|
1883
|
+
dangerouslySetInnerHTML?: {
|
|
1884
|
+
__html: string | TrustedHTML;
|
|
1885
|
+
} | undefined;
|
|
1886
|
+
onCopy?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1887
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1888
|
+
onCut?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1889
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1890
|
+
onPaste?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1891
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1892
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1893
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1894
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1895
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1896
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1897
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1898
|
+
onFocus?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1899
|
+
onFocusCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1900
|
+
onBlur?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1901
|
+
onBlurCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1902
|
+
onChange?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1903
|
+
onChangeCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1904
|
+
onBeforeInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1905
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1906
|
+
onInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1907
|
+
onInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1908
|
+
onReset?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1909
|
+
onResetCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1910
|
+
onSubmit?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1911
|
+
onSubmitCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1912
|
+
onInvalid?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1913
|
+
onInvalidCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1914
|
+
onLoad?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1915
|
+
onLoadCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1916
|
+
onError?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1917
|
+
onErrorCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1918
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1919
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1920
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1921
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1922
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1923
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1924
|
+
onAbort?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1925
|
+
onAbortCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1926
|
+
onCanPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1927
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1928
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1929
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1930
|
+
onDurationChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1931
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1932
|
+
onEmptied?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1933
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1934
|
+
onEncrypted?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1935
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1936
|
+
onEnded?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1937
|
+
onEndedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1938
|
+
onLoadedData?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1939
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1940
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1941
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1942
|
+
onLoadStart?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1943
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1944
|
+
onPause?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1945
|
+
onPauseCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1946
|
+
onPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1947
|
+
onPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1948
|
+
onPlaying?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1949
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1950
|
+
onProgress?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1951
|
+
onProgressCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1952
|
+
onRateChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1953
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1954
|
+
onResize?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1955
|
+
onResizeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1956
|
+
onSeeked?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1957
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1958
|
+
onSeeking?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1959
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1960
|
+
onStalled?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1961
|
+
onStalledCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1962
|
+
onSuspend?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1963
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1964
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1965
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1966
|
+
onVolumeChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1967
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1968
|
+
onWaiting?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1969
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1970
|
+
onAuxClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1971
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1972
|
+
onClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1973
|
+
onClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1974
|
+
onContextMenu?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1975
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1976
|
+
onDoubleClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1977
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1978
|
+
onDrag?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1979
|
+
onDragCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1980
|
+
onDragEnd?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1981
|
+
onDragEndCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1982
|
+
onDragEnter?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1983
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1984
|
+
onDragExit?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1985
|
+
onDragExitCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1986
|
+
onDragLeave?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1987
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1988
|
+
onDragOver?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1989
|
+
onDragOverCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1990
|
+
onDragStart?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1991
|
+
onDragStartCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1992
|
+
onDrop?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1993
|
+
onDropCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1994
|
+
onMouseDown?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1995
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1996
|
+
onMouseEnter?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1997
|
+
onMouseLeave?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1998
|
+
onMouseMove?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1999
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2000
|
+
onMouseOut?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2001
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2002
|
+
onMouseOver?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2003
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2004
|
+
onMouseUp?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2005
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2006
|
+
onSelect?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2007
|
+
onSelectCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2008
|
+
onTouchCancel?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2009
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2010
|
+
onTouchEnd?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2011
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2012
|
+
onTouchMove?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2013
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2014
|
+
onTouchStart?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2015
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2016
|
+
onPointerDown?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2017
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2018
|
+
onPointerMove?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2019
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2020
|
+
onPointerUp?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2021
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2022
|
+
onPointerCancel?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2023
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2024
|
+
onPointerEnter?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2025
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2026
|
+
onPointerLeave?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2027
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2028
|
+
onPointerOver?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2029
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2030
|
+
onPointerOut?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2031
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2032
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2033
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2034
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2035
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2036
|
+
onScroll?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2037
|
+
onScrollCapture?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2038
|
+
onWheel?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2039
|
+
onWheelCapture?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2040
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2041
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2042
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2043
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2044
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2045
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2046
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2047
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2048
|
+
}>;
|
|
2049
|
+
declare const TextOverflowEllipsisInner: styled_components.IStyledComponent<"web", {
|
|
2050
|
+
ref?: react.LegacyRef<HTMLSpanElement> | undefined;
|
|
2051
|
+
key?: react.Key | null | undefined;
|
|
2052
|
+
defaultChecked?: boolean | undefined;
|
|
2053
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
2054
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
2055
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
2056
|
+
accessKey?: string | undefined;
|
|
2057
|
+
autoFocus?: boolean | undefined;
|
|
2058
|
+
className?: string | undefined;
|
|
2059
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
2060
|
+
contextMenu?: string | undefined;
|
|
2061
|
+
dir?: string | undefined;
|
|
2062
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2063
|
+
hidden?: boolean | undefined;
|
|
2064
|
+
id?: string | undefined;
|
|
2065
|
+
lang?: string | undefined;
|
|
2066
|
+
nonce?: string | undefined;
|
|
2067
|
+
slot?: string | undefined;
|
|
2068
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2069
|
+
style?: react.CSSProperties | undefined;
|
|
2070
|
+
tabIndex?: number | undefined;
|
|
2071
|
+
title?: string | undefined;
|
|
2072
|
+
translate?: "yes" | "no" | undefined;
|
|
2073
|
+
radioGroup?: string | undefined;
|
|
2074
|
+
role?: react.AriaRole | undefined;
|
|
2075
|
+
about?: string | undefined;
|
|
2076
|
+
content?: string | undefined;
|
|
2077
|
+
datatype?: string | undefined;
|
|
2078
|
+
inlist?: any;
|
|
2079
|
+
prefix?: string | undefined;
|
|
2080
|
+
property?: string | undefined;
|
|
2081
|
+
rel?: string | undefined;
|
|
2082
|
+
resource?: string | undefined;
|
|
2083
|
+
rev?: string | undefined;
|
|
2084
|
+
typeof?: string | undefined;
|
|
2085
|
+
vocab?: string | undefined;
|
|
2086
|
+
autoCapitalize?: string | undefined;
|
|
2087
|
+
autoCorrect?: string | undefined;
|
|
2088
|
+
autoSave?: string | undefined;
|
|
2089
|
+
color?: string | undefined;
|
|
2090
|
+
itemProp?: string | undefined;
|
|
2091
|
+
itemScope?: boolean | undefined;
|
|
2092
|
+
itemType?: string | undefined;
|
|
2093
|
+
itemID?: string | undefined;
|
|
2094
|
+
itemRef?: string | undefined;
|
|
2095
|
+
results?: number | undefined;
|
|
2096
|
+
security?: string | undefined;
|
|
2097
|
+
unselectable?: "on" | "off" | undefined;
|
|
2098
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
2099
|
+
is?: string | undefined;
|
|
2100
|
+
"aria-activedescendant"?: string | undefined;
|
|
2101
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
2102
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2103
|
+
"aria-braillelabel"?: string | undefined;
|
|
2104
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
2105
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
2106
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2107
|
+
"aria-colcount"?: number | undefined;
|
|
2108
|
+
"aria-colindex"?: number | undefined;
|
|
2109
|
+
"aria-colindextext"?: string | undefined;
|
|
2110
|
+
"aria-colspan"?: number | undefined;
|
|
2111
|
+
"aria-controls"?: string | undefined;
|
|
2112
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2113
|
+
"aria-describedby"?: string | undefined;
|
|
2114
|
+
"aria-description"?: string | undefined;
|
|
2115
|
+
"aria-details"?: string | undefined;
|
|
2116
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
2117
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2118
|
+
"aria-errormessage"?: string | undefined;
|
|
2119
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2120
|
+
"aria-flowto"?: string | undefined;
|
|
2121
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
2122
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
2123
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
2124
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2125
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
2126
|
+
"aria-label"?: string | undefined;
|
|
2127
|
+
"aria-labelledby"?: string | undefined;
|
|
2128
|
+
"aria-level"?: number | undefined;
|
|
2129
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2130
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
2131
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
2132
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2133
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2134
|
+
"aria-owns"?: string | undefined;
|
|
2135
|
+
"aria-placeholder"?: string | undefined;
|
|
2136
|
+
"aria-posinset"?: number | undefined;
|
|
2137
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2138
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
2139
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2140
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2141
|
+
"aria-roledescription"?: string | undefined;
|
|
2142
|
+
"aria-rowcount"?: number | undefined;
|
|
2143
|
+
"aria-rowindex"?: number | undefined;
|
|
2144
|
+
"aria-rowindextext"?: string | undefined;
|
|
2145
|
+
"aria-rowspan"?: number | undefined;
|
|
2146
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2147
|
+
"aria-setsize"?: number | undefined;
|
|
2148
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2149
|
+
"aria-valuemax"?: number | undefined;
|
|
2150
|
+
"aria-valuemin"?: number | undefined;
|
|
2151
|
+
"aria-valuenow"?: number | undefined;
|
|
2152
|
+
"aria-valuetext"?: string | undefined;
|
|
2153
|
+
children?: react.ReactNode;
|
|
2154
|
+
dangerouslySetInnerHTML?: {
|
|
2155
|
+
__html: string | TrustedHTML;
|
|
2156
|
+
} | undefined;
|
|
2157
|
+
onCopy?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2158
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2159
|
+
onCut?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2160
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2161
|
+
onPaste?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2162
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2163
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2164
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2165
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2166
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2167
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2168
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2169
|
+
onFocus?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2170
|
+
onFocusCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2171
|
+
onBlur?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2172
|
+
onBlurCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2173
|
+
onChange?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2174
|
+
onChangeCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2175
|
+
onBeforeInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2176
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2177
|
+
onInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2178
|
+
onInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2179
|
+
onReset?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2180
|
+
onResetCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2181
|
+
onSubmit?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2182
|
+
onSubmitCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2183
|
+
onInvalid?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2184
|
+
onInvalidCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2185
|
+
onLoad?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2186
|
+
onLoadCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2187
|
+
onError?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2188
|
+
onErrorCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2189
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2190
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2191
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2192
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2193
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2194
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2195
|
+
onAbort?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2196
|
+
onAbortCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2197
|
+
onCanPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2198
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2199
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2200
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2201
|
+
onDurationChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2202
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2203
|
+
onEmptied?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2204
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2205
|
+
onEncrypted?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2206
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2207
|
+
onEnded?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2208
|
+
onEndedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2209
|
+
onLoadedData?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2210
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2211
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2212
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2213
|
+
onLoadStart?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2214
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2215
|
+
onPause?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2216
|
+
onPauseCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2217
|
+
onPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2218
|
+
onPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2219
|
+
onPlaying?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2220
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2221
|
+
onProgress?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2222
|
+
onProgressCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2223
|
+
onRateChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2224
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2225
|
+
onResize?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2226
|
+
onResizeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2227
|
+
onSeeked?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2228
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2229
|
+
onSeeking?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2230
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2231
|
+
onStalled?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2232
|
+
onStalledCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2233
|
+
onSuspend?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2234
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2235
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2236
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2237
|
+
onVolumeChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2238
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2239
|
+
onWaiting?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2240
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2241
|
+
onAuxClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2242
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2243
|
+
onClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2244
|
+
onClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2245
|
+
onContextMenu?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2246
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2247
|
+
onDoubleClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2248
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2249
|
+
onDrag?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2250
|
+
onDragCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2251
|
+
onDragEnd?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2252
|
+
onDragEndCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2253
|
+
onDragEnter?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2254
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2255
|
+
onDragExit?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2256
|
+
onDragExitCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2257
|
+
onDragLeave?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2258
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2259
|
+
onDragOver?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2260
|
+
onDragOverCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2261
|
+
onDragStart?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2262
|
+
onDragStartCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2263
|
+
onDrop?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2264
|
+
onDropCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2265
|
+
onMouseDown?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2266
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2267
|
+
onMouseEnter?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2268
|
+
onMouseLeave?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2269
|
+
onMouseMove?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2270
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2271
|
+
onMouseOut?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2272
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2273
|
+
onMouseOver?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2274
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2275
|
+
onMouseUp?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2276
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2277
|
+
onSelect?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2278
|
+
onSelectCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2279
|
+
onTouchCancel?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2280
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2281
|
+
onTouchEnd?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2282
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2283
|
+
onTouchMove?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2284
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2285
|
+
onTouchStart?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2286
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2287
|
+
onPointerDown?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2288
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2289
|
+
onPointerMove?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2290
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2291
|
+
onPointerUp?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2292
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2293
|
+
onPointerCancel?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2294
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2295
|
+
onPointerEnter?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2296
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2297
|
+
onPointerLeave?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2298
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2299
|
+
onPointerOver?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2300
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2301
|
+
onPointerOut?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2302
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2303
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2304
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2305
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2306
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2307
|
+
onScroll?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2308
|
+
onScrollCapture?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2309
|
+
onWheel?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2310
|
+
onWheelCapture?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2311
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2312
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2313
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2314
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2315
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2316
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2317
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2318
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2319
|
+
}>;
|
|
2320
|
+
|
|
2321
|
+
type TypographyBodySansType = 'bodySans01' | 'bodySans02' | 'bodySans03' | 'bodySans04';
|
|
2322
|
+
type TypographyBodyType = TypographyBodySansType;
|
|
2323
|
+
type TypographyHeadingType = 'headingSans01' | 'headingSans02' | 'headingSans03' | 'headingSans04' | 'headingSans05' | 'headingSans06' | 'headingSans07' | 'headingSans08';
|
|
2324
|
+
type TypographyLeadType = 'leadSans01' | 'leadSans02' | 'leadSans03' | 'leadSans04' | 'leadSans05';
|
|
2325
|
+
type TypographySupportingType = 'supportingStyleHelperText01' | 'supportingStylePlaceholderText01' | 'supportingStylePlaceholderText02' | 'supportingStylePlaceholderText03' | 'supportingStyleTiny01' | 'supportingStyleTiny02';
|
|
2326
|
+
type AnchorTypographyType = 'a';
|
|
2327
|
+
type LabelTypographyType = 'supportingStyleLabel01';
|
|
2328
|
+
type OtherTypographyType = TypographyHeadingType | TypographyBodyType | TypographyLeadType | TypographySupportingType;
|
|
2329
|
+
type TypographyType = AnchorTypographyType | LabelTypographyType | OtherTypographyType;
|
|
2330
|
+
type StaticTypographyType = OtherTypographyType | LabelTypographyType;
|
|
2331
|
+
type InlineElement = 'a' | 'abbr' | 'audio' | 'b' | 'bdi' | 'bdo' | 'big' | 'br' | 'button' | 'canvas' | 'cite' | 'code' | 'data' | 'datalist' | 'del' | 'dfn' | 'em' | 'embed' | 'i' | 'iframe' | 'img' | 'input' | 'ins' | 'kbd' | 'label' | 'map' | 'mark' | 'meter' | 'noscript' | 'object' | 'output' | 'picture' | 'progress' | 'q' | 'ruby' | 's' | 'samp' | 'script' | 'select' | 'slot' | 'small' | 'span' | 'strong' | 'sub' | 'sup' | 'svg' | 'template' | 'textarea' | 'time' | 'u' | 'var' | 'video' | 'wbr';
|
|
2332
|
+
interface TypographyInteractionStyling {
|
|
2333
|
+
hover?: CSSProperties;
|
|
2334
|
+
active?: CSSProperties;
|
|
2335
|
+
}
|
|
2336
|
+
type BaseTypographyProps = PropsWithChildren<{
|
|
2337
|
+
/**Spesifiserer om tekstelementet skal ha spacing definert i Elsa. Brukes hovedsakelig i artikler og lignende. **OBS!** har forskjellig virkning på ulike typografityper. `body` og `lead`-typer får margin på bunnen, `heading`-typer får margin på bunnen og padding på toppen mens `supportingStyles` får margin topp og bunn. */
|
|
2338
|
+
withMargins?: boolean;
|
|
2339
|
+
}> & Pick<HTMLAttributes<HTMLElement>, 'style'>;
|
|
2340
|
+
type TypographyComponentProps = BaseTypographyProps & {
|
|
2341
|
+
/**Tekstfarge fra utvalget eller custom. **OBS!** Bruk farger fra `@dds-design-tokens`. */
|
|
2342
|
+
color?: TextColor$1;
|
|
2343
|
+
/**Setter `bold` styling. */
|
|
2344
|
+
bold?: boolean;
|
|
2345
|
+
/**Setter `italic` styling. */
|
|
2346
|
+
italic?: boolean;
|
|
2347
|
+
/**Setter en linje under. */
|
|
2348
|
+
underline?: boolean;
|
|
2349
|
+
/**HTML tag som skal brukes istedenfor default definert via `typographyType`. */
|
|
2350
|
+
as?: ElementType;
|
|
2351
|
+
/**Støtte for å enkelt kunne endre på hover- og active-styling. Bruk `@dds-design-tokens` til farger osv. */
|
|
2352
|
+
interactionProps?: TypographyInteractionStyling;
|
|
2353
|
+
};
|
|
2354
|
+
|
|
2355
|
+
type Direction$1 = 'row' | 'column';
|
|
2356
|
+
|
|
2357
|
+
/**
|
|
2358
|
+
* Basetype for props som eksponeres til konsumenter av designsystemet.
|
|
2359
|
+
* Lager en intersection-type med props som sendes inn og `id` og `htmlProps`
|
|
2360
|
+
* slik at man kan ha `HTMLAttributes`-props på komponenter som eksponeres
|
|
2361
|
+
* av designsystemet. Se også {@link BaseComponentPropsWithChildren} og
|
|
2362
|
+
* {@link getBaseHTMLProps}.
|
|
2363
|
+
*
|
|
2364
|
+
* @template TElement Element-type som genereres av komponenten.
|
|
2365
|
+
* @template TOtherProps Andre props komponenten skal eksponere til konsumenter.
|
|
2366
|
+
* @template THTMLAttributesProps Standard `HTMLAttributes<T>` men kan overstyres for f.eks knapper hvis man trenger en annen basetype for `htmlProps`.
|
|
2367
|
+
*/
|
|
2368
|
+
type BaseComponentProps<TElement extends Element, TOtherProps extends object = object, THTMLAttributesProps extends HTMLAttributes<TElement> = HTMLAttributes<TElement>> = Pick<THTMLAttributesProps, 'id' | 'className'> & TOtherProps & {
|
|
2369
|
+
/**Ekstra HTML-attributter som vil settes på elementet som genereres. Untatt `id` og `className` som settes på toppnivå. */
|
|
2370
|
+
htmlProps?: THTMLAttributesProps;
|
|
2371
|
+
};
|
|
2372
|
+
/**
|
|
2373
|
+
* Utvidelese av {@link BaseComponentProps} med prop for `children`.
|
|
2374
|
+
*
|
|
2375
|
+
* {@link BaseComponentProps}
|
|
2376
|
+
*/
|
|
2377
|
+
type BaseComponentPropsWithChildren<T extends Element, TProps extends object = object, THTMLProps extends HTMLAttributes<T> = HTMLAttributes<T>> = BaseComponentProps<T, PropsWithChildren<TProps>, THTMLProps>;
|
|
2378
|
+
interface GetBaseHTMLProps {
|
|
2379
|
+
<T extends Element>(id: HTMLAttributes<T>['id'], className: HTMLAttributes<T>['className'], htmlProps: HTMLAttributes<T> | undefined, unknownProps: object): HTMLAttributes<T> & object;
|
|
2380
|
+
<T extends Element>(id: HTMLAttributes<T>['id'], htmlProps: HTMLAttributes<T> | undefined, unknownProps: object): HTMLAttributes<T> & object;
|
|
2381
|
+
}
|
|
2382
|
+
/**
|
|
2383
|
+
* Slår sammen id, className, htmlProps og unknownProps til ett objekt
|
|
2384
|
+
* som kan spreades som baseprops for en komponent. `unknownProps` er
|
|
2385
|
+
* med for å sikre at aria- og data- attributter blir spreadet, alle
|
|
2386
|
+
* komponenter må derfor ta hensyn til `...rest` når de leser props.
|
|
2387
|
+
*
|
|
2388
|
+
* Typisk bruk:
|
|
2389
|
+
* ```
|
|
2390
|
+
* const Props = BaseComponentProps<HTMLElement, {
|
|
2391
|
+
* propA: string,
|
|
2392
|
+
* propB: string,
|
|
2393
|
+
* }>
|
|
2394
|
+
*
|
|
2395
|
+
* const MyComponent = (props: Props) => {
|
|
2396
|
+
* const { propA, propB, id, className, htmlProps, ...rest } = props;
|
|
2397
|
+
*
|
|
2398
|
+
* const wrapperProps = getBaseHTMLProps(id, className, htmlProps, rest)
|
|
2399
|
+
*
|
|
2400
|
+
* return <div {...wrapperProps}>innhold</div>
|
|
2401
|
+
* }
|
|
2402
|
+
* ```
|
|
2403
|
+
* @param id id fra props til komponenten.
|
|
2404
|
+
* @param className className for komponenten.
|
|
2405
|
+
* @param htmlProps htmlProps fra komponenten.
|
|
2406
|
+
* @param unknownProps andre ukjente props som skal spreades, kommer typisk fra `...rest` når man leser props til komponenten.
|
|
2407
|
+
* @returns Objekt med alle argumentene som kan spreades.
|
|
2408
|
+
*
|
|
2409
|
+
* Kan også kalles uten `className`-parameteret. Oppførselen er lik.
|
|
2410
|
+
*/
|
|
2411
|
+
declare const getBaseHTMLProps: GetBaseHTMLProps;
|
|
2412
|
+
|
|
2413
|
+
type As = ElementType;
|
|
2414
|
+
type PropsOf<T extends As> = ComponentPropsWithoutRef<T> & {
|
|
2415
|
+
as?: T;
|
|
2416
|
+
};
|
|
2417
|
+
|
|
2418
|
+
/**
|
|
2419
|
+
* Gir tilbake `T` med properties fra `K` som påkrevd gitt at `Condition` er `true`
|
|
2420
|
+
*
|
|
2421
|
+
* @template Condition
|
|
2422
|
+
* @template T
|
|
2423
|
+
* @template K
|
|
2424
|
+
*/
|
|
2425
|
+
type WithRequiredIf<Condition extends boolean, T, K extends keyof T> = Omit<T, K> & Pick<true extends Condition ? Required<T> : T, K>;
|
|
2426
|
+
/**
|
|
2427
|
+
* Gir tilbake typer fra `T` som matcher `U`
|
|
2428
|
+
*
|
|
2429
|
+
* @template T en union type
|
|
2430
|
+
* @template U delmengde av `T`
|
|
2431
|
+
*/
|
|
2432
|
+
type ExtractStrict<T, U extends T> = U;
|
|
2433
|
+
type Nullable<T> = T | null;
|
|
2434
|
+
type Callback<T> = (e: T) => void;
|
|
2435
|
+
|
|
2436
|
+
type AnchorTypographyProps = BaseComponentProps<HTMLAnchorElement, TypographyComponentProps & {
|
|
2437
|
+
/**nativ `href`-prop ved `typographyType='a'`. */
|
|
2438
|
+
href?: string | undefined;
|
|
2439
|
+
/** Spesifiserer om lenka er ekstern ved `typographyType='a'` eller `as='a'`.*/
|
|
2440
|
+
externalLink?: boolean;
|
|
2441
|
+
/**nativ `target`-prop ved `typographyType='a'`. */
|
|
2442
|
+
target?: string;
|
|
2443
|
+
}, AnchorHTMLAttributes<HTMLAnchorElement>>;
|
|
2444
|
+
type LabelTypographyProps = BaseComponentProps<HTMLLabelElement, TypographyComponentProps, HTMLAttributes<HTMLLabelElement>>;
|
|
2445
|
+
type OtherTypographyProps = BaseComponentProps<HTMLElement, TypographyComponentProps, HTMLAttributes<HTMLElement>>;
|
|
2446
|
+
type TypographyProps = ({
|
|
2447
|
+
/**Styling basert på det typografiske utvalget definert i Figma. Returnerer default HTML tag for hver type. **OBS!** Ved bruk av `'a'` er det flere tilgjengelige props, se under. */
|
|
2448
|
+
typographyType?: AnchorTypographyType;
|
|
2449
|
+
} & AnchorTypographyProps) | ({
|
|
2450
|
+
/**Styling basert på det typografiske utvalget definert i Figma. Returnerer default HTML tag for hver type. **OBS!** Ved bruk av `'a'` er det flere tilgjengelige props, se under. */
|
|
2451
|
+
typographyType?: LabelTypographyType;
|
|
2452
|
+
} & LabelTypographyProps) | ({
|
|
2453
|
+
/**Styling basert på det typografiske utvalget definert i Figma. Returnerer default HTML tag for hver type. **OBS!** Ved bruk av `'a'` er det flere tilgjengelige props, se under. */
|
|
2454
|
+
typographyType?: OtherTypographyType;
|
|
2455
|
+
} & OtherTypographyProps);
|
|
2456
|
+
declare const Typography: react.ForwardRefExoticComponent<TypographyProps & react.RefAttributes<HTMLElement>>;
|
|
2457
|
+
|
|
2458
|
+
declare const focusVisibleLink: {
|
|
2459
|
+
outline: string;
|
|
2460
|
+
backgroundColor: string;
|
|
2461
|
+
color: string;
|
|
2462
|
+
textDecoration: string;
|
|
2463
|
+
};
|
|
2464
|
+
declare const focusVisibleLinkOnDark: {
|
|
2465
|
+
outline: string;
|
|
2466
|
+
backgroundColor: string;
|
|
2467
|
+
color: string;
|
|
2468
|
+
textDecoration: string;
|
|
2469
|
+
};
|
|
2470
|
+
declare const focusVisibleLinkTransitionValue = "background-color 0.2s, text-decoration 0.2s, color 0.2s";
|
|
2471
|
+
declare const getFontStyling: (type: StaticTypographyType, withColor?: boolean) => {
|
|
2472
|
+
lineHeight: string;
|
|
2473
|
+
fontSize: string;
|
|
2474
|
+
letterSpacing: string;
|
|
2475
|
+
fontFamily: string;
|
|
2476
|
+
fontWeight: number;
|
|
2477
|
+
fontStyle: string;
|
|
2478
|
+
color: string | undefined;
|
|
2479
|
+
};
|
|
2480
|
+
declare const getAdditionalFontStyle: (bold?: boolean, italic?: boolean, underline?: boolean) => styled_components.RuleSet<object>;
|
|
2481
|
+
declare const getMarginStyling: (typographyType: TypographyType, element: ElementType, withMargins?: boolean) => styled_components.RuleSet<object>;
|
|
2482
|
+
declare const getAnchorStyling: (external?: boolean, interactionStyling?: TypographyInteractionStyling, typographyType?: StaticTypographyType, withMargins?: boolean) => styled_components.RuleSet<object>;
|
|
2483
|
+
|
|
2484
|
+
declare const defaultTypographyType: TypographyBodyType;
|
|
2485
|
+
declare const getElementType: (element: string) => ElementType;
|
|
2486
|
+
declare const isHeading: (type: TypographyType) => type is TypographyHeadingType;
|
|
2487
|
+
declare const inlineElements: ElementType[];
|
|
2488
|
+
declare const isInlineElement: (as: ElementType) => as is InlineElement;
|
|
2489
|
+
|
|
2490
|
+
type CaptionProps = BaseComponentPropsWithChildren<HTMLTableCaptionElement, BaseTypographyProps>;
|
|
2491
|
+
declare const Caption: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLTableCaptionElement>, "className" | "id"> & {
|
|
2492
|
+
withMargins?: boolean | undefined;
|
|
2493
|
+
} & {
|
|
2494
|
+
children?: react.ReactNode;
|
|
2495
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2496
|
+
htmlProps?: react.HTMLAttributes<HTMLTableCaptionElement> | undefined;
|
|
2497
|
+
} & react.RefAttributes<HTMLTableCaptionElement>>;
|
|
2498
|
+
|
|
2499
|
+
type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
2500
|
+
type HeadingProps = BaseComponentPropsWithChildren<HTMLHeadingElement, {
|
|
2501
|
+
/**Nivå på overskriften. Komponenten returnerer HTML heading element med dette nivået med default styling. */
|
|
2502
|
+
level: HeadingLevel;
|
|
2503
|
+
/**Spesifiserer typografistil basert på utvalget for HTML heading elementer. */
|
|
2504
|
+
typographyType?: TypographyHeadingType;
|
|
2505
|
+
} & BaseTypographyProps>;
|
|
2506
|
+
declare const Heading: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLHeadingElement>, "className" | "id"> & {
|
|
2507
|
+
/**Nivå på overskriften. Komponenten returnerer HTML heading element med dette nivået med default styling. */
|
|
2508
|
+
level: HeadingLevel;
|
|
2509
|
+
/**Spesifiserer typografistil basert på utvalget for HTML heading elementer. */
|
|
2510
|
+
typographyType?: TypographyHeadingType | undefined;
|
|
2511
|
+
} & {
|
|
2512
|
+
withMargins?: boolean | undefined;
|
|
2513
|
+
} & {
|
|
2514
|
+
children?: react.ReactNode;
|
|
2515
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2516
|
+
htmlProps?: react.HTMLAttributes<HTMLHeadingElement> | undefined;
|
|
2517
|
+
} & react.RefAttributes<HTMLHeadingElement>>;
|
|
2518
|
+
|
|
2519
|
+
type PickedHTMLAttributes$3 = Pick<LabelHTMLAttributes<HTMLLabelElement>, 'htmlFor'>;
|
|
2520
|
+
interface BaseLabelProps {
|
|
2521
|
+
/** Spesifiserer om input etiketten er knyttet til er påkrevd; påvirker styling. */
|
|
2522
|
+
showRequiredStyling?: boolean;
|
|
2523
|
+
}
|
|
2524
|
+
type LabelProps = BaseComponentPropsWithChildren<HTMLLabelElement, BaseLabelProps & BaseTypographyProps & PickedHTMLAttributes$3, Omit<LabelHTMLAttributes<HTMLLabelElement>, keyof PickedHTMLAttributes$3>>;
|
|
2525
|
+
declare const Label: react.ForwardRefExoticComponent<Pick<Omit<LabelHTMLAttributes<HTMLLabelElement>, "htmlFor">, "className" | "id"> & BaseLabelProps & {
|
|
2526
|
+
withMargins?: boolean | undefined;
|
|
2527
|
+
} & {
|
|
2528
|
+
children?: react.ReactNode;
|
|
2529
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & PickedHTMLAttributes$3 & {
|
|
2530
|
+
htmlProps?: Omit<LabelHTMLAttributes<HTMLLabelElement>, "htmlFor"> | undefined;
|
|
2531
|
+
} & react.RefAttributes<HTMLLabelElement>>;
|
|
2532
|
+
|
|
2533
|
+
type LegendProps = BaseComponentPropsWithChildren<HTMLLegendElement, BaseTypographyProps>;
|
|
2534
|
+
declare const Legend: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLLegendElement>, "className" | "id"> & {
|
|
2535
|
+
withMargins?: boolean | undefined;
|
|
2536
|
+
} & {
|
|
2537
|
+
children?: react.ReactNode;
|
|
2538
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2539
|
+
htmlProps?: react.HTMLAttributes<HTMLLegendElement> | undefined;
|
|
2540
|
+
} & react.RefAttributes<HTMLLegendElement>>;
|
|
2541
|
+
|
|
2542
|
+
type PickedHTMLAttributes$2 = Pick<AnchorHTMLAttributes<HTMLAnchorElement>, 'onClick' | 'href' | 'target'>;
|
|
2543
|
+
type LinkProps = BaseComponentPropsWithChildren<HTMLAnchorElement, {
|
|
2544
|
+
/**Spesifiserer om lenken fører til et eksternt nettsted eller åpnes i nytt vindu. Påvirker styling og setter `target` prop. */
|
|
2545
|
+
external?: boolean;
|
|
2546
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst. */
|
|
2547
|
+
typographyType?: TypographyBodyType;
|
|
2548
|
+
} & BaseTypographyProps & PickedHTMLAttributes$2, Omit<AnchorHTMLAttributes<HTMLAnchorElement>, keyof PickedHTMLAttributes$2>>;
|
|
2549
|
+
declare const Link: react.ForwardRefExoticComponent<Pick<Omit<AnchorHTMLAttributes<HTMLAnchorElement>, "target" | "href" | "onClick">, "className" | "id"> & {
|
|
2550
|
+
/**Spesifiserer om lenken fører til et eksternt nettsted eller åpnes i nytt vindu. Påvirker styling og setter `target` prop. */
|
|
2551
|
+
external?: boolean | undefined;
|
|
2552
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst. */
|
|
2553
|
+
typographyType?: ("bodySans01" | "bodySans02" | "bodySans03" | "bodySans04") | undefined;
|
|
2554
|
+
} & {
|
|
2555
|
+
withMargins?: boolean | undefined;
|
|
2556
|
+
} & {
|
|
2557
|
+
children?: react.ReactNode;
|
|
2558
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & PickedHTMLAttributes$2 & {
|
|
2559
|
+
htmlProps?: Omit<AnchorHTMLAttributes<HTMLAnchorElement>, "target" | "href" | "onClick"> | undefined;
|
|
2560
|
+
} & react.RefAttributes<HTMLAnchorElement>>;
|
|
2561
|
+
|
|
2562
|
+
type ParagraphProps = BaseComponentPropsWithChildren<HTMLParagraphElement, {
|
|
2563
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst og ingress. */
|
|
2564
|
+
typographyType?: TypographyBodyType | TypographyLeadType;
|
|
2565
|
+
} & BaseTypographyProps>;
|
|
2566
|
+
declare const Paragraph: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLParagraphElement>, "className" | "id"> & {
|
|
2567
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst og ingress. */
|
|
2568
|
+
typographyType?: ("bodySans01" | "bodySans02" | "bodySans03" | "bodySans04") | TypographyLeadType | undefined;
|
|
2569
|
+
} & {
|
|
2570
|
+
withMargins?: boolean | undefined;
|
|
2571
|
+
} & {
|
|
2572
|
+
children?: react.ReactNode;
|
|
2573
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2574
|
+
htmlProps?: react.HTMLAttributes<HTMLParagraphElement> | undefined;
|
|
2575
|
+
} & react.RefAttributes<HTMLParagraphElement>>;
|
|
2576
|
+
|
|
2577
|
+
interface CommonInputProps {
|
|
2578
|
+
/**Ledetekst for input. */
|
|
2579
|
+
label?: string;
|
|
2580
|
+
/**Bredde for inputfeltet. */
|
|
2581
|
+
width?: Property.Width<string>;
|
|
2582
|
+
/**Hjelpetekst. */
|
|
2583
|
+
tip?: string;
|
|
2584
|
+
/**Feilmelding. Setter også error state. */
|
|
2585
|
+
errorMessage?: string;
|
|
2586
|
+
}
|
|
2587
|
+
type InputSize = 'medium' | 'small' | 'tiny';
|
|
2588
|
+
type InputProps = CommonInputProps & {
|
|
2589
|
+
/**Størrelse på inputfeltet. */
|
|
2590
|
+
componentSize?: InputSize;
|
|
2591
|
+
} & InputHTMLAttributes<HTMLInputElement>;
|
|
2592
|
+
type StyledCommonInputProps = Pick<InputProps, 'readOnly' | 'disabled'> & {
|
|
2593
|
+
hasErrorMessage: boolean;
|
|
2594
|
+
};
|
|
2595
|
+
type StyledInputProps = StyledCommonInputProps & {
|
|
2596
|
+
prefixLength?: number;
|
|
2597
|
+
suffixLength?: number;
|
|
2598
|
+
} & Pick<InputProps, 'componentSize'>;
|
|
2599
|
+
type InputTypographyTypes = {
|
|
2600
|
+
[k in InputSize]: StaticTypographyType;
|
|
2601
|
+
};
|
|
2602
|
+
|
|
2603
|
+
declare const inputTypographyTypes: InputTypographyTypes;
|
|
2604
|
+
declare const inputTokens: {
|
|
2605
|
+
input: {
|
|
2606
|
+
base: {
|
|
2607
|
+
color: string;
|
|
2608
|
+
borderRadius: string;
|
|
2609
|
+
border: string;
|
|
2610
|
+
borderColor: string;
|
|
2611
|
+
backgroundColor: string;
|
|
2612
|
+
padding: string;
|
|
2613
|
+
};
|
|
2614
|
+
disabled: {
|
|
2615
|
+
color: string;
|
|
2616
|
+
backgroundColor: string;
|
|
2617
|
+
};
|
|
2618
|
+
readOnly: {
|
|
2619
|
+
backgroundColor: string;
|
|
2620
|
+
};
|
|
2621
|
+
sizes: {
|
|
2622
|
+
medium: {
|
|
2623
|
+
padding: string;
|
|
2624
|
+
};
|
|
2625
|
+
small: {
|
|
2626
|
+
padding: string;
|
|
2627
|
+
};
|
|
2628
|
+
tiny: {
|
|
2629
|
+
padding: string;
|
|
2630
|
+
};
|
|
2631
|
+
};
|
|
2632
|
+
affix: {
|
|
2633
|
+
gap: number;
|
|
2634
|
+
};
|
|
2635
|
+
};
|
|
2636
|
+
container: {
|
|
2637
|
+
gap: string;
|
|
2638
|
+
};
|
|
2639
|
+
};
|
|
2640
|
+
|
|
2641
|
+
declare function getDefaultText(value?: string | number | readonly string[], defaultValue?: string | number | readonly string[]): string;
|
|
2642
|
+
|
|
2643
|
+
type Elevation = 1 | 2 | 3 | 4;
|
|
2644
|
+
type Border = 'light' | 'dark';
|
|
2645
|
+
interface PaperProps {
|
|
2646
|
+
elevation?: Elevation;
|
|
2647
|
+
border?: Border;
|
|
2648
|
+
}
|
|
2649
|
+
declare const Paper: styled_components.IStyledComponent<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, PaperProps>>;
|
|
2650
|
+
|
|
2651
|
+
declare const RequiredMarker: () => react_jsx_runtime.JSX.Element;
|
|
2652
|
+
|
|
2653
|
+
/**
|
|
2654
|
+
* Kombinerer refs for et element.
|
|
2655
|
+
* Eksempel på bruk:
|
|
2656
|
+
* ```
|
|
2657
|
+
* const MyComponent = forwardRef<HTMLDivElement, Props>((props, ref) => {
|
|
2658
|
+
*
|
|
2659
|
+
* const itemRef = useRef<HTMLDivElement>(null);
|
|
2660
|
+
* const combinedRef = useCombinedRef(ref, itemRef);
|
|
2661
|
+
*
|
|
2662
|
+
* return <div ref={combinedRef}>innhold</div>
|
|
2663
|
+
* });
|
|
2664
|
+
* ```
|
|
2665
|
+
* @param refs array med refs.
|
|
2666
|
+
* @template T elementet som refereres til.
|
|
2667
|
+
* @returns callback med kombinerte refs.
|
|
2668
|
+
*
|
|
2669
|
+
* {@link useCombinedRef}
|
|
2670
|
+
*/
|
|
2671
|
+
declare function useCombinedRef<T>(...refs: React.Ref<T>[]): RefCallback<T>;
|
|
2672
|
+
|
|
2673
|
+
type Placement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'right' | 'right-start' | 'right-end' | 'left' | 'left-start' | 'left-end';
|
|
2674
|
+
interface UseFloatPositionOptions {
|
|
2675
|
+
/**
|
|
2676
|
+
* Whether to update the position of the floating element on every animation frame if required.
|
|
2677
|
+
* This is optimized for performance but can still be costly.
|
|
2678
|
+
* @default true
|
|
2679
|
+
*/
|
|
2680
|
+
animationFrame?: boolean;
|
|
2681
|
+
/**
|
|
2682
|
+
* `offset` is used to displace the floating element from its core placement.
|
|
2683
|
+
* The value passed is logical, meaning its effect on the
|
|
2684
|
+
* physical result is dependent on the writing direction (e.g. RTL).
|
|
2685
|
+
* @default 8
|
|
2686
|
+
*/
|
|
2687
|
+
offset?: number;
|
|
2688
|
+
/**
|
|
2689
|
+
* Where to place the floating element relative to its reference element.
|
|
2690
|
+
* @default 'bottom'
|
|
2691
|
+
*/
|
|
2692
|
+
placement?: Placement;
|
|
2693
|
+
}
|
|
2694
|
+
declare const useFloatPosition: (arrowRef: HTMLElement | null, options?: UseFloatPositionOptions) => {
|
|
2695
|
+
refs: {
|
|
2696
|
+
reference: react.MutableRefObject<_floating_ui_react_dom.ReferenceType | null>;
|
|
2697
|
+
floating: react.MutableRefObject<HTMLElement | null>;
|
|
2698
|
+
setReference: (node: _floating_ui_react_dom.ReferenceType | null) => void;
|
|
2699
|
+
setFloating: (node: HTMLElement | null) => void;
|
|
2700
|
+
};
|
|
2701
|
+
styles: {
|
|
2702
|
+
floating: {
|
|
2703
|
+
position: Strategy;
|
|
2704
|
+
top: number;
|
|
2705
|
+
left: number;
|
|
2706
|
+
};
|
|
2707
|
+
arrow: {
|
|
2708
|
+
[x: string]: string | number;
|
|
2709
|
+
position: Strategy;
|
|
2710
|
+
top: string | number;
|
|
2711
|
+
left: string | number;
|
|
2712
|
+
transform: string;
|
|
2713
|
+
} | undefined;
|
|
2714
|
+
};
|
|
2715
|
+
};
|
|
2716
|
+
|
|
2717
|
+
/**
|
|
2718
|
+
* Fanger fokus i en loop inni et element. Typisk bruk:
|
|
2719
|
+
* ```
|
|
2720
|
+
* const MyComponent = (props) => {
|
|
2721
|
+
*
|
|
2722
|
+
* const componentRef = useFocusTrap<HTMLDivElement>(props.isOpen);
|
|
2723
|
+
*
|
|
2724
|
+
* return props.isOpen ? <div ref={componentRef}><button>click</button></div> : null;
|
|
2725
|
+
*
|
|
2726
|
+
* }
|
|
2727
|
+
* ```
|
|
2728
|
+
* @param active om focus skal fanges, f.eks. når en modal åpnes.
|
|
2729
|
+
* @param initialFocusRef Ref som skal motta focus når focus trap er aktiv.
|
|
2730
|
+
* @returns ref til elementet som fanger fokus.
|
|
2731
|
+
*/
|
|
2732
|
+
declare function useFocusTrap<T extends HTMLElement>(active: boolean, initialFocusRef?: RefObject<HTMLElement> | undefined): RefObject<T>;
|
|
2733
|
+
|
|
2734
|
+
declare const useIsMounted: () => () => boolean;
|
|
2735
|
+
|
|
2736
|
+
/**
|
|
2737
|
+
* Tillater effekter og animasjoner å bli gjennomført like etter et element blir lagt til eller like før det blir fjernet fra DOM.
|
|
2738
|
+
* Typisk bruk:
|
|
2739
|
+
* ```
|
|
2740
|
+
* // CSS
|
|
2741
|
+
* .component {
|
|
2742
|
+
* transition: opacity 0.2s;
|
|
2743
|
+
* opacity: 0;
|
|
2744
|
+
* }
|
|
2745
|
+
*
|
|
2746
|
+
* .transitionedIn.mounted {
|
|
2747
|
+
* opacity: 1;
|
|
2748
|
+
* }
|
|
2749
|
+
*
|
|
2750
|
+
* const MyComponent = (props) => {
|
|
2751
|
+
*
|
|
2752
|
+
* const hasTransitionedIn = useMountTransition(props.isMounted, 500);
|
|
2753
|
+
*
|
|
2754
|
+
* return props.isMounted || hasTransitionedIn ? (
|
|
2755
|
+
* <div
|
|
2756
|
+
* className={`component ${hasTransitionedIn && 'transitionedIn'} ${props.isMounted && 'mounted'}`}
|
|
2757
|
+
* >
|
|
2758
|
+
* innhold
|
|
2759
|
+
* </div>)
|
|
2760
|
+
* : null;
|
|
2761
|
+
*
|
|
2762
|
+
* }
|
|
2763
|
+
* ```
|
|
2764
|
+
* @param isMounted om elementet er mounted.
|
|
2765
|
+
* @param unmountDelay hvor lenge transition skal vare før unmount.
|
|
2766
|
+
* @returns om transition er ferdig.
|
|
2767
|
+
*/
|
|
2768
|
+
declare const useMountTransition: (isMounted: boolean, unmountDelay: number) => boolean;
|
|
2769
|
+
|
|
2770
|
+
/**
|
|
2771
|
+
* Kjører logikk når brukeren klikker utenfor et element, f.eks at elementet fjernes fra DOM.
|
|
2772
|
+
* Typisk bruk:
|
|
2773
|
+
* ```
|
|
2774
|
+
* const [isOpen, setOpen] = useState(true);
|
|
2775
|
+
* const ref = useRef<HTMLElement>(null);
|
|
2776
|
+
* useOnClickOutside(ref, () => setOpen(false));
|
|
2777
|
+
*
|
|
2778
|
+
* return <div ref={ref}>innhold</div>
|
|
2779
|
+
* ```
|
|
2780
|
+
* @param element HTML elementet man klikker utenfor.
|
|
2781
|
+
* @param handler funksjonen som kjøres ved klikk utenfor.
|
|
2782
|
+
*/
|
|
2783
|
+
declare function useOnClickOutside(element: HTMLElement | null | (HTMLElement | null)[], handler: (event: MouseEvent | TouchEvent) => void): void;
|
|
2784
|
+
|
|
2785
|
+
/**
|
|
2786
|
+
* Kjører logikk når en spesifisert tast blir trykt ned.
|
|
2787
|
+
* Typisk bruk:
|
|
2788
|
+
* ```
|
|
2789
|
+
* const [isOpen, setOpen] = useState(true);
|
|
2790
|
+
* const ref = useRef<HTMLElement>(null);
|
|
2791
|
+
* useOnKeyDown(['Escape', 'Esc'], () => setOpen(false));
|
|
2792
|
+
*
|
|
2793
|
+
* return isOpen ? <div>innhold</div> : null;
|
|
2794
|
+
* ```
|
|
2795
|
+
* @param key tasten som trykkes.
|
|
2796
|
+
* @param handler funksjonen som skal kjøres.
|
|
2797
|
+
*/
|
|
2798
|
+
declare const useOnKeyDown: (key: string | string[], handler: (event: KeyboardEvent) => void) => void;
|
|
2799
|
+
|
|
2800
|
+
/**
|
|
2801
|
+
* Returnerer fokus til et element når første eller siste barn i en container mister fokus ved tastaturnavigasjon. Typisk bruk:
|
|
2802
|
+
* ```
|
|
2803
|
+
* const MyComponent = (props) => {
|
|
2804
|
+
*
|
|
2805
|
+
* const [isOpen, setOpen] = useState(true);
|
|
2806
|
+
* const close = () => setOpen(false);
|
|
2807
|
+
* const triggerRef = useRef<HTMLButtonElement>(null);
|
|
2808
|
+
* const containerRef = useReturnFocusOnBlur<HTMLDivElement>(
|
|
2809
|
+
* isOpen,
|
|
2810
|
+
* triggerRef.current,
|
|
2811
|
+
* () => close()
|
|
2812
|
+
* );
|
|
2813
|
+
*
|
|
2814
|
+
* return (
|
|
2815
|
+
* <div>
|
|
2816
|
+
* <button ref={triggerRef} >Åpne popover</button>
|
|
2817
|
+
* <div ref={containerRef}>
|
|
2818
|
+
* <button>gjør noe</button>
|
|
2819
|
+
* </div>
|
|
2820
|
+
* </div>
|
|
2821
|
+
* )
|
|
2822
|
+
* }
|
|
2823
|
+
* ```
|
|
2824
|
+
* @param active om container skal få fokus, f.eks. når en modal åpnes.
|
|
2825
|
+
* @param triggerElement elementet som skal få fokus når fokus forlater container.
|
|
2826
|
+
* @param onBlur ekstra logikk når fokus forlater container.
|
|
2827
|
+
* @returns ref til container som får fokus.
|
|
2828
|
+
*/
|
|
2829
|
+
declare function useReturnFocusOnBlur<T extends HTMLElement>(active: boolean, onBlur: () => void, triggerElement?: HTMLElement | null): RefObject<T>;
|
|
2830
|
+
|
|
2831
|
+
declare const isKeyboardEvent: (e: Event | KeyboardEvent$1<Element>) => e is KeyboardEvent$1<Element>;
|
|
2832
|
+
/**
|
|
2833
|
+
* Bytter fokus mellom elementer i en gruppe med piltaster og ikke Tab, og looper fokus i gruppen. Typisk bruk:
|
|
2834
|
+
* ```
|
|
2835
|
+
* import elements from './elements';
|
|
2836
|
+
* import RoveItem from './RoveItem';
|
|
2837
|
+
*
|
|
2838
|
+
* const MyComponent = () => {
|
|
2839
|
+
* const [focus, setFocus] = useRoveFocus(elements.length);
|
|
2840
|
+
*
|
|
2841
|
+
* return (
|
|
2842
|
+
* <ul>
|
|
2843
|
+
* {elements.map((element, index) => (
|
|
2844
|
+
* <li key={element}>
|
|
2845
|
+
* <RoveItem index={index} focus={focus === index} setFocus={setFocus}>{element.name}</RoveItem>
|
|
2846
|
+
* </li>
|
|
2847
|
+
* ))}
|
|
2848
|
+
* </ul>)
|
|
2849
|
+
* }
|
|
2850
|
+
* ```
|
|
2851
|
+
* @param size antall elementer i gruppen.
|
|
2852
|
+
* @param reset om fokus i gruppen skal nullstilles; når man tabber seg inn i gruppen skal focus være nullstilt.
|
|
2853
|
+
* @param direction retning elementene blas i.
|
|
2854
|
+
* @returns hook par: indeksen til fokuserte elemenentet og funksjonen som håndterer fokus.
|
|
2855
|
+
*/
|
|
2856
|
+
declare function useRoveFocus(size?: number, reset?: boolean, direction?: Direction$1): [number, Dispatch<SetStateAction<number>>];
|
|
2857
|
+
|
|
2858
|
+
declare enum ScreenSize {
|
|
2859
|
+
XSmall = 0,
|
|
2860
|
+
Small = 1,
|
|
2861
|
+
Medium = 2,
|
|
2862
|
+
Large = 3,
|
|
2863
|
+
XLarge = 4
|
|
2864
|
+
}
|
|
2865
|
+
/**
|
|
2866
|
+
* Sjekker skjermstørrelsen basert på brekkpunkter definerte i designsystemet. Eksempel på bruk:
|
|
2867
|
+
* ```
|
|
2868
|
+
* const MyComponent = () => {
|
|
2869
|
+
* const screenSize = useScreenSize();
|
|
2870
|
+
* const isSmallScreen = screenSize === ScreenSize.Small;
|
|
2871
|
+
*
|
|
2872
|
+
* return <div className={isSmallScreen && 'smallDiv'} >innhold</div>
|
|
2873
|
+
* }
|
|
2874
|
+
* ```
|
|
2875
|
+
* @returns den aktuelle skjermstørrelsen basert på {@link ScreenSize}.
|
|
2876
|
+
*/
|
|
2877
|
+
declare const useScreenSize: () => ScreenSize;
|
|
2878
|
+
|
|
2879
|
+
type ScreenSizeLiteral = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
2880
|
+
declare const getLiteralScreenSize: (screenSize: ScreenSize) => ScreenSizeLiteral;
|
|
2881
|
+
type BreakpointBasedProps<T extends keyof StandardProperties> = {
|
|
2882
|
+
[k in ScreenSizeLiteral]?: StandardProperties[T];
|
|
2883
|
+
};
|
|
2884
|
+
|
|
2885
|
+
declare const dangerInputfield: {
|
|
2886
|
+
borderColor: string;
|
|
2887
|
+
boxShadow: string;
|
|
2888
|
+
};
|
|
2889
|
+
|
|
2890
|
+
declare const focusInputfield: {
|
|
2891
|
+
outline: string;
|
|
2892
|
+
borderColor: string;
|
|
2893
|
+
boxShadow: string;
|
|
2894
|
+
};
|
|
2895
|
+
declare const focusDangerInputfield: {
|
|
2896
|
+
borderColor: string;
|
|
2897
|
+
boxShadow: string;
|
|
2898
|
+
};
|
|
2899
|
+
|
|
2900
|
+
declare const outlineOffset = "2px";
|
|
2901
|
+
declare const focusVisible: {
|
|
2902
|
+
outline: string;
|
|
2903
|
+
outlineOffset: string;
|
|
2904
|
+
};
|
|
2905
|
+
declare const focusVisibleOnDark: {
|
|
2906
|
+
outline: string;
|
|
2907
|
+
outlineOffset: string;
|
|
2908
|
+
};
|
|
2909
|
+
declare const focusVisibleTransitionValue = "outline-offset 0.2s";
|
|
2910
|
+
declare const focusVisibleWithBorder: {
|
|
2911
|
+
outline: string;
|
|
2912
|
+
borderColor: string;
|
|
2913
|
+
boxShadow: string;
|
|
2914
|
+
};
|
|
2915
|
+
declare const focusVisibleThickWithBorderOnDark: {
|
|
2916
|
+
outline: string;
|
|
2917
|
+
borderColor: string;
|
|
2918
|
+
boxShadow: string;
|
|
2919
|
+
};
|
|
2920
|
+
declare const focusVisibleInset: {
|
|
2921
|
+
outline: string;
|
|
2922
|
+
boxShadow: string;
|
|
2923
|
+
};
|
|
2924
|
+
|
|
2925
|
+
declare const hideInput: {
|
|
2926
|
+
clip: string;
|
|
2927
|
+
position: string;
|
|
2928
|
+
height: string;
|
|
2929
|
+
width: string;
|
|
2930
|
+
margin: number;
|
|
2931
|
+
};
|
|
2932
|
+
|
|
2933
|
+
declare const hoverWithBorder: {
|
|
2934
|
+
borderColor: string;
|
|
2935
|
+
boxShadow: string;
|
|
2936
|
+
};
|
|
2937
|
+
declare const hoverInputfield: {
|
|
2938
|
+
borderColor: string;
|
|
2939
|
+
boxShadow: string;
|
|
2940
|
+
};
|
|
2941
|
+
declare const hoverDangerInputfield: {
|
|
2942
|
+
borderColor: string;
|
|
2943
|
+
boxShadow: string;
|
|
2944
|
+
};
|
|
2945
|
+
|
|
2946
|
+
declare const normalizeButton: {
|
|
2947
|
+
margin: number;
|
|
2948
|
+
textTransform: Property.TextTransform;
|
|
2949
|
+
};
|
|
2950
|
+
|
|
2951
|
+
declare const removeButtonStyling: {
|
|
2952
|
+
background: string;
|
|
2953
|
+
color: string;
|
|
2954
|
+
border: string;
|
|
2955
|
+
padding: number;
|
|
2956
|
+
font: string;
|
|
2957
|
+
cursor: string;
|
|
2958
|
+
outline: string;
|
|
2959
|
+
};
|
|
2960
|
+
|
|
2961
|
+
declare const removeListStyling: {
|
|
2962
|
+
listStyle: string;
|
|
2963
|
+
padding: number;
|
|
2964
|
+
margin: number;
|
|
2965
|
+
};
|
|
2966
|
+
|
|
2967
|
+
declare const selection: {
|
|
2968
|
+
color: string;
|
|
2969
|
+
backgroundColor: string;
|
|
2970
|
+
};
|
|
2971
|
+
|
|
2972
|
+
declare const visibilityTransition: (open: boolean) => styled_components.RuleSet<object>;
|
|
2973
|
+
|
|
2974
|
+
type StyledSvgProps = SVGAttributes<SVGSVGElement>;
|
|
2975
|
+
declare const StyledSvg: styled_components.IStyledComponent<"web", styled_components_dist_types.Substitute<styled_components_dist_types.Substitute<styled_components_dist_types.Substitute<react.SVGProps<SVGSVGElement>, Omit<react.SVGProps<SVGSVGElement>, "ref"> & {
|
|
2976
|
+
ref?: ((instance: SVGSVGElement | null) => void) | react.RefObject<SVGSVGElement> | null | undefined;
|
|
2977
|
+
}>, StyledSvgProps>, StyledSvgProps>>;
|
|
2978
|
+
|
|
2979
|
+
type SvgProps = {
|
|
2980
|
+
title?: string;
|
|
2981
|
+
} & SVGAttributes<SVGSVGElement>;
|
|
2982
|
+
type SvgIcon = (props: SvgProps) => JSX.Element;
|
|
2983
|
+
|
|
2984
|
+
declare function AddressShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2985
|
+
|
|
2986
|
+
declare function AgreementIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2987
|
+
|
|
2988
|
+
declare function AppsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2989
|
+
|
|
2990
|
+
declare function ArchiveIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2991
|
+
|
|
2992
|
+
declare function ArrowDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2993
|
+
|
|
2994
|
+
declare function ArrowLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2995
|
+
|
|
2996
|
+
declare function ArrowRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2997
|
+
|
|
2998
|
+
declare function ArrowUpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2999
|
+
|
|
3000
|
+
declare function AttachmentIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3001
|
+
|
|
3002
|
+
declare function BlockIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3003
|
+
|
|
3004
|
+
declare function BookIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3005
|
+
|
|
3006
|
+
declare function BuildIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3007
|
+
|
|
3008
|
+
declare function BuildCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3009
|
+
|
|
3010
|
+
declare function CalendarIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3011
|
+
|
|
3012
|
+
declare function CalendarMonthIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3013
|
+
|
|
3014
|
+
declare function CalendarViewDayIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3015
|
+
|
|
3016
|
+
declare function CalendarViewMonthIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3017
|
+
|
|
3018
|
+
declare function CalendarViewWeekIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3019
|
+
|
|
3020
|
+
declare function CallIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3021
|
+
|
|
3022
|
+
declare function CaringIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3023
|
+
|
|
3024
|
+
declare function ChatIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3025
|
+
|
|
3026
|
+
declare function CheckIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3027
|
+
|
|
3028
|
+
declare function CheckCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3029
|
+
|
|
3030
|
+
declare function ChecklistIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3031
|
+
|
|
3032
|
+
declare function ChevronDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3033
|
+
|
|
3034
|
+
declare function ChevronFirstIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3035
|
+
|
|
3036
|
+
declare function ChevronLargeLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3037
|
+
|
|
3038
|
+
declare function ChevronLargeRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3039
|
+
|
|
3040
|
+
declare function ChevronLastIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3041
|
+
|
|
3042
|
+
declare function ChevronLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3043
|
+
|
|
3044
|
+
declare function ChevronRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3045
|
+
|
|
3046
|
+
declare function ChevronUpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3047
|
+
|
|
3048
|
+
declare function CloseIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3049
|
+
|
|
3050
|
+
declare function CloseSmallIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3051
|
+
|
|
3052
|
+
declare function CloseCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3053
|
+
|
|
3054
|
+
declare function CloudIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3055
|
+
|
|
3056
|
+
declare function CollapseIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3057
|
+
|
|
3058
|
+
declare function CommentIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3059
|
+
|
|
3060
|
+
declare function CopyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3061
|
+
|
|
3062
|
+
declare function CourtIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3063
|
+
|
|
3064
|
+
declare function DateRangeIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3065
|
+
|
|
3066
|
+
declare function DeathsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3067
|
+
|
|
3068
|
+
declare function DoubleChevronLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3069
|
+
|
|
3070
|
+
declare function DoubleChevronRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3071
|
+
|
|
3072
|
+
declare function DownloadIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3073
|
+
|
|
3074
|
+
declare function DownloadDoneIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3075
|
+
|
|
3076
|
+
declare function DragHandleIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3077
|
+
|
|
3078
|
+
declare function EditIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3079
|
+
|
|
3080
|
+
declare function ErrorIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3081
|
+
|
|
3082
|
+
declare function ExclaimIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3083
|
+
|
|
3084
|
+
declare function ExpandIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3085
|
+
|
|
3086
|
+
declare function FacebookIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3087
|
+
|
|
3088
|
+
declare function FamilyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3089
|
+
|
|
3090
|
+
declare function FeedbackIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3091
|
+
|
|
3092
|
+
declare function FileIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3093
|
+
|
|
3094
|
+
declare function FileAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3095
|
+
|
|
3096
|
+
declare function FileShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3097
|
+
|
|
3098
|
+
declare function FileTextIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3099
|
+
|
|
3100
|
+
declare function FilterIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3101
|
+
|
|
3102
|
+
declare function FilterListIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3103
|
+
|
|
3104
|
+
declare function FilterListOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3105
|
+
|
|
3106
|
+
declare function FilterOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3107
|
+
|
|
3108
|
+
declare function FindInPageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3109
|
+
|
|
3110
|
+
declare function FolderIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3111
|
+
|
|
3112
|
+
declare function FolderAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3113
|
+
|
|
3114
|
+
declare function FolderShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3115
|
+
|
|
3116
|
+
declare function FullscreenExitIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3117
|
+
|
|
3118
|
+
declare function FullscreenIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3119
|
+
|
|
3120
|
+
declare function GavelIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3121
|
+
|
|
3122
|
+
declare function HelpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3123
|
+
|
|
3124
|
+
declare function HelpFilledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3125
|
+
|
|
3126
|
+
declare function HomeIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3127
|
+
|
|
3128
|
+
declare function HourglassBottom(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3129
|
+
|
|
3130
|
+
declare function HourglassDisabled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3131
|
+
|
|
3132
|
+
declare function HourglassEmpty(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3133
|
+
|
|
3134
|
+
declare function HourglassFull(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3135
|
+
|
|
3136
|
+
declare function HourglassTop(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3137
|
+
|
|
3138
|
+
declare function ImageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3139
|
+
|
|
3140
|
+
declare function InfoIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3141
|
+
|
|
3142
|
+
declare function InstagramIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3143
|
+
|
|
3144
|
+
declare function JordskifterettIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3145
|
+
|
|
3146
|
+
declare function KeyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3147
|
+
|
|
3148
|
+
declare function LagmannsrettIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3149
|
+
|
|
3150
|
+
declare function LanguageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3151
|
+
|
|
3152
|
+
declare function LinkIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3153
|
+
|
|
3154
|
+
declare function LinkedInIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3155
|
+
|
|
3156
|
+
declare function LinkOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3157
|
+
|
|
3158
|
+
declare function ListIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3159
|
+
|
|
3160
|
+
declare function ListAltIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3161
|
+
|
|
3162
|
+
declare function LocationIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3163
|
+
|
|
3164
|
+
declare function LockIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3165
|
+
|
|
3166
|
+
declare function LockOpenIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3167
|
+
|
|
3168
|
+
declare function LoginIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3169
|
+
|
|
3170
|
+
declare function LogoutIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3171
|
+
|
|
3172
|
+
declare function MailIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3173
|
+
|
|
3174
|
+
declare function MailOpenIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3175
|
+
|
|
3176
|
+
declare function MenuIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3177
|
+
|
|
3178
|
+
declare function MinusIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3179
|
+
|
|
3180
|
+
declare function MinusCirledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3181
|
+
|
|
3182
|
+
declare function MoreHorizontalIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3183
|
+
|
|
3184
|
+
declare function MoreVerticalIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3185
|
+
|
|
3186
|
+
declare function NotarialIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3187
|
+
|
|
3188
|
+
declare function NotificationsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3189
|
+
|
|
3190
|
+
declare function NotificationsOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3191
|
+
|
|
3192
|
+
declare function OnlineMeetingIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3193
|
+
|
|
3194
|
+
declare function OpenExternalIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3195
|
+
|
|
3196
|
+
declare function PayoutIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3197
|
+
|
|
3198
|
+
declare function PdfIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3199
|
+
|
|
3200
|
+
declare function PersonIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3201
|
+
|
|
3202
|
+
declare function PersonAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3203
|
+
|
|
3204
|
+
declare function PersonShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3205
|
+
|
|
3206
|
+
declare function PinIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3207
|
+
|
|
3208
|
+
declare function PlusIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3209
|
+
|
|
3210
|
+
declare function PlusCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3211
|
+
|
|
3212
|
+
declare function PrintIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3213
|
+
|
|
3214
|
+
declare function PropertyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3215
|
+
|
|
3216
|
+
declare function PublishIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3217
|
+
|
|
3218
|
+
declare function QuestionAnswerIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3219
|
+
|
|
3220
|
+
declare function ReceiptIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3221
|
+
|
|
3222
|
+
declare function RedoIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3223
|
+
|
|
3224
|
+
declare function RefreshIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3225
|
+
|
|
3226
|
+
declare function ReplayIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3227
|
+
|
|
3228
|
+
declare function SearchIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3229
|
+
|
|
3230
|
+
declare function SettingsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3231
|
+
|
|
3232
|
+
declare function SmsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3233
|
+
|
|
3234
|
+
declare function StarIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3235
|
+
|
|
3236
|
+
declare function StarFilledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3237
|
+
|
|
3238
|
+
declare function StarHalfFilled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3239
|
+
|
|
3240
|
+
declare function SyncIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3241
|
+
|
|
3242
|
+
declare function Thumbdown(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3243
|
+
|
|
3244
|
+
declare function ThumbdownFilled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3245
|
+
|
|
3246
|
+
declare function Thumbup(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3247
|
+
|
|
3248
|
+
declare function ThumbupFilled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3249
|
+
|
|
3250
|
+
declare function TimeIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3251
|
+
|
|
3252
|
+
declare function TingrettIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3253
|
+
|
|
3254
|
+
declare function TipIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3255
|
+
|
|
3256
|
+
declare function TrashIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3257
|
+
|
|
3258
|
+
declare function TwitterIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3259
|
+
|
|
3260
|
+
declare function UndoIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3261
|
+
|
|
3262
|
+
declare function UnfoldLessIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3263
|
+
|
|
3264
|
+
declare function UnfoldMoreIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3265
|
+
|
|
3266
|
+
declare function UploadIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3267
|
+
|
|
3268
|
+
declare function VisibilityOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3269
|
+
|
|
3270
|
+
declare function VisibilityOnIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3271
|
+
|
|
3272
|
+
declare function WarningIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3273
|
+
|
|
3274
|
+
declare function ZoomInIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3275
|
+
|
|
3276
|
+
declare function ZoomOutIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3277
|
+
|
|
3278
|
+
declare function BarChartIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3279
|
+
|
|
3280
|
+
declare function BarChartBoxedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3281
|
+
|
|
3282
|
+
declare function LineChartIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3283
|
+
|
|
3284
|
+
declare function TrendingUpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3285
|
+
|
|
3286
|
+
declare function TrendingDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3287
|
+
|
|
3288
|
+
declare function LibraryAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3289
|
+
|
|
3290
|
+
declare const index_AddressShieldedIcon: typeof AddressShieldedIcon;
|
|
3291
|
+
declare const index_AgreementIcon: typeof AgreementIcon;
|
|
3292
|
+
declare const index_AppsIcon: typeof AppsIcon;
|
|
3293
|
+
declare const index_ArchiveIcon: typeof ArchiveIcon;
|
|
3294
|
+
declare const index_ArrowDownIcon: typeof ArrowDownIcon;
|
|
3295
|
+
declare const index_ArrowLeftIcon: typeof ArrowLeftIcon;
|
|
3296
|
+
declare const index_ArrowRightIcon: typeof ArrowRightIcon;
|
|
3297
|
+
declare const index_ArrowUpIcon: typeof ArrowUpIcon;
|
|
3298
|
+
declare const index_AttachmentIcon: typeof AttachmentIcon;
|
|
3299
|
+
declare const index_BarChartBoxedIcon: typeof BarChartBoxedIcon;
|
|
3300
|
+
declare const index_BarChartIcon: typeof BarChartIcon;
|
|
3301
|
+
declare const index_BlockIcon: typeof BlockIcon;
|
|
3302
|
+
declare const index_BookIcon: typeof BookIcon;
|
|
3303
|
+
declare const index_BuildCircledIcon: typeof BuildCircledIcon;
|
|
3304
|
+
declare const index_BuildIcon: typeof BuildIcon;
|
|
3305
|
+
declare const index_CalendarIcon: typeof CalendarIcon;
|
|
3306
|
+
declare const index_CalendarMonthIcon: typeof CalendarMonthIcon;
|
|
3307
|
+
declare const index_CalendarViewDayIcon: typeof CalendarViewDayIcon;
|
|
3308
|
+
declare const index_CalendarViewMonthIcon: typeof CalendarViewMonthIcon;
|
|
3309
|
+
declare const index_CalendarViewWeekIcon: typeof CalendarViewWeekIcon;
|
|
3310
|
+
declare const index_CallIcon: typeof CallIcon;
|
|
3311
|
+
declare const index_CaringIcon: typeof CaringIcon;
|
|
3312
|
+
declare const index_ChatIcon: typeof ChatIcon;
|
|
3313
|
+
declare const index_CheckCircledIcon: typeof CheckCircledIcon;
|
|
3314
|
+
declare const index_CheckIcon: typeof CheckIcon;
|
|
3315
|
+
declare const index_ChecklistIcon: typeof ChecklistIcon;
|
|
3316
|
+
declare const index_ChevronDownIcon: typeof ChevronDownIcon;
|
|
3317
|
+
declare const index_ChevronFirstIcon: typeof ChevronFirstIcon;
|
|
3318
|
+
declare const index_ChevronLargeLeftIcon: typeof ChevronLargeLeftIcon;
|
|
3319
|
+
declare const index_ChevronLargeRightIcon: typeof ChevronLargeRightIcon;
|
|
3320
|
+
declare const index_ChevronLastIcon: typeof ChevronLastIcon;
|
|
3321
|
+
declare const index_ChevronLeftIcon: typeof ChevronLeftIcon;
|
|
3322
|
+
declare const index_ChevronRightIcon: typeof ChevronRightIcon;
|
|
3323
|
+
declare const index_ChevronUpIcon: typeof ChevronUpIcon;
|
|
3324
|
+
declare const index_CloseCircledIcon: typeof CloseCircledIcon;
|
|
3325
|
+
declare const index_CloseIcon: typeof CloseIcon;
|
|
3326
|
+
declare const index_CloseSmallIcon: typeof CloseSmallIcon;
|
|
3327
|
+
declare const index_CloudIcon: typeof CloudIcon;
|
|
3328
|
+
declare const index_CollapseIcon: typeof CollapseIcon;
|
|
3329
|
+
declare const index_CommentIcon: typeof CommentIcon;
|
|
3330
|
+
declare const index_CopyIcon: typeof CopyIcon;
|
|
3331
|
+
declare const index_CourtIcon: typeof CourtIcon;
|
|
3332
|
+
declare const index_DateRangeIcon: typeof DateRangeIcon;
|
|
3333
|
+
declare const index_DeathsIcon: typeof DeathsIcon;
|
|
3334
|
+
declare const index_DoubleChevronLeftIcon: typeof DoubleChevronLeftIcon;
|
|
3335
|
+
declare const index_DoubleChevronRightIcon: typeof DoubleChevronRightIcon;
|
|
3336
|
+
declare const index_DownloadDoneIcon: typeof DownloadDoneIcon;
|
|
3337
|
+
declare const index_DownloadIcon: typeof DownloadIcon;
|
|
3338
|
+
declare const index_DragHandleIcon: typeof DragHandleIcon;
|
|
3339
|
+
declare const index_EditIcon: typeof EditIcon;
|
|
3340
|
+
declare const index_ErrorIcon: typeof ErrorIcon;
|
|
3341
|
+
declare const index_ExclaimIcon: typeof ExclaimIcon;
|
|
3342
|
+
declare const index_ExpandIcon: typeof ExpandIcon;
|
|
3343
|
+
declare const index_FacebookIcon: typeof FacebookIcon;
|
|
3344
|
+
declare const index_FamilyIcon: typeof FamilyIcon;
|
|
3345
|
+
declare const index_FeedbackIcon: typeof FeedbackIcon;
|
|
3346
|
+
declare const index_FileAddIcon: typeof FileAddIcon;
|
|
3347
|
+
declare const index_FileIcon: typeof FileIcon;
|
|
3348
|
+
declare const index_FileShieldedIcon: typeof FileShieldedIcon;
|
|
3349
|
+
declare const index_FileTextIcon: typeof FileTextIcon;
|
|
3350
|
+
declare const index_FilterIcon: typeof FilterIcon;
|
|
3351
|
+
declare const index_FilterListIcon: typeof FilterListIcon;
|
|
3352
|
+
declare const index_FilterListOffIcon: typeof FilterListOffIcon;
|
|
3353
|
+
declare const index_FilterOffIcon: typeof FilterOffIcon;
|
|
3354
|
+
declare const index_FindInPageIcon: typeof FindInPageIcon;
|
|
3355
|
+
declare const index_FolderAddIcon: typeof FolderAddIcon;
|
|
3356
|
+
declare const index_FolderIcon: typeof FolderIcon;
|
|
3357
|
+
declare const index_FolderShieldedIcon: typeof FolderShieldedIcon;
|
|
3358
|
+
declare const index_FullscreenExitIcon: typeof FullscreenExitIcon;
|
|
3359
|
+
declare const index_FullscreenIcon: typeof FullscreenIcon;
|
|
3360
|
+
declare const index_GavelIcon: typeof GavelIcon;
|
|
3361
|
+
declare const index_HelpFilledIcon: typeof HelpFilledIcon;
|
|
3362
|
+
declare const index_HelpIcon: typeof HelpIcon;
|
|
3363
|
+
declare const index_HomeIcon: typeof HomeIcon;
|
|
3364
|
+
declare const index_HourglassBottom: typeof HourglassBottom;
|
|
3365
|
+
declare const index_HourglassDisabled: typeof HourglassDisabled;
|
|
3366
|
+
declare const index_HourglassEmpty: typeof HourglassEmpty;
|
|
3367
|
+
declare const index_HourglassFull: typeof HourglassFull;
|
|
3368
|
+
declare const index_HourglassTop: typeof HourglassTop;
|
|
3369
|
+
declare const index_ImageIcon: typeof ImageIcon;
|
|
3370
|
+
declare const index_InfoIcon: typeof InfoIcon;
|
|
3371
|
+
declare const index_InstagramIcon: typeof InstagramIcon;
|
|
3372
|
+
declare const index_JordskifterettIcon: typeof JordskifterettIcon;
|
|
3373
|
+
declare const index_KeyIcon: typeof KeyIcon;
|
|
3374
|
+
declare const index_LagmannsrettIcon: typeof LagmannsrettIcon;
|
|
3375
|
+
declare const index_LanguageIcon: typeof LanguageIcon;
|
|
3376
|
+
declare const index_LibraryAddIcon: typeof LibraryAddIcon;
|
|
3377
|
+
declare const index_LineChartIcon: typeof LineChartIcon;
|
|
3378
|
+
declare const index_LinkIcon: typeof LinkIcon;
|
|
3379
|
+
declare const index_LinkOffIcon: typeof LinkOffIcon;
|
|
3380
|
+
declare const index_LinkedInIcon: typeof LinkedInIcon;
|
|
3381
|
+
declare const index_ListAltIcon: typeof ListAltIcon;
|
|
3382
|
+
declare const index_ListIcon: typeof ListIcon;
|
|
3383
|
+
declare const index_LocationIcon: typeof LocationIcon;
|
|
3384
|
+
declare const index_LockIcon: typeof LockIcon;
|
|
3385
|
+
declare const index_LockOpenIcon: typeof LockOpenIcon;
|
|
3386
|
+
declare const index_LoginIcon: typeof LoginIcon;
|
|
3387
|
+
declare const index_LogoutIcon: typeof LogoutIcon;
|
|
3388
|
+
declare const index_MailIcon: typeof MailIcon;
|
|
3389
|
+
declare const index_MailOpenIcon: typeof MailOpenIcon;
|
|
3390
|
+
declare const index_MenuIcon: typeof MenuIcon;
|
|
3391
|
+
declare const index_MinusCirledIcon: typeof MinusCirledIcon;
|
|
3392
|
+
declare const index_MinusIcon: typeof MinusIcon;
|
|
3393
|
+
declare const index_MoreHorizontalIcon: typeof MoreHorizontalIcon;
|
|
3394
|
+
declare const index_MoreVerticalIcon: typeof MoreVerticalIcon;
|
|
3395
|
+
declare const index_NotarialIcon: typeof NotarialIcon;
|
|
3396
|
+
declare const index_NotificationsIcon: typeof NotificationsIcon;
|
|
3397
|
+
declare const index_NotificationsOffIcon: typeof NotificationsOffIcon;
|
|
3398
|
+
declare const index_OnlineMeetingIcon: typeof OnlineMeetingIcon;
|
|
3399
|
+
declare const index_OpenExternalIcon: typeof OpenExternalIcon;
|
|
3400
|
+
declare const index_PayoutIcon: typeof PayoutIcon;
|
|
3401
|
+
declare const index_PdfIcon: typeof PdfIcon;
|
|
3402
|
+
declare const index_PersonAddIcon: typeof PersonAddIcon;
|
|
3403
|
+
declare const index_PersonIcon: typeof PersonIcon;
|
|
3404
|
+
declare const index_PersonShieldedIcon: typeof PersonShieldedIcon;
|
|
3405
|
+
declare const index_PinIcon: typeof PinIcon;
|
|
3406
|
+
declare const index_PlusCircledIcon: typeof PlusCircledIcon;
|
|
3407
|
+
declare const index_PlusIcon: typeof PlusIcon;
|
|
3408
|
+
declare const index_PrintIcon: typeof PrintIcon;
|
|
3409
|
+
declare const index_PropertyIcon: typeof PropertyIcon;
|
|
3410
|
+
declare const index_PublishIcon: typeof PublishIcon;
|
|
3411
|
+
declare const index_QuestionAnswerIcon: typeof QuestionAnswerIcon;
|
|
3412
|
+
declare const index_ReceiptIcon: typeof ReceiptIcon;
|
|
3413
|
+
declare const index_RedoIcon: typeof RedoIcon;
|
|
3414
|
+
declare const index_RefreshIcon: typeof RefreshIcon;
|
|
3415
|
+
declare const index_ReplayIcon: typeof ReplayIcon;
|
|
3416
|
+
declare const index_SearchIcon: typeof SearchIcon;
|
|
3417
|
+
declare const index_SettingsIcon: typeof SettingsIcon;
|
|
3418
|
+
declare const index_SmsIcon: typeof SmsIcon;
|
|
3419
|
+
declare const index_StarFilledIcon: typeof StarFilledIcon;
|
|
3420
|
+
declare const index_StarHalfFilled: typeof StarHalfFilled;
|
|
3421
|
+
declare const index_StarIcon: typeof StarIcon;
|
|
3422
|
+
declare const index_SyncIcon: typeof SyncIcon;
|
|
3423
|
+
declare const index_Thumbdown: typeof Thumbdown;
|
|
3424
|
+
declare const index_ThumbdownFilled: typeof ThumbdownFilled;
|
|
3425
|
+
declare const index_Thumbup: typeof Thumbup;
|
|
3426
|
+
declare const index_ThumbupFilled: typeof ThumbupFilled;
|
|
3427
|
+
declare const index_TimeIcon: typeof TimeIcon;
|
|
3428
|
+
declare const index_TingrettIcon: typeof TingrettIcon;
|
|
3429
|
+
declare const index_TipIcon: typeof TipIcon;
|
|
3430
|
+
declare const index_TrashIcon: typeof TrashIcon;
|
|
3431
|
+
declare const index_TrendingDownIcon: typeof TrendingDownIcon;
|
|
3432
|
+
declare const index_TrendingUpIcon: typeof TrendingUpIcon;
|
|
3433
|
+
declare const index_TwitterIcon: typeof TwitterIcon;
|
|
3434
|
+
declare const index_UndoIcon: typeof UndoIcon;
|
|
3435
|
+
declare const index_UnfoldLessIcon: typeof UnfoldLessIcon;
|
|
3436
|
+
declare const index_UnfoldMoreIcon: typeof UnfoldMoreIcon;
|
|
3437
|
+
declare const index_UploadIcon: typeof UploadIcon;
|
|
3438
|
+
declare const index_VisibilityOffIcon: typeof VisibilityOffIcon;
|
|
3439
|
+
declare const index_VisibilityOnIcon: typeof VisibilityOnIcon;
|
|
3440
|
+
declare const index_WarningIcon: typeof WarningIcon;
|
|
3441
|
+
declare const index_ZoomInIcon: typeof ZoomInIcon;
|
|
3442
|
+
declare const index_ZoomOutIcon: typeof ZoomOutIcon;
|
|
3443
|
+
declare namespace index {
|
|
3444
|
+
export { index_AddressShieldedIcon as AddressShieldedIcon, index_AgreementIcon as AgreementIcon, index_AppsIcon as AppsIcon, index_ArchiveIcon as ArchiveIcon, index_ArrowDownIcon as ArrowDownIcon, index_ArrowLeftIcon as ArrowLeftIcon, index_ArrowRightIcon as ArrowRightIcon, index_ArrowUpIcon as ArrowUpIcon, index_AttachmentIcon as AttachmentIcon, index_BarChartBoxedIcon as BarChartBoxedIcon, index_BarChartIcon as BarChartIcon, index_BlockIcon as BlockIcon, index_BookIcon as BookIcon, index_BuildCircledIcon as BuildCircledIcon, index_BuildIcon as BuildIcon, index_CalendarIcon as CalendarIcon, index_CalendarMonthIcon as CalendarMonthIcon, index_CalendarViewDayIcon as CalendarViewDayIcon, index_CalendarViewMonthIcon as CalendarViewMonthIcon, index_CalendarViewWeekIcon as CalendarViewWeekIcon, index_CallIcon as CallIcon, index_CaringIcon as CaringIcon, index_ChatIcon as ChatIcon, index_CheckCircledIcon as CheckCircledIcon, index_CheckIcon as CheckIcon, index_ChecklistIcon as ChecklistIcon, index_ChevronDownIcon as ChevronDownIcon, index_ChevronFirstIcon as ChevronFirstIcon, index_ChevronLargeLeftIcon as ChevronLargeLeftIcon, index_ChevronLargeRightIcon as ChevronLargeRightIcon, index_ChevronLastIcon as ChevronLastIcon, index_ChevronLeftIcon as ChevronLeftIcon, index_ChevronRightIcon as ChevronRightIcon, index_ChevronUpIcon as ChevronUpIcon, index_CloseCircledIcon as CloseCircledIcon, index_CloseIcon as CloseIcon, index_CloseSmallIcon as CloseSmallIcon, index_CloudIcon as CloudIcon, index_CollapseIcon as CollapseIcon, index_CommentIcon as CommentIcon, index_CopyIcon as CopyIcon, index_CourtIcon as CourtIcon, index_DateRangeIcon as DateRangeIcon, index_DeathsIcon as DeathsIcon, index_DoubleChevronLeftIcon as DoubleChevronLeftIcon, index_DoubleChevronRightIcon as DoubleChevronRightIcon, index_DownloadDoneIcon as DownloadDoneIcon, index_DownloadIcon as DownloadIcon, index_DragHandleIcon as DragHandleIcon, index_EditIcon as EditIcon, index_ErrorIcon as ErrorIcon, index_ExclaimIcon as ExclaimIcon, index_ExpandIcon as ExpandIcon, index_FacebookIcon as FacebookIcon, index_FamilyIcon as FamilyIcon, index_FeedbackIcon as FeedbackIcon, index_FileAddIcon as FileAddIcon, index_FileIcon as FileIcon, index_FileShieldedIcon as FileShieldedIcon, index_FileTextIcon as FileTextIcon, index_FilterIcon as FilterIcon, index_FilterListIcon as FilterListIcon, index_FilterListOffIcon as FilterListOffIcon, index_FilterOffIcon as FilterOffIcon, index_FindInPageIcon as FindInPageIcon, index_FolderAddIcon as FolderAddIcon, index_FolderIcon as FolderIcon, index_FolderShieldedIcon as FolderShieldedIcon, index_FullscreenExitIcon as FullscreenExitIcon, index_FullscreenIcon as FullscreenIcon, index_GavelIcon as GavelIcon, index_HelpFilledIcon as HelpFilledIcon, index_HelpIcon as HelpIcon, index_HomeIcon as HomeIcon, index_HourglassBottom as HourglassBottom, index_HourglassDisabled as HourglassDisabled, index_HourglassEmpty as HourglassEmpty, index_HourglassFull as HourglassFull, index_HourglassTop as HourglassTop, index_ImageIcon as ImageIcon, index_InfoIcon as InfoIcon, index_InstagramIcon as InstagramIcon, index_JordskifterettIcon as JordskifterettIcon, index_KeyIcon as KeyIcon, index_LagmannsrettIcon as LagmannsrettIcon, index_LanguageIcon as LanguageIcon, index_LibraryAddIcon as LibraryAddIcon, index_LineChartIcon as LineChartIcon, index_LinkIcon as LinkIcon, index_LinkOffIcon as LinkOffIcon, index_LinkedInIcon as LinkedInIcon, index_ListAltIcon as ListAltIcon, index_ListIcon as ListIcon, index_LocationIcon as LocationIcon, index_LockIcon as LockIcon, index_LockOpenIcon as LockOpenIcon, index_LoginIcon as LoginIcon, index_LogoutIcon as LogoutIcon, index_MailIcon as MailIcon, index_MailOpenIcon as MailOpenIcon, index_MenuIcon as MenuIcon, index_MinusCirledIcon as MinusCirledIcon, index_MinusIcon as MinusIcon, index_MoreHorizontalIcon as MoreHorizontalIcon, index_MoreVerticalIcon as MoreVerticalIcon, index_NotarialIcon as NotarialIcon, index_NotificationsIcon as NotificationsIcon, index_NotificationsOffIcon as NotificationsOffIcon, index_OnlineMeetingIcon as OnlineMeetingIcon, index_OpenExternalIcon as OpenExternalIcon, index_PayoutIcon as PayoutIcon, index_PdfIcon as PdfIcon, index_PersonAddIcon as PersonAddIcon, index_PersonIcon as PersonIcon, index_PersonShieldedIcon as PersonShieldedIcon, index_PinIcon as PinIcon, index_PlusCircledIcon as PlusCircledIcon, index_PlusIcon as PlusIcon, index_PrintIcon as PrintIcon, index_PropertyIcon as PropertyIcon, index_PublishIcon as PublishIcon, index_QuestionAnswerIcon as QuestionAnswerIcon, index_ReceiptIcon as ReceiptIcon, index_RedoIcon as RedoIcon, index_RefreshIcon as RefreshIcon, index_ReplayIcon as ReplayIcon, index_SearchIcon as SearchIcon, index_SettingsIcon as SettingsIcon, index_SmsIcon as SmsIcon, index_StarFilledIcon as StarFilledIcon, index_StarHalfFilled as StarHalfFilled, index_StarIcon as StarIcon, index_SyncIcon as SyncIcon, index_Thumbdown as Thumbdown, index_ThumbdownFilled as ThumbdownFilled, index_Thumbup as Thumbup, index_ThumbupFilled as ThumbupFilled, index_TimeIcon as TimeIcon, index_TingrettIcon as TingrettIcon, index_TipIcon as TipIcon, index_TrashIcon as TrashIcon, index_TrendingDownIcon as TrendingDownIcon, index_TrendingUpIcon as TrendingUpIcon, index_TwitterIcon as TwitterIcon, index_UndoIcon as UndoIcon, index_UnfoldLessIcon as UnfoldLessIcon, index_UnfoldMoreIcon as UnfoldMoreIcon, index_UploadIcon as UploadIcon, index_VisibilityOffIcon as VisibilityOffIcon, index_VisibilityOnIcon as VisibilityOnIcon, index_WarningIcon as WarningIcon, index_ZoomInIcon as ZoomInIcon, index_ZoomOutIcon as ZoomOutIcon };
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
/**
|
|
3448
|
+
* Join class names together.
|
|
3449
|
+
* Will filter out all falsy values.
|
|
3450
|
+
*/
|
|
3451
|
+
declare function cn(...classNames: unknown[]): string;
|
|
20
3452
|
|
|
21
3453
|
type EmbeteType = 'jordskifterett' | 'tingrett' | 'lagmannsrett' | 'høyesterett';
|
|
22
3454
|
|
|
@@ -67,17 +3499,16 @@ declare const OverflowMenuList: styled_components.IStyledComponent<"web", {
|
|
|
67
3499
|
accessKey?: string | undefined;
|
|
68
3500
|
autoFocus?: boolean | undefined;
|
|
69
3501
|
className?: string | undefined;
|
|
70
|
-
contentEditable?: "inherit" | (boolean | "
|
|
3502
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
71
3503
|
contextMenu?: string | undefined;
|
|
72
3504
|
dir?: string | undefined;
|
|
73
|
-
draggable?: (boolean | "
|
|
3505
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
74
3506
|
hidden?: boolean | undefined;
|
|
75
3507
|
id?: string | undefined;
|
|
76
3508
|
lang?: string | undefined;
|
|
77
3509
|
nonce?: string | undefined;
|
|
78
|
-
placeholder?: string | undefined;
|
|
79
3510
|
slot?: string | undefined;
|
|
80
|
-
spellCheck?: (boolean | "
|
|
3511
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
81
3512
|
style?: react.CSSProperties | undefined;
|
|
82
3513
|
tabIndex?: number | undefined;
|
|
83
3514
|
title?: string | undefined;
|
|
@@ -110,52 +3541,52 @@ declare const OverflowMenuList: styled_components.IStyledComponent<"web", {
|
|
|
110
3541
|
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
111
3542
|
is?: string | undefined;
|
|
112
3543
|
"aria-activedescendant"?: string | undefined;
|
|
113
|
-
"aria-atomic"?: (boolean | "
|
|
114
|
-
"aria-autocomplete"?: "list" | "none" | "
|
|
3544
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
3545
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
115
3546
|
"aria-braillelabel"?: string | undefined;
|
|
116
3547
|
"aria-brailleroledescription"?: string | undefined;
|
|
117
|
-
"aria-busy"?: (boolean | "
|
|
118
|
-
"aria-checked"?: boolean | "
|
|
3548
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
3549
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
119
3550
|
"aria-colcount"?: number | undefined;
|
|
120
3551
|
"aria-colindex"?: number | undefined;
|
|
121
3552
|
"aria-colindextext"?: string | undefined;
|
|
122
3553
|
"aria-colspan"?: number | undefined;
|
|
123
3554
|
"aria-controls"?: string | undefined;
|
|
124
|
-
"aria-current"?: boolean | "time" | "step" | "
|
|
3555
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
125
3556
|
"aria-describedby"?: string | undefined;
|
|
126
3557
|
"aria-description"?: string | undefined;
|
|
127
3558
|
"aria-details"?: string | undefined;
|
|
128
|
-
"aria-disabled"?: (boolean | "
|
|
129
|
-
"aria-dropeffect"?: "link" | "none" | "copy" | "
|
|
3559
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
3560
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
130
3561
|
"aria-errormessage"?: string | undefined;
|
|
131
|
-
"aria-expanded"?: (boolean | "
|
|
3562
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
132
3563
|
"aria-flowto"?: string | undefined;
|
|
133
|
-
"aria-grabbed"?: (boolean | "
|
|
134
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
135
|
-
"aria-hidden"?: (boolean | "
|
|
136
|
-
"aria-invalid"?: boolean | "
|
|
3564
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
3565
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
3566
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
3567
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
137
3568
|
"aria-keyshortcuts"?: string | undefined;
|
|
138
3569
|
"aria-label"?: string | undefined;
|
|
139
3570
|
"aria-labelledby"?: string | undefined;
|
|
140
3571
|
"aria-level"?: number | undefined;
|
|
141
3572
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
142
|
-
"aria-modal"?: (boolean | "
|
|
143
|
-
"aria-multiline"?: (boolean | "
|
|
144
|
-
"aria-multiselectable"?: (boolean | "
|
|
3573
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
3574
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
3575
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
145
3576
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
146
3577
|
"aria-owns"?: string | undefined;
|
|
147
3578
|
"aria-placeholder"?: string | undefined;
|
|
148
3579
|
"aria-posinset"?: number | undefined;
|
|
149
|
-
"aria-pressed"?: boolean | "
|
|
150
|
-
"aria-readonly"?: (boolean | "
|
|
151
|
-
"aria-relevant"?: "text" | "
|
|
152
|
-
"aria-required"?: (boolean | "
|
|
3580
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3581
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
3582
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
3583
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
153
3584
|
"aria-roledescription"?: string | undefined;
|
|
154
3585
|
"aria-rowcount"?: number | undefined;
|
|
155
3586
|
"aria-rowindex"?: number | undefined;
|
|
156
3587
|
"aria-rowindextext"?: string | undefined;
|
|
157
3588
|
"aria-rowspan"?: number | undefined;
|
|
158
|
-
"aria-selected"?: (boolean | "
|
|
3589
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
159
3590
|
"aria-setsize"?: number | undefined;
|
|
160
3591
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
161
3592
|
"aria-valuemax"?: number | undefined;
|
|
@@ -340,7 +3771,7 @@ declare const OverflowMenu: react.ForwardRefExoticComponent<Pick<react.HTMLAttri
|
|
|
340
3771
|
onClose?: (() => void) | undefined;
|
|
341
3772
|
onToggle?: (() => void) | undefined;
|
|
342
3773
|
anchorRef?: react.RefObject<HTMLButtonElement> | undefined;
|
|
343
|
-
placement?:
|
|
3774
|
+
placement?: Placement | undefined;
|
|
344
3775
|
offset?: number | undefined;
|
|
345
3776
|
} & {
|
|
346
3777
|
htmlProps?: react.HTMLAttributes<HTMLDivElement> | undefined;
|
|
@@ -558,6 +3989,20 @@ declare const CheckboxGroup: {
|
|
|
558
3989
|
displayName: string;
|
|
559
3990
|
};
|
|
560
3991
|
|
|
3992
|
+
type IconSize = 'small' | 'medium' | 'large' | 'inherit';
|
|
3993
|
+
type IconProps = BaseComponentProps<SVGSVGElement, {
|
|
3994
|
+
/**Ikonet importert fra `@norges-domstoler/dds-components`. */
|
|
3995
|
+
icon: SvgIcon;
|
|
3996
|
+
/**Størrelsen på ikonet. */
|
|
3997
|
+
iconSize?: IconSize;
|
|
3998
|
+
/**Fargen på ikonet. */
|
|
3999
|
+
color?: Property.Color;
|
|
4000
|
+
}>;
|
|
4001
|
+
declare function Icon(props: IconProps): JSX.Element;
|
|
4002
|
+
declare namespace Icon {
|
|
4003
|
+
var displayName: string;
|
|
4004
|
+
}
|
|
4005
|
+
|
|
561
4006
|
type ButtonPurpose = 'primary' | 'secondary' | 'danger';
|
|
562
4007
|
type ButtonSize = 'tiny' | 'small' | 'medium' | 'large';
|
|
563
4008
|
type ButtonAppearance = 'filled' | 'ghost' | 'rounded' | 'borderless';
|
|
@@ -602,12 +4047,12 @@ declare const Button: react.ForwardRefExoticComponent<Pick<Omit<react.ButtonHTML
|
|
|
602
4047
|
appearance?: ButtonAppearance | undefined;
|
|
603
4048
|
loading?: boolean | undefined;
|
|
604
4049
|
loadingTooltip?: string | undefined;
|
|
605
|
-
icon?:
|
|
4050
|
+
icon?: SvgIcon | undefined;
|
|
606
4051
|
fullWidth?: boolean | undefined;
|
|
607
4052
|
href?: string | undefined;
|
|
608
4053
|
target?: string | undefined;
|
|
609
4054
|
} & {
|
|
610
|
-
type?: "button" | "
|
|
4055
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
611
4056
|
onFocus?: react.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
612
4057
|
onBlur?: react.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
613
4058
|
onClick?: react.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -615,11 +4060,11 @@ declare const Button: react.ForwardRefExoticComponent<Pick<Omit<react.ButtonHTML
|
|
|
615
4060
|
htmlProps?: Omit<react.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "onFocus" | "onBlur" | "onClick"> | undefined;
|
|
616
4061
|
} & react.RefAttributes<HTMLButtonElement>>;
|
|
617
4062
|
|
|
618
|
-
declare const TextInput: react__default.ForwardRefExoticComponent<
|
|
4063
|
+
declare const TextInput: react__default.ForwardRefExoticComponent<CommonInputProps & {
|
|
619
4064
|
componentSize?: InputSize | undefined;
|
|
620
4065
|
} & react__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
621
4066
|
withCharacterCounter?: boolean | undefined;
|
|
622
|
-
icon?:
|
|
4067
|
+
icon?: SvgIcon | undefined;
|
|
623
4068
|
prefix?: string | undefined;
|
|
624
4069
|
suffix?: string | undefined;
|
|
625
4070
|
} & react__default.RefAttributes<HTMLInputElement>>;
|
|
@@ -1062,7 +4507,7 @@ declare const DescriptionList: react.ForwardRefExoticComponent<Pick<react.HTMLAt
|
|
|
1062
4507
|
/**Setter flex-direction. NB! Fungerer kun ved bruk av `DescriptionListGroup` som barn av `DescriptionList`.
|
|
1063
4508
|
* @default "column"
|
|
1064
4509
|
*/
|
|
1065
|
-
direction?: "
|
|
4510
|
+
direction?: "row" | "column" | undefined;
|
|
1066
4511
|
} & {
|
|
1067
4512
|
children?: react.ReactNode;
|
|
1068
4513
|
} & {
|
|
@@ -1106,6 +4551,9 @@ declare const DescriptionListGroup: react.ForwardRefExoticComponent<Pick<react.H
|
|
|
1106
4551
|
htmlProps?: react.HTMLAttributes<HTMLDivElement> | undefined;
|
|
1107
4552
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
1108
4553
|
|
|
4554
|
+
type DDSTextColor = 'interactive' | 'primary' | 'danger' | 'warning' | 'success' | 'onLight' | 'onDark' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'gray6' | 'gray7' | 'gray8' | 'gray9';
|
|
4555
|
+
type TextColor = DDSTextColor | Property.Color;
|
|
4556
|
+
|
|
1109
4557
|
type SpinnerProps = BaseComponentProps<SVGElement, {
|
|
1110
4558
|
/**Farge på spinneren. */
|
|
1111
4559
|
color?: TextColor | (string & NonNullable<unknown>);
|
|
@@ -1160,63 +4608,23 @@ declare const CardAccordion: react.ForwardRefExoticComponent<Pick<react.HTMLAttr
|
|
|
1160
4608
|
htmlProps?: react.HTMLAttributes<HTMLDivElement> | undefined;
|
|
1161
4609
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
1162
4610
|
|
|
1163
|
-
type CardAccordionHeaderProps = BaseComponentPropsWithChildren<HTMLButtonElement, {
|
|
1164
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller body er utvidet. */
|
|
1165
|
-
isExpanded?: boolean;
|
|
1166
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Callback for å styre utvidelse og sammentrukking. */
|
|
1167
|
-
toggleExpanded?: () => void;
|
|
1168
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller `id` til `<CardAccordionBody />`. */
|
|
1169
|
-
bodyId?: string;
|
|
4611
|
+
type CardAccordionHeaderProps = Omit<BaseComponentPropsWithChildren<HTMLButtonElement, {
|
|
1170
4612
|
/**Overskriver default padding. */
|
|
1171
4613
|
padding?: Property.Padding<string>;
|
|
1172
4614
|
/**Overskriver default teksttype. */
|
|
1173
4615
|
typographyType?: StaticTypographyType;
|
|
1174
4616
|
/**Angir om teksten skal være i "bold"-format. */
|
|
1175
4617
|
bold?: boolean;
|
|
1176
|
-
}, ButtonHTMLAttributes<HTMLButtonElement
|
|
1177
|
-
declare const CardAccordionHeader: react.ForwardRefExoticComponent<
|
|
1178
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller body er utvidet. */
|
|
1179
|
-
isExpanded?: boolean | undefined;
|
|
1180
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Callback for å styre utvidelse og sammentrukking. */
|
|
1181
|
-
toggleExpanded?: (() => void) | undefined;
|
|
1182
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller `id` til `<CardAccordionBody />`. */
|
|
1183
|
-
bodyId?: string | undefined;
|
|
1184
|
-
/**Overskriver default padding. */
|
|
1185
|
-
padding?: Property.Padding<string> | undefined;
|
|
1186
|
-
/**Overskriver default teksttype. */
|
|
1187
|
-
typographyType?: StaticTypographyType | undefined;
|
|
1188
|
-
/**Angir om teksten skal være i "bold"-format. */
|
|
1189
|
-
bold?: boolean | undefined;
|
|
1190
|
-
} & {
|
|
1191
|
-
children?: react.ReactNode;
|
|
1192
|
-
} & {
|
|
1193
|
-
htmlProps?: ButtonHTMLAttributes<HTMLButtonElement> | undefined;
|
|
1194
|
-
} & react.RefAttributes<HTMLButtonElement>>;
|
|
4618
|
+
}, ButtonHTMLAttributes<HTMLButtonElement>>, 'id'>;
|
|
4619
|
+
declare const CardAccordionHeader: react.ForwardRefExoticComponent<CardAccordionHeaderProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1195
4620
|
|
|
1196
|
-
type CardAccordionBodyProps = BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
1197
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller komponenten om den skal utvides. */
|
|
1198
|
-
isExpanded?: boolean;
|
|
1199
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller `id` til `<CardAccordionHeader />`. */
|
|
1200
|
-
headerId?: string;
|
|
4621
|
+
type CardAccordionBodyProps = Omit<BaseComponentPropsWithChildren<HTMLDivElement, {
|
|
1201
4622
|
/**Overskriver default padding på toppen. Brukes når barn har spacing på toppen, f.eks. en overskrift. */
|
|
1202
4623
|
paddingTop?: Property.PaddingTop<string>;
|
|
1203
4624
|
/**Overskriver default padding. */
|
|
1204
4625
|
padding?: Property.Padding<string>;
|
|
1205
|
-
}>;
|
|
1206
|
-
declare const CardAccordionBody: react.ForwardRefExoticComponent<
|
|
1207
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller komponenten om den skal utvides. */
|
|
1208
|
-
isExpanded?: boolean | undefined;
|
|
1209
|
-
/** **OBS!** denne propen blir satt automatisk av forelder. Forteller `id` til `<CardAccordionHeader />`. */
|
|
1210
|
-
headerId?: string | undefined;
|
|
1211
|
-
/**Overskriver default padding på toppen. Brukes når barn har spacing på toppen, f.eks. en overskrift. */
|
|
1212
|
-
paddingTop?: Property.PaddingTop<string> | undefined;
|
|
1213
|
-
/**Overskriver default padding. */
|
|
1214
|
-
padding?: Property.Padding<string> | undefined;
|
|
1215
|
-
} & {
|
|
1216
|
-
children?: react.ReactNode;
|
|
1217
|
-
} & {
|
|
1218
|
-
htmlProps?: react.HTMLAttributes<HTMLDivElement> | undefined;
|
|
1219
|
-
} & react.RefAttributes<HTMLDivElement>>;
|
|
4626
|
+
}>, 'id'>;
|
|
4627
|
+
declare const CardAccordionBody: react.ForwardRefExoticComponent<CardAccordionBodyProps & react.RefAttributes<HTMLDivElement>>;
|
|
1220
4628
|
|
|
1221
4629
|
type NavigationLinkProps = {
|
|
1222
4630
|
href: string;
|
|
@@ -1291,7 +4699,7 @@ type TooltipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
1291
4699
|
/**Innhold i tooltip. */
|
|
1292
4700
|
text: string;
|
|
1293
4701
|
/**Plassering i forhold til anchor-elementet. */
|
|
1294
|
-
placement?: Placement;
|
|
4702
|
+
placement?: Placement$1;
|
|
1295
4703
|
/**Anchor-elementet. */
|
|
1296
4704
|
children: AnchorElement;
|
|
1297
4705
|
/**Forsinkelse for når tooltip skal dukke opp. Oppgis i millisekunder. */
|
|
@@ -1303,7 +4711,7 @@ declare const Tooltip: react__default.ForwardRefExoticComponent<Pick<Omit<react_
|
|
|
1303
4711
|
/**Innhold i tooltip. */
|
|
1304
4712
|
text: string;
|
|
1305
4713
|
/**Plassering i forhold til anchor-elementet. */
|
|
1306
|
-
placement?: Placement | undefined;
|
|
4714
|
+
placement?: Placement$1 | undefined;
|
|
1307
4715
|
/**Anchor-elementet. */
|
|
1308
4716
|
children: AnchorElement;
|
|
1309
4717
|
/**Forsinkelse for når tooltip skal dukke opp. Oppgis i millisekunder. */
|
|
@@ -1522,7 +4930,7 @@ declare const InputMessage: react.ForwardRefExoticComponent<Pick<react.HTMLAttri
|
|
|
1522
4930
|
|
|
1523
4931
|
declare const ToggleButton: react.ForwardRefExoticComponent<Pick<Omit<react.InputHTMLAttributes<HTMLInputElement>, "name" | "aria-describedby" | "onBlur" | "onChange" | "defaultChecked" | "defaultValue" | "value" | "checked">, "className" | "id"> & {
|
|
1524
4932
|
label?: string | undefined;
|
|
1525
|
-
icon?:
|
|
4933
|
+
icon?: SvgIcon | undefined;
|
|
1526
4934
|
} & CheckboxPickedHTMLAttributes & {
|
|
1527
4935
|
htmlProps?: Omit<react.InputHTMLAttributes<HTMLInputElement>, "name" | "aria-describedby" | "onBlur" | "onChange" | "defaultChecked" | "defaultValue" | "value" | "checked"> | undefined;
|
|
1528
4936
|
} & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -1906,16 +5314,16 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
1906
5314
|
accessKey?: string | undefined;
|
|
1907
5315
|
autoFocus?: boolean | undefined;
|
|
1908
5316
|
className?: string | undefined;
|
|
1909
|
-
contentEditable?: "inherit" | (boolean | "
|
|
5317
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
1910
5318
|
contextMenu?: string | undefined;
|
|
1911
5319
|
dir?: string | undefined;
|
|
1912
|
-
draggable?: (boolean | "
|
|
5320
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1913
5321
|
hidden?: boolean | undefined;
|
|
1914
5322
|
id?: string | undefined;
|
|
1915
5323
|
lang?: string | undefined;
|
|
1916
5324
|
nonce?: string | undefined;
|
|
1917
5325
|
slot?: string | undefined;
|
|
1918
|
-
spellCheck?: (boolean | "
|
|
5326
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1919
5327
|
style?: react.CSSProperties | undefined;
|
|
1920
5328
|
tabIndex?: number | undefined;
|
|
1921
5329
|
title?: string | undefined;
|
|
@@ -1948,52 +5356,52 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
1948
5356
|
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1949
5357
|
is?: string | undefined;
|
|
1950
5358
|
"aria-activedescendant"?: string | undefined;
|
|
1951
|
-
"aria-atomic"?: (boolean | "
|
|
1952
|
-
"aria-autocomplete"?: "list" | "none" | "
|
|
5359
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
5360
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1953
5361
|
"aria-braillelabel"?: string | undefined;
|
|
1954
5362
|
"aria-brailleroledescription"?: string | undefined;
|
|
1955
|
-
"aria-busy"?: (boolean | "
|
|
1956
|
-
"aria-checked"?: boolean | "
|
|
5363
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
5364
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1957
5365
|
"aria-colcount"?: number | undefined;
|
|
1958
5366
|
"aria-colindex"?: number | undefined;
|
|
1959
5367
|
"aria-colindextext"?: string | undefined;
|
|
1960
5368
|
"aria-colspan"?: number | undefined;
|
|
1961
5369
|
"aria-controls"?: string | undefined;
|
|
1962
|
-
"aria-current"?: boolean | "time" | "step" | "
|
|
5370
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1963
5371
|
"aria-describedby"?: string | undefined;
|
|
1964
5372
|
"aria-description"?: string | undefined;
|
|
1965
5373
|
"aria-details"?: string | undefined;
|
|
1966
|
-
"aria-disabled"?: (boolean | "
|
|
1967
|
-
"aria-dropeffect"?: "link" | "none" | "copy" | "
|
|
5374
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
5375
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1968
5376
|
"aria-errormessage"?: string | undefined;
|
|
1969
|
-
"aria-expanded"?: (boolean | "
|
|
5377
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1970
5378
|
"aria-flowto"?: string | undefined;
|
|
1971
|
-
"aria-grabbed"?: (boolean | "
|
|
1972
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
1973
|
-
"aria-hidden"?: (boolean | "
|
|
1974
|
-
"aria-invalid"?: boolean | "
|
|
5379
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
5380
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
5381
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
5382
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1975
5383
|
"aria-keyshortcuts"?: string | undefined;
|
|
1976
5384
|
"aria-label"?: string | undefined;
|
|
1977
5385
|
"aria-labelledby"?: string | undefined;
|
|
1978
5386
|
"aria-level"?: number | undefined;
|
|
1979
5387
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1980
|
-
"aria-modal"?: (boolean | "
|
|
1981
|
-
"aria-multiline"?: (boolean | "
|
|
1982
|
-
"aria-multiselectable"?: (boolean | "
|
|
5388
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
5389
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
5390
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1983
5391
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1984
5392
|
"aria-owns"?: string | undefined;
|
|
1985
5393
|
"aria-placeholder"?: string | undefined;
|
|
1986
5394
|
"aria-posinset"?: number | undefined;
|
|
1987
|
-
"aria-pressed"?: boolean | "
|
|
1988
|
-
"aria-readonly"?: (boolean | "
|
|
1989
|
-
"aria-relevant"?: "text" | "
|
|
1990
|
-
"aria-required"?: (boolean | "
|
|
5395
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
5396
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
5397
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
5398
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1991
5399
|
"aria-roledescription"?: string | undefined;
|
|
1992
5400
|
"aria-rowcount"?: number | undefined;
|
|
1993
5401
|
"aria-rowindex"?: number | undefined;
|
|
1994
5402
|
"aria-rowindextext"?: string | undefined;
|
|
1995
5403
|
"aria-rowspan"?: number | undefined;
|
|
1996
|
-
"aria-selected"?: (boolean | "
|
|
5404
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1997
5405
|
"aria-setsize"?: number | undefined;
|
|
1998
5406
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1999
5407
|
"aria-valuemax"?: number | undefined;
|
|
@@ -2209,16 +5617,16 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
2209
5617
|
accessKey?: string | undefined;
|
|
2210
5618
|
autoFocus?: boolean | undefined;
|
|
2211
5619
|
className?: string | undefined;
|
|
2212
|
-
contentEditable?: "inherit" | (boolean | "
|
|
5620
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
2213
5621
|
contextMenu?: string | undefined;
|
|
2214
5622
|
dir?: string | undefined;
|
|
2215
|
-
draggable?: (boolean | "
|
|
5623
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2216
5624
|
hidden?: boolean | undefined;
|
|
2217
5625
|
id?: string | undefined;
|
|
2218
5626
|
lang?: string | undefined;
|
|
2219
5627
|
nonce?: string | undefined;
|
|
2220
5628
|
slot?: string | undefined;
|
|
2221
|
-
spellCheck?: (boolean | "
|
|
5629
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2222
5630
|
style?: react.CSSProperties | undefined;
|
|
2223
5631
|
tabIndex?: number | undefined;
|
|
2224
5632
|
title?: string | undefined;
|
|
@@ -2251,52 +5659,52 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
2251
5659
|
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
2252
5660
|
is?: string | undefined;
|
|
2253
5661
|
"aria-activedescendant"?: string | undefined;
|
|
2254
|
-
"aria-atomic"?: (boolean | "
|
|
2255
|
-
"aria-autocomplete"?: "list" | "none" | "
|
|
5662
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
5663
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2256
5664
|
"aria-braillelabel"?: string | undefined;
|
|
2257
5665
|
"aria-brailleroledescription"?: string | undefined;
|
|
2258
|
-
"aria-busy"?: (boolean | "
|
|
2259
|
-
"aria-checked"?: boolean | "
|
|
5666
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
5667
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2260
5668
|
"aria-colcount"?: number | undefined;
|
|
2261
5669
|
"aria-colindex"?: number | undefined;
|
|
2262
5670
|
"aria-colindextext"?: string | undefined;
|
|
2263
5671
|
"aria-colspan"?: number | undefined;
|
|
2264
5672
|
"aria-controls"?: string | undefined;
|
|
2265
|
-
"aria-current"?: boolean | "time" | "step" | "
|
|
5673
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2266
5674
|
"aria-describedby"?: string | undefined;
|
|
2267
5675
|
"aria-description"?: string | undefined;
|
|
2268
5676
|
"aria-details"?: string | undefined;
|
|
2269
|
-
"aria-disabled"?: (boolean | "
|
|
2270
|
-
"aria-dropeffect"?: "link" | "none" | "copy" | "
|
|
5677
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
5678
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2271
5679
|
"aria-errormessage"?: string | undefined;
|
|
2272
|
-
"aria-expanded"?: (boolean | "
|
|
5680
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2273
5681
|
"aria-flowto"?: string | undefined;
|
|
2274
|
-
"aria-grabbed"?: (boolean | "
|
|
2275
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
2276
|
-
"aria-hidden"?: (boolean | "
|
|
2277
|
-
"aria-invalid"?: boolean | "
|
|
5682
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
5683
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
5684
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
5685
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2278
5686
|
"aria-keyshortcuts"?: string | undefined;
|
|
2279
5687
|
"aria-label"?: string | undefined;
|
|
2280
5688
|
"aria-labelledby"?: string | undefined;
|
|
2281
5689
|
"aria-level"?: number | undefined;
|
|
2282
5690
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2283
|
-
"aria-modal"?: (boolean | "
|
|
2284
|
-
"aria-multiline"?: (boolean | "
|
|
2285
|
-
"aria-multiselectable"?: (boolean | "
|
|
5691
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
5692
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
5693
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2286
5694
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2287
5695
|
"aria-owns"?: string | undefined;
|
|
2288
5696
|
"aria-placeholder"?: string | undefined;
|
|
2289
5697
|
"aria-posinset"?: number | undefined;
|
|
2290
|
-
"aria-pressed"?: boolean | "
|
|
2291
|
-
"aria-readonly"?: (boolean | "
|
|
2292
|
-
"aria-relevant"?: "text" | "
|
|
2293
|
-
"aria-required"?: (boolean | "
|
|
5698
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
5699
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
5700
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
5701
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2294
5702
|
"aria-roledescription"?: string | undefined;
|
|
2295
5703
|
"aria-rowcount"?: number | undefined;
|
|
2296
5704
|
"aria-rowindex"?: number | undefined;
|
|
2297
5705
|
"aria-rowindextext"?: string | undefined;
|
|
2298
5706
|
"aria-rowspan"?: number | undefined;
|
|
2299
|
-
"aria-selected"?: (boolean | "
|
|
5707
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2300
5708
|
"aria-setsize"?: number | undefined;
|
|
2301
5709
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2302
5710
|
"aria-valuemax"?: number | undefined;
|
|
@@ -2469,7 +5877,7 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
2469
5877
|
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2470
5878
|
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2471
5879
|
}>;
|
|
2472
|
-
declare const TextArea: react.ForwardRefExoticComponent<
|
|
5880
|
+
declare const TextArea: react.ForwardRefExoticComponent<CommonInputProps & react.TextareaHTMLAttributes<HTMLTextAreaElement> & react.RefAttributes<HTMLTextAreaElement>>;
|
|
2473
5881
|
|
|
2474
5882
|
type TextAreaProps = CommonInputProps & TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
2475
5883
|
|
|
@@ -2644,4 +6052,4 @@ type Layout = 'vertical' | 'horizontal';
|
|
|
2644
6052
|
|
|
2645
6053
|
declare const Feedback: ({ layout, ratingLabel, positiveFeedbackLabel, negativeFeedbackLabel, ratingSubmittedTitle, submittedTitle, ratingValue: ratingProp, feedbackTextValue: feedbackTextProp, thumbUpTooltip, thumbDownTooltip, feedbackTextAreaExcluded, loading, isSubmitted: isSubmittedProp, onRating, onFeedbackTextChange, onSubmit, }: FeedbackProps) => react_jsx_runtime.JSX.Element;
|
|
2646
6054
|
|
|
2647
|
-
export { AppShell, type AppShellProps, BackLink, type BackLinkProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonAppearance, type ButtonProps$1 as ButtonProps, type ButtonPurpose, type ButtonSize, Card, CardAccordion, CardAccordionBody, type CardAccordionBodyProps, CardAccordionHeader, type CardAccordionHeaderProps, type CardAccordionProps, type CardColor, type CardProps, type CardType, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxPickedHTMLAttributes, type CheckboxProps, Chip, ChipGroup, type ChipGroupProps, type ChipProps, CollapsibleTable, type CollapsibleTableProps, type ColumnsOccupied, Container, Datepicker, type DatepickerProps, DescriptionList, type DescriptionListAppearance, DescriptionListDesc, type DescriptionListDescProps, DescriptionListGroup, type DescriptionListGroupProps, type DescriptionListProps, DescriptionListTerm, type DescriptionListTermProps, Divider, type DividerColor, type DividerProps, Drawer, DrawerGroup, type DrawerGroupProps, type DrawerPlacement, type DrawerProps, type DrawerSize, EmptyContent, type EmptyContentProps, type ExpandableCardProps, Feedback, type FeedbackProps, FileUploader, GlobalMessage, type GlobalMessageProps, type GlobalMessagePurpose, Grid, GridChild, type GridChildProps, type GridProps, HStack, type IconPosition, type InfoCardProps, InlineEditInput, type InlineEditInputProps, InlineEditTextArea, type InlineEditTextAreaProps, InputMessage, type InputMessageProps, type InputMessageType, InternalHeader, type InternalHeaderProps, type Layout, List, ListItem, type ListItemProps, type ListProps, type ListType, type ListTypographyType, LocalMessage, type LocalMessageLayout, type LocalMessageProps, type LocalMessagePurpose, Modal, ModalActions, type ModalActionsProps, ModalBody, type ModalBodyProps, type ModalProps, type NavigationCardProps, OverflowMenu, type OverflowMenuButtonItem, type OverflowMenuContextItem, OverflowMenuGroup, type OverflowMenuGroupProps, type OverflowMenuLinkItem, OverflowMenuList, type OverflowMenuNavItem, type OverflowMenuProps, Pagination, type PaginationOption, type PaginationProps, Popover, PopoverGroup, type PopoverGroupProps, type PopoverProps, type PopoverSizeProps, ProgressTracker, RadioButton, RadioButtonGroup, type RadioButtonGroupProps, type RadioButtonProps, type Rating, ScrollableContainer, type ScrollableContainerProps, Scrollbar, type ScrollbarProps, Search, type SearchAutocompleteWrapperProps, type SearchData, type SearchProps, type SearchSize, type SearchSuggestionsProps, Select, type SelectOption, type SelectProps, SkipToContent, type SkipToContentProps, type SortOrder, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, type SplitButtonPurpose, type StackProps, type StackStyleProps, StyledTextArea, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, TabPanels, type TabPanelsProps, type TabProps, Table, type TableBodyProps, type TableCellLayout, type TableCellProps, type TableCellType, type TableDensity, type TableFootProps, type TableHeadProps, type TableProps, type TableRowProps, type TableRowType, type TableSortCellProps, Tabs, type TabsProps, Tag, type TagProps, type TagPurpose, type TextAffixProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, ToggleBar, type ToggleBarProps, type ToggleBarSize, type ToggleBarValue, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, ToggleRadio, type ToggleRadioProps, Tooltip, type TooltipProps, VStack, VisuallyHidden, type VisuallyHiddenProps, type WeightedSearchData, type WidthProps, createSelectOptions, isGridColumn, isRelativeGridColumn, scrollbarStyling };
|
|
6055
|
+
export { AddressShieldedIcon, AgreementIcon, type AnchorTypographyType, AnimatedChevronUpDown, AppShell, type AppShellProps, AppsIcon, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, type As, AttachmentIcon, BackLink, type BackLinkProps, BarChartBoxedIcon, BarChartIcon, type BaseComponentProps, type BaseComponentPropsWithChildren, type BaseTypographyProps, BlockIcon, BookIcon, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, type BreakpointBasedProps, BuildCircledIcon, BuildIcon, Button, type ButtonAppearance, type ButtonProps$1 as ButtonProps, type ButtonPurpose, type ButtonSize, CalendarIcon, CalendarMonthIcon, CalendarViewDayIcon, CalendarViewMonthIcon, CalendarViewWeekIcon, CallIcon, type Callback, Caption, type CaptionProps, Card, CardAccordion, CardAccordionBody, type CardAccordionBodyProps, CardAccordionHeader, type CardAccordionHeaderProps, type CardAccordionProps, type CardColor, type CardProps, type CardType, CaringIcon, ChatIcon, CheckCircledIcon, CheckIcon, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxPickedHTMLAttributes, type CheckboxProps, ChecklistIcon, ChevronDownIcon, ChevronFirstIcon, ChevronLargeLeftIcon, ChevronLargeRightIcon, ChevronLastIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, ChipGroup, type ChipGroupProps, type ChipProps, CloseCircledIcon, CloseIcon, CloseSmallIcon, CloudIcon, CollapseIcon, CollapsibleTable, type CollapsibleTableProps, type ColumnsOccupied, CommentIcon, type CommonInputProps, Container, CopyIcon, CourtIcon, DateRangeIcon, Datepicker, type DatepickerProps, DeathsIcon, DescriptionList, type DescriptionListAppearance, DescriptionListDesc, type DescriptionListDescProps, DescriptionListGroup, type DescriptionListGroupProps, type DescriptionListProps, DescriptionListTerm, type DescriptionListTermProps, type Direction$1 as Direction, Divider, type DividerColor, type DividerProps, DoubleChevronLeftIcon, DoubleChevronRightIcon, DownloadDoneIcon, DownloadIcon, DragHandleIcon, Drawer, DrawerGroup, type DrawerGroupProps, type DrawerPlacement, type DrawerProps, type DrawerSize, EditIcon, EmptyContent, type EmptyContentProps, ErrorIcon, ExclaimIcon, ExpandIcon, type ExpandableCardProps, type ExtractStrict, FacebookIcon, FamilyIcon, Feedback, FeedbackIcon, type FeedbackProps, FileAddIcon, FileIcon, FileShieldedIcon, FileTextIcon, FileUploader, FilterIcon, FilterListIcon, FilterListOffIcon, FilterOffIcon, FindInPageIcon, FolderAddIcon, FolderIcon, FolderShieldedIcon, FullscreenExitIcon, FullscreenIcon, GavelIcon, GlobalMessage, type GlobalMessageProps, type GlobalMessagePurpose, Grid, GridChild, type GridChildProps, type GridProps, HStack, Heading, type HeadingLevel, type HeadingProps, HelpFilledIcon, HelpIcon, HiddenInput, HomeIcon, HourglassBottom, HourglassDisabled, HourglassEmpty, HourglassFull, HourglassTop, Icon, type IconPosition, type IconProps, type IconSize, ImageIcon, type InfoCardProps, InfoIcon, InlineEditInput, type InlineEditInputProps, InlineEditTextArea, type InlineEditTextAreaProps, type InlineElement, Input, InputAffixContainer, InputContainer, InputMessage, type InputMessageProps, type InputMessageType, type InputProps, type InputSize, type InputTypographyTypes, InstagramIcon, InternalHeader, type InternalHeaderProps, JordskifterettIcon, KeyIcon, Label, type LabelProps, type LabelTypographyType, LagmannsrettIcon, LanguageIcon, type Layout, Legend, type LegendProps, LibraryAddIcon, LineChartIcon, Link, LinkIcon, LinkOffIcon, type LinkProps, LinkedInIcon, List, ListAltIcon, ListIcon, ListItem, type ListItemProps, type ListProps, type ListType, type ListTypographyType, LocalMessage, type LocalMessageLayout, type LocalMessageProps, type LocalMessagePurpose, LocationIcon, LockIcon, LockOpenIcon, LoginIcon, LogoutIcon, MailIcon, MailOpenIcon, MenuIcon, MinusCirledIcon, MinusIcon, Modal, ModalActions, type ModalActionsProps, ModalBody, type ModalBodyProps, type ModalProps, MoreHorizontalIcon, MoreVerticalIcon, type NavigationCardProps, NotarialIcon, NotificationsIcon, NotificationsOffIcon, type Nullable, OnlineMeetingIcon, OpenExternalIcon, type OtherTypographyType, OuterInputContainer, OverflowMenu, type OverflowMenuButtonItem, type OverflowMenuContextItem, OverflowMenuGroup, type OverflowMenuGroupProps, type OverflowMenuLinkItem, OverflowMenuList, type OverflowMenuNavItem, type OverflowMenuProps, Pagination, type PaginationOption, type PaginationProps, Paper, type PaperProps, Paragraph, type ParagraphProps, PayoutIcon, PdfIcon, PersonAddIcon, PersonIcon, PersonShieldedIcon, PinIcon, type Placement, PlusCircledIcon, PlusIcon, Popover, PopoverGroup, type PopoverGroupProps, type PopoverProps, type PopoverSizeProps, PrintIcon, ProgressTracker, PropertyIcon, type PropsOf, PublishIcon, QuestionAnswerIcon, RadioButton, RadioButtonGroup, type RadioButtonGroupProps, type RadioButtonProps, type Rating, ReceiptIcon, RedoIcon, RefreshIcon, ReplayIcon, RequiredMarker, ScreenSize, type ScreenSizeLiteral, ScrollableContainer, type ScrollableContainerProps, Scrollbar, type ScrollbarProps, Search, type SearchAutocompleteWrapperProps, type SearchData, SearchIcon, type SearchProps, type SearchSize, type SearchSuggestionsProps, Select, type SelectOption, type SelectProps, SettingsIcon, SkipToContent, type SkipToContentProps, SmsIcon, type SortOrder, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, type SplitButtonPurpose, type StackProps, type StackStyleProps, StarFilledIcon, StarHalfFilled, StarIcon, StatefulInput, type StaticTypographyType, type StyledCommonInputProps, type StyledInputProps, StyledSvg, StyledTextArea, type SvgIcon, type SvgProps, SyncIcon, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, TabPanels, type TabPanelsProps, type TabProps, Table, type TableBodyProps, type TableCellLayout, type TableCellProps, type TableCellType, type TableDensity, type TableFootProps, type TableHeadProps, type TableProps, type TableRowProps, type TableRowType, type TableSortCellProps, Tabs, type TabsProps, Tag, type TagProps, type TagPurpose, type TextAffixProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, TextOverflowEllipsisInner, TextOverflowEllipsisWrapper, Thumbdown, ThumbdownFilled, Thumbup, ThumbupFilled, TimeIcon, TingrettIcon, TipIcon, ToggleBar, type ToggleBarProps, type ToggleBarSize, type ToggleBarValue, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, ToggleRadio, type ToggleRadioProps, Tooltip, type TooltipProps, TrashIcon, TrendingDownIcon, TrendingUpIcon, TwitterIcon, Typography, type TypographyBodyType, type TypographyComponentProps, type TypographyHeadingType, type TypographyInteractionStyling, type TypographyLeadType, type TypographyProps, type TypographyType, UndoIcon, UnfoldLessIcon, UnfoldMoreIcon, UploadIcon, VStack, VisibilityOffIcon, VisibilityOnIcon, VisuallyHidden, type VisuallyHiddenProps, WarningIcon, type WeightedSearchData, type WidthProps, type WithRequiredIf, ZoomInIcon, ZoomOutIcon, cn, createSelectOptions, dangerInputfield, defaultTypographyType, focusDangerInputfield, focusInputfield, focusVisible, focusVisibleInset, focusVisibleLink, focusVisibleLinkOnDark, focusVisibleLinkTransitionValue, focusVisibleOnDark, focusVisibleThickWithBorderOnDark, focusVisibleTransitionValue, focusVisibleWithBorder, getAdditionalFontStyle, getAnchorStyling, getBaseHTMLProps, getDefaultText, getElementType, getFontStyling, getLiteralScreenSize, getMarginStyling, hideInput, hoverDangerInputfield, hoverInputfield, hoverWithBorder, index as icons, inlineElements, inputTokens, inputTypographyTypes, isGridColumn, isHeading, isInlineElement, isKeyboardEvent, isRelativeGridColumn, normalizeButton, outlineOffset, removeButtonStyling, removeListStyling, scrollbarStyling, selection, useCombinedRef, useFloatPosition, useFocusTrap, useIsMounted, useMountTransition, useOnClickOutside, useOnKeyDown, useReturnFocusOnBlur, useRoveFocus, useScreenSize, visibilityTransition };
|