@webstudio-is/sdk-components-react-remix 0.82.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__/form.props.js +30 -5
- package/lib/__generated__/link.props.js +30 -5
- package/lib/__generated__/rich-text-link.props.js +30 -5
- package/lib/cjs/__generated__/form.props.js +30 -5
- package/lib/cjs/__generated__/link.props.js +30 -5
- package/lib/cjs/__generated__/rich-text-link.props.js +30 -5
- package/package.json +11 -11
- package/src/__generated__/form.props.ts +34 -5
- package/src/__generated__/link.props.ts +34 -5
- package/src/__generated__/rich-text-link.props.ts +34 -5
|
@@ -25,13 +25,21 @@ export const props: Record<string, PropMeta> = {
|
|
|
25
25
|
type: "string",
|
|
26
26
|
options: ["list", "none", "inline", "both"],
|
|
27
27
|
},
|
|
28
|
-
"aria-
|
|
28
|
+
"aria-braillelabel": {
|
|
29
29
|
description:
|
|
30
|
-
"
|
|
30
|
+
"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.",
|
|
31
31
|
required: false,
|
|
32
|
-
control: "
|
|
33
|
-
type: "
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string",
|
|
34
34
|
},
|
|
35
|
+
"aria-brailleroledescription": {
|
|
36
|
+
description:
|
|
37
|
+
"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.",
|
|
38
|
+
required: false,
|
|
39
|
+
control: "text",
|
|
40
|
+
type: "string",
|
|
41
|
+
},
|
|
42
|
+
"aria-busy": { required: false, control: "boolean", type: "boolean" },
|
|
35
43
|
"aria-checked": {
|
|
36
44
|
description:
|
|
37
45
|
'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.',
|
|
@@ -53,6 +61,13 @@ export const props: Record<string, PropMeta> = {
|
|
|
53
61
|
control: "number",
|
|
54
62
|
type: "number",
|
|
55
63
|
},
|
|
64
|
+
"aria-colindextext": {
|
|
65
|
+
description:
|
|
66
|
+
"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.",
|
|
67
|
+
required: false,
|
|
68
|
+
control: "text",
|
|
69
|
+
type: "string",
|
|
70
|
+
},
|
|
56
71
|
"aria-colspan": {
|
|
57
72
|
description:
|
|
58
73
|
"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.",
|
|
@@ -81,6 +96,13 @@ export const props: Record<string, PropMeta> = {
|
|
|
81
96
|
control: "text",
|
|
82
97
|
type: "string",
|
|
83
98
|
},
|
|
99
|
+
"aria-description": {
|
|
100
|
+
description:
|
|
101
|
+
"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.",
|
|
102
|
+
required: false,
|
|
103
|
+
control: "text",
|
|
104
|
+
type: "string",
|
|
105
|
+
},
|
|
84
106
|
"aria-details": {
|
|
85
107
|
description:
|
|
86
108
|
"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
@@ -298,6 +320,13 @@ export const props: Record<string, PropMeta> = {
|
|
|
298
320
|
control: "number",
|
|
299
321
|
type: "number",
|
|
300
322
|
},
|
|
323
|
+
"aria-rowindextext": {
|
|
324
|
+
description:
|
|
325
|
+
"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.",
|
|
326
|
+
required: false,
|
|
327
|
+
control: "text",
|
|
328
|
+
type: "string",
|
|
329
|
+
},
|
|
301
330
|
"aria-rowspan": {
|
|
302
331
|
description:
|
|
303
332
|
"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.",
|
|
@@ -376,9 +405,9 @@ export const props: Record<string, PropMeta> = {
|
|
|
376
405
|
control: "select",
|
|
377
406
|
type: "string",
|
|
378
407
|
options: [
|
|
408
|
+
"search",
|
|
379
409
|
"text",
|
|
380
410
|
"none",
|
|
381
|
-
"search",
|
|
382
411
|
"tel",
|
|
383
412
|
"url",
|
|
384
413
|
"email",
|