@clickhouse/click-ui 0.0.76 → 0.0.78
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/click-ui.es.js +1965 -1865
- package/dist/click-ui.umd.js +129 -102
- package/dist/components/Accordion/Accordion.d.ts +20 -20
- package/dist/components/Collapsible/Collapsible.d.ts +2 -1
- package/dist/components/ConfirmationDialog/ConfirmationDialog.d.ts +2 -1
- package/dist/components/FormContainer/FormContainer.d.ts +12 -0
- package/dist/components/GenericMenu.d.ts +6 -6
- package/dist/components/Icon/IconCommon.d.ts +9 -9
- package/dist/components/Input/InputWrapper.d.ts +291 -6
- package/dist/components/Input/TextArea.d.ts +10 -0
- package/dist/components/Link/Link.d.ts +3 -2
- package/dist/components/ProgressBar/ProgressBar.d.ts +29 -0
- package/dist/components/Tabs/Tabs.d.ts +28 -28
- package/dist/components/Tooltip/Tooltip.d.ts +4 -1
- package/dist/components/Typography/Text/Text.d.ts +7 -273
- package/dist/components/commonElement.d.ts +30 -30
- package/dist/components/icons/HorizontalLoading.d.ts +3 -3
- package/dist/components/icons/Loading.d.ts +3 -3
- package/dist/components/icons/LoadingAnimated.d.ts +3 -3
- package/dist/components/index.d.ts +3 -0
- package/dist/components/types.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,285 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementType } from "react";
|
|
2
2
|
export type TextColor = "default" | "muted";
|
|
3
3
|
export type TextSize = "xs" | "sm" | "md" | "lg";
|
|
4
4
|
export type TextWeight = "normal" | "medium" | "semibold" | "bold" | "mono";
|
|
5
|
-
export interface TextProps extends
|
|
5
|
+
export interface TextProps<T extends ElementType> {
|
|
6
6
|
color?: TextColor;
|
|
7
7
|
size?: TextSize;
|
|
8
8
|
weight?: TextWeight;
|
|
9
9
|
className?: string;
|
|
10
|
+
component?: T;
|
|
10
11
|
}
|
|
11
12
|
declare const Text: import("styled-components").IStyledComponent<"web", {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
defaultChecked?: boolean | undefined;
|
|
17
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
18
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
19
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
20
|
-
accessKey?: string | undefined;
|
|
21
|
-
autoFocus?: boolean | undefined;
|
|
22
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
23
|
-
contextMenu?: string | undefined;
|
|
24
|
-
dir?: string | undefined;
|
|
25
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
26
|
-
hidden?: boolean | undefined;
|
|
27
|
-
id?: string | undefined;
|
|
28
|
-
lang?: string | undefined;
|
|
29
|
-
nonce?: string | undefined;
|
|
30
|
-
placeholder?: string | undefined;
|
|
31
|
-
slot?: string | undefined;
|
|
32
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
33
|
-
style?: import("react").CSSProperties | undefined;
|
|
34
|
-
tabIndex?: number | undefined;
|
|
35
|
-
title?: string | undefined;
|
|
36
|
-
translate?: "yes" | "no" | undefined;
|
|
37
|
-
radioGroup?: string | undefined;
|
|
38
|
-
role?: import("react").AriaRole | undefined;
|
|
39
|
-
about?: string | undefined;
|
|
40
|
-
content?: string | undefined;
|
|
41
|
-
datatype?: string | undefined;
|
|
42
|
-
inlist?: any;
|
|
43
|
-
prefix?: string | undefined;
|
|
44
|
-
property?: string | undefined;
|
|
45
|
-
rel?: string | undefined;
|
|
46
|
-
resource?: string | undefined;
|
|
47
|
-
rev?: string | undefined;
|
|
48
|
-
typeof?: string | undefined;
|
|
49
|
-
vocab?: string | undefined;
|
|
50
|
-
autoCapitalize?: string | undefined;
|
|
51
|
-
autoCorrect?: string | undefined;
|
|
52
|
-
autoSave?: string | undefined;
|
|
53
|
-
itemProp?: string | undefined;
|
|
54
|
-
itemScope?: boolean | undefined;
|
|
55
|
-
itemType?: string | undefined;
|
|
56
|
-
itemID?: string | undefined;
|
|
57
|
-
itemRef?: string | undefined;
|
|
58
|
-
results?: number | undefined;
|
|
59
|
-
security?: string | undefined;
|
|
60
|
-
unselectable?: "on" | "off" | undefined;
|
|
61
|
-
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
62
|
-
is?: string | undefined;
|
|
63
|
-
'aria-activedescendant'?: string | undefined;
|
|
64
|
-
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
65
|
-
'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
|
|
66
|
-
'aria-braillelabel'?: string | undefined;
|
|
67
|
-
'aria-brailleroledescription'?: string | undefined;
|
|
68
|
-
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
69
|
-
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
70
|
-
'aria-colcount'?: number | undefined;
|
|
71
|
-
'aria-colindex'?: number | undefined;
|
|
72
|
-
'aria-colindextext'?: string | undefined;
|
|
73
|
-
'aria-colspan'?: number | undefined;
|
|
74
|
-
'aria-controls'?: string | undefined;
|
|
75
|
-
'aria-current'?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
76
|
-
'aria-describedby'?: string | undefined;
|
|
77
|
-
'aria-description'?: string | undefined;
|
|
78
|
-
'aria-details'?: string | undefined;
|
|
79
|
-
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
80
|
-
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
81
|
-
'aria-errormessage'?: string | undefined;
|
|
82
|
-
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
83
|
-
'aria-flowto'?: string | undefined;
|
|
84
|
-
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
85
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
86
|
-
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
87
|
-
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
88
|
-
'aria-keyshortcuts'?: string | undefined;
|
|
89
|
-
'aria-label'?: string | undefined;
|
|
90
|
-
'aria-labelledby'?: string | undefined;
|
|
91
|
-
'aria-level'?: number | undefined;
|
|
92
|
-
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
93
|
-
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
94
|
-
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
95
|
-
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
96
|
-
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
97
|
-
'aria-owns'?: string | undefined;
|
|
98
|
-
'aria-placeholder'?: string | undefined;
|
|
99
|
-
'aria-posinset'?: number | undefined;
|
|
100
|
-
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
101
|
-
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
102
|
-
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
103
|
-
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
104
|
-
'aria-roledescription'?: string | undefined;
|
|
105
|
-
'aria-rowcount'?: number | undefined;
|
|
106
|
-
'aria-rowindex'?: number | undefined;
|
|
107
|
-
'aria-rowindextext'?: string | undefined;
|
|
108
|
-
'aria-rowspan'?: number | undefined;
|
|
109
|
-
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
110
|
-
'aria-setsize'?: number | undefined;
|
|
111
|
-
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
112
|
-
'aria-valuemax'?: number | undefined;
|
|
113
|
-
'aria-valuemin'?: number | undefined;
|
|
114
|
-
'aria-valuenow'?: number | undefined;
|
|
115
|
-
'aria-valuetext'?: string | undefined;
|
|
116
|
-
children?: import("react").ReactNode;
|
|
117
|
-
dangerouslySetInnerHTML?: {
|
|
118
|
-
__html: string | TrustedHTML;
|
|
119
|
-
} | undefined;
|
|
120
|
-
onCopy?: import("react").ClipboardEventHandler<HTMLParagraphElement> | undefined;
|
|
121
|
-
onCopyCapture?: import("react").ClipboardEventHandler<HTMLParagraphElement> | undefined;
|
|
122
|
-
onCut?: import("react").ClipboardEventHandler<HTMLParagraphElement> | undefined;
|
|
123
|
-
onCutCapture?: import("react").ClipboardEventHandler<HTMLParagraphElement> | undefined;
|
|
124
|
-
onPaste?: import("react").ClipboardEventHandler<HTMLParagraphElement> | undefined;
|
|
125
|
-
onPasteCapture?: import("react").ClipboardEventHandler<HTMLParagraphElement> | undefined;
|
|
126
|
-
onCompositionEnd?: import("react").CompositionEventHandler<HTMLParagraphElement> | undefined;
|
|
127
|
-
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLParagraphElement> | undefined;
|
|
128
|
-
onCompositionStart?: import("react").CompositionEventHandler<HTMLParagraphElement> | undefined;
|
|
129
|
-
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLParagraphElement> | undefined;
|
|
130
|
-
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLParagraphElement> | undefined;
|
|
131
|
-
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLParagraphElement> | undefined;
|
|
132
|
-
onFocus?: import("react").FocusEventHandler<HTMLParagraphElement> | undefined;
|
|
133
|
-
onFocusCapture?: import("react").FocusEventHandler<HTMLParagraphElement> | undefined;
|
|
134
|
-
onBlur?: import("react").FocusEventHandler<HTMLParagraphElement> | undefined;
|
|
135
|
-
onBlurCapture?: import("react").FocusEventHandler<HTMLParagraphElement> | undefined;
|
|
136
|
-
onChange?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
137
|
-
onChangeCapture?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
138
|
-
onBeforeInput?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
139
|
-
onBeforeInputCapture?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
140
|
-
onInput?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
141
|
-
onInputCapture?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
142
|
-
onReset?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
143
|
-
onResetCapture?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
144
|
-
onSubmit?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
145
|
-
onSubmitCapture?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
146
|
-
onInvalid?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
147
|
-
onInvalidCapture?: import("react").FormEventHandler<HTMLParagraphElement> | undefined;
|
|
148
|
-
onLoad?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
149
|
-
onLoadCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
150
|
-
onError?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
151
|
-
onErrorCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
152
|
-
onKeyDown?: import("react").KeyboardEventHandler<HTMLParagraphElement> | undefined;
|
|
153
|
-
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLParagraphElement> | undefined;
|
|
154
|
-
onKeyPress?: import("react").KeyboardEventHandler<HTMLParagraphElement> | undefined;
|
|
155
|
-
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLParagraphElement> | undefined;
|
|
156
|
-
onKeyUp?: import("react").KeyboardEventHandler<HTMLParagraphElement> | undefined;
|
|
157
|
-
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLParagraphElement> | undefined;
|
|
158
|
-
onAbort?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
159
|
-
onAbortCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
160
|
-
onCanPlay?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
161
|
-
onCanPlayCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
162
|
-
onCanPlayThrough?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
163
|
-
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
164
|
-
onDurationChange?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
165
|
-
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
166
|
-
onEmptied?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
167
|
-
onEmptiedCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
168
|
-
onEncrypted?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
169
|
-
onEncryptedCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
170
|
-
onEnded?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
171
|
-
onEndedCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
172
|
-
onLoadedData?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
173
|
-
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
174
|
-
onLoadedMetadata?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
175
|
-
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
176
|
-
onLoadStart?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
177
|
-
onLoadStartCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
178
|
-
onPause?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
179
|
-
onPauseCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
180
|
-
onPlay?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
181
|
-
onPlayCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
182
|
-
onPlaying?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
183
|
-
onPlayingCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
184
|
-
onProgress?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
185
|
-
onProgressCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
186
|
-
onRateChange?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
187
|
-
onRateChangeCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
188
|
-
onResize?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
189
|
-
onResizeCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
190
|
-
onSeeked?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
191
|
-
onSeekedCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
192
|
-
onSeeking?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
193
|
-
onSeekingCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
194
|
-
onStalled?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
195
|
-
onStalledCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
196
|
-
onSuspend?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
197
|
-
onSuspendCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
198
|
-
onTimeUpdate?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
199
|
-
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
200
|
-
onVolumeChange?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
201
|
-
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
202
|
-
onWaiting?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
203
|
-
onWaitingCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
204
|
-
onAuxClick?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
205
|
-
onAuxClickCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
206
|
-
onClick?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
207
|
-
onClickCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
208
|
-
onContextMenu?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
209
|
-
onContextMenuCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
210
|
-
onDoubleClick?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
211
|
-
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
212
|
-
onDrag?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
213
|
-
onDragCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
214
|
-
onDragEnd?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
215
|
-
onDragEndCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
216
|
-
onDragEnter?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
217
|
-
onDragEnterCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
218
|
-
onDragExit?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
219
|
-
onDragExitCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
220
|
-
onDragLeave?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
221
|
-
onDragLeaveCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
222
|
-
onDragOver?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
223
|
-
onDragOverCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
224
|
-
onDragStart?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
225
|
-
onDragStartCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
226
|
-
onDrop?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
227
|
-
onDropCapture?: import("react").DragEventHandler<HTMLParagraphElement> | undefined;
|
|
228
|
-
onMouseDown?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
229
|
-
onMouseDownCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
230
|
-
onMouseEnter?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
231
|
-
onMouseLeave?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
232
|
-
onMouseMove?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
233
|
-
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
234
|
-
onMouseOut?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
235
|
-
onMouseOutCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
236
|
-
onMouseOver?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
237
|
-
onMouseOverCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
238
|
-
onMouseUp?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
239
|
-
onMouseUpCapture?: import("react").MouseEventHandler<HTMLParagraphElement> | undefined;
|
|
240
|
-
onSelect?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
241
|
-
onSelectCapture?: import("react").ReactEventHandler<HTMLParagraphElement> | undefined;
|
|
242
|
-
onTouchCancel?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
243
|
-
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
244
|
-
onTouchEnd?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
245
|
-
onTouchEndCapture?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
246
|
-
onTouchMove?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
247
|
-
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
248
|
-
onTouchStart?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
249
|
-
onTouchStartCapture?: import("react").TouchEventHandler<HTMLParagraphElement> | undefined;
|
|
250
|
-
onPointerDown?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
251
|
-
onPointerDownCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
252
|
-
onPointerMove?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
253
|
-
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
254
|
-
onPointerUp?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
255
|
-
onPointerUpCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
256
|
-
onPointerCancel?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
257
|
-
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
258
|
-
onPointerEnter?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
259
|
-
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
260
|
-
onPointerLeave?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
261
|
-
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
262
|
-
onPointerOver?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
263
|
-
onPointerOverCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
264
|
-
onPointerOut?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
265
|
-
onPointerOutCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
266
|
-
onGotPointerCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
267
|
-
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
268
|
-
onLostPointerCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
269
|
-
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLParagraphElement> | undefined;
|
|
270
|
-
onScroll?: import("react").UIEventHandler<HTMLParagraphElement> | undefined;
|
|
271
|
-
onScrollCapture?: import("react").UIEventHandler<HTMLParagraphElement> | undefined;
|
|
272
|
-
onWheel?: import("react").WheelEventHandler<HTMLParagraphElement> | undefined;
|
|
273
|
-
onWheelCapture?: import("react").WheelEventHandler<HTMLParagraphElement> | undefined;
|
|
274
|
-
onAnimationStart?: import("react").AnimationEventHandler<HTMLParagraphElement> | undefined;
|
|
275
|
-
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLParagraphElement> | undefined;
|
|
276
|
-
onAnimationEnd?: import("react").AnimationEventHandler<HTMLParagraphElement> | undefined;
|
|
277
|
-
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLParagraphElement> | undefined;
|
|
278
|
-
onAnimationIteration?: import("react").AnimationEventHandler<HTMLParagraphElement> | undefined;
|
|
279
|
-
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLParagraphElement> | undefined;
|
|
280
|
-
onTransitionEnd?: import("react").TransitionEventHandler<HTMLParagraphElement> | undefined;
|
|
281
|
-
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLParagraphElement> | undefined;
|
|
282
|
-
ref?: import("react").Ref<HTMLParagraphElement> | undefined;
|
|
13
|
+
[x: string]: any;
|
|
14
|
+
[x: number]: any;
|
|
15
|
+
[x: symbol]: any;
|
|
16
|
+
ref?: import("react").Ref<unknown> | undefined;
|
|
283
17
|
key?: import("react").Key | null | undefined;
|
|
284
18
|
}>;
|
|
285
19
|
export { Text };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { IconSize } from "./Icon/types";
|
|
4
4
|
export declare const FormRoot: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
5
5
|
$orientation?: "horizontal" | "vertical" | undefined;
|
|
6
|
-
$dir?: "
|
|
6
|
+
$dir?: "end" | "start" | undefined;
|
|
7
7
|
$addLabelPadding?: boolean | undefined;
|
|
8
8
|
}>>;
|
|
9
9
|
export declare const Error: import("styled-components").IStyledComponent<"web", {
|
|
@@ -16,7 +16,7 @@ export declare const Error: import("styled-components").IStyledComponent<"web",
|
|
|
16
16
|
accessKey?: string | undefined;
|
|
17
17
|
autoFocus?: boolean | undefined;
|
|
18
18
|
className?: string | undefined;
|
|
19
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
19
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
20
20
|
contextMenu?: string | undefined;
|
|
21
21
|
dir?: string | undefined;
|
|
22
22
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -60,7 +60,7 @@ export declare const Error: import("styled-components").IStyledComponent<"web",
|
|
|
60
60
|
is?: string | undefined;
|
|
61
61
|
'aria-activedescendant'?: string | undefined;
|
|
62
62
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
63
|
-
'aria-autocomplete'?: "
|
|
63
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
64
64
|
'aria-braillelabel'?: string | undefined;
|
|
65
65
|
'aria-brailleroledescription'?: string | undefined;
|
|
66
66
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -70,7 +70,7 @@ export declare const Error: import("styled-components").IStyledComponent<"web",
|
|
|
70
70
|
'aria-colindextext'?: string | undefined;
|
|
71
71
|
'aria-colspan'?: number | undefined;
|
|
72
72
|
'aria-controls'?: string | undefined;
|
|
73
|
-
'aria-current'?: boolean | "time" | "
|
|
73
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
74
74
|
'aria-describedby'?: string | undefined;
|
|
75
75
|
'aria-description'?: string | undefined;
|
|
76
76
|
'aria-details'?: string | undefined;
|
|
@@ -299,7 +299,7 @@ export declare const EmptyButton: import("styled-components").IStyledComponent<"
|
|
|
299
299
|
accessKey?: string | undefined;
|
|
300
300
|
autoFocus?: boolean | undefined;
|
|
301
301
|
className?: string | undefined;
|
|
302
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
302
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
303
303
|
contextMenu?: string | undefined;
|
|
304
304
|
dir?: string | undefined;
|
|
305
305
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -343,7 +343,7 @@ export declare const EmptyButton: import("styled-components").IStyledComponent<"
|
|
|
343
343
|
is?: string | undefined;
|
|
344
344
|
'aria-activedescendant'?: string | undefined;
|
|
345
345
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
346
|
-
'aria-autocomplete'?: "
|
|
346
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
347
347
|
'aria-braillelabel'?: string | undefined;
|
|
348
348
|
'aria-brailleroledescription'?: string | undefined;
|
|
349
349
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -353,7 +353,7 @@ export declare const EmptyButton: import("styled-components").IStyledComponent<"
|
|
|
353
353
|
'aria-colindextext'?: string | undefined;
|
|
354
354
|
'aria-colspan'?: number | undefined;
|
|
355
355
|
'aria-controls'?: string | undefined;
|
|
356
|
-
'aria-current'?: boolean | "time" | "
|
|
356
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
357
357
|
'aria-describedby'?: string | undefined;
|
|
358
358
|
'aria-description'?: string | undefined;
|
|
359
359
|
'aria-details'?: string | undefined;
|
|
@@ -562,9 +562,13 @@ export declare const EmptyButton: import("styled-components").IStyledComponent<"
|
|
|
562
562
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
563
563
|
}>;
|
|
564
564
|
export declare const CrossButton: import("styled-components").IStyledComponent<"web", {
|
|
565
|
-
|
|
566
|
-
color?: string | undefined;
|
|
565
|
+
disabled?: boolean | undefined;
|
|
567
566
|
children?: import("react").ReactNode;
|
|
567
|
+
form?: string | undefined;
|
|
568
|
+
slot?: string | undefined;
|
|
569
|
+
style?: import("react").CSSProperties | undefined;
|
|
570
|
+
title?: string | undefined;
|
|
571
|
+
key?: import("react").Key | null | undefined;
|
|
568
572
|
defaultChecked?: boolean | undefined;
|
|
569
573
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
570
574
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -572,7 +576,7 @@ export declare const CrossButton: import("styled-components").IStyledComponent<"
|
|
|
572
576
|
accessKey?: string | undefined;
|
|
573
577
|
autoFocus?: boolean | undefined;
|
|
574
578
|
className?: string | undefined;
|
|
575
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
579
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
576
580
|
contextMenu?: string | undefined;
|
|
577
581
|
dir?: string | undefined;
|
|
578
582
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -581,11 +585,8 @@ export declare const CrossButton: import("styled-components").IStyledComponent<"
|
|
|
581
585
|
lang?: string | undefined;
|
|
582
586
|
nonce?: string | undefined;
|
|
583
587
|
placeholder?: string | undefined;
|
|
584
|
-
slot?: string | undefined;
|
|
585
588
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
586
|
-
style?: import("react").CSSProperties | undefined;
|
|
587
589
|
tabIndex?: number | undefined;
|
|
588
|
-
title?: string | undefined;
|
|
589
590
|
translate?: "yes" | "no" | undefined;
|
|
590
591
|
radioGroup?: string | undefined;
|
|
591
592
|
role?: import("react").AriaRole | undefined;
|
|
@@ -603,6 +604,7 @@ export declare const CrossButton: import("styled-components").IStyledComponent<"
|
|
|
603
604
|
autoCapitalize?: string | undefined;
|
|
604
605
|
autoCorrect?: string | undefined;
|
|
605
606
|
autoSave?: string | undefined;
|
|
607
|
+
color?: string | undefined;
|
|
606
608
|
itemProp?: string | undefined;
|
|
607
609
|
itemScope?: boolean | undefined;
|
|
608
610
|
itemType?: string | undefined;
|
|
@@ -615,7 +617,7 @@ export declare const CrossButton: import("styled-components").IStyledComponent<"
|
|
|
615
617
|
is?: string | undefined;
|
|
616
618
|
'aria-activedescendant'?: string | undefined;
|
|
617
619
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
618
|
-
'aria-autocomplete'?: "
|
|
620
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
619
621
|
'aria-braillelabel'?: string | undefined;
|
|
620
622
|
'aria-brailleroledescription'?: string | undefined;
|
|
621
623
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -625,7 +627,7 @@ export declare const CrossButton: import("styled-components").IStyledComponent<"
|
|
|
625
627
|
'aria-colindextext'?: string | undefined;
|
|
626
628
|
'aria-colspan'?: number | undefined;
|
|
627
629
|
'aria-controls'?: string | undefined;
|
|
628
|
-
'aria-current'?: boolean | "time" | "
|
|
630
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
629
631
|
'aria-describedby'?: string | undefined;
|
|
630
632
|
'aria-description'?: string | undefined;
|
|
631
633
|
'aria-details'?: string | undefined;
|
|
@@ -831,10 +833,8 @@ export declare const CrossButton: import("styled-components").IStyledComponent<"
|
|
|
831
833
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
832
834
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
833
835
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
834
|
-
key?: import("react").Key | null | undefined;
|
|
835
|
-
form?: string | undefined;
|
|
836
836
|
name?: string | undefined;
|
|
837
|
-
|
|
837
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
838
838
|
formAction?: string | undefined;
|
|
839
839
|
formEncType?: string | undefined;
|
|
840
840
|
formMethod?: string | undefined;
|
|
@@ -853,7 +853,7 @@ export declare const GridCenter: import("styled-components").IStyledComponent<"w
|
|
|
853
853
|
accessKey?: string | undefined;
|
|
854
854
|
autoFocus?: boolean | undefined;
|
|
855
855
|
className?: string | undefined;
|
|
856
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
856
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
857
857
|
contextMenu?: string | undefined;
|
|
858
858
|
dir?: string | undefined;
|
|
859
859
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -897,7 +897,7 @@ export declare const GridCenter: import("styled-components").IStyledComponent<"w
|
|
|
897
897
|
is?: string | undefined;
|
|
898
898
|
'aria-activedescendant'?: string | undefined;
|
|
899
899
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
900
|
-
'aria-autocomplete'?: "
|
|
900
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
901
901
|
'aria-braillelabel'?: string | undefined;
|
|
902
902
|
'aria-brailleroledescription'?: string | undefined;
|
|
903
903
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -907,7 +907,7 @@ export declare const GridCenter: import("styled-components").IStyledComponent<"w
|
|
|
907
907
|
'aria-colindextext'?: string | undefined;
|
|
908
908
|
'aria-colspan'?: number | undefined;
|
|
909
909
|
'aria-controls'?: string | undefined;
|
|
910
|
-
'aria-current'?: boolean | "time" | "
|
|
910
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
911
911
|
'aria-describedby'?: string | undefined;
|
|
912
912
|
'aria-description'?: string | undefined;
|
|
913
913
|
'aria-details'?: string | undefined;
|
|
@@ -1135,7 +1135,7 @@ export declare const BaseButton: import("styled-components").IStyledComponent<"w
|
|
|
1135
1135
|
accessKey?: string | undefined;
|
|
1136
1136
|
autoFocus?: boolean | undefined;
|
|
1137
1137
|
className?: string | undefined;
|
|
1138
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1138
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1139
1139
|
contextMenu?: string | undefined;
|
|
1140
1140
|
dir?: string | undefined;
|
|
1141
1141
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1179,7 +1179,7 @@ export declare const BaseButton: import("styled-components").IStyledComponent<"w
|
|
|
1179
1179
|
is?: string | undefined;
|
|
1180
1180
|
'aria-activedescendant'?: string | undefined;
|
|
1181
1181
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
1182
|
-
'aria-autocomplete'?: "
|
|
1182
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
1183
1183
|
'aria-braillelabel'?: string | undefined;
|
|
1184
1184
|
'aria-brailleroledescription'?: string | undefined;
|
|
1185
1185
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -1189,7 +1189,7 @@ export declare const BaseButton: import("styled-components").IStyledComponent<"w
|
|
|
1189
1189
|
'aria-colindextext'?: string | undefined;
|
|
1190
1190
|
'aria-colspan'?: number | undefined;
|
|
1191
1191
|
'aria-controls'?: string | undefined;
|
|
1192
|
-
'aria-current'?: boolean | "time" | "
|
|
1192
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
1193
1193
|
'aria-describedby'?: string | undefined;
|
|
1194
1194
|
'aria-description'?: string | undefined;
|
|
1195
1195
|
'aria-details'?: string | undefined;
|
|
@@ -1410,7 +1410,7 @@ export declare const FormElementContainer: import("styled-components").IStyledCo
|
|
|
1410
1410
|
accessKey?: string | undefined;
|
|
1411
1411
|
autoFocus?: boolean | undefined;
|
|
1412
1412
|
className?: string | undefined;
|
|
1413
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1413
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1414
1414
|
contextMenu?: string | undefined;
|
|
1415
1415
|
dir?: string | undefined;
|
|
1416
1416
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1454,7 +1454,7 @@ export declare const FormElementContainer: import("styled-components").IStyledCo
|
|
|
1454
1454
|
is?: string | undefined;
|
|
1455
1455
|
'aria-activedescendant'?: string | undefined;
|
|
1456
1456
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
1457
|
-
'aria-autocomplete'?: "
|
|
1457
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
1458
1458
|
'aria-braillelabel'?: string | undefined;
|
|
1459
1459
|
'aria-brailleroledescription'?: string | undefined;
|
|
1460
1460
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -1464,7 +1464,7 @@ export declare const FormElementContainer: import("styled-components").IStyledCo
|
|
|
1464
1464
|
'aria-colindextext'?: string | undefined;
|
|
1465
1465
|
'aria-colspan'?: number | undefined;
|
|
1466
1466
|
'aria-controls'?: string | undefined;
|
|
1467
|
-
'aria-current'?: boolean | "time" | "
|
|
1467
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
1468
1468
|
'aria-describedby'?: string | undefined;
|
|
1469
1469
|
'aria-description'?: string | undefined;
|
|
1470
1470
|
'aria-details'?: string | undefined;
|
|
@@ -1682,7 +1682,7 @@ export declare const EllipsisContainer: import("styled-components").IStyledCompo
|
|
|
1682
1682
|
accessKey?: string | undefined;
|
|
1683
1683
|
autoFocus?: boolean | undefined;
|
|
1684
1684
|
className?: string | undefined;
|
|
1685
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1685
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1686
1686
|
contextMenu?: string | undefined;
|
|
1687
1687
|
dir?: string | undefined;
|
|
1688
1688
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1726,7 +1726,7 @@ export declare const EllipsisContainer: import("styled-components").IStyledCompo
|
|
|
1726
1726
|
is?: string | undefined;
|
|
1727
1727
|
'aria-activedescendant'?: string | undefined;
|
|
1728
1728
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
1729
|
-
'aria-autocomplete'?: "
|
|
1729
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
1730
1730
|
'aria-braillelabel'?: string | undefined;
|
|
1731
1731
|
'aria-brailleroledescription'?: string | undefined;
|
|
1732
1732
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -1736,7 +1736,7 @@ export declare const EllipsisContainer: import("styled-components").IStyledCompo
|
|
|
1736
1736
|
'aria-colindextext'?: string | undefined;
|
|
1737
1737
|
'aria-colspan'?: number | undefined;
|
|
1738
1738
|
'aria-controls'?: string | undefined;
|
|
1739
|
-
'aria-current'?: boolean | "time" | "
|
|
1739
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
1740
1740
|
'aria-describedby'?: string | undefined;
|
|
1741
1741
|
'aria-description'?: string | undefined;
|
|
1742
1742
|
'aria-details'?: string | undefined;
|
|
@@ -22,7 +22,7 @@ declare const HorizontalLoading: import("styled-components").IStyledComponent<"w
|
|
|
22
22
|
accentHeight?: string | number | undefined;
|
|
23
23
|
accumulate?: "none" | "sum" | undefined;
|
|
24
24
|
additive?: "replace" | "sum" | undefined;
|
|
25
|
-
alignmentBaseline?: "
|
|
25
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
26
26
|
allowReorder?: "yes" | "no" | undefined;
|
|
27
27
|
alphabetic?: string | number | undefined;
|
|
28
28
|
amplitude?: string | number | undefined;
|
|
@@ -263,7 +263,7 @@ declare const HorizontalLoading: import("styled-components").IStyledComponent<"w
|
|
|
263
263
|
zoomAndPan?: string | undefined;
|
|
264
264
|
'aria-activedescendant'?: string | undefined;
|
|
265
265
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
266
|
-
'aria-autocomplete'?: "
|
|
266
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
267
267
|
'aria-braillelabel'?: string | undefined;
|
|
268
268
|
'aria-brailleroledescription'?: string | undefined;
|
|
269
269
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -273,7 +273,7 @@ declare const HorizontalLoading: import("styled-components").IStyledComponent<"w
|
|
|
273
273
|
'aria-colindextext'?: string | undefined;
|
|
274
274
|
'aria-colspan'?: number | undefined;
|
|
275
275
|
'aria-controls'?: string | undefined;
|
|
276
|
-
'aria-current'?: boolean | "time" | "
|
|
276
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
277
277
|
'aria-describedby'?: string | undefined;
|
|
278
278
|
'aria-description'?: string | undefined;
|
|
279
279
|
'aria-details'?: string | undefined;
|
|
@@ -22,7 +22,7 @@ declare const LoadingFlipped: import("styled-components").IStyledComponent<"web"
|
|
|
22
22
|
accentHeight?: string | number | undefined;
|
|
23
23
|
accumulate?: "none" | "sum" | undefined;
|
|
24
24
|
additive?: "replace" | "sum" | undefined;
|
|
25
|
-
alignmentBaseline?: "
|
|
25
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
26
26
|
allowReorder?: "yes" | "no" | undefined;
|
|
27
27
|
alphabetic?: string | number | undefined;
|
|
28
28
|
amplitude?: string | number | undefined;
|
|
@@ -263,7 +263,7 @@ declare const LoadingFlipped: import("styled-components").IStyledComponent<"web"
|
|
|
263
263
|
zoomAndPan?: string | undefined;
|
|
264
264
|
'aria-activedescendant'?: string | undefined;
|
|
265
265
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
266
|
-
'aria-autocomplete'?: "
|
|
266
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
267
267
|
'aria-braillelabel'?: string | undefined;
|
|
268
268
|
'aria-brailleroledescription'?: string | undefined;
|
|
269
269
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -273,7 +273,7 @@ declare const LoadingFlipped: import("styled-components").IStyledComponent<"web"
|
|
|
273
273
|
'aria-colindextext'?: string | undefined;
|
|
274
274
|
'aria-colspan'?: number | undefined;
|
|
275
275
|
'aria-controls'?: string | undefined;
|
|
276
|
-
'aria-current'?: boolean | "time" | "
|
|
276
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
277
277
|
'aria-describedby'?: string | undefined;
|
|
278
278
|
'aria-description'?: string | undefined;
|
|
279
279
|
'aria-details'?: string | undefined;
|
|
@@ -22,7 +22,7 @@ declare const LoadingAnimated: import("styled-components").IStyledComponent<"web
|
|
|
22
22
|
accentHeight?: string | number | undefined;
|
|
23
23
|
accumulate?: "none" | "sum" | undefined;
|
|
24
24
|
additive?: "replace" | "sum" | undefined;
|
|
25
|
-
alignmentBaseline?: "
|
|
25
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
26
26
|
allowReorder?: "yes" | "no" | undefined;
|
|
27
27
|
alphabetic?: string | number | undefined;
|
|
28
28
|
amplitude?: string | number | undefined;
|
|
@@ -263,7 +263,7 @@ declare const LoadingAnimated: import("styled-components").IStyledComponent<"web
|
|
|
263
263
|
zoomAndPan?: string | undefined;
|
|
264
264
|
'aria-activedescendant'?: string | undefined;
|
|
265
265
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
266
|
-
'aria-autocomplete'?: "
|
|
266
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
267
267
|
'aria-braillelabel'?: string | undefined;
|
|
268
268
|
'aria-brailleroledescription'?: string | undefined;
|
|
269
269
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -273,7 +273,7 @@ declare const LoadingAnimated: import("styled-components").IStyledComponent<"web
|
|
|
273
273
|
'aria-colindextext'?: string | undefined;
|
|
274
274
|
'aria-colspan'?: number | undefined;
|
|
275
275
|
'aria-controls'?: string | undefined;
|
|
276
|
-
'aria-current'?: boolean | "time" | "
|
|
276
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
277
277
|
'aria-describedby'?: string | undefined;
|
|
278
278
|
'aria-description'?: string | undefined;
|
|
279
279
|
'aria-details'?: string | undefined;
|