@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
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -327,9 +352,9 @@ const props = {
|
|
|
327
352
|
control: "select",
|
|
328
353
|
type: "string",
|
|
329
354
|
options: [
|
|
355
|
+
"search",
|
|
330
356
|
"text",
|
|
331
357
|
"none",
|
|
332
|
-
"search",
|
|
333
358
|
"tel",
|
|
334
359
|
"url",
|
|
335
360
|
"email",
|
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -327,9 +352,9 @@ const props = {
|
|
|
327
352
|
control: "select",
|
|
328
353
|
type: "string",
|
|
329
354
|
options: [
|
|
355
|
+
"search",
|
|
330
356
|
"text",
|
|
331
357
|
"none",
|
|
332
|
-
"search",
|
|
333
358
|
"tel",
|
|
334
359
|
"url",
|
|
335
360
|
"email",
|
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -327,9 +352,9 @@ const props = {
|
|
|
327
352
|
control: "select",
|
|
328
353
|
type: "string",
|
|
329
354
|
options: [
|
|
355
|
+
"search",
|
|
330
356
|
"text",
|
|
331
357
|
"none",
|
|
332
|
-
"search",
|
|
333
358
|
"tel",
|
|
334
359
|
"url",
|
|
335
360
|
"email",
|
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -327,9 +352,9 @@ const props = {
|
|
|
327
352
|
control: "select",
|
|
328
353
|
type: "string",
|
|
329
354
|
options: [
|
|
355
|
+
"search",
|
|
330
356
|
"text",
|
|
331
357
|
"none",
|
|
332
|
-
"search",
|
|
333
358
|
"tel",
|
|
334
359
|
"url",
|
|
335
360
|
"email",
|
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -332,9 +357,9 @@ const props = {
|
|
|
332
357
|
control: "select",
|
|
333
358
|
type: "string",
|
|
334
359
|
options: [
|
|
360
|
+
"search",
|
|
335
361
|
"text",
|
|
336
362
|
"none",
|
|
337
|
-
"search",
|
|
338
363
|
"tel",
|
|
339
364
|
"url",
|
|
340
365
|
"email",
|
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -334,9 +359,9 @@ const props = {
|
|
|
334
359
|
control: "select",
|
|
335
360
|
type: "string",
|
|
336
361
|
options: [
|
|
362
|
+
"search",
|
|
337
363
|
"text",
|
|
338
364
|
"none",
|
|
339
|
-
"search",
|
|
340
365
|
"tel",
|
|
341
366
|
"url",
|
|
342
367
|
"email",
|
|
@@ -21,12 +21,19 @@ const props = {
|
|
|
21
21
|
type: "string",
|
|
22
22
|
options: ["list", "none", "inline", "both"]
|
|
23
23
|
},
|
|
24
|
-
"aria-
|
|
25
|
-
description: "
|
|
24
|
+
"aria-braillelabel": {
|
|
25
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
26
26
|
required: false,
|
|
27
|
-
control: "
|
|
28
|
-
type: "
|
|
27
|
+
control: "text",
|
|
28
|
+
type: "string"
|
|
29
29
|
},
|
|
30
|
+
"aria-brailleroledescription": {
|
|
31
|
+
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.",
|
|
32
|
+
required: false,
|
|
33
|
+
control: "text",
|
|
34
|
+
type: "string"
|
|
35
|
+
},
|
|
36
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
30
37
|
"aria-checked": {
|
|
31
38
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
32
39
|
required: false,
|
|
@@ -45,6 +52,12 @@ const props = {
|
|
|
45
52
|
control: "number",
|
|
46
53
|
type: "number"
|
|
47
54
|
},
|
|
55
|
+
"aria-colindextext": {
|
|
56
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
57
|
+
required: false,
|
|
58
|
+
control: "text",
|
|
59
|
+
type: "string"
|
|
60
|
+
},
|
|
48
61
|
"aria-colspan": {
|
|
49
62
|
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.",
|
|
50
63
|
required: false,
|
|
@@ -69,6 +82,12 @@ const props = {
|
|
|
69
82
|
control: "text",
|
|
70
83
|
type: "string"
|
|
71
84
|
},
|
|
85
|
+
"aria-description": {
|
|
86
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
87
|
+
required: false,
|
|
88
|
+
control: "text",
|
|
89
|
+
type: "string"
|
|
90
|
+
},
|
|
72
91
|
"aria-details": {
|
|
73
92
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
74
93
|
required: false,
|
|
@@ -259,6 +278,12 @@ const props = {
|
|
|
259
278
|
control: "number",
|
|
260
279
|
type: "number"
|
|
261
280
|
},
|
|
281
|
+
"aria-rowindextext": {
|
|
282
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
283
|
+
required: false,
|
|
284
|
+
control: "text",
|
|
285
|
+
type: "string"
|
|
286
|
+
},
|
|
262
287
|
"aria-rowspan": {
|
|
263
288
|
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.",
|
|
264
289
|
required: false,
|
|
@@ -341,9 +366,9 @@ const props = {
|
|
|
341
366
|
control: "select",
|
|
342
367
|
type: "string",
|
|
343
368
|
options: [
|
|
369
|
+
"search",
|
|
344
370
|
"text",
|
|
345
371
|
"none",
|
|
346
|
-
"search",
|
|
347
372
|
"tel",
|
|
348
373
|
"url",
|
|
349
374
|
"email",
|
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -327,9 +352,9 @@ const props = {
|
|
|
327
352
|
control: "select",
|
|
328
353
|
type: "string",
|
|
329
354
|
options: [
|
|
355
|
+
"search",
|
|
330
356
|
"text",
|
|
331
357
|
"none",
|
|
332
|
-
"search",
|
|
333
358
|
"tel",
|
|
334
359
|
"url",
|
|
335
360
|
"email",
|
|
@@ -20,12 +20,19 @@ const props = {
|
|
|
20
20
|
type: "string",
|
|
21
21
|
options: ["list", "none", "inline", "both"]
|
|
22
22
|
},
|
|
23
|
-
"aria-
|
|
24
|
-
description: "
|
|
23
|
+
"aria-braillelabel": {
|
|
24
|
+
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
25
25
|
required: false,
|
|
26
|
-
control: "
|
|
27
|
-
type: "
|
|
26
|
+
control: "text",
|
|
27
|
+
type: "string"
|
|
28
28
|
},
|
|
29
|
+
"aria-brailleroledescription": {
|
|
30
|
+
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.",
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string"
|
|
34
|
+
},
|
|
35
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
29
36
|
"aria-checked": {
|
|
30
37
|
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
31
38
|
required: false,
|
|
@@ -44,6 +51,12 @@ const props = {
|
|
|
44
51
|
control: "number",
|
|
45
52
|
type: "number"
|
|
46
53
|
},
|
|
54
|
+
"aria-colindextext": {
|
|
55
|
+
description: "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
56
|
+
required: false,
|
|
57
|
+
control: "text",
|
|
58
|
+
type: "string"
|
|
59
|
+
},
|
|
47
60
|
"aria-colspan": {
|
|
48
61
|
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.",
|
|
49
62
|
required: false,
|
|
@@ -68,6 +81,12 @@ const props = {
|
|
|
68
81
|
control: "text",
|
|
69
82
|
type: "string"
|
|
70
83
|
},
|
|
84
|
+
"aria-description": {
|
|
85
|
+
description: "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
86
|
+
required: false,
|
|
87
|
+
control: "text",
|
|
88
|
+
type: "string"
|
|
89
|
+
},
|
|
71
90
|
"aria-details": {
|
|
72
91
|
description: "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
73
92
|
required: false,
|
|
@@ -258,6 +277,12 @@ const props = {
|
|
|
258
277
|
control: "number",
|
|
259
278
|
type: "number"
|
|
260
279
|
},
|
|
280
|
+
"aria-rowindextext": {
|
|
281
|
+
description: "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
282
|
+
required: false,
|
|
283
|
+
control: "text",
|
|
284
|
+
type: "string"
|
|
285
|
+
},
|
|
261
286
|
"aria-rowspan": {
|
|
262
287
|
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.",
|
|
263
288
|
required: false,
|
|
@@ -367,10 +392,10 @@ const props = {
|
|
|
367
392
|
control: "select",
|
|
368
393
|
type: "string",
|
|
369
394
|
options: [
|
|
395
|
+
"search",
|
|
370
396
|
"text",
|
|
371
397
|
"url",
|
|
372
398
|
"none",
|
|
373
|
-
"search",
|
|
374
399
|
"tel",
|
|
375
400
|
"email",
|
|
376
401
|
"numeric",
|