@norges-domstoler/dds-components 0.0.0-dev-20231212125902 → 0.0.0-dev-20231215103309
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 +3548 -95
- package/dist/index.d.ts +3548 -95
- package/dist/index.js +5731 -2635
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5435 -2850
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,22 +1,3458 @@
|
|
|
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
|
+
placeholder?: string | undefined;
|
|
1254
|
+
slot?: string | undefined;
|
|
1255
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1256
|
+
style?: react.CSSProperties | undefined;
|
|
1257
|
+
tabIndex?: number | undefined;
|
|
1258
|
+
title?: string | undefined;
|
|
1259
|
+
translate?: "yes" | "no" | undefined;
|
|
1260
|
+
radioGroup?: string | undefined;
|
|
1261
|
+
role?: react.AriaRole | undefined;
|
|
1262
|
+
about?: string | undefined;
|
|
1263
|
+
content?: string | undefined;
|
|
1264
|
+
datatype?: string | undefined;
|
|
1265
|
+
inlist?: any;
|
|
1266
|
+
prefix?: string | undefined;
|
|
1267
|
+
property?: string | undefined;
|
|
1268
|
+
rel?: string | undefined;
|
|
1269
|
+
resource?: string | undefined;
|
|
1270
|
+
rev?: string | undefined;
|
|
1271
|
+
typeof?: string | undefined;
|
|
1272
|
+
vocab?: string | undefined;
|
|
1273
|
+
autoCapitalize?: string | undefined;
|
|
1274
|
+
autoCorrect?: string | undefined;
|
|
1275
|
+
autoSave?: string | undefined;
|
|
1276
|
+
color?: string | undefined;
|
|
1277
|
+
itemProp?: string | undefined;
|
|
1278
|
+
itemScope?: boolean | undefined;
|
|
1279
|
+
itemType?: string | undefined;
|
|
1280
|
+
itemID?: string | undefined;
|
|
1281
|
+
itemRef?: string | undefined;
|
|
1282
|
+
results?: number | undefined;
|
|
1283
|
+
security?: string | undefined;
|
|
1284
|
+
unselectable?: "on" | "off" | undefined;
|
|
1285
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1286
|
+
is?: string | undefined;
|
|
1287
|
+
"aria-activedescendant"?: string | undefined;
|
|
1288
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1289
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1290
|
+
"aria-braillelabel"?: string | undefined;
|
|
1291
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1292
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1293
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1294
|
+
"aria-colcount"?: number | undefined;
|
|
1295
|
+
"aria-colindex"?: number | undefined;
|
|
1296
|
+
"aria-colindextext"?: string | undefined;
|
|
1297
|
+
"aria-colspan"?: number | undefined;
|
|
1298
|
+
"aria-controls"?: string | undefined;
|
|
1299
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1300
|
+
"aria-describedby"?: string | undefined;
|
|
1301
|
+
"aria-description"?: string | undefined;
|
|
1302
|
+
"aria-details"?: string | undefined;
|
|
1303
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1304
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1305
|
+
"aria-errormessage"?: string | undefined;
|
|
1306
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1307
|
+
"aria-flowto"?: string | undefined;
|
|
1308
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1309
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1310
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1311
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1312
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1313
|
+
"aria-label"?: string | undefined;
|
|
1314
|
+
"aria-labelledby"?: string | undefined;
|
|
1315
|
+
"aria-level"?: number | undefined;
|
|
1316
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1317
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1318
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1319
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1320
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1321
|
+
"aria-owns"?: string | undefined;
|
|
1322
|
+
"aria-placeholder"?: string | undefined;
|
|
1323
|
+
"aria-posinset"?: number | undefined;
|
|
1324
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1325
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1326
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1327
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1328
|
+
"aria-roledescription"?: string | undefined;
|
|
1329
|
+
"aria-rowcount"?: number | undefined;
|
|
1330
|
+
"aria-rowindex"?: number | undefined;
|
|
1331
|
+
"aria-rowindextext"?: string | undefined;
|
|
1332
|
+
"aria-rowspan"?: number | undefined;
|
|
1333
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1334
|
+
"aria-setsize"?: number | undefined;
|
|
1335
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1336
|
+
"aria-valuemax"?: number | undefined;
|
|
1337
|
+
"aria-valuemin"?: number | undefined;
|
|
1338
|
+
"aria-valuenow"?: number | undefined;
|
|
1339
|
+
"aria-valuetext"?: string | undefined;
|
|
1340
|
+
children?: react.ReactNode;
|
|
1341
|
+
dangerouslySetInnerHTML?: {
|
|
1342
|
+
__html: string | TrustedHTML;
|
|
1343
|
+
} | undefined;
|
|
1344
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1345
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1346
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1347
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1348
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1349
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1350
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1351
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1352
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1353
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1354
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1355
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1356
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1357
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1358
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1359
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1360
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1361
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1362
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1363
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1364
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1365
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1366
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1367
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1368
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1369
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1370
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1371
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1372
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1373
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1374
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1375
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1376
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1377
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1378
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1379
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1380
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1381
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1382
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1383
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1384
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1385
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1386
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1387
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1388
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1389
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1390
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1391
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1392
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1393
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1394
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1395
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1396
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1397
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1398
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1399
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1400
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1401
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1402
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1403
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1404
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1405
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1406
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1407
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1408
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1409
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1410
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1411
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1412
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1413
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1414
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1415
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1416
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1417
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1418
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1419
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1420
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1421
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1422
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1423
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1424
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1425
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1426
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1427
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1428
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1429
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1430
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1431
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1432
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1433
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1434
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1435
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1436
|
+
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1437
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1438
|
+
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1439
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1440
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1441
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1442
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1443
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1444
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1445
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1446
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1447
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1448
|
+
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1449
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1450
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1451
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1452
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1453
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1454
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1455
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1456
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1457
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1458
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1459
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1460
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1461
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1462
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1463
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1464
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1465
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1466
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1467
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1468
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1469
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1470
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1471
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1472
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1473
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1474
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1475
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1476
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1477
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1478
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1479
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1480
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1481
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1482
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1483
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1484
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1485
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1486
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1487
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1488
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1489
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1490
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1491
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1492
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1493
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1494
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1495
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1496
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1497
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1498
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1499
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1500
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1501
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1502
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1503
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1504
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1505
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1506
|
+
}>;
|
|
1507
|
+
declare const InputAffixContainer: styled_components.IStyledComponent<"web", {
|
|
1508
|
+
ref?: react.LegacyRef<HTMLDivElement> | undefined;
|
|
1509
|
+
key?: react.Key | null | undefined;
|
|
1510
|
+
defaultChecked?: boolean | undefined;
|
|
1511
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1512
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1513
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1514
|
+
accessKey?: string | undefined;
|
|
1515
|
+
autoFocus?: boolean | undefined;
|
|
1516
|
+
className?: string | undefined;
|
|
1517
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
1518
|
+
contextMenu?: string | undefined;
|
|
1519
|
+
dir?: string | undefined;
|
|
1520
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1521
|
+
hidden?: boolean | undefined;
|
|
1522
|
+
id?: string | undefined;
|
|
1523
|
+
lang?: string | undefined;
|
|
1524
|
+
nonce?: string | undefined;
|
|
1525
|
+
placeholder?: string | undefined;
|
|
1526
|
+
slot?: string | undefined;
|
|
1527
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1528
|
+
style?: react.CSSProperties | undefined;
|
|
1529
|
+
tabIndex?: number | undefined;
|
|
1530
|
+
title?: string | undefined;
|
|
1531
|
+
translate?: "yes" | "no" | undefined;
|
|
1532
|
+
radioGroup?: string | undefined;
|
|
1533
|
+
role?: react.AriaRole | undefined;
|
|
1534
|
+
about?: string | undefined;
|
|
1535
|
+
content?: string | undefined;
|
|
1536
|
+
datatype?: string | undefined;
|
|
1537
|
+
inlist?: any;
|
|
1538
|
+
prefix?: string | undefined;
|
|
1539
|
+
property?: string | undefined;
|
|
1540
|
+
rel?: string | undefined;
|
|
1541
|
+
resource?: string | undefined;
|
|
1542
|
+
rev?: string | undefined;
|
|
1543
|
+
typeof?: string | undefined;
|
|
1544
|
+
vocab?: string | undefined;
|
|
1545
|
+
autoCapitalize?: string | undefined;
|
|
1546
|
+
autoCorrect?: string | undefined;
|
|
1547
|
+
autoSave?: string | undefined;
|
|
1548
|
+
color?: string | undefined;
|
|
1549
|
+
itemProp?: string | undefined;
|
|
1550
|
+
itemScope?: boolean | undefined;
|
|
1551
|
+
itemType?: string | undefined;
|
|
1552
|
+
itemID?: string | undefined;
|
|
1553
|
+
itemRef?: string | undefined;
|
|
1554
|
+
results?: number | undefined;
|
|
1555
|
+
security?: string | undefined;
|
|
1556
|
+
unselectable?: "on" | "off" | undefined;
|
|
1557
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1558
|
+
is?: string | undefined;
|
|
1559
|
+
"aria-activedescendant"?: string | undefined;
|
|
1560
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1561
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1562
|
+
"aria-braillelabel"?: string | undefined;
|
|
1563
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1564
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1565
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1566
|
+
"aria-colcount"?: number | undefined;
|
|
1567
|
+
"aria-colindex"?: number | undefined;
|
|
1568
|
+
"aria-colindextext"?: string | undefined;
|
|
1569
|
+
"aria-colspan"?: number | undefined;
|
|
1570
|
+
"aria-controls"?: string | undefined;
|
|
1571
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1572
|
+
"aria-describedby"?: string | undefined;
|
|
1573
|
+
"aria-description"?: string | undefined;
|
|
1574
|
+
"aria-details"?: string | undefined;
|
|
1575
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1576
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1577
|
+
"aria-errormessage"?: string | undefined;
|
|
1578
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1579
|
+
"aria-flowto"?: string | undefined;
|
|
1580
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1581
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1582
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1583
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1584
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1585
|
+
"aria-label"?: string | undefined;
|
|
1586
|
+
"aria-labelledby"?: string | undefined;
|
|
1587
|
+
"aria-level"?: number | undefined;
|
|
1588
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1589
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1590
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1591
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1592
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1593
|
+
"aria-owns"?: string | undefined;
|
|
1594
|
+
"aria-placeholder"?: string | undefined;
|
|
1595
|
+
"aria-posinset"?: number | undefined;
|
|
1596
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1597
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1598
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1599
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1600
|
+
"aria-roledescription"?: string | undefined;
|
|
1601
|
+
"aria-rowcount"?: number | undefined;
|
|
1602
|
+
"aria-rowindex"?: number | undefined;
|
|
1603
|
+
"aria-rowindextext"?: string | undefined;
|
|
1604
|
+
"aria-rowspan"?: number | undefined;
|
|
1605
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1606
|
+
"aria-setsize"?: number | undefined;
|
|
1607
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1608
|
+
"aria-valuemax"?: number | undefined;
|
|
1609
|
+
"aria-valuemin"?: number | undefined;
|
|
1610
|
+
"aria-valuenow"?: number | undefined;
|
|
1611
|
+
"aria-valuetext"?: string | undefined;
|
|
1612
|
+
children?: react.ReactNode;
|
|
1613
|
+
dangerouslySetInnerHTML?: {
|
|
1614
|
+
__html: string | TrustedHTML;
|
|
1615
|
+
} | undefined;
|
|
1616
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1617
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1618
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1619
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1620
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1621
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1622
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1623
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1624
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1625
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1626
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1627
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1628
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1629
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1630
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1631
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1632
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1633
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1634
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1635
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1636
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1637
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1638
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1639
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1640
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1641
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1642
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1643
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1644
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1645
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1646
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1647
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1648
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1649
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1650
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1651
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1652
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1653
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1654
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1655
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1656
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1657
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1658
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1659
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1660
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1661
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1662
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1663
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1664
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1665
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1666
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1667
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1668
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1669
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1670
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1671
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1672
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1673
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1674
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1675
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1676
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1677
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1678
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1679
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1680
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1681
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1682
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1683
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1684
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1685
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1686
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1687
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1688
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1689
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1690
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1691
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1692
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1693
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1694
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1695
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1696
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1697
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1698
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1699
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1700
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1701
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1702
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1703
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1704
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1705
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1706
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1707
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1708
|
+
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1709
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1710
|
+
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1711
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1712
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1713
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1714
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1715
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1716
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1717
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1718
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1719
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1720
|
+
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1721
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1722
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1723
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1724
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1725
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1726
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1727
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1728
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1729
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1730
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1731
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1732
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1733
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1734
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1735
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1736
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1737
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1738
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1739
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1740
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1741
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1742
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1743
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1744
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1745
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1746
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1747
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1748
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1749
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1750
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1751
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1752
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1753
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1754
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1755
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1756
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1757
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1758
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1759
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1760
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1761
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1762
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1763
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1764
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1765
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1766
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1767
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1768
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1769
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1770
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1771
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1772
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1773
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1774
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1775
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1776
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1777
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1778
|
+
}>;
|
|
1779
|
+
|
|
1780
|
+
declare const TextOverflowEllipsisWrapper: styled_components.IStyledComponent<"web", {
|
|
1781
|
+
ref?: react.LegacyRef<HTMLSpanElement> | undefined;
|
|
1782
|
+
key?: react.Key | null | undefined;
|
|
1783
|
+
defaultChecked?: boolean | undefined;
|
|
1784
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1785
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1786
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1787
|
+
accessKey?: string | undefined;
|
|
1788
|
+
autoFocus?: boolean | undefined;
|
|
1789
|
+
className?: string | undefined;
|
|
1790
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
1791
|
+
contextMenu?: string | undefined;
|
|
1792
|
+
dir?: string | undefined;
|
|
1793
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1794
|
+
hidden?: boolean | undefined;
|
|
1795
|
+
id?: string | undefined;
|
|
1796
|
+
lang?: string | undefined;
|
|
1797
|
+
nonce?: string | undefined;
|
|
1798
|
+
placeholder?: string | undefined;
|
|
1799
|
+
slot?: string | undefined;
|
|
1800
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1801
|
+
style?: react.CSSProperties | undefined;
|
|
1802
|
+
tabIndex?: number | undefined;
|
|
1803
|
+
title?: string | undefined;
|
|
1804
|
+
translate?: "yes" | "no" | undefined;
|
|
1805
|
+
radioGroup?: string | undefined;
|
|
1806
|
+
role?: react.AriaRole | undefined;
|
|
1807
|
+
about?: string | undefined;
|
|
1808
|
+
content?: string | undefined;
|
|
1809
|
+
datatype?: string | undefined;
|
|
1810
|
+
inlist?: any;
|
|
1811
|
+
prefix?: string | undefined;
|
|
1812
|
+
property?: string | undefined;
|
|
1813
|
+
rel?: string | undefined;
|
|
1814
|
+
resource?: string | undefined;
|
|
1815
|
+
rev?: string | undefined;
|
|
1816
|
+
typeof?: string | undefined;
|
|
1817
|
+
vocab?: string | undefined;
|
|
1818
|
+
autoCapitalize?: string | undefined;
|
|
1819
|
+
autoCorrect?: string | undefined;
|
|
1820
|
+
autoSave?: string | undefined;
|
|
1821
|
+
color?: string | undefined;
|
|
1822
|
+
itemProp?: string | undefined;
|
|
1823
|
+
itemScope?: boolean | undefined;
|
|
1824
|
+
itemType?: string | undefined;
|
|
1825
|
+
itemID?: string | undefined;
|
|
1826
|
+
itemRef?: string | undefined;
|
|
1827
|
+
results?: number | undefined;
|
|
1828
|
+
security?: string | undefined;
|
|
1829
|
+
unselectable?: "on" | "off" | undefined;
|
|
1830
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1831
|
+
is?: string | undefined;
|
|
1832
|
+
"aria-activedescendant"?: string | undefined;
|
|
1833
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1834
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1835
|
+
"aria-braillelabel"?: string | undefined;
|
|
1836
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1837
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1838
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1839
|
+
"aria-colcount"?: number | undefined;
|
|
1840
|
+
"aria-colindex"?: number | undefined;
|
|
1841
|
+
"aria-colindextext"?: string | undefined;
|
|
1842
|
+
"aria-colspan"?: number | undefined;
|
|
1843
|
+
"aria-controls"?: string | undefined;
|
|
1844
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1845
|
+
"aria-describedby"?: string | undefined;
|
|
1846
|
+
"aria-description"?: string | undefined;
|
|
1847
|
+
"aria-details"?: string | undefined;
|
|
1848
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1849
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1850
|
+
"aria-errormessage"?: string | undefined;
|
|
1851
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1852
|
+
"aria-flowto"?: string | undefined;
|
|
1853
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1854
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1855
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1856
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1857
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1858
|
+
"aria-label"?: string | undefined;
|
|
1859
|
+
"aria-labelledby"?: string | undefined;
|
|
1860
|
+
"aria-level"?: number | undefined;
|
|
1861
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1862
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1863
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1864
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1865
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1866
|
+
"aria-owns"?: string | undefined;
|
|
1867
|
+
"aria-placeholder"?: string | undefined;
|
|
1868
|
+
"aria-posinset"?: number | undefined;
|
|
1869
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1870
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1871
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1872
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1873
|
+
"aria-roledescription"?: string | undefined;
|
|
1874
|
+
"aria-rowcount"?: number | undefined;
|
|
1875
|
+
"aria-rowindex"?: number | undefined;
|
|
1876
|
+
"aria-rowindextext"?: string | undefined;
|
|
1877
|
+
"aria-rowspan"?: number | undefined;
|
|
1878
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1879
|
+
"aria-setsize"?: number | undefined;
|
|
1880
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1881
|
+
"aria-valuemax"?: number | undefined;
|
|
1882
|
+
"aria-valuemin"?: number | undefined;
|
|
1883
|
+
"aria-valuenow"?: number | undefined;
|
|
1884
|
+
"aria-valuetext"?: string | undefined;
|
|
1885
|
+
children?: react.ReactNode;
|
|
1886
|
+
dangerouslySetInnerHTML?: {
|
|
1887
|
+
__html: string | TrustedHTML;
|
|
1888
|
+
} | undefined;
|
|
1889
|
+
onCopy?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1890
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1891
|
+
onCut?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1892
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1893
|
+
onPaste?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1894
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
1895
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1896
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1897
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1898
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1899
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1900
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
1901
|
+
onFocus?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1902
|
+
onFocusCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1903
|
+
onBlur?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1904
|
+
onBlurCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
1905
|
+
onChange?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1906
|
+
onChangeCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1907
|
+
onBeforeInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1908
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1909
|
+
onInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1910
|
+
onInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1911
|
+
onReset?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1912
|
+
onResetCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1913
|
+
onSubmit?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1914
|
+
onSubmitCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1915
|
+
onInvalid?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1916
|
+
onInvalidCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
1917
|
+
onLoad?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1918
|
+
onLoadCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1919
|
+
onError?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1920
|
+
onErrorCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1921
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1922
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1923
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1924
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1925
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1926
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
1927
|
+
onAbort?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1928
|
+
onAbortCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1929
|
+
onCanPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1930
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1931
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1932
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1933
|
+
onDurationChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1934
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1935
|
+
onEmptied?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1936
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1937
|
+
onEncrypted?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1938
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1939
|
+
onEnded?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1940
|
+
onEndedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1941
|
+
onLoadedData?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1942
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1943
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1944
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1945
|
+
onLoadStart?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1946
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1947
|
+
onPause?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1948
|
+
onPauseCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1949
|
+
onPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1950
|
+
onPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1951
|
+
onPlaying?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1952
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1953
|
+
onProgress?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1954
|
+
onProgressCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1955
|
+
onRateChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1956
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1957
|
+
onResize?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1958
|
+
onResizeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1959
|
+
onSeeked?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1960
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1961
|
+
onSeeking?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1962
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1963
|
+
onStalled?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1964
|
+
onStalledCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1965
|
+
onSuspend?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1966
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1967
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1968
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1969
|
+
onVolumeChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1970
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1971
|
+
onWaiting?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1972
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
1973
|
+
onAuxClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1974
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1975
|
+
onClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1976
|
+
onClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1977
|
+
onContextMenu?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1978
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1979
|
+
onDoubleClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1980
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1981
|
+
onDrag?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1982
|
+
onDragCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1983
|
+
onDragEnd?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1984
|
+
onDragEndCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1985
|
+
onDragEnter?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1986
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1987
|
+
onDragExit?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1988
|
+
onDragExitCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1989
|
+
onDragLeave?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1990
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1991
|
+
onDragOver?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1992
|
+
onDragOverCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1993
|
+
onDragStart?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1994
|
+
onDragStartCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1995
|
+
onDrop?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1996
|
+
onDropCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
1997
|
+
onMouseDown?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1998
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
1999
|
+
onMouseEnter?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2000
|
+
onMouseLeave?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2001
|
+
onMouseMove?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2002
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2003
|
+
onMouseOut?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2004
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2005
|
+
onMouseOver?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2006
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2007
|
+
onMouseUp?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2008
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2009
|
+
onSelect?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2010
|
+
onSelectCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2011
|
+
onTouchCancel?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2012
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2013
|
+
onTouchEnd?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2014
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2015
|
+
onTouchMove?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2016
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2017
|
+
onTouchStart?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2018
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2019
|
+
onPointerDown?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2020
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2021
|
+
onPointerMove?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2022
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2023
|
+
onPointerUp?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2024
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2025
|
+
onPointerCancel?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2026
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2027
|
+
onPointerEnter?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2028
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2029
|
+
onPointerLeave?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2030
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2031
|
+
onPointerOver?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2032
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2033
|
+
onPointerOut?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2034
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2035
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2036
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2037
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2038
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2039
|
+
onScroll?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2040
|
+
onScrollCapture?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2041
|
+
onWheel?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2042
|
+
onWheelCapture?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2043
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2044
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2045
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2046
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2047
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2048
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2049
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2050
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2051
|
+
}>;
|
|
2052
|
+
declare const TextOverflowEllipsisInner: styled_components.IStyledComponent<"web", {
|
|
2053
|
+
ref?: react.LegacyRef<HTMLSpanElement> | undefined;
|
|
2054
|
+
key?: react.Key | null | undefined;
|
|
2055
|
+
defaultChecked?: boolean | undefined;
|
|
2056
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
2057
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
2058
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
2059
|
+
accessKey?: string | undefined;
|
|
2060
|
+
autoFocus?: boolean | undefined;
|
|
2061
|
+
className?: string | undefined;
|
|
2062
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
2063
|
+
contextMenu?: string | undefined;
|
|
2064
|
+
dir?: string | undefined;
|
|
2065
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2066
|
+
hidden?: boolean | undefined;
|
|
2067
|
+
id?: string | undefined;
|
|
2068
|
+
lang?: string | undefined;
|
|
2069
|
+
nonce?: string | undefined;
|
|
2070
|
+
placeholder?: string | undefined;
|
|
2071
|
+
slot?: string | undefined;
|
|
2072
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2073
|
+
style?: react.CSSProperties | undefined;
|
|
2074
|
+
tabIndex?: number | undefined;
|
|
2075
|
+
title?: string | undefined;
|
|
2076
|
+
translate?: "yes" | "no" | undefined;
|
|
2077
|
+
radioGroup?: string | undefined;
|
|
2078
|
+
role?: react.AriaRole | undefined;
|
|
2079
|
+
about?: string | undefined;
|
|
2080
|
+
content?: string | undefined;
|
|
2081
|
+
datatype?: string | undefined;
|
|
2082
|
+
inlist?: any;
|
|
2083
|
+
prefix?: string | undefined;
|
|
2084
|
+
property?: string | undefined;
|
|
2085
|
+
rel?: string | undefined;
|
|
2086
|
+
resource?: string | undefined;
|
|
2087
|
+
rev?: string | undefined;
|
|
2088
|
+
typeof?: string | undefined;
|
|
2089
|
+
vocab?: string | undefined;
|
|
2090
|
+
autoCapitalize?: string | undefined;
|
|
2091
|
+
autoCorrect?: string | undefined;
|
|
2092
|
+
autoSave?: string | undefined;
|
|
2093
|
+
color?: string | undefined;
|
|
2094
|
+
itemProp?: string | undefined;
|
|
2095
|
+
itemScope?: boolean | undefined;
|
|
2096
|
+
itemType?: string | undefined;
|
|
2097
|
+
itemID?: string | undefined;
|
|
2098
|
+
itemRef?: string | undefined;
|
|
2099
|
+
results?: number | undefined;
|
|
2100
|
+
security?: string | undefined;
|
|
2101
|
+
unselectable?: "on" | "off" | undefined;
|
|
2102
|
+
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
2103
|
+
is?: string | undefined;
|
|
2104
|
+
"aria-activedescendant"?: string | undefined;
|
|
2105
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
2106
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2107
|
+
"aria-braillelabel"?: string | undefined;
|
|
2108
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
2109
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
2110
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2111
|
+
"aria-colcount"?: number | undefined;
|
|
2112
|
+
"aria-colindex"?: number | undefined;
|
|
2113
|
+
"aria-colindextext"?: string | undefined;
|
|
2114
|
+
"aria-colspan"?: number | undefined;
|
|
2115
|
+
"aria-controls"?: string | undefined;
|
|
2116
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2117
|
+
"aria-describedby"?: string | undefined;
|
|
2118
|
+
"aria-description"?: string | undefined;
|
|
2119
|
+
"aria-details"?: string | undefined;
|
|
2120
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
2121
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2122
|
+
"aria-errormessage"?: string | undefined;
|
|
2123
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2124
|
+
"aria-flowto"?: string | undefined;
|
|
2125
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
2126
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
2127
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
2128
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2129
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
2130
|
+
"aria-label"?: string | undefined;
|
|
2131
|
+
"aria-labelledby"?: string | undefined;
|
|
2132
|
+
"aria-level"?: number | undefined;
|
|
2133
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2134
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
2135
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
2136
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2137
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2138
|
+
"aria-owns"?: string | undefined;
|
|
2139
|
+
"aria-placeholder"?: string | undefined;
|
|
2140
|
+
"aria-posinset"?: number | undefined;
|
|
2141
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2142
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
2143
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2144
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2145
|
+
"aria-roledescription"?: string | undefined;
|
|
2146
|
+
"aria-rowcount"?: number | undefined;
|
|
2147
|
+
"aria-rowindex"?: number | undefined;
|
|
2148
|
+
"aria-rowindextext"?: string | undefined;
|
|
2149
|
+
"aria-rowspan"?: number | undefined;
|
|
2150
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2151
|
+
"aria-setsize"?: number | undefined;
|
|
2152
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2153
|
+
"aria-valuemax"?: number | undefined;
|
|
2154
|
+
"aria-valuemin"?: number | undefined;
|
|
2155
|
+
"aria-valuenow"?: number | undefined;
|
|
2156
|
+
"aria-valuetext"?: string | undefined;
|
|
2157
|
+
children?: react.ReactNode;
|
|
2158
|
+
dangerouslySetInnerHTML?: {
|
|
2159
|
+
__html: string | TrustedHTML;
|
|
2160
|
+
} | undefined;
|
|
2161
|
+
onCopy?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2162
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2163
|
+
onCut?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2164
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2165
|
+
onPaste?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2166
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLSpanElement> | undefined;
|
|
2167
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2168
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2169
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2170
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2171
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2172
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLSpanElement> | undefined;
|
|
2173
|
+
onFocus?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2174
|
+
onFocusCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2175
|
+
onBlur?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2176
|
+
onBlurCapture?: react.FocusEventHandler<HTMLSpanElement> | undefined;
|
|
2177
|
+
onChange?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2178
|
+
onChangeCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2179
|
+
onBeforeInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2180
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2181
|
+
onInput?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2182
|
+
onInputCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2183
|
+
onReset?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2184
|
+
onResetCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2185
|
+
onSubmit?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2186
|
+
onSubmitCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2187
|
+
onInvalid?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2188
|
+
onInvalidCapture?: react.FormEventHandler<HTMLSpanElement> | undefined;
|
|
2189
|
+
onLoad?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2190
|
+
onLoadCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2191
|
+
onError?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2192
|
+
onErrorCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2193
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2194
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2195
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2196
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2197
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2198
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLSpanElement> | undefined;
|
|
2199
|
+
onAbort?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2200
|
+
onAbortCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2201
|
+
onCanPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2202
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2203
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2204
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2205
|
+
onDurationChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2206
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2207
|
+
onEmptied?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2208
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2209
|
+
onEncrypted?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2210
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2211
|
+
onEnded?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2212
|
+
onEndedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2213
|
+
onLoadedData?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2214
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2215
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2216
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2217
|
+
onLoadStart?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2218
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2219
|
+
onPause?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2220
|
+
onPauseCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2221
|
+
onPlay?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2222
|
+
onPlayCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2223
|
+
onPlaying?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2224
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2225
|
+
onProgress?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2226
|
+
onProgressCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2227
|
+
onRateChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2228
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2229
|
+
onResize?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2230
|
+
onResizeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2231
|
+
onSeeked?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2232
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2233
|
+
onSeeking?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2234
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2235
|
+
onStalled?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2236
|
+
onStalledCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2237
|
+
onSuspend?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2238
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2239
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2240
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2241
|
+
onVolumeChange?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2242
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2243
|
+
onWaiting?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2244
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2245
|
+
onAuxClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2246
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2247
|
+
onClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2248
|
+
onClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2249
|
+
onContextMenu?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2250
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2251
|
+
onDoubleClick?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2252
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2253
|
+
onDrag?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2254
|
+
onDragCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2255
|
+
onDragEnd?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2256
|
+
onDragEndCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2257
|
+
onDragEnter?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2258
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2259
|
+
onDragExit?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2260
|
+
onDragExitCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2261
|
+
onDragLeave?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2262
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2263
|
+
onDragOver?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2264
|
+
onDragOverCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2265
|
+
onDragStart?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2266
|
+
onDragStartCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2267
|
+
onDrop?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2268
|
+
onDropCapture?: react.DragEventHandler<HTMLSpanElement> | undefined;
|
|
2269
|
+
onMouseDown?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2270
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2271
|
+
onMouseEnter?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2272
|
+
onMouseLeave?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2273
|
+
onMouseMove?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2274
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2275
|
+
onMouseOut?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2276
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2277
|
+
onMouseOver?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2278
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2279
|
+
onMouseUp?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2280
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLSpanElement> | undefined;
|
|
2281
|
+
onSelect?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2282
|
+
onSelectCapture?: react.ReactEventHandler<HTMLSpanElement> | undefined;
|
|
2283
|
+
onTouchCancel?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2284
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2285
|
+
onTouchEnd?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2286
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2287
|
+
onTouchMove?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2288
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2289
|
+
onTouchStart?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2290
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLSpanElement> | undefined;
|
|
2291
|
+
onPointerDown?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2292
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2293
|
+
onPointerMove?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2294
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2295
|
+
onPointerUp?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2296
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2297
|
+
onPointerCancel?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2298
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2299
|
+
onPointerEnter?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2300
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2301
|
+
onPointerLeave?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2302
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2303
|
+
onPointerOver?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2304
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2305
|
+
onPointerOut?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2306
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2307
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2308
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2309
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2310
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLSpanElement> | undefined;
|
|
2311
|
+
onScroll?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2312
|
+
onScrollCapture?: react.UIEventHandler<HTMLSpanElement> | undefined;
|
|
2313
|
+
onWheel?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2314
|
+
onWheelCapture?: react.WheelEventHandler<HTMLSpanElement> | undefined;
|
|
2315
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2316
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2317
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2318
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2319
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2320
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLSpanElement> | undefined;
|
|
2321
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2322
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLSpanElement> | undefined;
|
|
2323
|
+
}>;
|
|
2324
|
+
|
|
2325
|
+
type TypographyBodySansType = 'bodySans01' | 'bodySans02' | 'bodySans03' | 'bodySans04';
|
|
2326
|
+
type TypographyBodyType = TypographyBodySansType;
|
|
2327
|
+
type TypographyHeadingType = 'headingSans01' | 'headingSans02' | 'headingSans03' | 'headingSans04' | 'headingSans05' | 'headingSans06' | 'headingSans07' | 'headingSans08';
|
|
2328
|
+
type TypographyLeadType = 'leadSans01' | 'leadSans02' | 'leadSans03' | 'leadSans04' | 'leadSans05';
|
|
2329
|
+
type TypographySupportingType = 'supportingStyleHelperText01' | 'supportingStylePlaceholderText01' | 'supportingStylePlaceholderText02' | 'supportingStylePlaceholderText03' | 'supportingStyleTiny01' | 'supportingStyleTiny02';
|
|
2330
|
+
type AnchorTypographyType = 'a';
|
|
2331
|
+
type LabelTypographyType = 'supportingStyleLabel01';
|
|
2332
|
+
type OtherTypographyType = TypographyHeadingType | TypographyBodyType | TypographyLeadType | TypographySupportingType;
|
|
2333
|
+
type TypographyType = AnchorTypographyType | LabelTypographyType | OtherTypographyType;
|
|
2334
|
+
type StaticTypographyType = OtherTypographyType | LabelTypographyType;
|
|
2335
|
+
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';
|
|
2336
|
+
interface TypographyInteractionStyling {
|
|
2337
|
+
hover?: CSSProperties;
|
|
2338
|
+
active?: CSSProperties;
|
|
2339
|
+
}
|
|
2340
|
+
type BaseTypographyProps = PropsWithChildren<{
|
|
2341
|
+
/**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. */
|
|
2342
|
+
withMargins?: boolean;
|
|
2343
|
+
}> & Pick<HTMLAttributes<HTMLElement>, 'style'>;
|
|
2344
|
+
type TypographyComponentProps = BaseTypographyProps & {
|
|
2345
|
+
/**Tekstfarge fra utvalget eller custom. **OBS!** Bruk farger fra `@dds-design-tokens`. */
|
|
2346
|
+
color?: TextColor$1;
|
|
2347
|
+
/**Setter `bold` styling. */
|
|
2348
|
+
bold?: boolean;
|
|
2349
|
+
/**Setter `italic` styling. */
|
|
2350
|
+
italic?: boolean;
|
|
2351
|
+
/**Setter en linje under. */
|
|
2352
|
+
underline?: boolean;
|
|
2353
|
+
/**HTML tag som skal brukes istedenfor default definert via `typographyType`. */
|
|
2354
|
+
as?: ElementType;
|
|
2355
|
+
/**Støtte for å enkelt kunne endre på hover- og active-styling. Bruk `@dds-design-tokens` til farger osv. */
|
|
2356
|
+
interactionProps?: TypographyInteractionStyling;
|
|
2357
|
+
};
|
|
2358
|
+
|
|
2359
|
+
type Direction$1 = 'row' | 'column';
|
|
2360
|
+
|
|
2361
|
+
/**
|
|
2362
|
+
* Basetype for props som eksponeres til konsumenter av designsystemet.
|
|
2363
|
+
* Lager en intersection-type med props som sendes inn og `id` og `htmlProps`
|
|
2364
|
+
* slik at man kan ha `HTMLAttributes`-props på komponenter som eksponeres
|
|
2365
|
+
* av designsystemet. Se også {@link BaseComponentPropsWithChildren} og
|
|
2366
|
+
* {@link getBaseHTMLProps}.
|
|
2367
|
+
*
|
|
2368
|
+
* @template TElement Element-type som genereres av komponenten.
|
|
2369
|
+
* @template TOtherProps Andre props komponenten skal eksponere til konsumenter.
|
|
2370
|
+
* @template THTMLAttributesProps Standard `HTMLAttributes<T>` men kan overstyres for f.eks knapper hvis man trenger en annen basetype for `htmlProps`.
|
|
2371
|
+
*/
|
|
2372
|
+
type BaseComponentProps<TElement extends Element, TOtherProps extends object = object, THTMLAttributesProps extends HTMLAttributes<TElement> = HTMLAttributes<TElement>> = Pick<THTMLAttributesProps, 'id' | 'className'> & TOtherProps & {
|
|
2373
|
+
/**Ekstra HTML-attributter som vil settes på elementet som genereres. Untatt `id` og `className` som settes på toppnivå. */
|
|
2374
|
+
htmlProps?: THTMLAttributesProps;
|
|
2375
|
+
};
|
|
2376
|
+
/**
|
|
2377
|
+
* Utvidelese av {@link BaseComponentProps} med prop for `children`.
|
|
2378
|
+
*
|
|
2379
|
+
* {@link BaseComponentProps}
|
|
2380
|
+
*/
|
|
2381
|
+
type BaseComponentPropsWithChildren<T extends Element, TProps extends object = object, THTMLProps extends HTMLAttributes<T> = HTMLAttributes<T>> = BaseComponentProps<T, PropsWithChildren<TProps>, THTMLProps>;
|
|
2382
|
+
interface GetBaseHTMLProps {
|
|
2383
|
+
<T extends Element>(id: HTMLAttributes<T>['id'], className: HTMLAttributes<T>['className'], htmlProps: HTMLAttributes<T> | undefined, unknownProps: object): HTMLAttributes<T> & object;
|
|
2384
|
+
<T extends Element>(id: HTMLAttributes<T>['id'], htmlProps: HTMLAttributes<T> | undefined, unknownProps: object): HTMLAttributes<T> & object;
|
|
2385
|
+
}
|
|
2386
|
+
/**
|
|
2387
|
+
* Slår sammen id, className, htmlProps og unknownProps til ett objekt
|
|
2388
|
+
* som kan spreades som baseprops for en komponent. `unknownProps` er
|
|
2389
|
+
* med for å sikre at aria- og data- attributter blir spreadet, alle
|
|
2390
|
+
* komponenter må derfor ta hensyn til `...rest` når de leser props.
|
|
2391
|
+
*
|
|
2392
|
+
* Typisk bruk:
|
|
2393
|
+
* ```
|
|
2394
|
+
* const Props = BaseComponentProps<HTMLElement, {
|
|
2395
|
+
* propA: string,
|
|
2396
|
+
* propB: string,
|
|
2397
|
+
* }>
|
|
2398
|
+
*
|
|
2399
|
+
* const MyComponent = (props: Props) => {
|
|
2400
|
+
* const { propA, propB, id, className, htmlProps, ...rest } = props;
|
|
2401
|
+
*
|
|
2402
|
+
* const wrapperProps = getBaseHTMLProps(id, className, htmlProps, rest)
|
|
2403
|
+
*
|
|
2404
|
+
* return <div {...wrapperProps}>innhold</div>
|
|
2405
|
+
* }
|
|
2406
|
+
* ```
|
|
2407
|
+
* @param id id fra props til komponenten.
|
|
2408
|
+
* @param className className for komponenten.
|
|
2409
|
+
* @param htmlProps htmlProps fra komponenten.
|
|
2410
|
+
* @param unknownProps andre ukjente props som skal spreades, kommer typisk fra `...rest` når man leser props til komponenten.
|
|
2411
|
+
* @returns Objekt med alle argumentene som kan spreades.
|
|
2412
|
+
*
|
|
2413
|
+
* Kan også kalles uten `className`-parameteret. Oppførselen er lik.
|
|
2414
|
+
*/
|
|
2415
|
+
declare const getBaseHTMLProps: GetBaseHTMLProps;
|
|
2416
|
+
|
|
2417
|
+
type As = ElementType;
|
|
2418
|
+
type PropsOf<T extends As> = ComponentPropsWithoutRef<T> & {
|
|
2419
|
+
as?: T;
|
|
2420
|
+
};
|
|
2421
|
+
|
|
2422
|
+
/**
|
|
2423
|
+
* Gir tilbake `T` med properties fra `K` som påkrevd gitt at `Condition` er `true`
|
|
2424
|
+
*
|
|
2425
|
+
* @template Condition
|
|
2426
|
+
* @template T
|
|
2427
|
+
* @template K
|
|
2428
|
+
*/
|
|
2429
|
+
type WithRequiredIf<Condition extends boolean, T, K extends keyof T> = Omit<T, K> & Pick<true extends Condition ? Required<T> : T, K>;
|
|
2430
|
+
/**
|
|
2431
|
+
* Gir tilbake typer fra `T` som matcher `U`
|
|
2432
|
+
*
|
|
2433
|
+
* @template T en union type
|
|
2434
|
+
* @template U delmengde av `T`
|
|
2435
|
+
*/
|
|
2436
|
+
type ExtractStrict<T, U extends T> = U;
|
|
2437
|
+
type Nullable<T> = T | null;
|
|
2438
|
+
type Callback<T> = (e: T) => void;
|
|
2439
|
+
|
|
2440
|
+
type AnchorTypographyProps = BaseComponentProps<HTMLAnchorElement, TypographyComponentProps & {
|
|
2441
|
+
/**nativ `href`-prop ved `typographyType='a'`. */
|
|
2442
|
+
href?: string | undefined;
|
|
2443
|
+
/** Spesifiserer om lenka er ekstern ved `typographyType='a'` eller `as='a'`.*/
|
|
2444
|
+
externalLink?: boolean;
|
|
2445
|
+
/**nativ `target`-prop ved `typographyType='a'`. */
|
|
2446
|
+
target?: string;
|
|
2447
|
+
}, AnchorHTMLAttributes<HTMLAnchorElement>>;
|
|
2448
|
+
type LabelTypographyProps = BaseComponentProps<HTMLLabelElement, TypographyComponentProps, HTMLAttributes<HTMLLabelElement>>;
|
|
2449
|
+
type OtherTypographyProps = BaseComponentProps<HTMLElement, TypographyComponentProps, HTMLAttributes<HTMLElement>>;
|
|
2450
|
+
type TypographyProps = ({
|
|
2451
|
+
/**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. */
|
|
2452
|
+
typographyType?: AnchorTypographyType;
|
|
2453
|
+
} & AnchorTypographyProps) | ({
|
|
2454
|
+
/**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. */
|
|
2455
|
+
typographyType?: LabelTypographyType;
|
|
2456
|
+
} & LabelTypographyProps) | ({
|
|
2457
|
+
/**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. */
|
|
2458
|
+
typographyType?: OtherTypographyType;
|
|
2459
|
+
} & OtherTypographyProps);
|
|
2460
|
+
declare const Typography: react.ForwardRefExoticComponent<TypographyProps & react.RefAttributes<HTMLElement>>;
|
|
2461
|
+
|
|
2462
|
+
declare const focusVisibleLink: {
|
|
2463
|
+
outline: string;
|
|
2464
|
+
backgroundColor: string;
|
|
2465
|
+
color: string;
|
|
2466
|
+
textDecoration: string;
|
|
2467
|
+
};
|
|
2468
|
+
declare const focusVisibleLinkOnDark: {
|
|
2469
|
+
outline: string;
|
|
2470
|
+
backgroundColor: string;
|
|
2471
|
+
color: string;
|
|
2472
|
+
textDecoration: string;
|
|
2473
|
+
};
|
|
2474
|
+
declare const focusVisibleLinkTransitionValue = "background-color 0.2s, text-decoration 0.2s, color 0.2s";
|
|
2475
|
+
declare const getFontStyling: (type: StaticTypographyType, withColor?: boolean) => {
|
|
2476
|
+
lineHeight: string;
|
|
2477
|
+
fontSize: string;
|
|
2478
|
+
letterSpacing: string;
|
|
2479
|
+
fontFamily: string;
|
|
2480
|
+
fontWeight: number;
|
|
2481
|
+
fontStyle: string;
|
|
2482
|
+
color: string | undefined;
|
|
2483
|
+
};
|
|
2484
|
+
declare const getAdditionalFontStyle: (bold?: boolean, italic?: boolean, underline?: boolean) => styled_components.RuleSet<object>;
|
|
2485
|
+
declare const getMarginStyling: (typographyType: TypographyType, element: ElementType, withMargins?: boolean) => styled_components.RuleSet<object>;
|
|
2486
|
+
declare const getAnchorStyling: (external?: boolean, interactionStyling?: TypographyInteractionStyling, typographyType?: StaticTypographyType, withMargins?: boolean) => styled_components.RuleSet<object>;
|
|
2487
|
+
|
|
2488
|
+
declare const defaultTypographyType: TypographyBodyType;
|
|
2489
|
+
declare const getElementType: (element: string) => ElementType;
|
|
2490
|
+
declare const isHeading: (type: TypographyType) => type is TypographyHeadingType;
|
|
2491
|
+
declare const inlineElements: ElementType[];
|
|
2492
|
+
declare const isInlineElement: (as: ElementType) => as is InlineElement;
|
|
2493
|
+
|
|
2494
|
+
type CaptionProps = BaseComponentPropsWithChildren<HTMLTableCaptionElement, BaseTypographyProps>;
|
|
2495
|
+
declare const Caption: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLTableCaptionElement>, "className" | "id"> & {
|
|
2496
|
+
withMargins?: boolean | undefined;
|
|
2497
|
+
} & {
|
|
2498
|
+
children?: react.ReactNode;
|
|
2499
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2500
|
+
htmlProps?: react.HTMLAttributes<HTMLTableCaptionElement> | undefined;
|
|
2501
|
+
} & react.RefAttributes<HTMLTableCaptionElement>>;
|
|
2502
|
+
|
|
2503
|
+
type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
2504
|
+
type HeadingProps = BaseComponentPropsWithChildren<HTMLHeadingElement, {
|
|
2505
|
+
/**Nivå på overskriften. Komponenten returnerer HTML heading element med dette nivået med default styling. */
|
|
2506
|
+
level: HeadingLevel;
|
|
2507
|
+
/**Spesifiserer typografistil basert på utvalget for HTML heading elementer. */
|
|
2508
|
+
typographyType?: TypographyHeadingType;
|
|
2509
|
+
} & BaseTypographyProps>;
|
|
2510
|
+
declare const Heading: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLHeadingElement>, "className" | "id"> & {
|
|
2511
|
+
/**Nivå på overskriften. Komponenten returnerer HTML heading element med dette nivået med default styling. */
|
|
2512
|
+
level: HeadingLevel;
|
|
2513
|
+
/**Spesifiserer typografistil basert på utvalget for HTML heading elementer. */
|
|
2514
|
+
typographyType?: TypographyHeadingType | undefined;
|
|
2515
|
+
} & {
|
|
2516
|
+
withMargins?: boolean | undefined;
|
|
2517
|
+
} & {
|
|
2518
|
+
children?: react.ReactNode;
|
|
2519
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2520
|
+
htmlProps?: react.HTMLAttributes<HTMLHeadingElement> | undefined;
|
|
2521
|
+
} & react.RefAttributes<HTMLHeadingElement>>;
|
|
2522
|
+
|
|
2523
|
+
type PickedHTMLAttributes$3 = Pick<LabelHTMLAttributes<HTMLLabelElement>, 'htmlFor'>;
|
|
2524
|
+
interface BaseLabelProps {
|
|
2525
|
+
/** Spesifiserer om input etiketten er knyttet til er påkrevd; påvirker styling. */
|
|
2526
|
+
showRequiredStyling?: boolean;
|
|
2527
|
+
}
|
|
2528
|
+
type LabelProps = BaseComponentPropsWithChildren<HTMLLabelElement, BaseLabelProps & BaseTypographyProps & PickedHTMLAttributes$3, Omit<LabelHTMLAttributes<HTMLLabelElement>, keyof PickedHTMLAttributes$3>>;
|
|
2529
|
+
declare const Label: react.ForwardRefExoticComponent<Pick<Omit<LabelHTMLAttributes<HTMLLabelElement>, "htmlFor">, "className" | "id"> & BaseLabelProps & {
|
|
2530
|
+
withMargins?: boolean | undefined;
|
|
2531
|
+
} & {
|
|
2532
|
+
children?: react.ReactNode;
|
|
2533
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & PickedHTMLAttributes$3 & {
|
|
2534
|
+
htmlProps?: Omit<LabelHTMLAttributes<HTMLLabelElement>, "htmlFor"> | undefined;
|
|
2535
|
+
} & react.RefAttributes<HTMLLabelElement>>;
|
|
2536
|
+
|
|
2537
|
+
type LegendProps = BaseComponentPropsWithChildren<HTMLLegendElement, BaseTypographyProps>;
|
|
2538
|
+
declare const Legend: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLLegendElement>, "className" | "id"> & {
|
|
2539
|
+
withMargins?: boolean | undefined;
|
|
2540
|
+
} & {
|
|
2541
|
+
children?: react.ReactNode;
|
|
2542
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2543
|
+
htmlProps?: react.HTMLAttributes<HTMLLegendElement> | undefined;
|
|
2544
|
+
} & react.RefAttributes<HTMLLegendElement>>;
|
|
2545
|
+
|
|
2546
|
+
type PickedHTMLAttributes$2 = Pick<AnchorHTMLAttributes<HTMLAnchorElement>, 'onClick' | 'href' | 'target'>;
|
|
2547
|
+
type LinkProps = BaseComponentPropsWithChildren<HTMLAnchorElement, {
|
|
2548
|
+
/**Spesifiserer om lenken fører til et eksternt nettsted eller åpnes i nytt vindu. Påvirker styling og setter `target` prop. */
|
|
2549
|
+
external?: boolean;
|
|
2550
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst. */
|
|
2551
|
+
typographyType?: TypographyBodyType;
|
|
2552
|
+
} & BaseTypographyProps & PickedHTMLAttributes$2, Omit<AnchorHTMLAttributes<HTMLAnchorElement>, keyof PickedHTMLAttributes$2>>;
|
|
2553
|
+
declare const Link: react.ForwardRefExoticComponent<Pick<Omit<AnchorHTMLAttributes<HTMLAnchorElement>, "target" | "href" | "onClick">, "className" | "id"> & {
|
|
2554
|
+
/**Spesifiserer om lenken fører til et eksternt nettsted eller åpnes i nytt vindu. Påvirker styling og setter `target` prop. */
|
|
2555
|
+
external?: boolean | undefined;
|
|
2556
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst. */
|
|
2557
|
+
typographyType?: ("bodySans01" | "bodySans02" | "bodySans03" | "bodySans04") | undefined;
|
|
2558
|
+
} & {
|
|
2559
|
+
withMargins?: boolean | undefined;
|
|
2560
|
+
} & {
|
|
2561
|
+
children?: react.ReactNode;
|
|
2562
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & PickedHTMLAttributes$2 & {
|
|
2563
|
+
htmlProps?: Omit<AnchorHTMLAttributes<HTMLAnchorElement>, "target" | "href" | "onClick"> | undefined;
|
|
2564
|
+
} & react.RefAttributes<HTMLAnchorElement>>;
|
|
2565
|
+
|
|
2566
|
+
type ParagraphProps = BaseComponentPropsWithChildren<HTMLParagraphElement, {
|
|
2567
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst og ingress. */
|
|
2568
|
+
typographyType?: TypographyBodyType | TypographyLeadType;
|
|
2569
|
+
} & BaseTypographyProps>;
|
|
2570
|
+
declare const Paragraph: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLParagraphElement>, "className" | "id"> & {
|
|
2571
|
+
/**Spesifiserer typografistil basert på utvalget for brødtekst og ingress. */
|
|
2572
|
+
typographyType?: ("bodySans01" | "bodySans02" | "bodySans03" | "bodySans04") | TypographyLeadType | undefined;
|
|
2573
|
+
} & {
|
|
2574
|
+
withMargins?: boolean | undefined;
|
|
2575
|
+
} & {
|
|
2576
|
+
children?: react.ReactNode;
|
|
2577
|
+
} & Pick<react.HTMLAttributes<HTMLElement>, "style"> & {
|
|
2578
|
+
htmlProps?: react.HTMLAttributes<HTMLParagraphElement> | undefined;
|
|
2579
|
+
} & react.RefAttributes<HTMLParagraphElement>>;
|
|
2580
|
+
|
|
2581
|
+
interface CommonInputProps {
|
|
2582
|
+
/**Ledetekst for input. */
|
|
2583
|
+
label?: string;
|
|
2584
|
+
/**Bredde for inputfeltet. */
|
|
2585
|
+
width?: Property.Width<string>;
|
|
2586
|
+
/**Hjelpetekst. */
|
|
2587
|
+
tip?: string;
|
|
2588
|
+
/**Feilmelding. Setter også error state. */
|
|
2589
|
+
errorMessage?: string;
|
|
2590
|
+
}
|
|
2591
|
+
type InputSize = 'medium' | 'small' | 'tiny';
|
|
2592
|
+
type InputProps = CommonInputProps & {
|
|
2593
|
+
/**Størrelse på inputfeltet. */
|
|
2594
|
+
componentSize?: InputSize;
|
|
2595
|
+
} & InputHTMLAttributes<HTMLInputElement>;
|
|
2596
|
+
type StyledCommonInputProps = Pick<InputProps, 'readOnly' | 'disabled'> & {
|
|
2597
|
+
hasErrorMessage: boolean;
|
|
2598
|
+
};
|
|
2599
|
+
type StyledInputProps = StyledCommonInputProps & {
|
|
2600
|
+
prefixLength?: number;
|
|
2601
|
+
suffixLength?: number;
|
|
2602
|
+
} & Pick<InputProps, 'componentSize'>;
|
|
2603
|
+
type InputTypographyTypes = {
|
|
2604
|
+
[k in InputSize]: StaticTypographyType;
|
|
2605
|
+
};
|
|
2606
|
+
|
|
2607
|
+
declare const inputTypographyTypes: InputTypographyTypes;
|
|
2608
|
+
declare const inputTokens: {
|
|
2609
|
+
input: {
|
|
2610
|
+
base: {
|
|
2611
|
+
color: string;
|
|
2612
|
+
borderRadius: string;
|
|
2613
|
+
border: string;
|
|
2614
|
+
borderColor: string;
|
|
2615
|
+
backgroundColor: string;
|
|
2616
|
+
padding: string;
|
|
2617
|
+
};
|
|
2618
|
+
disabled: {
|
|
2619
|
+
color: string;
|
|
2620
|
+
backgroundColor: string;
|
|
2621
|
+
};
|
|
2622
|
+
readOnly: {
|
|
2623
|
+
backgroundColor: string;
|
|
2624
|
+
};
|
|
2625
|
+
sizes: {
|
|
2626
|
+
medium: {
|
|
2627
|
+
padding: string;
|
|
2628
|
+
};
|
|
2629
|
+
small: {
|
|
2630
|
+
padding: string;
|
|
2631
|
+
};
|
|
2632
|
+
tiny: {
|
|
2633
|
+
padding: string;
|
|
2634
|
+
};
|
|
2635
|
+
};
|
|
2636
|
+
affix: {
|
|
2637
|
+
gap: number;
|
|
2638
|
+
};
|
|
2639
|
+
};
|
|
2640
|
+
container: {
|
|
2641
|
+
gap: string;
|
|
2642
|
+
};
|
|
2643
|
+
};
|
|
2644
|
+
|
|
2645
|
+
declare function getDefaultText(value?: string | number | readonly string[], defaultValue?: string | number | readonly string[]): string;
|
|
2646
|
+
|
|
2647
|
+
type Elevation = 1 | 2 | 3 | 4;
|
|
2648
|
+
type Border = 'light' | 'dark';
|
|
2649
|
+
interface PaperProps {
|
|
2650
|
+
elevation?: Elevation;
|
|
2651
|
+
border?: Border;
|
|
2652
|
+
}
|
|
2653
|
+
declare const Paper: styled_components.IStyledComponent<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, PaperProps>>;
|
|
2654
|
+
|
|
2655
|
+
declare const RequiredMarker: () => react_jsx_runtime.JSX.Element;
|
|
2656
|
+
|
|
2657
|
+
/**
|
|
2658
|
+
* Kombinerer refs for et element.
|
|
2659
|
+
* Eksempel på bruk:
|
|
2660
|
+
* ```
|
|
2661
|
+
* const MyComponent = forwardRef<HTMLDivElement, Props>((props, ref) => {
|
|
2662
|
+
*
|
|
2663
|
+
* const itemRef = useRef<HTMLDivElement>(null);
|
|
2664
|
+
* const combinedRef = useCombinedRef(ref, itemRef);
|
|
2665
|
+
*
|
|
2666
|
+
* return <div ref={combinedRef}>innhold</div>
|
|
2667
|
+
* });
|
|
2668
|
+
* ```
|
|
2669
|
+
* @param refs array med refs.
|
|
2670
|
+
* @template T elementet som refereres til.
|
|
2671
|
+
* @returns callback med kombinerte refs.
|
|
2672
|
+
*
|
|
2673
|
+
* {@link useCombinedRef}
|
|
2674
|
+
*/
|
|
2675
|
+
declare function useCombinedRef<T>(...refs: React.Ref<T>[]): RefCallback<T>;
|
|
2676
|
+
|
|
2677
|
+
type Placement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'right' | 'right-start' | 'right-end' | 'left' | 'left-start' | 'left-end';
|
|
2678
|
+
interface UseFloatPositionOptions {
|
|
2679
|
+
/**
|
|
2680
|
+
* Whether to update the position of the floating element on every animation frame if required.
|
|
2681
|
+
* This is optimized for performance but can still be costly.
|
|
2682
|
+
* @default true
|
|
2683
|
+
*/
|
|
2684
|
+
animationFrame?: boolean;
|
|
2685
|
+
/**
|
|
2686
|
+
* `offset` is used to displace the floating element from its core placement.
|
|
2687
|
+
* The value passed is logical, meaning its effect on the
|
|
2688
|
+
* physical result is dependent on the writing direction (e.g. RTL).
|
|
2689
|
+
* @default 8
|
|
2690
|
+
*/
|
|
2691
|
+
offset?: number;
|
|
2692
|
+
/**
|
|
2693
|
+
* Where to place the floating element relative to its reference element.
|
|
2694
|
+
* @default 'bottom'
|
|
2695
|
+
*/
|
|
2696
|
+
placement?: Placement;
|
|
2697
|
+
}
|
|
2698
|
+
declare const useFloatPosition: (arrowRef: HTMLElement | null, options?: UseFloatPositionOptions) => {
|
|
2699
|
+
refs: {
|
|
2700
|
+
reference: react.MutableRefObject<_floating_ui_react_dom.ReferenceType | null>;
|
|
2701
|
+
floating: react.MutableRefObject<HTMLElement | null>;
|
|
2702
|
+
setReference: (node: _floating_ui_react_dom.ReferenceType | null) => void;
|
|
2703
|
+
setFloating: (node: HTMLElement | null) => void;
|
|
2704
|
+
};
|
|
2705
|
+
styles: {
|
|
2706
|
+
floating: {
|
|
2707
|
+
position: Strategy;
|
|
2708
|
+
top: number;
|
|
2709
|
+
left: number;
|
|
2710
|
+
};
|
|
2711
|
+
arrow: {
|
|
2712
|
+
[x: string]: string | number;
|
|
2713
|
+
position: Strategy;
|
|
2714
|
+
top: string | number;
|
|
2715
|
+
left: string | number;
|
|
2716
|
+
transform: string;
|
|
2717
|
+
} | undefined;
|
|
2718
|
+
};
|
|
2719
|
+
};
|
|
2720
|
+
|
|
2721
|
+
/**
|
|
2722
|
+
* Fanger fokus i en loop inni et element. Typisk bruk:
|
|
2723
|
+
* ```
|
|
2724
|
+
* const MyComponent = (props) => {
|
|
2725
|
+
*
|
|
2726
|
+
* const componentRef = useFocusTrap<HTMLDivElement>(props.isOpen);
|
|
2727
|
+
*
|
|
2728
|
+
* return props.isOpen ? <div ref={componentRef}><button>click</button></div> : null;
|
|
2729
|
+
*
|
|
2730
|
+
* }
|
|
2731
|
+
* ```
|
|
2732
|
+
* @param active om focus skal fanges, f.eks. når en modal åpnes.
|
|
2733
|
+
* @param initialFocusRef Ref som skal motta focus når focus trap er aktiv.
|
|
2734
|
+
* @returns ref til elementet som fanger fokus.
|
|
2735
|
+
*/
|
|
2736
|
+
declare function useFocusTrap<T extends HTMLElement>(active: boolean, initialFocusRef?: RefObject<HTMLElement> | undefined): RefObject<T>;
|
|
2737
|
+
|
|
2738
|
+
declare const useIsMounted: () => () => boolean;
|
|
2739
|
+
|
|
2740
|
+
/**
|
|
2741
|
+
* Tillater effekter og animasjoner å bli gjennomført like etter et element blir lagt til eller like før det blir fjernet fra DOM.
|
|
2742
|
+
* Typisk bruk:
|
|
2743
|
+
* ```
|
|
2744
|
+
* // CSS
|
|
2745
|
+
* .component {
|
|
2746
|
+
* transition: opacity 0.2s;
|
|
2747
|
+
* opacity: 0;
|
|
2748
|
+
* }
|
|
2749
|
+
*
|
|
2750
|
+
* .transitionedIn.mounted {
|
|
2751
|
+
* opacity: 1;
|
|
2752
|
+
* }
|
|
2753
|
+
*
|
|
2754
|
+
* const MyComponent = (props) => {
|
|
2755
|
+
*
|
|
2756
|
+
* const hasTransitionedIn = useMountTransition(props.isMounted, 500);
|
|
2757
|
+
*
|
|
2758
|
+
* return props.isMounted || hasTransitionedIn ? (
|
|
2759
|
+
* <div
|
|
2760
|
+
* className={`component ${hasTransitionedIn && 'transitionedIn'} ${props.isMounted && 'mounted'}`}
|
|
2761
|
+
* >
|
|
2762
|
+
* innhold
|
|
2763
|
+
* </div>)
|
|
2764
|
+
* : null;
|
|
2765
|
+
*
|
|
2766
|
+
* }
|
|
2767
|
+
* ```
|
|
2768
|
+
* @param isMounted om elementet er mounted.
|
|
2769
|
+
* @param unmountDelay hvor lenge transition skal vare før unmount.
|
|
2770
|
+
* @returns om transition er ferdig.
|
|
2771
|
+
*/
|
|
2772
|
+
declare const useMountTransition: (isMounted: boolean, unmountDelay: number) => boolean;
|
|
2773
|
+
|
|
2774
|
+
/**
|
|
2775
|
+
* Kjører logikk når brukeren klikker utenfor et element, f.eks at elementet fjernes fra DOM.
|
|
2776
|
+
* Typisk bruk:
|
|
2777
|
+
* ```
|
|
2778
|
+
* const [isOpen, setOpen] = useState(true);
|
|
2779
|
+
* const ref = useRef<HTMLElement>(null);
|
|
2780
|
+
* useOnClickOutside(ref, () => setOpen(false));
|
|
2781
|
+
*
|
|
2782
|
+
* return <div ref={ref}>innhold</div>
|
|
2783
|
+
* ```
|
|
2784
|
+
* @param element HTML elementet man klikker utenfor.
|
|
2785
|
+
* @param handler funksjonen som kjøres ved klikk utenfor.
|
|
2786
|
+
*/
|
|
2787
|
+
declare function useOnClickOutside(element: HTMLElement | null | (HTMLElement | null)[], handler: (event: MouseEvent | TouchEvent) => void): void;
|
|
2788
|
+
|
|
2789
|
+
/**
|
|
2790
|
+
* Kjører logikk når en spesifisert tast blir trykt ned.
|
|
2791
|
+
* Typisk bruk:
|
|
2792
|
+
* ```
|
|
2793
|
+
* const [isOpen, setOpen] = useState(true);
|
|
2794
|
+
* const ref = useRef<HTMLElement>(null);
|
|
2795
|
+
* useOnKeyDown(['Escape', 'Esc'], () => setOpen(false));
|
|
2796
|
+
*
|
|
2797
|
+
* return isOpen ? <div>innhold</div> : null;
|
|
2798
|
+
* ```
|
|
2799
|
+
* @param key tasten som trykkes.
|
|
2800
|
+
* @param handler funksjonen som skal kjøres.
|
|
2801
|
+
*/
|
|
2802
|
+
declare const useOnKeyDown: (key: string | string[], handler: (event: KeyboardEvent) => void) => void;
|
|
2803
|
+
|
|
2804
|
+
/**
|
|
2805
|
+
* Returnerer fokus til et element når første eller siste barn i en container mister fokus ved tastaturnavigasjon. Typisk bruk:
|
|
2806
|
+
* ```
|
|
2807
|
+
* const MyComponent = (props) => {
|
|
2808
|
+
*
|
|
2809
|
+
* const [isOpen, setOpen] = useState(true);
|
|
2810
|
+
* const close = () => setOpen(false);
|
|
2811
|
+
* const triggerRef = useRef<HTMLButtonElement>(null);
|
|
2812
|
+
* const containerRef = useReturnFocusOnBlur<HTMLDivElement>(
|
|
2813
|
+
* isOpen,
|
|
2814
|
+
* triggerRef.current,
|
|
2815
|
+
* () => close()
|
|
2816
|
+
* );
|
|
2817
|
+
*
|
|
2818
|
+
* return (
|
|
2819
|
+
* <div>
|
|
2820
|
+
* <button ref={triggerRef} >Åpne popover</button>
|
|
2821
|
+
* <div ref={containerRef}>
|
|
2822
|
+
* <button>gjør noe</button>
|
|
2823
|
+
* </div>
|
|
2824
|
+
* </div>
|
|
2825
|
+
* )
|
|
2826
|
+
* }
|
|
2827
|
+
* ```
|
|
2828
|
+
* @param active om container skal få fokus, f.eks. når en modal åpnes.
|
|
2829
|
+
* @param triggerElement elementet som skal få fokus når fokus forlater container.
|
|
2830
|
+
* @param onBlur ekstra logikk når fokus forlater container.
|
|
2831
|
+
* @returns ref til container som får fokus.
|
|
2832
|
+
*/
|
|
2833
|
+
declare function useReturnFocusOnBlur<T extends HTMLElement>(active: boolean, onBlur: () => void, triggerElement?: HTMLElement | null): RefObject<T>;
|
|
2834
|
+
|
|
2835
|
+
declare const isKeyboardEvent: (e: Event | KeyboardEvent$1<Element>) => e is KeyboardEvent$1<Element>;
|
|
2836
|
+
/**
|
|
2837
|
+
* Bytter fokus mellom elementer i en gruppe med piltaster og ikke Tab, og looper fokus i gruppen. Typisk bruk:
|
|
2838
|
+
* ```
|
|
2839
|
+
* import elements from './elements';
|
|
2840
|
+
* import RoveItem from './RoveItem';
|
|
2841
|
+
*
|
|
2842
|
+
* const MyComponent = () => {
|
|
2843
|
+
* const [focus, setFocus] = useRoveFocus(elements.length);
|
|
2844
|
+
*
|
|
2845
|
+
* return (
|
|
2846
|
+
* <ul>
|
|
2847
|
+
* {elements.map((element, index) => (
|
|
2848
|
+
* <li key={element}>
|
|
2849
|
+
* <RoveItem index={index} focus={focus === index} setFocus={setFocus}>{element.name}</RoveItem>
|
|
2850
|
+
* </li>
|
|
2851
|
+
* ))}
|
|
2852
|
+
* </ul>)
|
|
2853
|
+
* }
|
|
2854
|
+
* ```
|
|
2855
|
+
* @param size antall elementer i gruppen.
|
|
2856
|
+
* @param reset om fokus i gruppen skal nullstilles; når man tabber seg inn i gruppen skal focus være nullstilt.
|
|
2857
|
+
* @param direction retning elementene blas i.
|
|
2858
|
+
* @returns hook par: indeksen til fokuserte elemenentet og funksjonen som håndterer fokus.
|
|
2859
|
+
*/
|
|
2860
|
+
declare function useRoveFocus(size?: number, reset?: boolean, direction?: Direction$1): [number, Dispatch<SetStateAction<number>>];
|
|
2861
|
+
|
|
2862
|
+
declare enum ScreenSize {
|
|
2863
|
+
XSmall = 0,
|
|
2864
|
+
Small = 1,
|
|
2865
|
+
Medium = 2,
|
|
2866
|
+
Large = 3,
|
|
2867
|
+
XLarge = 4
|
|
2868
|
+
}
|
|
2869
|
+
/**
|
|
2870
|
+
* Sjekker skjermstørrelsen basert på brekkpunkter definerte i designsystemet. Eksempel på bruk:
|
|
2871
|
+
* ```
|
|
2872
|
+
* const MyComponent = () => {
|
|
2873
|
+
* const screenSize = useScreenSize();
|
|
2874
|
+
* const isSmallScreen = screenSize === ScreenSize.Small;
|
|
2875
|
+
*
|
|
2876
|
+
* return <div className={isSmallScreen && 'smallDiv'} >innhold</div>
|
|
2877
|
+
* }
|
|
2878
|
+
* ```
|
|
2879
|
+
* @returns den aktuelle skjermstørrelsen basert på {@link ScreenSize}.
|
|
2880
|
+
*/
|
|
2881
|
+
declare const useScreenSize: () => ScreenSize;
|
|
2882
|
+
|
|
2883
|
+
type ScreenSizeLiteral = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
2884
|
+
declare const getLiteralScreenSize: (screenSize: ScreenSize) => ScreenSizeLiteral;
|
|
2885
|
+
type BreakpointBasedProps<T extends keyof StandardProperties> = {
|
|
2886
|
+
[k in ScreenSizeLiteral]?: StandardProperties[T];
|
|
2887
|
+
};
|
|
2888
|
+
|
|
2889
|
+
declare const dangerInputfield: {
|
|
2890
|
+
borderColor: string;
|
|
2891
|
+
boxShadow: string;
|
|
2892
|
+
};
|
|
2893
|
+
|
|
2894
|
+
declare const focusInputfield: {
|
|
2895
|
+
outline: string;
|
|
2896
|
+
borderColor: string;
|
|
2897
|
+
boxShadow: string;
|
|
2898
|
+
};
|
|
2899
|
+
declare const focusDangerInputfield: {
|
|
2900
|
+
borderColor: string;
|
|
2901
|
+
boxShadow: string;
|
|
2902
|
+
};
|
|
2903
|
+
|
|
2904
|
+
declare const outlineOffset = "2px";
|
|
2905
|
+
declare const focusVisible: {
|
|
2906
|
+
outline: string;
|
|
2907
|
+
outlineOffset: string;
|
|
2908
|
+
};
|
|
2909
|
+
declare const focusVisibleOnDark: {
|
|
2910
|
+
outline: string;
|
|
2911
|
+
outlineOffset: string;
|
|
2912
|
+
};
|
|
2913
|
+
declare const focusVisibleTransitionValue = "outline-offset 0.2s";
|
|
2914
|
+
declare const focusVisibleWithBorder: {
|
|
2915
|
+
outline: string;
|
|
2916
|
+
borderColor: string;
|
|
2917
|
+
boxShadow: string;
|
|
2918
|
+
};
|
|
2919
|
+
declare const focusVisibleThickWithBorderOnDark: {
|
|
2920
|
+
outline: string;
|
|
2921
|
+
borderColor: string;
|
|
2922
|
+
boxShadow: string;
|
|
2923
|
+
};
|
|
2924
|
+
declare const focusVisibleInset: {
|
|
2925
|
+
outline: string;
|
|
2926
|
+
boxShadow: string;
|
|
2927
|
+
};
|
|
2928
|
+
|
|
2929
|
+
declare const hideInput: {
|
|
2930
|
+
clip: string;
|
|
2931
|
+
position: string;
|
|
2932
|
+
height: string;
|
|
2933
|
+
width: string;
|
|
2934
|
+
margin: number;
|
|
2935
|
+
};
|
|
2936
|
+
|
|
2937
|
+
declare const hoverWithBorder: {
|
|
2938
|
+
borderColor: string;
|
|
2939
|
+
boxShadow: string;
|
|
2940
|
+
};
|
|
2941
|
+
declare const hoverInputfield: {
|
|
2942
|
+
borderColor: string;
|
|
2943
|
+
boxShadow: string;
|
|
2944
|
+
};
|
|
2945
|
+
declare const hoverDangerInputfield: {
|
|
2946
|
+
borderColor: string;
|
|
2947
|
+
boxShadow: string;
|
|
2948
|
+
};
|
|
2949
|
+
|
|
2950
|
+
declare const normalizeButton: {
|
|
2951
|
+
margin: number;
|
|
2952
|
+
textTransform: Property.TextTransform;
|
|
2953
|
+
};
|
|
2954
|
+
|
|
2955
|
+
declare const removeButtonStyling: {
|
|
2956
|
+
background: string;
|
|
2957
|
+
color: string;
|
|
2958
|
+
border: string;
|
|
2959
|
+
padding: number;
|
|
2960
|
+
font: string;
|
|
2961
|
+
cursor: string;
|
|
2962
|
+
outline: string;
|
|
2963
|
+
};
|
|
2964
|
+
|
|
2965
|
+
declare const removeListStyling: {
|
|
2966
|
+
listStyle: string;
|
|
2967
|
+
padding: number;
|
|
2968
|
+
margin: number;
|
|
2969
|
+
};
|
|
2970
|
+
|
|
2971
|
+
declare const selection: {
|
|
2972
|
+
color: string;
|
|
2973
|
+
backgroundColor: string;
|
|
2974
|
+
};
|
|
2975
|
+
|
|
2976
|
+
declare const visibilityTransition: (open: boolean) => styled_components.RuleSet<object>;
|
|
2977
|
+
|
|
2978
|
+
type StyledSvgProps = SVGAttributes<SVGSVGElement>;
|
|
2979
|
+
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"> & {
|
|
2980
|
+
ref?: ((instance: SVGSVGElement | null) => void) | react.RefObject<SVGSVGElement> | null | undefined;
|
|
2981
|
+
}>, StyledSvgProps>, StyledSvgProps>>;
|
|
2982
|
+
|
|
2983
|
+
type SvgProps = {
|
|
2984
|
+
title?: string;
|
|
2985
|
+
} & SVGAttributes<SVGSVGElement>;
|
|
2986
|
+
type SvgIcon = (props: SvgProps) => JSX.Element;
|
|
2987
|
+
|
|
2988
|
+
declare function AddressShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2989
|
+
|
|
2990
|
+
declare function AgreementIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2991
|
+
|
|
2992
|
+
declare function AppsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2993
|
+
|
|
2994
|
+
declare function ArchiveIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2995
|
+
|
|
2996
|
+
declare function ArrowDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2997
|
+
|
|
2998
|
+
declare function ArrowLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
2999
|
+
|
|
3000
|
+
declare function ArrowRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3001
|
+
|
|
3002
|
+
declare function ArrowUpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3003
|
+
|
|
3004
|
+
declare function AttachmentIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3005
|
+
|
|
3006
|
+
declare function BlockIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3007
|
+
|
|
3008
|
+
declare function BookIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3009
|
+
|
|
3010
|
+
declare function BuildIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3011
|
+
|
|
3012
|
+
declare function BuildCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3013
|
+
|
|
3014
|
+
declare function CalendarIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3015
|
+
|
|
3016
|
+
declare function CalendarMonthIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3017
|
+
|
|
3018
|
+
declare function CalendarViewDayIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3019
|
+
|
|
3020
|
+
declare function CalendarViewMonthIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3021
|
+
|
|
3022
|
+
declare function CalendarViewWeekIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3023
|
+
|
|
3024
|
+
declare function CallIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3025
|
+
|
|
3026
|
+
declare function CaringIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3027
|
+
|
|
3028
|
+
declare function ChatIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3029
|
+
|
|
3030
|
+
declare function CheckIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3031
|
+
|
|
3032
|
+
declare function CheckCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3033
|
+
|
|
3034
|
+
declare function ChecklistIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3035
|
+
|
|
3036
|
+
declare function ChevronDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3037
|
+
|
|
3038
|
+
declare function ChevronFirstIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3039
|
+
|
|
3040
|
+
declare function ChevronLargeLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3041
|
+
|
|
3042
|
+
declare function ChevronLargeRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3043
|
+
|
|
3044
|
+
declare function ChevronLastIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3045
|
+
|
|
3046
|
+
declare function ChevronLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3047
|
+
|
|
3048
|
+
declare function ChevronRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3049
|
+
|
|
3050
|
+
declare function ChevronUpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3051
|
+
|
|
3052
|
+
declare function CloseIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3053
|
+
|
|
3054
|
+
declare function CloseSmallIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3055
|
+
|
|
3056
|
+
declare function CloseCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3057
|
+
|
|
3058
|
+
declare function CloudIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3059
|
+
|
|
3060
|
+
declare function CollapseIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3061
|
+
|
|
3062
|
+
declare function CommentIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3063
|
+
|
|
3064
|
+
declare function CopyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3065
|
+
|
|
3066
|
+
declare function CourtIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3067
|
+
|
|
3068
|
+
declare function DateRangeIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3069
|
+
|
|
3070
|
+
declare function DeathsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3071
|
+
|
|
3072
|
+
declare function DoubleChevronLeftIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3073
|
+
|
|
3074
|
+
declare function DoubleChevronRightIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3075
|
+
|
|
3076
|
+
declare function DownloadIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3077
|
+
|
|
3078
|
+
declare function DownloadDoneIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3079
|
+
|
|
3080
|
+
declare function DragHandleIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3081
|
+
|
|
3082
|
+
declare function EditIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3083
|
+
|
|
3084
|
+
declare function ErrorIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3085
|
+
|
|
3086
|
+
declare function ExclaimIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3087
|
+
|
|
3088
|
+
declare function ExpandIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3089
|
+
|
|
3090
|
+
declare function FacebookIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3091
|
+
|
|
3092
|
+
declare function FamilyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3093
|
+
|
|
3094
|
+
declare function FeedbackIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3095
|
+
|
|
3096
|
+
declare function FileIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3097
|
+
|
|
3098
|
+
declare function FileAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3099
|
+
|
|
3100
|
+
declare function FileShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3101
|
+
|
|
3102
|
+
declare function FileTextIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3103
|
+
|
|
3104
|
+
declare function FilterIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3105
|
+
|
|
3106
|
+
declare function FilterListIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3107
|
+
|
|
3108
|
+
declare function FilterListOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3109
|
+
|
|
3110
|
+
declare function FilterOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3111
|
+
|
|
3112
|
+
declare function FindInPageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3113
|
+
|
|
3114
|
+
declare function FolderIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3115
|
+
|
|
3116
|
+
declare function FolderAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3117
|
+
|
|
3118
|
+
declare function FolderShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3119
|
+
|
|
3120
|
+
declare function FullscreenExitIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3121
|
+
|
|
3122
|
+
declare function FullscreenIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3123
|
+
|
|
3124
|
+
declare function GavelIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3125
|
+
|
|
3126
|
+
declare function HelpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3127
|
+
|
|
3128
|
+
declare function HelpFilledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3129
|
+
|
|
3130
|
+
declare function HomeIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3131
|
+
|
|
3132
|
+
declare function HourglassBottom(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3133
|
+
|
|
3134
|
+
declare function HourglassDisabled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3135
|
+
|
|
3136
|
+
declare function HourglassEmpty(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3137
|
+
|
|
3138
|
+
declare function HourglassFull(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3139
|
+
|
|
3140
|
+
declare function HourglassTop(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3141
|
+
|
|
3142
|
+
declare function ImageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3143
|
+
|
|
3144
|
+
declare function InfoIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3145
|
+
|
|
3146
|
+
declare function InstagramIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3147
|
+
|
|
3148
|
+
declare function JordskifterettIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3149
|
+
|
|
3150
|
+
declare function KeyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3151
|
+
|
|
3152
|
+
declare function LagmannsrettIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3153
|
+
|
|
3154
|
+
declare function LanguageIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3155
|
+
|
|
3156
|
+
declare function LinkIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3157
|
+
|
|
3158
|
+
declare function LinkedInIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3159
|
+
|
|
3160
|
+
declare function LinkOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3161
|
+
|
|
3162
|
+
declare function ListIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3163
|
+
|
|
3164
|
+
declare function ListAltIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3165
|
+
|
|
3166
|
+
declare function LocationIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3167
|
+
|
|
3168
|
+
declare function LockIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3169
|
+
|
|
3170
|
+
declare function LockOpenIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3171
|
+
|
|
3172
|
+
declare function LoginIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3173
|
+
|
|
3174
|
+
declare function LogoutIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3175
|
+
|
|
3176
|
+
declare function MailIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3177
|
+
|
|
3178
|
+
declare function MailOpenIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3179
|
+
|
|
3180
|
+
declare function MenuIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3181
|
+
|
|
3182
|
+
declare function MinusIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3183
|
+
|
|
3184
|
+
declare function MinusCirledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3185
|
+
|
|
3186
|
+
declare function MoreHorizontalIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3187
|
+
|
|
3188
|
+
declare function MoreVerticalIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3189
|
+
|
|
3190
|
+
declare function NotarialIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3191
|
+
|
|
3192
|
+
declare function NotificationsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3193
|
+
|
|
3194
|
+
declare function NotificationsOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3195
|
+
|
|
3196
|
+
declare function OnlineMeetingIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3197
|
+
|
|
3198
|
+
declare function OpenExternalIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3199
|
+
|
|
3200
|
+
declare function PayoutIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3201
|
+
|
|
3202
|
+
declare function PdfIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3203
|
+
|
|
3204
|
+
declare function PersonIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3205
|
+
|
|
3206
|
+
declare function PersonAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3207
|
+
|
|
3208
|
+
declare function PersonShieldedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3209
|
+
|
|
3210
|
+
declare function PinIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3211
|
+
|
|
3212
|
+
declare function PlusIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3213
|
+
|
|
3214
|
+
declare function PlusCircledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3215
|
+
|
|
3216
|
+
declare function PrintIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3217
|
+
|
|
3218
|
+
declare function PropertyIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3219
|
+
|
|
3220
|
+
declare function PublishIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3221
|
+
|
|
3222
|
+
declare function QuestionAnswerIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3223
|
+
|
|
3224
|
+
declare function ReceiptIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3225
|
+
|
|
3226
|
+
declare function RedoIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3227
|
+
|
|
3228
|
+
declare function RefreshIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3229
|
+
|
|
3230
|
+
declare function ReplayIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3231
|
+
|
|
3232
|
+
declare function SearchIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3233
|
+
|
|
3234
|
+
declare function SettingsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3235
|
+
|
|
3236
|
+
declare function SmsIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3237
|
+
|
|
3238
|
+
declare function StarIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3239
|
+
|
|
3240
|
+
declare function StarFilledIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3241
|
+
|
|
3242
|
+
declare function StarHalfFilled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3243
|
+
|
|
3244
|
+
declare function SyncIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3245
|
+
|
|
3246
|
+
declare function Thumbdown(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3247
|
+
|
|
3248
|
+
declare function ThumbdownFilled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3249
|
+
|
|
3250
|
+
declare function Thumbup(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3251
|
+
|
|
3252
|
+
declare function ThumbupFilled(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3253
|
+
|
|
3254
|
+
declare function TimeIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3255
|
+
|
|
3256
|
+
declare function TingrettIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3257
|
+
|
|
3258
|
+
declare function TipIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3259
|
+
|
|
3260
|
+
declare function TrashIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3261
|
+
|
|
3262
|
+
declare function TwitterIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3263
|
+
|
|
3264
|
+
declare function UndoIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3265
|
+
|
|
3266
|
+
declare function UnfoldLessIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3267
|
+
|
|
3268
|
+
declare function UnfoldMoreIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3269
|
+
|
|
3270
|
+
declare function UploadIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3271
|
+
|
|
3272
|
+
declare function VisibilityOffIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3273
|
+
|
|
3274
|
+
declare function VisibilityOnIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3275
|
+
|
|
3276
|
+
declare function WarningIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3277
|
+
|
|
3278
|
+
declare function ZoomInIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3279
|
+
|
|
3280
|
+
declare function ZoomOutIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3281
|
+
|
|
3282
|
+
declare function BarChartIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3283
|
+
|
|
3284
|
+
declare function BarChartBoxedIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3285
|
+
|
|
3286
|
+
declare function LineChartIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3287
|
+
|
|
3288
|
+
declare function TrendingUpIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3289
|
+
|
|
3290
|
+
declare function TrendingDownIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3291
|
+
|
|
3292
|
+
declare function LibraryAddIcon(props: SvgProps): react_jsx_runtime.JSX.Element;
|
|
3293
|
+
|
|
3294
|
+
declare const index_AddressShieldedIcon: typeof AddressShieldedIcon;
|
|
3295
|
+
declare const index_AgreementIcon: typeof AgreementIcon;
|
|
3296
|
+
declare const index_AppsIcon: typeof AppsIcon;
|
|
3297
|
+
declare const index_ArchiveIcon: typeof ArchiveIcon;
|
|
3298
|
+
declare const index_ArrowDownIcon: typeof ArrowDownIcon;
|
|
3299
|
+
declare const index_ArrowLeftIcon: typeof ArrowLeftIcon;
|
|
3300
|
+
declare const index_ArrowRightIcon: typeof ArrowRightIcon;
|
|
3301
|
+
declare const index_ArrowUpIcon: typeof ArrowUpIcon;
|
|
3302
|
+
declare const index_AttachmentIcon: typeof AttachmentIcon;
|
|
3303
|
+
declare const index_BarChartBoxedIcon: typeof BarChartBoxedIcon;
|
|
3304
|
+
declare const index_BarChartIcon: typeof BarChartIcon;
|
|
3305
|
+
declare const index_BlockIcon: typeof BlockIcon;
|
|
3306
|
+
declare const index_BookIcon: typeof BookIcon;
|
|
3307
|
+
declare const index_BuildCircledIcon: typeof BuildCircledIcon;
|
|
3308
|
+
declare const index_BuildIcon: typeof BuildIcon;
|
|
3309
|
+
declare const index_CalendarIcon: typeof CalendarIcon;
|
|
3310
|
+
declare const index_CalendarMonthIcon: typeof CalendarMonthIcon;
|
|
3311
|
+
declare const index_CalendarViewDayIcon: typeof CalendarViewDayIcon;
|
|
3312
|
+
declare const index_CalendarViewMonthIcon: typeof CalendarViewMonthIcon;
|
|
3313
|
+
declare const index_CalendarViewWeekIcon: typeof CalendarViewWeekIcon;
|
|
3314
|
+
declare const index_CallIcon: typeof CallIcon;
|
|
3315
|
+
declare const index_CaringIcon: typeof CaringIcon;
|
|
3316
|
+
declare const index_ChatIcon: typeof ChatIcon;
|
|
3317
|
+
declare const index_CheckCircledIcon: typeof CheckCircledIcon;
|
|
3318
|
+
declare const index_CheckIcon: typeof CheckIcon;
|
|
3319
|
+
declare const index_ChecklistIcon: typeof ChecklistIcon;
|
|
3320
|
+
declare const index_ChevronDownIcon: typeof ChevronDownIcon;
|
|
3321
|
+
declare const index_ChevronFirstIcon: typeof ChevronFirstIcon;
|
|
3322
|
+
declare const index_ChevronLargeLeftIcon: typeof ChevronLargeLeftIcon;
|
|
3323
|
+
declare const index_ChevronLargeRightIcon: typeof ChevronLargeRightIcon;
|
|
3324
|
+
declare const index_ChevronLastIcon: typeof ChevronLastIcon;
|
|
3325
|
+
declare const index_ChevronLeftIcon: typeof ChevronLeftIcon;
|
|
3326
|
+
declare const index_ChevronRightIcon: typeof ChevronRightIcon;
|
|
3327
|
+
declare const index_ChevronUpIcon: typeof ChevronUpIcon;
|
|
3328
|
+
declare const index_CloseCircledIcon: typeof CloseCircledIcon;
|
|
3329
|
+
declare const index_CloseIcon: typeof CloseIcon;
|
|
3330
|
+
declare const index_CloseSmallIcon: typeof CloseSmallIcon;
|
|
3331
|
+
declare const index_CloudIcon: typeof CloudIcon;
|
|
3332
|
+
declare const index_CollapseIcon: typeof CollapseIcon;
|
|
3333
|
+
declare const index_CommentIcon: typeof CommentIcon;
|
|
3334
|
+
declare const index_CopyIcon: typeof CopyIcon;
|
|
3335
|
+
declare const index_CourtIcon: typeof CourtIcon;
|
|
3336
|
+
declare const index_DateRangeIcon: typeof DateRangeIcon;
|
|
3337
|
+
declare const index_DeathsIcon: typeof DeathsIcon;
|
|
3338
|
+
declare const index_DoubleChevronLeftIcon: typeof DoubleChevronLeftIcon;
|
|
3339
|
+
declare const index_DoubleChevronRightIcon: typeof DoubleChevronRightIcon;
|
|
3340
|
+
declare const index_DownloadDoneIcon: typeof DownloadDoneIcon;
|
|
3341
|
+
declare const index_DownloadIcon: typeof DownloadIcon;
|
|
3342
|
+
declare const index_DragHandleIcon: typeof DragHandleIcon;
|
|
3343
|
+
declare const index_EditIcon: typeof EditIcon;
|
|
3344
|
+
declare const index_ErrorIcon: typeof ErrorIcon;
|
|
3345
|
+
declare const index_ExclaimIcon: typeof ExclaimIcon;
|
|
3346
|
+
declare const index_ExpandIcon: typeof ExpandIcon;
|
|
3347
|
+
declare const index_FacebookIcon: typeof FacebookIcon;
|
|
3348
|
+
declare const index_FamilyIcon: typeof FamilyIcon;
|
|
3349
|
+
declare const index_FeedbackIcon: typeof FeedbackIcon;
|
|
3350
|
+
declare const index_FileAddIcon: typeof FileAddIcon;
|
|
3351
|
+
declare const index_FileIcon: typeof FileIcon;
|
|
3352
|
+
declare const index_FileShieldedIcon: typeof FileShieldedIcon;
|
|
3353
|
+
declare const index_FileTextIcon: typeof FileTextIcon;
|
|
3354
|
+
declare const index_FilterIcon: typeof FilterIcon;
|
|
3355
|
+
declare const index_FilterListIcon: typeof FilterListIcon;
|
|
3356
|
+
declare const index_FilterListOffIcon: typeof FilterListOffIcon;
|
|
3357
|
+
declare const index_FilterOffIcon: typeof FilterOffIcon;
|
|
3358
|
+
declare const index_FindInPageIcon: typeof FindInPageIcon;
|
|
3359
|
+
declare const index_FolderAddIcon: typeof FolderAddIcon;
|
|
3360
|
+
declare const index_FolderIcon: typeof FolderIcon;
|
|
3361
|
+
declare const index_FolderShieldedIcon: typeof FolderShieldedIcon;
|
|
3362
|
+
declare const index_FullscreenExitIcon: typeof FullscreenExitIcon;
|
|
3363
|
+
declare const index_FullscreenIcon: typeof FullscreenIcon;
|
|
3364
|
+
declare const index_GavelIcon: typeof GavelIcon;
|
|
3365
|
+
declare const index_HelpFilledIcon: typeof HelpFilledIcon;
|
|
3366
|
+
declare const index_HelpIcon: typeof HelpIcon;
|
|
3367
|
+
declare const index_HomeIcon: typeof HomeIcon;
|
|
3368
|
+
declare const index_HourglassBottom: typeof HourglassBottom;
|
|
3369
|
+
declare const index_HourglassDisabled: typeof HourglassDisabled;
|
|
3370
|
+
declare const index_HourglassEmpty: typeof HourglassEmpty;
|
|
3371
|
+
declare const index_HourglassFull: typeof HourglassFull;
|
|
3372
|
+
declare const index_HourglassTop: typeof HourglassTop;
|
|
3373
|
+
declare const index_ImageIcon: typeof ImageIcon;
|
|
3374
|
+
declare const index_InfoIcon: typeof InfoIcon;
|
|
3375
|
+
declare const index_InstagramIcon: typeof InstagramIcon;
|
|
3376
|
+
declare const index_JordskifterettIcon: typeof JordskifterettIcon;
|
|
3377
|
+
declare const index_KeyIcon: typeof KeyIcon;
|
|
3378
|
+
declare const index_LagmannsrettIcon: typeof LagmannsrettIcon;
|
|
3379
|
+
declare const index_LanguageIcon: typeof LanguageIcon;
|
|
3380
|
+
declare const index_LibraryAddIcon: typeof LibraryAddIcon;
|
|
3381
|
+
declare const index_LineChartIcon: typeof LineChartIcon;
|
|
3382
|
+
declare const index_LinkIcon: typeof LinkIcon;
|
|
3383
|
+
declare const index_LinkOffIcon: typeof LinkOffIcon;
|
|
3384
|
+
declare const index_LinkedInIcon: typeof LinkedInIcon;
|
|
3385
|
+
declare const index_ListAltIcon: typeof ListAltIcon;
|
|
3386
|
+
declare const index_ListIcon: typeof ListIcon;
|
|
3387
|
+
declare const index_LocationIcon: typeof LocationIcon;
|
|
3388
|
+
declare const index_LockIcon: typeof LockIcon;
|
|
3389
|
+
declare const index_LockOpenIcon: typeof LockOpenIcon;
|
|
3390
|
+
declare const index_LoginIcon: typeof LoginIcon;
|
|
3391
|
+
declare const index_LogoutIcon: typeof LogoutIcon;
|
|
3392
|
+
declare const index_MailIcon: typeof MailIcon;
|
|
3393
|
+
declare const index_MailOpenIcon: typeof MailOpenIcon;
|
|
3394
|
+
declare const index_MenuIcon: typeof MenuIcon;
|
|
3395
|
+
declare const index_MinusCirledIcon: typeof MinusCirledIcon;
|
|
3396
|
+
declare const index_MinusIcon: typeof MinusIcon;
|
|
3397
|
+
declare const index_MoreHorizontalIcon: typeof MoreHorizontalIcon;
|
|
3398
|
+
declare const index_MoreVerticalIcon: typeof MoreVerticalIcon;
|
|
3399
|
+
declare const index_NotarialIcon: typeof NotarialIcon;
|
|
3400
|
+
declare const index_NotificationsIcon: typeof NotificationsIcon;
|
|
3401
|
+
declare const index_NotificationsOffIcon: typeof NotificationsOffIcon;
|
|
3402
|
+
declare const index_OnlineMeetingIcon: typeof OnlineMeetingIcon;
|
|
3403
|
+
declare const index_OpenExternalIcon: typeof OpenExternalIcon;
|
|
3404
|
+
declare const index_PayoutIcon: typeof PayoutIcon;
|
|
3405
|
+
declare const index_PdfIcon: typeof PdfIcon;
|
|
3406
|
+
declare const index_PersonAddIcon: typeof PersonAddIcon;
|
|
3407
|
+
declare const index_PersonIcon: typeof PersonIcon;
|
|
3408
|
+
declare const index_PersonShieldedIcon: typeof PersonShieldedIcon;
|
|
3409
|
+
declare const index_PinIcon: typeof PinIcon;
|
|
3410
|
+
declare const index_PlusCircledIcon: typeof PlusCircledIcon;
|
|
3411
|
+
declare const index_PlusIcon: typeof PlusIcon;
|
|
3412
|
+
declare const index_PrintIcon: typeof PrintIcon;
|
|
3413
|
+
declare const index_PropertyIcon: typeof PropertyIcon;
|
|
3414
|
+
declare const index_PublishIcon: typeof PublishIcon;
|
|
3415
|
+
declare const index_QuestionAnswerIcon: typeof QuestionAnswerIcon;
|
|
3416
|
+
declare const index_ReceiptIcon: typeof ReceiptIcon;
|
|
3417
|
+
declare const index_RedoIcon: typeof RedoIcon;
|
|
3418
|
+
declare const index_RefreshIcon: typeof RefreshIcon;
|
|
3419
|
+
declare const index_ReplayIcon: typeof ReplayIcon;
|
|
3420
|
+
declare const index_SearchIcon: typeof SearchIcon;
|
|
3421
|
+
declare const index_SettingsIcon: typeof SettingsIcon;
|
|
3422
|
+
declare const index_SmsIcon: typeof SmsIcon;
|
|
3423
|
+
declare const index_StarFilledIcon: typeof StarFilledIcon;
|
|
3424
|
+
declare const index_StarHalfFilled: typeof StarHalfFilled;
|
|
3425
|
+
declare const index_StarIcon: typeof StarIcon;
|
|
3426
|
+
declare const index_SyncIcon: typeof SyncIcon;
|
|
3427
|
+
declare const index_Thumbdown: typeof Thumbdown;
|
|
3428
|
+
declare const index_ThumbdownFilled: typeof ThumbdownFilled;
|
|
3429
|
+
declare const index_Thumbup: typeof Thumbup;
|
|
3430
|
+
declare const index_ThumbupFilled: typeof ThumbupFilled;
|
|
3431
|
+
declare const index_TimeIcon: typeof TimeIcon;
|
|
3432
|
+
declare const index_TingrettIcon: typeof TingrettIcon;
|
|
3433
|
+
declare const index_TipIcon: typeof TipIcon;
|
|
3434
|
+
declare const index_TrashIcon: typeof TrashIcon;
|
|
3435
|
+
declare const index_TrendingDownIcon: typeof TrendingDownIcon;
|
|
3436
|
+
declare const index_TrendingUpIcon: typeof TrendingUpIcon;
|
|
3437
|
+
declare const index_TwitterIcon: typeof TwitterIcon;
|
|
3438
|
+
declare const index_UndoIcon: typeof UndoIcon;
|
|
3439
|
+
declare const index_UnfoldLessIcon: typeof UnfoldLessIcon;
|
|
3440
|
+
declare const index_UnfoldMoreIcon: typeof UnfoldMoreIcon;
|
|
3441
|
+
declare const index_UploadIcon: typeof UploadIcon;
|
|
3442
|
+
declare const index_VisibilityOffIcon: typeof VisibilityOffIcon;
|
|
3443
|
+
declare const index_VisibilityOnIcon: typeof VisibilityOnIcon;
|
|
3444
|
+
declare const index_WarningIcon: typeof WarningIcon;
|
|
3445
|
+
declare const index_ZoomInIcon: typeof ZoomInIcon;
|
|
3446
|
+
declare const index_ZoomOutIcon: typeof ZoomOutIcon;
|
|
3447
|
+
declare namespace index {
|
|
3448
|
+
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 };
|
|
3449
|
+
}
|
|
3450
|
+
|
|
3451
|
+
/**
|
|
3452
|
+
* Join class names together.
|
|
3453
|
+
* Will filter out all falsy values.
|
|
3454
|
+
*/
|
|
3455
|
+
declare function cn(...classNames: unknown[]): string;
|
|
20
3456
|
|
|
21
3457
|
type EmbeteType = 'jordskifterett' | 'tingrett' | 'lagmannsrett' | 'høyesterett';
|
|
22
3458
|
|
|
@@ -67,17 +3503,17 @@ declare const OverflowMenuList: styled_components.IStyledComponent<"web", {
|
|
|
67
3503
|
accessKey?: string | undefined;
|
|
68
3504
|
autoFocus?: boolean | undefined;
|
|
69
3505
|
className?: string | undefined;
|
|
70
|
-
contentEditable?: "inherit" | (boolean | "
|
|
3506
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
71
3507
|
contextMenu?: string | undefined;
|
|
72
3508
|
dir?: string | undefined;
|
|
73
|
-
draggable?: (boolean | "
|
|
3509
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
74
3510
|
hidden?: boolean | undefined;
|
|
75
3511
|
id?: string | undefined;
|
|
76
3512
|
lang?: string | undefined;
|
|
77
3513
|
nonce?: string | undefined;
|
|
78
3514
|
placeholder?: string | undefined;
|
|
79
3515
|
slot?: string | undefined;
|
|
80
|
-
spellCheck?: (boolean | "
|
|
3516
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
81
3517
|
style?: react.CSSProperties | undefined;
|
|
82
3518
|
tabIndex?: number | undefined;
|
|
83
3519
|
title?: string | undefined;
|
|
@@ -110,52 +3546,52 @@ declare const OverflowMenuList: styled_components.IStyledComponent<"web", {
|
|
|
110
3546
|
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
111
3547
|
is?: string | undefined;
|
|
112
3548
|
"aria-activedescendant"?: string | undefined;
|
|
113
|
-
"aria-atomic"?: (boolean | "
|
|
114
|
-
"aria-autocomplete"?: "list" | "none" | "
|
|
3549
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
3550
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
115
3551
|
"aria-braillelabel"?: string | undefined;
|
|
116
3552
|
"aria-brailleroledescription"?: string | undefined;
|
|
117
|
-
"aria-busy"?: (boolean | "
|
|
118
|
-
"aria-checked"?: boolean | "
|
|
3553
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
3554
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
119
3555
|
"aria-colcount"?: number | undefined;
|
|
120
3556
|
"aria-colindex"?: number | undefined;
|
|
121
3557
|
"aria-colindextext"?: string | undefined;
|
|
122
3558
|
"aria-colspan"?: number | undefined;
|
|
123
3559
|
"aria-controls"?: string | undefined;
|
|
124
|
-
"aria-current"?: boolean | "time" | "step" | "
|
|
3560
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
125
3561
|
"aria-describedby"?: string | undefined;
|
|
126
3562
|
"aria-description"?: string | undefined;
|
|
127
3563
|
"aria-details"?: string | undefined;
|
|
128
|
-
"aria-disabled"?: (boolean | "
|
|
129
|
-
"aria-dropeffect"?: "link" | "none" | "copy" | "
|
|
3564
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
3565
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
130
3566
|
"aria-errormessage"?: string | undefined;
|
|
131
|
-
"aria-expanded"?: (boolean | "
|
|
3567
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
132
3568
|
"aria-flowto"?: string | undefined;
|
|
133
|
-
"aria-grabbed"?: (boolean | "
|
|
134
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
135
|
-
"aria-hidden"?: (boolean | "
|
|
136
|
-
"aria-invalid"?: boolean | "
|
|
3569
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
3570
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
3571
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
3572
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
137
3573
|
"aria-keyshortcuts"?: string | undefined;
|
|
138
3574
|
"aria-label"?: string | undefined;
|
|
139
3575
|
"aria-labelledby"?: string | undefined;
|
|
140
3576
|
"aria-level"?: number | undefined;
|
|
141
3577
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
142
|
-
"aria-modal"?: (boolean | "
|
|
143
|
-
"aria-multiline"?: (boolean | "
|
|
144
|
-
"aria-multiselectable"?: (boolean | "
|
|
3578
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
3579
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
3580
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
145
3581
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
146
3582
|
"aria-owns"?: string | undefined;
|
|
147
3583
|
"aria-placeholder"?: string | undefined;
|
|
148
3584
|
"aria-posinset"?: number | undefined;
|
|
149
|
-
"aria-pressed"?: boolean | "
|
|
150
|
-
"aria-readonly"?: (boolean | "
|
|
151
|
-
"aria-relevant"?: "text" | "
|
|
152
|
-
"aria-required"?: (boolean | "
|
|
3585
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3586
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
3587
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
3588
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
153
3589
|
"aria-roledescription"?: string | undefined;
|
|
154
3590
|
"aria-rowcount"?: number | undefined;
|
|
155
3591
|
"aria-rowindex"?: number | undefined;
|
|
156
3592
|
"aria-rowindextext"?: string | undefined;
|
|
157
3593
|
"aria-rowspan"?: number | undefined;
|
|
158
|
-
"aria-selected"?: (boolean | "
|
|
3594
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
159
3595
|
"aria-setsize"?: number | undefined;
|
|
160
3596
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
161
3597
|
"aria-valuemax"?: number | undefined;
|
|
@@ -340,7 +3776,7 @@ declare const OverflowMenu: react.ForwardRefExoticComponent<Pick<react.HTMLAttri
|
|
|
340
3776
|
onClose?: (() => void) | undefined;
|
|
341
3777
|
onToggle?: (() => void) | undefined;
|
|
342
3778
|
anchorRef?: react.RefObject<HTMLButtonElement> | undefined;
|
|
343
|
-
placement?:
|
|
3779
|
+
placement?: Placement | undefined;
|
|
344
3780
|
offset?: number | undefined;
|
|
345
3781
|
} & {
|
|
346
3782
|
htmlProps?: react.HTMLAttributes<HTMLDivElement> | undefined;
|
|
@@ -558,6 +3994,20 @@ declare const CheckboxGroup: {
|
|
|
558
3994
|
displayName: string;
|
|
559
3995
|
};
|
|
560
3996
|
|
|
3997
|
+
type IconSize = 'small' | 'medium' | 'large' | 'inherit';
|
|
3998
|
+
type IconProps = BaseComponentProps<SVGSVGElement, {
|
|
3999
|
+
/**Ikonet importert fra `@norges-domstoler/dds-components`. */
|
|
4000
|
+
icon: SvgIcon;
|
|
4001
|
+
/**Størrelsen på ikonet. */
|
|
4002
|
+
iconSize?: IconSize;
|
|
4003
|
+
/**Fargen på ikonet. */
|
|
4004
|
+
color?: Property.Color;
|
|
4005
|
+
}>;
|
|
4006
|
+
declare function Icon(props: IconProps): JSX.Element;
|
|
4007
|
+
declare namespace Icon {
|
|
4008
|
+
var displayName: string;
|
|
4009
|
+
}
|
|
4010
|
+
|
|
561
4011
|
type ButtonPurpose = 'primary' | 'secondary' | 'danger';
|
|
562
4012
|
type ButtonSize = 'tiny' | 'small' | 'medium' | 'large';
|
|
563
4013
|
type ButtonAppearance = 'filled' | 'ghost' | 'rounded' | 'borderless';
|
|
@@ -602,12 +4052,12 @@ declare const Button: react.ForwardRefExoticComponent<Pick<Omit<react.ButtonHTML
|
|
|
602
4052
|
appearance?: ButtonAppearance | undefined;
|
|
603
4053
|
loading?: boolean | undefined;
|
|
604
4054
|
loadingTooltip?: string | undefined;
|
|
605
|
-
icon?:
|
|
4055
|
+
icon?: SvgIcon | undefined;
|
|
606
4056
|
fullWidth?: boolean | undefined;
|
|
607
4057
|
href?: string | undefined;
|
|
608
4058
|
target?: string | undefined;
|
|
609
4059
|
} & {
|
|
610
|
-
type?: "button" | "
|
|
4060
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
611
4061
|
onFocus?: react.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
612
4062
|
onBlur?: react.FocusEventHandler<HTMLButtonElement> | undefined;
|
|
613
4063
|
onClick?: react.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -615,11 +4065,11 @@ declare const Button: react.ForwardRefExoticComponent<Pick<Omit<react.ButtonHTML
|
|
|
615
4065
|
htmlProps?: Omit<react.ButtonHTMLAttributes<HTMLButtonElement>, "type" | "onFocus" | "onBlur" | "onClick"> | undefined;
|
|
616
4066
|
} & react.RefAttributes<HTMLButtonElement>>;
|
|
617
4067
|
|
|
618
|
-
declare const TextInput: react__default.ForwardRefExoticComponent<
|
|
4068
|
+
declare const TextInput: react__default.ForwardRefExoticComponent<CommonInputProps & {
|
|
619
4069
|
componentSize?: InputSize | undefined;
|
|
620
4070
|
} & react__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
621
4071
|
withCharacterCounter?: boolean | undefined;
|
|
622
|
-
icon?:
|
|
4072
|
+
icon?: SvgIcon | undefined;
|
|
623
4073
|
prefix?: string | undefined;
|
|
624
4074
|
suffix?: string | undefined;
|
|
625
4075
|
} & react__default.RefAttributes<HTMLInputElement>>;
|
|
@@ -1062,7 +4512,7 @@ declare const DescriptionList: react.ForwardRefExoticComponent<Pick<react.HTMLAt
|
|
|
1062
4512
|
/**Setter flex-direction. NB! Fungerer kun ved bruk av `DescriptionListGroup` som barn av `DescriptionList`.
|
|
1063
4513
|
* @default "column"
|
|
1064
4514
|
*/
|
|
1065
|
-
direction?: "
|
|
4515
|
+
direction?: "row" | "column" | undefined;
|
|
1066
4516
|
} & {
|
|
1067
4517
|
children?: react.ReactNode;
|
|
1068
4518
|
} & {
|
|
@@ -1106,6 +4556,9 @@ declare const DescriptionListGroup: react.ForwardRefExoticComponent<Pick<react.H
|
|
|
1106
4556
|
htmlProps?: react.HTMLAttributes<HTMLDivElement> | undefined;
|
|
1107
4557
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
1108
4558
|
|
|
4559
|
+
type DDSTextColor = 'interactive' | 'primary' | 'danger' | 'warning' | 'success' | 'onLight' | 'onDark' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'gray6' | 'gray7' | 'gray8' | 'gray9';
|
|
4560
|
+
type TextColor = DDSTextColor | Property.Color;
|
|
4561
|
+
|
|
1109
4562
|
type SpinnerProps = BaseComponentProps<SVGElement, {
|
|
1110
4563
|
/**Farge på spinneren. */
|
|
1111
4564
|
color?: TextColor | (string & NonNullable<unknown>);
|
|
@@ -1251,7 +4704,7 @@ type TooltipProps = BaseComponentProps<HTMLDivElement, {
|
|
|
1251
4704
|
/**Innhold i tooltip. */
|
|
1252
4705
|
text: string;
|
|
1253
4706
|
/**Plassering i forhold til anchor-elementet. */
|
|
1254
|
-
placement?: Placement;
|
|
4707
|
+
placement?: Placement$1;
|
|
1255
4708
|
/**Anchor-elementet. */
|
|
1256
4709
|
children: AnchorElement;
|
|
1257
4710
|
/**Forsinkelse for når tooltip skal dukke opp. Oppgis i millisekunder. */
|
|
@@ -1263,7 +4716,7 @@ declare const Tooltip: react__default.ForwardRefExoticComponent<Pick<Omit<react_
|
|
|
1263
4716
|
/**Innhold i tooltip. */
|
|
1264
4717
|
text: string;
|
|
1265
4718
|
/**Plassering i forhold til anchor-elementet. */
|
|
1266
|
-
placement?: Placement | undefined;
|
|
4719
|
+
placement?: Placement$1 | undefined;
|
|
1267
4720
|
/**Anchor-elementet. */
|
|
1268
4721
|
children: AnchorElement;
|
|
1269
4722
|
/**Forsinkelse for når tooltip skal dukke opp. Oppgis i millisekunder. */
|
|
@@ -1482,7 +4935,7 @@ declare const InputMessage: react.ForwardRefExoticComponent<Pick<react.HTMLAttri
|
|
|
1482
4935
|
|
|
1483
4936
|
declare const ToggleButton: react.ForwardRefExoticComponent<Pick<Omit<react.InputHTMLAttributes<HTMLInputElement>, "name" | "aria-describedby" | "onBlur" | "onChange" | "defaultChecked" | "defaultValue" | "value" | "checked">, "className" | "id"> & {
|
|
1484
4937
|
label?: string | undefined;
|
|
1485
|
-
icon?:
|
|
4938
|
+
icon?: SvgIcon | undefined;
|
|
1486
4939
|
} & CheckboxPickedHTMLAttributes & {
|
|
1487
4940
|
htmlProps?: Omit<react.InputHTMLAttributes<HTMLInputElement>, "name" | "aria-describedby" | "onBlur" | "onChange" | "defaultChecked" | "defaultValue" | "value" | "checked"> | undefined;
|
|
1488
4941
|
} & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -1866,16 +5319,16 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
1866
5319
|
accessKey?: string | undefined;
|
|
1867
5320
|
autoFocus?: boolean | undefined;
|
|
1868
5321
|
className?: string | undefined;
|
|
1869
|
-
contentEditable?: "inherit" | (boolean | "
|
|
5322
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
1870
5323
|
contextMenu?: string | undefined;
|
|
1871
5324
|
dir?: string | undefined;
|
|
1872
|
-
draggable?: (boolean | "
|
|
5325
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1873
5326
|
hidden?: boolean | undefined;
|
|
1874
5327
|
id?: string | undefined;
|
|
1875
5328
|
lang?: string | undefined;
|
|
1876
5329
|
nonce?: string | undefined;
|
|
1877
5330
|
slot?: string | undefined;
|
|
1878
|
-
spellCheck?: (boolean | "
|
|
5331
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1879
5332
|
style?: react.CSSProperties | undefined;
|
|
1880
5333
|
tabIndex?: number | undefined;
|
|
1881
5334
|
title?: string | undefined;
|
|
@@ -1908,52 +5361,52 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
1908
5361
|
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
1909
5362
|
is?: string | undefined;
|
|
1910
5363
|
"aria-activedescendant"?: string | undefined;
|
|
1911
|
-
"aria-atomic"?: (boolean | "
|
|
1912
|
-
"aria-autocomplete"?: "list" | "none" | "
|
|
5364
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
5365
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1913
5366
|
"aria-braillelabel"?: string | undefined;
|
|
1914
5367
|
"aria-brailleroledescription"?: string | undefined;
|
|
1915
|
-
"aria-busy"?: (boolean | "
|
|
1916
|
-
"aria-checked"?: boolean | "
|
|
5368
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
5369
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1917
5370
|
"aria-colcount"?: number | undefined;
|
|
1918
5371
|
"aria-colindex"?: number | undefined;
|
|
1919
5372
|
"aria-colindextext"?: string | undefined;
|
|
1920
5373
|
"aria-colspan"?: number | undefined;
|
|
1921
5374
|
"aria-controls"?: string | undefined;
|
|
1922
|
-
"aria-current"?: boolean | "time" | "step" | "
|
|
5375
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1923
5376
|
"aria-describedby"?: string | undefined;
|
|
1924
5377
|
"aria-description"?: string | undefined;
|
|
1925
5378
|
"aria-details"?: string | undefined;
|
|
1926
|
-
"aria-disabled"?: (boolean | "
|
|
1927
|
-
"aria-dropeffect"?: "link" | "none" | "copy" | "
|
|
5379
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
5380
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1928
5381
|
"aria-errormessage"?: string | undefined;
|
|
1929
|
-
"aria-expanded"?: (boolean | "
|
|
5382
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1930
5383
|
"aria-flowto"?: string | undefined;
|
|
1931
|
-
"aria-grabbed"?: (boolean | "
|
|
1932
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
1933
|
-
"aria-hidden"?: (boolean | "
|
|
1934
|
-
"aria-invalid"?: boolean | "
|
|
5384
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
5385
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
5386
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
5387
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1935
5388
|
"aria-keyshortcuts"?: string | undefined;
|
|
1936
5389
|
"aria-label"?: string | undefined;
|
|
1937
5390
|
"aria-labelledby"?: string | undefined;
|
|
1938
5391
|
"aria-level"?: number | undefined;
|
|
1939
5392
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1940
|
-
"aria-modal"?: (boolean | "
|
|
1941
|
-
"aria-multiline"?: (boolean | "
|
|
1942
|
-
"aria-multiselectable"?: (boolean | "
|
|
5393
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
5394
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
5395
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1943
5396
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1944
5397
|
"aria-owns"?: string | undefined;
|
|
1945
5398
|
"aria-placeholder"?: string | undefined;
|
|
1946
5399
|
"aria-posinset"?: number | undefined;
|
|
1947
|
-
"aria-pressed"?: boolean | "
|
|
1948
|
-
"aria-readonly"?: (boolean | "
|
|
1949
|
-
"aria-relevant"?: "text" | "
|
|
1950
|
-
"aria-required"?: (boolean | "
|
|
5400
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
5401
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
5402
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
5403
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1951
5404
|
"aria-roledescription"?: string | undefined;
|
|
1952
5405
|
"aria-rowcount"?: number | undefined;
|
|
1953
5406
|
"aria-rowindex"?: number | undefined;
|
|
1954
5407
|
"aria-rowindextext"?: string | undefined;
|
|
1955
5408
|
"aria-rowspan"?: number | undefined;
|
|
1956
|
-
"aria-selected"?: (boolean | "
|
|
5409
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1957
5410
|
"aria-setsize"?: number | undefined;
|
|
1958
5411
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1959
5412
|
"aria-valuemax"?: number | undefined;
|
|
@@ -2169,16 +5622,16 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
2169
5622
|
accessKey?: string | undefined;
|
|
2170
5623
|
autoFocus?: boolean | undefined;
|
|
2171
5624
|
className?: string | undefined;
|
|
2172
|
-
contentEditable?: "inherit" | (boolean | "
|
|
5625
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
2173
5626
|
contextMenu?: string | undefined;
|
|
2174
5627
|
dir?: string | undefined;
|
|
2175
|
-
draggable?: (boolean | "
|
|
5628
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2176
5629
|
hidden?: boolean | undefined;
|
|
2177
5630
|
id?: string | undefined;
|
|
2178
5631
|
lang?: string | undefined;
|
|
2179
5632
|
nonce?: string | undefined;
|
|
2180
5633
|
slot?: string | undefined;
|
|
2181
|
-
spellCheck?: (boolean | "
|
|
5634
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2182
5635
|
style?: react.CSSProperties | undefined;
|
|
2183
5636
|
tabIndex?: number | undefined;
|
|
2184
5637
|
title?: string | undefined;
|
|
@@ -2211,52 +5664,52 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
2211
5664
|
inputMode?: "text" | "search" | "none" | "decimal" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
2212
5665
|
is?: string | undefined;
|
|
2213
5666
|
"aria-activedescendant"?: string | undefined;
|
|
2214
|
-
"aria-atomic"?: (boolean | "
|
|
2215
|
-
"aria-autocomplete"?: "list" | "none" | "
|
|
5667
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
5668
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2216
5669
|
"aria-braillelabel"?: string | undefined;
|
|
2217
5670
|
"aria-brailleroledescription"?: string | undefined;
|
|
2218
|
-
"aria-busy"?: (boolean | "
|
|
2219
|
-
"aria-checked"?: boolean | "
|
|
5671
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
5672
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2220
5673
|
"aria-colcount"?: number | undefined;
|
|
2221
5674
|
"aria-colindex"?: number | undefined;
|
|
2222
5675
|
"aria-colindextext"?: string | undefined;
|
|
2223
5676
|
"aria-colspan"?: number | undefined;
|
|
2224
5677
|
"aria-controls"?: string | undefined;
|
|
2225
|
-
"aria-current"?: boolean | "time" | "step" | "
|
|
5678
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2226
5679
|
"aria-describedby"?: string | undefined;
|
|
2227
5680
|
"aria-description"?: string | undefined;
|
|
2228
5681
|
"aria-details"?: string | undefined;
|
|
2229
|
-
"aria-disabled"?: (boolean | "
|
|
2230
|
-
"aria-dropeffect"?: "link" | "none" | "copy" | "
|
|
5682
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
5683
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2231
5684
|
"aria-errormessage"?: string | undefined;
|
|
2232
|
-
"aria-expanded"?: (boolean | "
|
|
5685
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2233
5686
|
"aria-flowto"?: string | undefined;
|
|
2234
|
-
"aria-grabbed"?: (boolean | "
|
|
2235
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
2236
|
-
"aria-hidden"?: (boolean | "
|
|
2237
|
-
"aria-invalid"?: boolean | "
|
|
5687
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
5688
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
5689
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
5690
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2238
5691
|
"aria-keyshortcuts"?: string | undefined;
|
|
2239
5692
|
"aria-label"?: string | undefined;
|
|
2240
5693
|
"aria-labelledby"?: string | undefined;
|
|
2241
5694
|
"aria-level"?: number | undefined;
|
|
2242
5695
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2243
|
-
"aria-modal"?: (boolean | "
|
|
2244
|
-
"aria-multiline"?: (boolean | "
|
|
2245
|
-
"aria-multiselectable"?: (boolean | "
|
|
5696
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
5697
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
5698
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2246
5699
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2247
5700
|
"aria-owns"?: string | undefined;
|
|
2248
5701
|
"aria-placeholder"?: string | undefined;
|
|
2249
5702
|
"aria-posinset"?: number | undefined;
|
|
2250
|
-
"aria-pressed"?: boolean | "
|
|
2251
|
-
"aria-readonly"?: (boolean | "
|
|
2252
|
-
"aria-relevant"?: "text" | "
|
|
2253
|
-
"aria-required"?: (boolean | "
|
|
5703
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
5704
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
5705
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
5706
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2254
5707
|
"aria-roledescription"?: string | undefined;
|
|
2255
5708
|
"aria-rowcount"?: number | undefined;
|
|
2256
5709
|
"aria-rowindex"?: number | undefined;
|
|
2257
5710
|
"aria-rowindextext"?: string | undefined;
|
|
2258
5711
|
"aria-rowspan"?: number | undefined;
|
|
2259
|
-
"aria-selected"?: (boolean | "
|
|
5712
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2260
5713
|
"aria-setsize"?: number | undefined;
|
|
2261
5714
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2262
5715
|
"aria-valuemax"?: number | undefined;
|
|
@@ -2429,7 +5882,7 @@ declare const StyledTextArea: styled_components.IStyledComponent<"web", styled_c
|
|
|
2429
5882
|
onTransitionEnd?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2430
5883
|
onTransitionEndCapture?: react.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
2431
5884
|
}>;
|
|
2432
|
-
declare const TextArea: react.ForwardRefExoticComponent<
|
|
5885
|
+
declare const TextArea: react.ForwardRefExoticComponent<CommonInputProps & react.TextareaHTMLAttributes<HTMLTextAreaElement> & react.RefAttributes<HTMLTextAreaElement>>;
|
|
2433
5886
|
|
|
2434
5887
|
type TextAreaProps = CommonInputProps & TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
2435
5888
|
|
|
@@ -2604,4 +6057,4 @@ type Layout = 'vertical' | 'horizontal';
|
|
|
2604
6057
|
|
|
2605
6058
|
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;
|
|
2606
6059
|
|
|
2607
|
-
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 };
|
|
6060
|
+
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 };
|