@appquality/unguess-design-system 3.1.106-highlight-2 → 3.1.106-highlight-3
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/build/stories/buttons/button/index.stories.d.ts +0 -1
- package/build/stories/buttons/utils.d.ts +67 -69
- package/build/stories/chat/index.stories.d.ts +0 -1
- package/build/stories/dropdowns/select/index.stories.d.ts +0 -1
- package/build/stories/editor/index.stories.d.ts +0 -1
- package/build/stories/highlight/index.stories.d.ts +0 -1
- package/build/stories/player/index.stories.d.ts +0 -1
- package/package.json +1 -1
- package/yarn-error.log +0 -13975
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ButtonArgs } from "./_types";
|
|
3
2
|
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, ButtonArgs>;
|
|
4
3
|
export declare const Basic: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, ButtonArgs>;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
|
-
/// <reference types="trusted-types" />
|
|
4
2
|
export declare const sizes: readonly ["small", "medium", "large"];
|
|
5
3
|
export declare const variants: readonly [{}, {
|
|
6
4
|
readonly isDanger: true;
|
|
@@ -10,6 +8,16 @@ export declare const variants: readonly [{}, {
|
|
|
10
8
|
readonly disabled: true;
|
|
11
9
|
}];
|
|
12
10
|
export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
11
|
+
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
12
|
+
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
13
|
+
children?: import("react").ReactNode;
|
|
14
|
+
title?: string | undefined;
|
|
15
|
+
color?: string | undefined;
|
|
16
|
+
content?: string | undefined;
|
|
17
|
+
slot?: string | undefined;
|
|
18
|
+
style?: import("react").CSSProperties | undefined;
|
|
19
|
+
className?: string | undefined;
|
|
20
|
+
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
13
21
|
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
14
22
|
defaultChecked?: boolean | undefined;
|
|
15
23
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -17,26 +25,21 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
17
25
|
suppressHydrationWarning?: boolean | undefined;
|
|
18
26
|
accessKey?: string | undefined;
|
|
19
27
|
autoFocus?: boolean | undefined;
|
|
20
|
-
className?: string | undefined;
|
|
21
28
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
22
29
|
contextMenu?: string | undefined;
|
|
23
30
|
dir?: string | undefined;
|
|
24
31
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
25
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "
|
|
32
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
26
33
|
hidden?: boolean | undefined;
|
|
27
34
|
id?: string | undefined;
|
|
28
35
|
lang?: string | undefined;
|
|
29
36
|
nonce?: string | undefined;
|
|
30
|
-
slot?: string | undefined;
|
|
31
37
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
32
|
-
style?: import("react").CSSProperties | undefined;
|
|
33
38
|
tabIndex?: number | undefined;
|
|
34
|
-
title?: string | undefined;
|
|
35
39
|
translate?: "yes" | "no" | undefined;
|
|
36
40
|
radioGroup?: string | undefined;
|
|
37
41
|
role?: import("react").AriaRole | undefined;
|
|
38
42
|
about?: string | undefined;
|
|
39
|
-
content?: string | undefined;
|
|
40
43
|
datatype?: string | undefined;
|
|
41
44
|
inlist?: any;
|
|
42
45
|
prefix?: string | undefined;
|
|
@@ -49,7 +52,6 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
49
52
|
autoCapitalize?: string | undefined;
|
|
50
53
|
autoCorrect?: string | undefined;
|
|
51
54
|
autoSave?: string | undefined;
|
|
52
|
-
color?: string | undefined;
|
|
53
55
|
itemProp?: string | undefined;
|
|
54
56
|
itemScope?: boolean | undefined;
|
|
55
57
|
itemType?: string | undefined;
|
|
@@ -58,7 +60,7 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
58
60
|
results?: number | undefined;
|
|
59
61
|
security?: string | undefined;
|
|
60
62
|
unselectable?: "on" | "off" | undefined;
|
|
61
|
-
inputMode?: "search" | "
|
|
63
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
62
64
|
is?: string | undefined;
|
|
63
65
|
"aria-activedescendant"?: string | undefined;
|
|
64
66
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -72,7 +74,7 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
72
74
|
"aria-colindextext"?: string | undefined;
|
|
73
75
|
"aria-colspan"?: number | undefined;
|
|
74
76
|
"aria-controls"?: string | undefined;
|
|
75
|
-
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" |
|
|
77
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
76
78
|
"aria-describedby"?: string | undefined;
|
|
77
79
|
"aria-description"?: string | undefined;
|
|
78
80
|
"aria-details"?: string | undefined;
|
|
@@ -82,7 +84,7 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
82
84
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
83
85
|
"aria-flowto"?: string | undefined;
|
|
84
86
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
85
|
-
"aria-haspopup"?: boolean | "
|
|
87
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
86
88
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
87
89
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
88
90
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -113,7 +115,6 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
113
115
|
"aria-valuemin"?: number | undefined;
|
|
114
116
|
"aria-valuenow"?: number | undefined;
|
|
115
117
|
"aria-valuetext"?: string | undefined;
|
|
116
|
-
children?: import("react").ReactNode;
|
|
117
118
|
dangerouslySetInnerHTML?: {
|
|
118
119
|
__html: string | TrustedHTML;
|
|
119
120
|
} | undefined;
|
|
@@ -129,9 +130,7 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
129
130
|
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
130
131
|
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
131
132
|
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
132
|
-
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
133
133
|
onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
134
|
-
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
135
134
|
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
136
135
|
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
137
136
|
onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
@@ -202,7 +201,6 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
202
201
|
onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
203
202
|
onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
204
203
|
onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
205
|
-
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
206
204
|
onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
207
205
|
onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
208
206
|
onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
@@ -277,19 +275,19 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
277
275
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
278
276
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
279
277
|
key?: import("react").Key | null | undefined;
|
|
280
|
-
justifyContent?: "
|
|
278
|
+
justifyContent?: "start" | "end" | "center" | "between" | "around" | undefined;
|
|
281
279
|
wrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
282
|
-
alignItems?: "
|
|
283
|
-
alignItemsXs?: "
|
|
284
|
-
alignItemsSm?: "
|
|
285
|
-
alignItemsMd?: "
|
|
286
|
-
alignItemsLg?: "
|
|
287
|
-
alignItemsXl?: "
|
|
288
|
-
justifyContentXs?: "
|
|
289
|
-
justifyContentSm?: "
|
|
290
|
-
justifyContentMd?: "
|
|
291
|
-
justifyContentLg?: "
|
|
292
|
-
justifyContentXl?: "
|
|
280
|
+
alignItems?: "start" | "end" | "center" | "baseline" | "stretch" | undefined;
|
|
281
|
+
alignItemsXs?: "start" | "end" | "center" | "baseline" | "stretch" | undefined;
|
|
282
|
+
alignItemsSm?: "start" | "end" | "center" | "baseline" | "stretch" | undefined;
|
|
283
|
+
alignItemsMd?: "start" | "end" | "center" | "baseline" | "stretch" | undefined;
|
|
284
|
+
alignItemsLg?: "start" | "end" | "center" | "baseline" | "stretch" | undefined;
|
|
285
|
+
alignItemsXl?: "start" | "end" | "center" | "baseline" | "stretch" | undefined;
|
|
286
|
+
justifyContentXs?: "start" | "end" | "center" | "between" | "around" | undefined;
|
|
287
|
+
justifyContentSm?: "start" | "end" | "center" | "between" | "around" | undefined;
|
|
288
|
+
justifyContentMd?: "start" | "end" | "center" | "between" | "around" | undefined;
|
|
289
|
+
justifyContentLg?: "start" | "end" | "center" | "between" | "around" | undefined;
|
|
290
|
+
justifyContentXl?: "start" | "end" | "center" | "between" | "around" | undefined;
|
|
293
291
|
wrapXs?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
294
292
|
wrapSm?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
295
293
|
wrapMd?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
@@ -298,6 +296,16 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
298
296
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
299
297
|
}> & import("react").ForwardRefExoticComponent<import("@zendeskgarden/react-grid").IRowProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
300
298
|
export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
299
|
+
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
300
|
+
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
301
|
+
children?: import("react").ReactNode;
|
|
302
|
+
title?: string | undefined;
|
|
303
|
+
color?: string | undefined;
|
|
304
|
+
content?: string | undefined;
|
|
305
|
+
slot?: string | undefined;
|
|
306
|
+
style?: import("react").CSSProperties | undefined;
|
|
307
|
+
className?: string | undefined;
|
|
308
|
+
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
301
309
|
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
302
310
|
defaultChecked?: boolean | undefined;
|
|
303
311
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -305,26 +313,21 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
305
313
|
suppressHydrationWarning?: boolean | undefined;
|
|
306
314
|
accessKey?: string | undefined;
|
|
307
315
|
autoFocus?: boolean | undefined;
|
|
308
|
-
className?: string | undefined;
|
|
309
316
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
310
317
|
contextMenu?: string | undefined;
|
|
311
318
|
dir?: string | undefined;
|
|
312
319
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
313
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "
|
|
320
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
314
321
|
hidden?: boolean | undefined;
|
|
315
322
|
id?: string | undefined;
|
|
316
323
|
lang?: string | undefined;
|
|
317
324
|
nonce?: string | undefined;
|
|
318
|
-
slot?: string | undefined;
|
|
319
325
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
320
|
-
style?: import("react").CSSProperties | undefined;
|
|
321
326
|
tabIndex?: number | undefined;
|
|
322
|
-
title?: string | undefined;
|
|
323
327
|
translate?: "yes" | "no" | undefined;
|
|
324
328
|
radioGroup?: string | undefined;
|
|
325
329
|
role?: import("react").AriaRole | undefined;
|
|
326
330
|
about?: string | undefined;
|
|
327
|
-
content?: string | undefined;
|
|
328
331
|
datatype?: string | undefined;
|
|
329
332
|
inlist?: any;
|
|
330
333
|
prefix?: string | undefined;
|
|
@@ -337,7 +340,6 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
337
340
|
autoCapitalize?: string | undefined;
|
|
338
341
|
autoCorrect?: string | undefined;
|
|
339
342
|
autoSave?: string | undefined;
|
|
340
|
-
color?: string | undefined;
|
|
341
343
|
itemProp?: string | undefined;
|
|
342
344
|
itemScope?: boolean | undefined;
|
|
343
345
|
itemType?: string | undefined;
|
|
@@ -346,7 +348,7 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
346
348
|
results?: number | undefined;
|
|
347
349
|
security?: string | undefined;
|
|
348
350
|
unselectable?: "on" | "off" | undefined;
|
|
349
|
-
inputMode?: "search" | "
|
|
351
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
350
352
|
is?: string | undefined;
|
|
351
353
|
"aria-activedescendant"?: string | undefined;
|
|
352
354
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -360,7 +362,7 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
360
362
|
"aria-colindextext"?: string | undefined;
|
|
361
363
|
"aria-colspan"?: number | undefined;
|
|
362
364
|
"aria-controls"?: string | undefined;
|
|
363
|
-
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" |
|
|
365
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
364
366
|
"aria-describedby"?: string | undefined;
|
|
365
367
|
"aria-description"?: string | undefined;
|
|
366
368
|
"aria-details"?: string | undefined;
|
|
@@ -370,7 +372,7 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
370
372
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
371
373
|
"aria-flowto"?: string | undefined;
|
|
372
374
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
373
|
-
"aria-haspopup"?: boolean | "
|
|
375
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
374
376
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
375
377
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
376
378
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -401,7 +403,6 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
401
403
|
"aria-valuemin"?: number | undefined;
|
|
402
404
|
"aria-valuenow"?: number | undefined;
|
|
403
405
|
"aria-valuetext"?: string | undefined;
|
|
404
|
-
children?: import("react").ReactNode;
|
|
405
406
|
dangerouslySetInnerHTML?: {
|
|
406
407
|
__html: string | TrustedHTML;
|
|
407
408
|
} | undefined;
|
|
@@ -417,9 +418,7 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
417
418
|
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
418
419
|
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
419
420
|
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
420
|
-
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
421
421
|
onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
422
|
-
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
423
422
|
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
424
423
|
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
425
424
|
onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
@@ -490,7 +489,6 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
490
489
|
onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
491
490
|
onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
492
491
|
onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
493
|
-
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
494
492
|
onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
495
493
|
onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
496
494
|
onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
@@ -566,25 +564,25 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
566
564
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
567
565
|
key?: import("react").Key | null | undefined;
|
|
568
566
|
sm?: string | number | boolean | undefined;
|
|
567
|
+
size?: string | number | undefined;
|
|
569
568
|
offset?: string | number | undefined;
|
|
570
569
|
order?: string | number | undefined;
|
|
571
|
-
size?: string | number | undefined;
|
|
572
570
|
xs?: string | number | boolean | undefined;
|
|
573
571
|
md?: string | number | boolean | undefined;
|
|
574
572
|
lg?: string | number | boolean | undefined;
|
|
575
573
|
xl?: string | number | boolean | undefined;
|
|
576
|
-
alignSelf?: "
|
|
577
|
-
alignSelfXs?: "
|
|
578
|
-
alignSelfSm?: "
|
|
579
|
-
alignSelfMd?: "
|
|
580
|
-
alignSelfLg?: "
|
|
581
|
-
alignSelfXl?: "
|
|
582
|
-
textAlign?: "
|
|
583
|
-
textAlignXs?: "
|
|
584
|
-
textAlignSm?: "
|
|
585
|
-
textAlignMd?: "
|
|
586
|
-
textAlignLg?: "
|
|
587
|
-
textAlignXl?: "
|
|
574
|
+
alignSelf?: "start" | "end" | "center" | "baseline" | "stretch" | "auto" | undefined;
|
|
575
|
+
alignSelfXs?: "start" | "end" | "center" | "baseline" | "stretch" | "auto" | undefined;
|
|
576
|
+
alignSelfSm?: "start" | "end" | "center" | "baseline" | "stretch" | "auto" | undefined;
|
|
577
|
+
alignSelfMd?: "start" | "end" | "center" | "baseline" | "stretch" | "auto" | undefined;
|
|
578
|
+
alignSelfLg?: "start" | "end" | "center" | "baseline" | "stretch" | "auto" | undefined;
|
|
579
|
+
alignSelfXl?: "start" | "end" | "center" | "baseline" | "stretch" | "auto" | undefined;
|
|
580
|
+
textAlign?: "start" | "end" | "center" | "justify" | undefined;
|
|
581
|
+
textAlignXs?: "start" | "end" | "center" | "justify" | undefined;
|
|
582
|
+
textAlignSm?: "start" | "end" | "center" | "justify" | undefined;
|
|
583
|
+
textAlignMd?: "start" | "end" | "center" | "justify" | undefined;
|
|
584
|
+
textAlignLg?: "start" | "end" | "center" | "justify" | undefined;
|
|
585
|
+
textAlignXl?: "start" | "end" | "center" | "justify" | undefined;
|
|
588
586
|
offsetXs?: string | number | undefined;
|
|
589
587
|
offsetSm?: string | number | undefined;
|
|
590
588
|
offsetMd?: string | number | undefined;
|
|
@@ -598,6 +596,16 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
598
596
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
599
597
|
}> & import("react").ForwardRefExoticComponent<import("@zendeskgarden/react-grid").IColProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
600
598
|
export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
599
|
+
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
600
|
+
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
601
|
+
children?: import("react").ReactNode;
|
|
602
|
+
title?: string | undefined;
|
|
603
|
+
color?: string | undefined;
|
|
604
|
+
content?: string | undefined;
|
|
605
|
+
slot?: string | undefined;
|
|
606
|
+
style?: import("react").CSSProperties | undefined;
|
|
607
|
+
className?: string | undefined;
|
|
608
|
+
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
601
609
|
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
602
610
|
defaultChecked?: boolean | undefined;
|
|
603
611
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -605,26 +613,21 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
605
613
|
suppressHydrationWarning?: boolean | undefined;
|
|
606
614
|
accessKey?: string | undefined;
|
|
607
615
|
autoFocus?: boolean | undefined;
|
|
608
|
-
className?: string | undefined;
|
|
609
616
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
610
617
|
contextMenu?: string | undefined;
|
|
611
618
|
dir?: string | undefined;
|
|
612
619
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
613
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "
|
|
620
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
614
621
|
hidden?: boolean | undefined;
|
|
615
622
|
id?: string | undefined;
|
|
616
623
|
lang?: string | undefined;
|
|
617
624
|
nonce?: string | undefined;
|
|
618
|
-
slot?: string | undefined;
|
|
619
625
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
620
|
-
style?: import("react").CSSProperties | undefined;
|
|
621
626
|
tabIndex?: number | undefined;
|
|
622
|
-
title?: string | undefined;
|
|
623
627
|
translate?: "yes" | "no" | undefined;
|
|
624
628
|
radioGroup?: string | undefined;
|
|
625
629
|
role?: import("react").AriaRole | undefined;
|
|
626
630
|
about?: string | undefined;
|
|
627
|
-
content?: string | undefined;
|
|
628
631
|
datatype?: string | undefined;
|
|
629
632
|
inlist?: any;
|
|
630
633
|
prefix?: string | undefined;
|
|
@@ -637,7 +640,6 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
637
640
|
autoCapitalize?: string | undefined;
|
|
638
641
|
autoCorrect?: string | undefined;
|
|
639
642
|
autoSave?: string | undefined;
|
|
640
|
-
color?: string | undefined;
|
|
641
643
|
itemProp?: string | undefined;
|
|
642
644
|
itemScope?: boolean | undefined;
|
|
643
645
|
itemType?: string | undefined;
|
|
@@ -646,7 +648,7 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
646
648
|
results?: number | undefined;
|
|
647
649
|
security?: string | undefined;
|
|
648
650
|
unselectable?: "on" | "off" | undefined;
|
|
649
|
-
inputMode?: "search" | "
|
|
651
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
650
652
|
is?: string | undefined;
|
|
651
653
|
"aria-activedescendant"?: string | undefined;
|
|
652
654
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -660,7 +662,7 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
660
662
|
"aria-colindextext"?: string | undefined;
|
|
661
663
|
"aria-colspan"?: number | undefined;
|
|
662
664
|
"aria-controls"?: string | undefined;
|
|
663
|
-
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" |
|
|
665
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
664
666
|
"aria-describedby"?: string | undefined;
|
|
665
667
|
"aria-description"?: string | undefined;
|
|
666
668
|
"aria-details"?: string | undefined;
|
|
@@ -670,7 +672,7 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
670
672
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
671
673
|
"aria-flowto"?: string | undefined;
|
|
672
674
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
673
|
-
"aria-haspopup"?: boolean | "
|
|
675
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
674
676
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
675
677
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
676
678
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -701,7 +703,6 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
701
703
|
"aria-valuemin"?: number | undefined;
|
|
702
704
|
"aria-valuenow"?: number | undefined;
|
|
703
705
|
"aria-valuetext"?: string | undefined;
|
|
704
|
-
children?: import("react").ReactNode;
|
|
705
706
|
dangerouslySetInnerHTML?: {
|
|
706
707
|
__html: string | TrustedHTML;
|
|
707
708
|
} | undefined;
|
|
@@ -717,9 +718,7 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
717
718
|
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
718
719
|
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
719
720
|
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
720
|
-
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
721
721
|
onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
722
|
-
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
723
722
|
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
724
723
|
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
725
724
|
onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
@@ -790,7 +789,6 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
790
789
|
onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
791
790
|
onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
792
791
|
onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
793
|
-
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
794
792
|
onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
795
793
|
onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
796
794
|
onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|