@webstudio-is/sdk-components-react 0.81.0 → 0.83.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -21
- package/lib/__generated__/blockquote.props.js +30 -5
- package/lib/__generated__/body.props.js +30 -5
- package/lib/__generated__/bold.props.js +30 -5
- package/lib/__generated__/box.props.js +30 -5
- package/lib/__generated__/button.props.js +30 -5
- package/lib/__generated__/checkbox.props.js +31 -6
- package/lib/__generated__/code-text.props.js +30 -5
- package/lib/__generated__/form.props.js +30 -5
- package/lib/__generated__/heading.props.js +30 -5
- package/lib/__generated__/image.props.js +31 -5
- package/lib/__generated__/input.props.js +30 -5
- package/lib/__generated__/italic.props.js +30 -5
- package/lib/__generated__/label.props.js +30 -5
- package/lib/__generated__/link.props.js +30 -5
- package/lib/__generated__/list-item.props.js +30 -5
- package/lib/__generated__/list.props.js +30 -5
- package/lib/__generated__/paragraph.props.js +30 -5
- package/lib/__generated__/radio-button.props.js +31 -6
- package/lib/__generated__/radix-dialog.props.js +2120 -0
- package/lib/__generated__/{link-block.props.js → radix-popover.props.js} +151 -114
- package/lib/__generated__/radix-tooltip.props.js +473 -0
- package/lib/__generated__/rich-text-link.props.js +30 -5
- package/lib/__generated__/separator.props.js +30 -5
- package/lib/__generated__/span.props.js +30 -5
- package/lib/__generated__/subscript.props.js +30 -5
- package/lib/__generated__/superscript.props.js +30 -5
- package/lib/__generated__/text.props.js +30 -5
- package/lib/__generated__/textarea.props.js +30 -5
- package/lib/__generated__/vimeo-play-button.props.js +30 -5
- package/lib/__generated__/vimeo-preview-image.props.js +30 -5
- package/lib/__generated__/vimeo-spinner.props.js +30 -5
- package/lib/__generated__/vimeo.props.js +30 -5
- package/lib/body.ws.js +11 -1
- package/lib/cjs/__generated__/blockquote.props.js +30 -5
- package/lib/cjs/__generated__/body.props.js +30 -5
- package/lib/cjs/__generated__/bold.props.js +30 -5
- package/lib/cjs/__generated__/box.props.js +30 -5
- package/lib/cjs/__generated__/button.props.js +30 -5
- package/lib/cjs/__generated__/checkbox.props.js +31 -6
- package/lib/cjs/__generated__/code-text.props.js +30 -5
- package/lib/cjs/__generated__/form.props.js +30 -5
- package/lib/cjs/__generated__/heading.props.js +30 -5
- package/lib/cjs/__generated__/image.props.js +31 -5
- package/lib/cjs/__generated__/input.props.js +30 -5
- package/lib/cjs/__generated__/italic.props.js +30 -5
- package/lib/cjs/__generated__/label.props.js +30 -5
- package/lib/cjs/__generated__/link.props.js +30 -5
- package/lib/cjs/__generated__/list-item.props.js +30 -5
- package/lib/cjs/__generated__/list.props.js +30 -5
- package/lib/cjs/__generated__/paragraph.props.js +30 -5
- package/lib/cjs/__generated__/radio-button.props.js +31 -6
- package/lib/cjs/__generated__/radix-dialog.props.js +2140 -0
- package/lib/cjs/__generated__/{link-block.props.js → radix-popover.props.js} +154 -117
- package/lib/cjs/__generated__/radix-tooltip.props.js +493 -0
- package/lib/cjs/__generated__/rich-text-link.props.js +30 -5
- package/lib/cjs/__generated__/separator.props.js +30 -5
- package/lib/cjs/__generated__/span.props.js +30 -5
- package/lib/cjs/__generated__/subscript.props.js +30 -5
- package/lib/cjs/__generated__/superscript.props.js +30 -5
- package/lib/cjs/__generated__/text.props.js +30 -5
- package/lib/cjs/__generated__/textarea.props.js +30 -5
- package/lib/cjs/__generated__/vimeo-play-button.props.js +30 -5
- package/lib/cjs/__generated__/vimeo-preview-image.props.js +30 -5
- package/lib/cjs/__generated__/vimeo-spinner.props.js +30 -5
- package/lib/cjs/__generated__/vimeo.props.js +30 -5
- package/lib/cjs/body.ws.js +11 -1
- package/lib/cjs/components.js +16 -0
- package/lib/cjs/image.js +12 -2
- package/lib/cjs/label.ws.js +1 -1
- package/lib/cjs/metas.js +16 -0
- package/lib/cjs/props.js +16 -0
- package/lib/cjs/radix-dialog.js +61 -0
- package/lib/cjs/radix-dialog.ws.js +300 -0
- package/lib/cjs/radix-popover.js +59 -0
- package/lib/cjs/radix-popover.ws.js +139 -0
- package/lib/cjs/radix-tooltip.js +51 -0
- package/lib/cjs/radix-tooltip.ws.js +140 -0
- package/lib/cjs/theme/radix-common-types.js +16 -0
- package/lib/cjs/theme/tailwind-classes.js +439 -0
- package/lib/cjs/theme/tailwind-colors.js +33 -0
- package/lib/cjs/theme/tailwind-theme.js +46 -0
- package/lib/cjs/vimeo-play-button.ws.js +1 -0
- package/lib/cjs/vimeo-preview-image.ws.js +1 -0
- package/lib/cjs/vimeo.ws.js +1 -0
- package/lib/components.js +24 -0
- package/lib/image.js +12 -2
- package/lib/label.ws.js +2 -2
- package/lib/metas.js +32 -0
- package/lib/props.js +32 -0
- package/lib/radix-dialog.js +36 -0
- package/lib/radix-dialog.ws.js +279 -0
- package/lib/radix-popover.js +34 -0
- package/lib/radix-popover.ws.js +114 -0
- package/lib/radix-tooltip.js +26 -0
- package/lib/radix-tooltip.ws.js +115 -0
- package/lib/theme/radix-common-types.js +0 -0
- package/lib/theme/tailwind-classes.js +419 -0
- package/lib/theme/tailwind-colors.js +13 -0
- package/lib/theme/tailwind-theme.js +16 -0
- package/lib/types/__generated__/radix-dialog.props.d.ts +8 -0
- package/lib/types/__generated__/radix-popover.props.d.ts +4 -0
- package/lib/types/__generated__/radix-tooltip.props.d.ts +4 -0
- package/lib/types/components.d.ts +3 -0
- package/lib/types/metas.d.ts +3 -0
- package/lib/types/props.d.ts +3 -0
- package/lib/types/radix-dialog.d.ts +26 -0
- package/lib/types/radix-dialog.ws.d.ts +23 -0
- package/lib/types/radix-popover.d.ts +22 -0
- package/lib/types/radix-popover.ws.d.ts +15 -0
- package/lib/types/radix-tooltip.d.ts +22 -0
- package/lib/types/radix-tooltip.ws.d.ts +15 -0
- package/lib/types/theme/radix-common-types.d.ts +84 -0
- package/lib/types/theme/tailwind-classes.d.ts +69 -0
- package/lib/types/theme/tailwind-colors.d.ts +19 -0
- package/lib/types/theme/tailwind-theme.d.ts +72 -0
- package/lib/types/vimeo-preview-image.d.ts +6 -1
- package/lib/vimeo-play-button.ws.js +1 -0
- package/lib/vimeo-preview-image.js +1 -1
- package/lib/vimeo-preview-image.ws.js +2 -0
- package/lib/vimeo.ws.js +1 -0
- package/package.json +18 -13
- package/src/LICENSE +661 -21
- package/src/__generated__/blockquote.props.ts +34 -5
- package/src/__generated__/body.props.ts +34 -5
- package/src/__generated__/bold.props.ts +34 -5
- package/src/__generated__/box.props.ts +34 -5
- package/src/__generated__/button.props.ts +34 -5
- package/src/__generated__/checkbox.props.ts +35 -6
- package/src/__generated__/code-text.props.ts +34 -5
- package/src/__generated__/form.props.ts +34 -5
- package/src/__generated__/heading.props.ts +34 -5
- package/src/__generated__/image.props.ts +35 -5
- package/src/__generated__/input.props.ts +34 -5
- package/src/__generated__/italic.props.ts +34 -5
- package/src/__generated__/label.props.ts +34 -5
- package/src/__generated__/link.props.ts +34 -5
- package/src/__generated__/list-item.props.ts +34 -5
- package/src/__generated__/list.props.ts +34 -5
- package/src/__generated__/paragraph.props.ts +34 -5
- package/src/__generated__/radio-button.props.ts +35 -6
- package/src/__generated__/radix-dialog.props.ts +2363 -0
- package/src/__generated__/{link-block.props.ts → radix-popover.props.ts} +153 -114
- package/src/__generated__/radix-tooltip.props.ts +521 -0
- package/src/__generated__/rich-text-link.props.ts +34 -5
- package/src/__generated__/separator.props.ts +34 -5
- package/src/__generated__/span.props.ts +34 -5
- package/src/__generated__/subscript.props.ts +34 -5
- package/src/__generated__/superscript.props.ts +34 -5
- package/src/__generated__/text.props.ts +34 -5
- package/src/__generated__/textarea.props.ts +34 -5
- package/src/__generated__/vimeo-play-button.props.ts +34 -5
- package/src/__generated__/vimeo-preview-image.props.ts +34 -5
- package/src/__generated__/vimeo-spinner.props.ts +34 -5
- package/src/__generated__/vimeo.props.ts +34 -5
- package/src/body.ws.tsx +11 -1
- package/src/components.ts +11 -0
- package/src/image.tsx +9 -2
- package/src/label.ws.tsx +2 -2
- package/src/metas.ts +21 -0
- package/src/props.ts +19 -0
- package/src/radix-dialog.tsx +91 -0
- package/src/radix-dialog.ws.tsx +291 -0
- package/src/radix-popover.tsx +89 -0
- package/src/radix-popover.ws.tsx +124 -0
- package/src/radix-tooltip.tsx +84 -0
- package/src/radix-tooltip.ws.tsx +125 -0
- package/src/theme/radix-common-types.ts +495 -0
- package/src/theme/tailwind-classes.ts +570 -0
- package/src/theme/tailwind-colors.ts +47 -0
- package/src/theme/tailwind-theme.ts +24 -0
- package/lib/types/__generated__/link-block.props.d.ts +0 -2
|
@@ -43,12 +43,19 @@ const props = {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
options: ["list", "none", "inline", "both"]
|
|
45
45
|
},
|
|
46
|
-
"aria-
|
|
47
|
-
description: "
|
|
46
|
+
"aria-braillelabel": {
|
|
47
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
48
48
|
required: false,
|
|
49
|
-
control: "
|
|
50
|
-
type: "
|
|
49
|
+
control: "text",
|
|
50
|
+
type: "string"
|
|
51
51
|
},
|
|
52
|
+
"aria-brailleroledescription": {
|
|
53
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
54
|
+
required: false,
|
|
55
|
+
control: "text",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
52
59
|
"aria-checked": {
|
|
53
60
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
54
61
|
required: false,
|
|
@@ -67,6 +74,12 @@ const props = {
|
|
|
67
74
|
control: "number",
|
|
68
75
|
type: "number"
|
|
69
76
|
},
|
|
77
|
+
"aria-colindextext": {
|
|
78
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string"
|
|
82
|
+
},
|
|
70
83
|
"aria-colspan": {
|
|
71
84
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
72
85
|
required: false,
|
|
@@ -91,6 +104,12 @@ const props = {
|
|
|
91
104
|
control: "text",
|
|
92
105
|
type: "string"
|
|
93
106
|
},
|
|
107
|
+
"aria-description": {
|
|
108
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
109
|
+
required: false,
|
|
110
|
+
control: "text",
|
|
111
|
+
type: "string"
|
|
112
|
+
},
|
|
94
113
|
"aria-details": {
|
|
95
114
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
96
115
|
required: false,
|
|
@@ -281,6 +300,12 @@ const props = {
|
|
|
281
300
|
control: "number",
|
|
282
301
|
type: "number"
|
|
283
302
|
},
|
|
303
|
+
"aria-rowindextext": {
|
|
304
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
305
|
+
required: false,
|
|
306
|
+
control: "text",
|
|
307
|
+
type: "string"
|
|
308
|
+
},
|
|
284
309
|
"aria-rowspan": {
|
|
285
310
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
286
311
|
required: false,
|
|
@@ -350,9 +375,9 @@ const props = {
|
|
|
350
375
|
control: "select",
|
|
351
376
|
type: "string",
|
|
352
377
|
options: [
|
|
378
|
+
"search",
|
|
353
379
|
"text",
|
|
354
380
|
"none",
|
|
355
|
-
"search",
|
|
356
381
|
"tel",
|
|
357
382
|
"url",
|
|
358
383
|
"email",
|
|
@@ -44,12 +44,19 @@ const props = {
|
|
|
44
44
|
type: "string",
|
|
45
45
|
options: ["list", "none", "inline", "both"]
|
|
46
46
|
},
|
|
47
|
-
"aria-
|
|
48
|
-
description: "
|
|
47
|
+
"aria-braillelabel": {
|
|
48
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
49
49
|
required: false,
|
|
50
|
-
control: "
|
|
51
|
-
type: "
|
|
50
|
+
control: "text",
|
|
51
|
+
type: "string"
|
|
52
52
|
},
|
|
53
|
+
"aria-brailleroledescription": {
|
|
54
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
55
|
+
required: false,
|
|
56
|
+
control: "text",
|
|
57
|
+
type: "string"
|
|
58
|
+
},
|
|
59
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
53
60
|
"aria-checked": {
|
|
54
61
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
55
62
|
required: false,
|
|
@@ -68,6 +75,12 @@ const props = {
|
|
|
68
75
|
control: "number",
|
|
69
76
|
type: "number"
|
|
70
77
|
},
|
|
78
|
+
"aria-colindextext": {
|
|
79
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
80
|
+
required: false,
|
|
81
|
+
control: "text",
|
|
82
|
+
type: "string"
|
|
83
|
+
},
|
|
71
84
|
"aria-colspan": {
|
|
72
85
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
73
86
|
required: false,
|
|
@@ -92,6 +105,12 @@ const props = {
|
|
|
92
105
|
control: "text",
|
|
93
106
|
type: "string"
|
|
94
107
|
},
|
|
108
|
+
"aria-description": {
|
|
109
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
110
|
+
required: false,
|
|
111
|
+
control: "text",
|
|
112
|
+
type: "string"
|
|
113
|
+
},
|
|
95
114
|
"aria-details": {
|
|
96
115
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
97
116
|
required: false,
|
|
@@ -282,6 +301,12 @@ const props = {
|
|
|
282
301
|
control: "number",
|
|
283
302
|
type: "number"
|
|
284
303
|
},
|
|
304
|
+
"aria-rowindextext": {
|
|
305
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
306
|
+
required: false,
|
|
307
|
+
control: "text",
|
|
308
|
+
type: "string"
|
|
309
|
+
},
|
|
285
310
|
"aria-rowspan": {
|
|
286
311
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
287
312
|
required: false,
|
|
@@ -364,9 +389,9 @@ const props = {
|
|
|
364
389
|
control: "select",
|
|
365
390
|
type: "string",
|
|
366
391
|
options: [
|
|
392
|
+
"search",
|
|
367
393
|
"text",
|
|
368
394
|
"none",
|
|
369
|
-
"search",
|
|
370
395
|
"tel",
|
|
371
396
|
"url",
|
|
372
397
|
"email",
|
|
@@ -390,6 +415,7 @@ const props = {
|
|
|
390
415
|
required: false,
|
|
391
416
|
control: "radio",
|
|
392
417
|
type: "string",
|
|
418
|
+
defaultValue: "lazy",
|
|
393
419
|
options: ["eager", "lazy"]
|
|
394
420
|
},
|
|
395
421
|
nonce: { required: false, control: "text", type: "string" },
|
|
@@ -45,12 +45,19 @@ const props = {
|
|
|
45
45
|
type: "string",
|
|
46
46
|
options: ["list", "none", "inline", "both"]
|
|
47
47
|
},
|
|
48
|
-
"aria-
|
|
49
|
-
description: "
|
|
48
|
+
"aria-braillelabel": {
|
|
49
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
50
50
|
required: false,
|
|
51
|
-
control: "
|
|
52
|
-
type: "
|
|
51
|
+
control: "text",
|
|
52
|
+
type: "string"
|
|
53
53
|
},
|
|
54
|
+
"aria-brailleroledescription": {
|
|
55
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
60
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
54
61
|
"aria-checked": {
|
|
55
62
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
56
63
|
required: false,
|
|
@@ -69,6 +76,12 @@ const props = {
|
|
|
69
76
|
control: "number",
|
|
70
77
|
type: "number"
|
|
71
78
|
},
|
|
79
|
+
"aria-colindextext": {
|
|
80
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
81
|
+
required: false,
|
|
82
|
+
control: "text",
|
|
83
|
+
type: "string"
|
|
84
|
+
},
|
|
72
85
|
"aria-colspan": {
|
|
73
86
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
74
87
|
required: false,
|
|
@@ -93,6 +106,12 @@ const props = {
|
|
|
93
106
|
control: "text",
|
|
94
107
|
type: "string"
|
|
95
108
|
},
|
|
109
|
+
"aria-description": {
|
|
110
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
111
|
+
required: false,
|
|
112
|
+
control: "text",
|
|
113
|
+
type: "string"
|
|
114
|
+
},
|
|
96
115
|
"aria-details": {
|
|
97
116
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
98
117
|
required: false,
|
|
@@ -283,6 +302,12 @@ const props = {
|
|
|
283
302
|
control: "number",
|
|
284
303
|
type: "number"
|
|
285
304
|
},
|
|
305
|
+
"aria-rowindextext": {
|
|
306
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
307
|
+
required: false,
|
|
308
|
+
control: "text",
|
|
309
|
+
type: "string"
|
|
310
|
+
},
|
|
286
311
|
"aria-rowspan": {
|
|
287
312
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
288
313
|
required: false,
|
|
@@ -374,11 +399,11 @@ const props = {
|
|
|
374
399
|
control: "select",
|
|
375
400
|
type: "string",
|
|
376
401
|
options: [
|
|
402
|
+
"search",
|
|
377
403
|
"text",
|
|
378
404
|
"email",
|
|
379
405
|
"tel",
|
|
380
406
|
"url",
|
|
381
|
-
"search",
|
|
382
407
|
"none",
|
|
383
408
|
"numeric",
|
|
384
409
|
"decimal"
|
|
@@ -43,12 +43,19 @@ const props = {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
options: ["list", "none", "inline", "both"]
|
|
45
45
|
},
|
|
46
|
-
"aria-
|
|
47
|
-
description: "
|
|
46
|
+
"aria-braillelabel": {
|
|
47
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
48
48
|
required: false,
|
|
49
|
-
control: "
|
|
50
|
-
type: "
|
|
49
|
+
control: "text",
|
|
50
|
+
type: "string"
|
|
51
51
|
},
|
|
52
|
+
"aria-brailleroledescription": {
|
|
53
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
54
|
+
required: false,
|
|
55
|
+
control: "text",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
52
59
|
"aria-checked": {
|
|
53
60
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
54
61
|
required: false,
|
|
@@ -67,6 +74,12 @@ const props = {
|
|
|
67
74
|
control: "number",
|
|
68
75
|
type: "number"
|
|
69
76
|
},
|
|
77
|
+
"aria-colindextext": {
|
|
78
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string"
|
|
82
|
+
},
|
|
70
83
|
"aria-colspan": {
|
|
71
84
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
72
85
|
required: false,
|
|
@@ -91,6 +104,12 @@ const props = {
|
|
|
91
104
|
control: "text",
|
|
92
105
|
type: "string"
|
|
93
106
|
},
|
|
107
|
+
"aria-description": {
|
|
108
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
109
|
+
required: false,
|
|
110
|
+
control: "text",
|
|
111
|
+
type: "string"
|
|
112
|
+
},
|
|
94
113
|
"aria-details": {
|
|
95
114
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
96
115
|
required: false,
|
|
@@ -281,6 +300,12 @@ const props = {
|
|
|
281
300
|
control: "number",
|
|
282
301
|
type: "number"
|
|
283
302
|
},
|
|
303
|
+
"aria-rowindextext": {
|
|
304
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
305
|
+
required: false,
|
|
306
|
+
control: "text",
|
|
307
|
+
type: "string"
|
|
308
|
+
},
|
|
284
309
|
"aria-rowspan": {
|
|
285
310
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
286
311
|
required: false,
|
|
@@ -350,9 +375,9 @@ const props = {
|
|
|
350
375
|
control: "select",
|
|
351
376
|
type: "string",
|
|
352
377
|
options: [
|
|
378
|
+
"search",
|
|
353
379
|
"text",
|
|
354
380
|
"none",
|
|
355
|
-
"search",
|
|
356
381
|
"tel",
|
|
357
382
|
"url",
|
|
358
383
|
"email",
|
|
@@ -43,12 +43,19 @@ const props = {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
options: ["list", "none", "inline", "both"]
|
|
45
45
|
},
|
|
46
|
-
"aria-
|
|
47
|
-
description: "
|
|
46
|
+
"aria-braillelabel": {
|
|
47
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
48
48
|
required: false,
|
|
49
|
-
control: "
|
|
50
|
-
type: "
|
|
49
|
+
control: "text",
|
|
50
|
+
type: "string"
|
|
51
51
|
},
|
|
52
|
+
"aria-brailleroledescription": {
|
|
53
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
54
|
+
required: false,
|
|
55
|
+
control: "text",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
52
59
|
"aria-checked": {
|
|
53
60
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
54
61
|
required: false,
|
|
@@ -67,6 +74,12 @@ const props = {
|
|
|
67
74
|
control: "number",
|
|
68
75
|
type: "number"
|
|
69
76
|
},
|
|
77
|
+
"aria-colindextext": {
|
|
78
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string"
|
|
82
|
+
},
|
|
70
83
|
"aria-colspan": {
|
|
71
84
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
72
85
|
required: false,
|
|
@@ -91,6 +104,12 @@ const props = {
|
|
|
91
104
|
control: "text",
|
|
92
105
|
type: "string"
|
|
93
106
|
},
|
|
107
|
+
"aria-description": {
|
|
108
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
109
|
+
required: false,
|
|
110
|
+
control: "text",
|
|
111
|
+
type: "string"
|
|
112
|
+
},
|
|
94
113
|
"aria-details": {
|
|
95
114
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
96
115
|
required: false,
|
|
@@ -281,6 +300,12 @@ const props = {
|
|
|
281
300
|
control: "number",
|
|
282
301
|
type: "number"
|
|
283
302
|
},
|
|
303
|
+
"aria-rowindextext": {
|
|
304
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
305
|
+
required: false,
|
|
306
|
+
control: "text",
|
|
307
|
+
type: "string"
|
|
308
|
+
},
|
|
284
309
|
"aria-rowspan": {
|
|
285
310
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
286
311
|
required: false,
|
|
@@ -352,9 +377,9 @@ const props = {
|
|
|
352
377
|
control: "select",
|
|
353
378
|
type: "string",
|
|
354
379
|
options: [
|
|
380
|
+
"search",
|
|
355
381
|
"text",
|
|
356
382
|
"none",
|
|
357
|
-
"search",
|
|
358
383
|
"tel",
|
|
359
384
|
"url",
|
|
360
385
|
"email",
|
|
@@ -43,12 +43,19 @@ const props = {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
options: ["list", "none", "inline", "both"]
|
|
45
45
|
},
|
|
46
|
-
"aria-
|
|
47
|
-
description: "
|
|
46
|
+
"aria-braillelabel": {
|
|
47
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
48
48
|
required: false,
|
|
49
|
-
control: "
|
|
50
|
-
type: "
|
|
49
|
+
control: "text",
|
|
50
|
+
type: "string"
|
|
51
51
|
},
|
|
52
|
+
"aria-brailleroledescription": {
|
|
53
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
54
|
+
required: false,
|
|
55
|
+
control: "text",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
52
59
|
"aria-checked": {
|
|
53
60
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
54
61
|
required: false,
|
|
@@ -67,6 +74,12 @@ const props = {
|
|
|
67
74
|
control: "number",
|
|
68
75
|
type: "number"
|
|
69
76
|
},
|
|
77
|
+
"aria-colindextext": {
|
|
78
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string"
|
|
82
|
+
},
|
|
70
83
|
"aria-colspan": {
|
|
71
84
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
72
85
|
required: false,
|
|
@@ -91,6 +104,12 @@ const props = {
|
|
|
91
104
|
control: "text",
|
|
92
105
|
type: "string"
|
|
93
106
|
},
|
|
107
|
+
"aria-description": {
|
|
108
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
109
|
+
required: false,
|
|
110
|
+
control: "text",
|
|
111
|
+
type: "string"
|
|
112
|
+
},
|
|
94
113
|
"aria-details": {
|
|
95
114
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
96
115
|
required: false,
|
|
@@ -281,6 +300,12 @@ const props = {
|
|
|
281
300
|
control: "number",
|
|
282
301
|
type: "number"
|
|
283
302
|
},
|
|
303
|
+
"aria-rowindextext": {
|
|
304
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
305
|
+
required: false,
|
|
306
|
+
control: "text",
|
|
307
|
+
type: "string"
|
|
308
|
+
},
|
|
284
309
|
"aria-rowspan": {
|
|
285
310
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
286
311
|
required: false,
|
|
@@ -352,9 +377,9 @@ const props = {
|
|
|
352
377
|
control: "select",
|
|
353
378
|
type: "string",
|
|
354
379
|
options: [
|
|
380
|
+
"search",
|
|
355
381
|
"text",
|
|
356
382
|
"none",
|
|
357
|
-
"search",
|
|
358
383
|
"tel",
|
|
359
384
|
"url",
|
|
360
385
|
"email",
|
|
@@ -43,12 +43,19 @@ const props = {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
options: ["list", "none", "inline", "both"]
|
|
45
45
|
},
|
|
46
|
-
"aria-
|
|
47
|
-
description: "
|
|
46
|
+
"aria-braillelabel": {
|
|
47
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
48
48
|
required: false,
|
|
49
|
-
control: "
|
|
50
|
-
type: "
|
|
49
|
+
control: "text",
|
|
50
|
+
type: "string"
|
|
51
51
|
},
|
|
52
|
+
"aria-brailleroledescription": {
|
|
53
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
54
|
+
required: false,
|
|
55
|
+
control: "text",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
52
59
|
"aria-checked": {
|
|
53
60
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
54
61
|
required: false,
|
|
@@ -67,6 +74,12 @@ const props = {
|
|
|
67
74
|
control: "number",
|
|
68
75
|
type: "number"
|
|
69
76
|
},
|
|
77
|
+
"aria-colindextext": {
|
|
78
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string"
|
|
82
|
+
},
|
|
70
83
|
"aria-colspan": {
|
|
71
84
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
72
85
|
required: false,
|
|
@@ -91,6 +104,12 @@ const props = {
|
|
|
91
104
|
control: "text",
|
|
92
105
|
type: "string"
|
|
93
106
|
},
|
|
107
|
+
"aria-description": {
|
|
108
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
109
|
+
required: false,
|
|
110
|
+
control: "text",
|
|
111
|
+
type: "string"
|
|
112
|
+
},
|
|
94
113
|
"aria-details": {
|
|
95
114
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
96
115
|
required: false,
|
|
@@ -281,6 +300,12 @@ const props = {
|
|
|
281
300
|
control: "number",
|
|
282
301
|
type: "number"
|
|
283
302
|
},
|
|
303
|
+
"aria-rowindextext": {
|
|
304
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
305
|
+
required: false,
|
|
306
|
+
control: "text",
|
|
307
|
+
type: "string"
|
|
308
|
+
},
|
|
284
309
|
"aria-rowspan": {
|
|
285
310
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
286
311
|
required: false,
|
|
@@ -350,9 +375,9 @@ const props = {
|
|
|
350
375
|
control: "select",
|
|
351
376
|
type: "string",
|
|
352
377
|
options: [
|
|
378
|
+
"search",
|
|
353
379
|
"text",
|
|
354
380
|
"none",
|
|
355
|
-
"search",
|
|
356
381
|
"tel",
|
|
357
382
|
"url",
|
|
358
383
|
"email",
|
|
@@ -43,12 +43,19 @@ const props = {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
options: ["list", "none", "inline", "both"]
|
|
45
45
|
},
|
|
46
|
-
"aria-
|
|
47
|
-
description: "
|
|
46
|
+
"aria-braillelabel": {
|
|
47
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
48
48
|
required: false,
|
|
49
|
-
control: "
|
|
50
|
-
type: "
|
|
49
|
+
control: "text",
|
|
50
|
+
type: "string"
|
|
51
51
|
},
|
|
52
|
+
"aria-brailleroledescription": {
|
|
53
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
54
|
+
required: false,
|
|
55
|
+
control: "text",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
52
59
|
"aria-checked": {
|
|
53
60
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
54
61
|
required: false,
|
|
@@ -67,6 +74,12 @@ const props = {
|
|
|
67
74
|
control: "number",
|
|
68
75
|
type: "number"
|
|
69
76
|
},
|
|
77
|
+
"aria-colindextext": {
|
|
78
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string"
|
|
82
|
+
},
|
|
70
83
|
"aria-colspan": {
|
|
71
84
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
72
85
|
required: false,
|
|
@@ -91,6 +104,12 @@ const props = {
|
|
|
91
104
|
control: "text",
|
|
92
105
|
type: "string"
|
|
93
106
|
},
|
|
107
|
+
"aria-description": {
|
|
108
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
109
|
+
required: false,
|
|
110
|
+
control: "text",
|
|
111
|
+
type: "string"
|
|
112
|
+
},
|
|
94
113
|
"aria-details": {
|
|
95
114
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
96
115
|
required: false,
|
|
@@ -281,6 +300,12 @@ const props = {
|
|
|
281
300
|
control: "number",
|
|
282
301
|
type: "number"
|
|
283
302
|
},
|
|
303
|
+
"aria-rowindextext": {
|
|
304
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
305
|
+
required: false,
|
|
306
|
+
control: "text",
|
|
307
|
+
type: "string"
|
|
308
|
+
},
|
|
284
309
|
"aria-rowspan": {
|
|
285
310
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
286
311
|
required: false,
|
|
@@ -350,9 +375,9 @@ const props = {
|
|
|
350
375
|
control: "select",
|
|
351
376
|
type: "string",
|
|
352
377
|
options: [
|
|
378
|
+
"search",
|
|
353
379
|
"text",
|
|
354
380
|
"none",
|
|
355
|
-
"search",
|
|
356
381
|
"tel",
|
|
357
382
|
"url",
|
|
358
383
|
"email",
|
|
@@ -43,12 +43,19 @@ const props = {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
options: ["list", "none", "inline", "both"]
|
|
45
45
|
},
|
|
46
|
-
"aria-
|
|
47
|
-
description: "
|
|
46
|
+
"aria-braillelabel": {
|
|
47
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
48
48
|
required: false,
|
|
49
|
-
control: "
|
|
50
|
-
type: "
|
|
49
|
+
control: "text",
|
|
50
|
+
type: "string"
|
|
51
51
|
},
|
|
52
|
+
"aria-brailleroledescription": {
|
|
53
|
+
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.",
|
|
54
|
+
required: false,
|
|
55
|
+
control: "text",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
52
59
|
"aria-checked": {
|
|
53
60
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
54
61
|
required: false,
|
|
@@ -67,6 +74,12 @@ const props = {
|
|
|
67
74
|
control: "number",
|
|
68
75
|
type: "number"
|
|
69
76
|
},
|
|
77
|
+
"aria-colindextext": {
|
|
78
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string"
|
|
82
|
+
},
|
|
70
83
|
"aria-colspan": {
|
|
71
84
|
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
72
85
|
required: false,
|
|
@@ -91,6 +104,12 @@ const props = {
|
|
|
91
104
|
control: "text",
|
|
92
105
|
type: "string"
|
|
93
106
|
},
|
|
107
|
+
"aria-description": {
|
|
108
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
109
|
+
required: false,
|
|
110
|
+
control: "text",
|
|
111
|
+
type: "string"
|
|
112
|
+
},
|
|
94
113
|
"aria-details": {
|
|
95
114
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
96
115
|
required: false,
|
|
@@ -281,6 +300,12 @@ const props = {
|
|
|
281
300
|
control: "number",
|
|
282
301
|
type: "number"
|
|
283
302
|
},
|
|
303
|
+
"aria-rowindextext": {
|
|
304
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
305
|
+
required: false,
|
|
306
|
+
control: "text",
|
|
307
|
+
type: "string"
|
|
308
|
+
},
|
|
284
309
|
"aria-rowspan": {
|
|
285
310
|
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
286
311
|
required: false,
|
|
@@ -350,9 +375,9 @@ const props = {
|
|
|
350
375
|
control: "select",
|
|
351
376
|
type: "string",
|
|
352
377
|
options: [
|
|
378
|
+
"search",
|
|
353
379
|
"text",
|
|
354
380
|
"none",
|
|
355
|
-
"search",
|
|
356
381
|
"tel",
|
|
357
382
|
"url",
|
|
358
383
|
"email",
|