@webstudio-is/sdk-components-react 0.218.0 → 0.219.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/lib/__generated__/blockquote.props.js +2 -178
- package/lib/__generated__/body.props.js +2 -172
- package/lib/__generated__/bold.props.js +2 -172
- package/lib/__generated__/box.props.js +3 -172
- package/lib/__generated__/button.props.js +2 -234
- package/lib/__generated__/checkbox.props.js +1 -328
- package/lib/__generated__/code-text.props.js +1 -170
- package/lib/__generated__/form.props.js +2 -220
- package/lib/__generated__/head-link.props.js +2 -284
- package/lib/__generated__/head-meta.props.js +2 -196
- package/lib/__generated__/head-title.props.js +2 -172
- package/lib/__generated__/heading.props.js +3 -172
- package/lib/__generated__/html-embed.props.js +6 -1
- package/lib/__generated__/image.props.js +1 -247
- package/lib/__generated__/input.props.js +2 -360
- package/lib/__generated__/italic.props.js +2 -172
- package/lib/__generated__/label.props.js +2 -184
- package/lib/__generated__/link.props.js +4 -221
- package/lib/__generated__/list-item.props.js +2 -178
- package/lib/__generated__/list.props.js +1 -189
- package/lib/__generated__/markdown-embed.props.js +6 -1
- package/lib/__generated__/option.props.js +2 -196
- package/lib/__generated__/paragraph.props.js +2 -172
- package/lib/__generated__/radio-button.props.js +1 -328
- package/lib/__generated__/select.props.js +2 -220
- package/lib/__generated__/separator.props.js +2 -172
- package/lib/__generated__/span.props.js +2 -172
- package/lib/__generated__/subscript.props.js +2 -172
- package/lib/__generated__/superscript.props.js +2 -172
- package/lib/__generated__/text.props.js +3 -172
- package/lib/__generated__/textarea.props.js +2 -251
- package/lib/__generated__/time.props.js +3 -3
- package/lib/__generated__/video.props.js +2 -251
- package/lib/__generated__/vimeo-play-button.props.js +2 -233
- package/lib/__generated__/vimeo-preview-image.props.js +1 -246
- package/lib/__generated__/vimeo-spinner.props.js +2 -172
- package/lib/__generated__/vimeo.props.js +118 -365
- package/lib/__generated__/webhook-form.props.js +1 -223
- package/lib/__generated__/xml-node.props.js +8 -3
- package/lib/__generated__/xml-time.props.js +4 -3
- package/lib/__generated__/youtube.props.js +1 -164
- package/lib/box.ws.js +11 -11
- package/lib/head-slot.js +4 -5
- package/lib/heading.ws.js +7 -7
- package/lib/list.ws.js +3 -3
- package/lib/markdown-embed.js +3 -3
- package/lib/shared/video.js +13 -0
- package/lib/types/link.d.ts +1 -1
- package/lib/types/shared/video.d.ts +7 -0
- package/lib/types/vimeo.d.ts +0 -7
- package/lib/video.js +19 -23
- package/lib/vimeo-play-button.js +4 -4
- package/lib/vimeo-preview-image.js +5 -5
- package/lib/vimeo-spinner.js +1 -1
- package/lib/vimeo.js +113 -121
- package/lib/webhook-form.template.js +12 -12
- package/lib/xml-node.js +4 -4
- package/lib/youtube.js +1 -1
- package/package.json +8 -8
|
@@ -1,198 +1,4 @@
|
|
|
1
|
-
const
|
|
2
|
-
about: { required: !1, control: "text", type: "string" },
|
|
3
|
-
accessKey: {
|
|
4
|
-
required: !1,
|
|
5
|
-
control: "text",
|
|
6
|
-
type: "string",
|
|
7
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
8
|
-
},
|
|
9
|
-
autoCapitalize: {
|
|
10
|
-
required: !1,
|
|
11
|
-
control: "text",
|
|
12
|
-
type: "string",
|
|
13
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
14
|
-
},
|
|
15
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
16
|
-
autoFocus: {
|
|
17
|
-
required: !1,
|
|
18
|
-
control: "boolean",
|
|
19
|
-
type: "boolean",
|
|
20
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
21
|
-
},
|
|
22
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
23
|
-
charSet: {
|
|
24
|
-
required: !1,
|
|
25
|
-
control: "text",
|
|
26
|
-
type: "string",
|
|
27
|
-
description: "Declares the character encoding of the page or script."
|
|
28
|
-
},
|
|
29
|
-
className: { required: !1, control: "text", type: "string" },
|
|
30
|
-
color: {
|
|
31
|
-
required: !1,
|
|
32
|
-
control: "color",
|
|
33
|
-
type: "string",
|
|
34
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
35
|
-
},
|
|
36
|
-
content: {
|
|
37
|
-
required: !1,
|
|
38
|
-
control: "text",
|
|
39
|
-
type: "string",
|
|
40
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
41
|
-
},
|
|
42
|
-
contextMenu: {
|
|
43
|
-
required: !1,
|
|
44
|
-
control: "text",
|
|
45
|
-
type: "string",
|
|
46
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
47
|
-
},
|
|
48
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
49
|
-
defaultChecked: { required: !1, control: "boolean", type: "boolean" },
|
|
50
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
51
|
-
dir: {
|
|
52
|
-
required: !1,
|
|
53
|
-
control: "text",
|
|
54
|
-
type: "string",
|
|
55
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
56
|
-
},
|
|
57
|
-
draggable: {
|
|
58
|
-
required: !1,
|
|
59
|
-
control: "boolean",
|
|
60
|
-
type: "boolean",
|
|
61
|
-
description: "Defines whether the element can be dragged."
|
|
62
|
-
},
|
|
63
|
-
hidden: {
|
|
64
|
-
required: !1,
|
|
65
|
-
control: "boolean",
|
|
66
|
-
type: "boolean",
|
|
67
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
68
|
-
},
|
|
69
|
-
httpEquiv: {
|
|
70
|
-
required: !1,
|
|
71
|
-
control: "text",
|
|
72
|
-
type: "string",
|
|
73
|
-
description: "Defines a pragma directive."
|
|
74
|
-
},
|
|
75
|
-
id: {
|
|
76
|
-
required: !1,
|
|
77
|
-
control: "text",
|
|
78
|
-
type: "string",
|
|
79
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
80
|
-
},
|
|
81
|
-
inputMode: {
|
|
82
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
83
|
-
required: !1,
|
|
84
|
-
control: "select",
|
|
85
|
-
type: "string",
|
|
86
|
-
options: [
|
|
87
|
-
"search",
|
|
88
|
-
"text",
|
|
89
|
-
"none",
|
|
90
|
-
"tel",
|
|
91
|
-
"url",
|
|
92
|
-
"email",
|
|
93
|
-
"numeric",
|
|
94
|
-
"decimal"
|
|
95
|
-
]
|
|
96
|
-
},
|
|
97
|
-
is: {
|
|
98
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
99
|
-
required: !1,
|
|
100
|
-
control: "text",
|
|
101
|
-
type: "string"
|
|
102
|
-
},
|
|
103
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
104
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
105
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
106
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
107
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
108
|
-
lang: {
|
|
109
|
-
required: !1,
|
|
110
|
-
control: "text",
|
|
111
|
-
type: "string",
|
|
112
|
-
description: "Defines the language used in the element."
|
|
113
|
-
},
|
|
114
|
-
media: {
|
|
115
|
-
required: !1,
|
|
116
|
-
control: "text",
|
|
117
|
-
type: "string",
|
|
118
|
-
description: "Specifies a hint of the media for which the linked resource was designed."
|
|
119
|
-
},
|
|
120
|
-
name: {
|
|
121
|
-
required: !1,
|
|
122
|
-
control: "text",
|
|
123
|
-
type: "string",
|
|
124
|
-
description: "This name is important when submitting form data to the server, as it identifies the data associated with the input. When multiple inputs share the same name attribute, they are treated as part of the same group (e.g., radio buttons or checkboxes)."
|
|
125
|
-
},
|
|
126
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
127
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
128
|
-
property: { required: !1, control: "text", type: "string" },
|
|
129
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
130
|
-
rel: {
|
|
131
|
-
required: !1,
|
|
132
|
-
control: "text",
|
|
133
|
-
type: "string",
|
|
134
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
135
|
-
},
|
|
136
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
137
|
-
results: { required: !1, control: "number", type: "number" },
|
|
138
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
139
|
-
role: {
|
|
140
|
-
required: !1,
|
|
141
|
-
control: "text",
|
|
142
|
-
type: "string",
|
|
143
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
144
|
-
},
|
|
145
|
-
security: { required: !1, control: "text", type: "string" },
|
|
146
|
-
slot: {
|
|
147
|
-
required: !1,
|
|
148
|
-
control: "text",
|
|
149
|
-
type: "string",
|
|
150
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
151
|
-
},
|
|
152
|
-
spellCheck: {
|
|
153
|
-
required: !1,
|
|
154
|
-
control: "boolean",
|
|
155
|
-
type: "boolean",
|
|
156
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
157
|
-
},
|
|
158
|
-
suppressContentEditableWarning: {
|
|
159
|
-
required: !1,
|
|
160
|
-
control: "boolean",
|
|
161
|
-
type: "boolean"
|
|
162
|
-
},
|
|
163
|
-
suppressHydrationWarning: {
|
|
164
|
-
required: !1,
|
|
165
|
-
control: "boolean",
|
|
166
|
-
type: "boolean"
|
|
167
|
-
},
|
|
168
|
-
tabIndex: {
|
|
169
|
-
required: !1,
|
|
170
|
-
control: "number",
|
|
171
|
-
type: "number",
|
|
172
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
173
|
-
},
|
|
174
|
-
title: {
|
|
175
|
-
required: !1,
|
|
176
|
-
control: "text",
|
|
177
|
-
type: "string",
|
|
178
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
179
|
-
},
|
|
180
|
-
translate: {
|
|
181
|
-
required: !1,
|
|
182
|
-
control: "radio",
|
|
183
|
-
type: "string",
|
|
184
|
-
options: ["yes", "no"],
|
|
185
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
186
|
-
},
|
|
187
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
188
|
-
unselectable: {
|
|
189
|
-
required: !1,
|
|
190
|
-
control: "radio",
|
|
191
|
-
type: "string",
|
|
192
|
-
options: ["on", "off"]
|
|
193
|
-
},
|
|
194
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
195
|
-
};
|
|
1
|
+
const o = {};
|
|
196
2
|
export {
|
|
197
|
-
|
|
3
|
+
o as props
|
|
198
4
|
};
|
|
@@ -1,174 +1,4 @@
|
|
|
1
|
-
const
|
|
2
|
-
about: { required: !1, control: "text", type: "string" },
|
|
3
|
-
accessKey: {
|
|
4
|
-
required: !1,
|
|
5
|
-
control: "text",
|
|
6
|
-
type: "string",
|
|
7
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
8
|
-
},
|
|
9
|
-
autoCapitalize: {
|
|
10
|
-
required: !1,
|
|
11
|
-
control: "text",
|
|
12
|
-
type: "string",
|
|
13
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
14
|
-
},
|
|
15
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
16
|
-
autoFocus: {
|
|
17
|
-
required: !1,
|
|
18
|
-
control: "boolean",
|
|
19
|
-
type: "boolean",
|
|
20
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
21
|
-
},
|
|
22
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
23
|
-
className: { required: !1, control: "text", type: "string" },
|
|
24
|
-
color: {
|
|
25
|
-
required: !1,
|
|
26
|
-
control: "color",
|
|
27
|
-
type: "string",
|
|
28
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
29
|
-
},
|
|
30
|
-
content: {
|
|
31
|
-
required: !1,
|
|
32
|
-
control: "text",
|
|
33
|
-
type: "string",
|
|
34
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
35
|
-
},
|
|
36
|
-
contextMenu: {
|
|
37
|
-
required: !1,
|
|
38
|
-
control: "text",
|
|
39
|
-
type: "string",
|
|
40
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
41
|
-
},
|
|
42
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
43
|
-
defaultChecked: { required: !1, control: "boolean", type: "boolean" },
|
|
44
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
45
|
-
dir: {
|
|
46
|
-
required: !1,
|
|
47
|
-
control: "text",
|
|
48
|
-
type: "string",
|
|
49
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
50
|
-
},
|
|
51
|
-
draggable: {
|
|
52
|
-
required: !1,
|
|
53
|
-
control: "boolean",
|
|
54
|
-
type: "boolean",
|
|
55
|
-
description: "Defines whether the element can be dragged."
|
|
56
|
-
},
|
|
57
|
-
hidden: {
|
|
58
|
-
required: !1,
|
|
59
|
-
control: "boolean",
|
|
60
|
-
type: "boolean",
|
|
61
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
62
|
-
},
|
|
63
|
-
id: {
|
|
64
|
-
required: !1,
|
|
65
|
-
control: "text",
|
|
66
|
-
type: "string",
|
|
67
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
68
|
-
},
|
|
69
|
-
inputMode: {
|
|
70
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
71
|
-
required: !1,
|
|
72
|
-
control: "select",
|
|
73
|
-
type: "string",
|
|
74
|
-
options: [
|
|
75
|
-
"search",
|
|
76
|
-
"text",
|
|
77
|
-
"none",
|
|
78
|
-
"tel",
|
|
79
|
-
"url",
|
|
80
|
-
"email",
|
|
81
|
-
"numeric",
|
|
82
|
-
"decimal"
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
is: {
|
|
86
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
87
|
-
required: !1,
|
|
88
|
-
control: "text",
|
|
89
|
-
type: "string"
|
|
90
|
-
},
|
|
91
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
92
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
93
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
94
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
95
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
96
|
-
lang: {
|
|
97
|
-
required: !1,
|
|
98
|
-
control: "text",
|
|
99
|
-
type: "string",
|
|
100
|
-
description: "Defines the language used in the element."
|
|
101
|
-
},
|
|
102
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
103
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
104
|
-
property: { required: !1, control: "text", type: "string" },
|
|
105
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
106
|
-
rel: {
|
|
107
|
-
required: !1,
|
|
108
|
-
control: "text",
|
|
109
|
-
type: "string",
|
|
110
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
111
|
-
},
|
|
112
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
113
|
-
results: { required: !1, control: "number", type: "number" },
|
|
114
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
115
|
-
role: {
|
|
116
|
-
required: !1,
|
|
117
|
-
control: "text",
|
|
118
|
-
type: "string",
|
|
119
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
120
|
-
},
|
|
121
|
-
security: { required: !1, control: "text", type: "string" },
|
|
122
|
-
slot: {
|
|
123
|
-
required: !1,
|
|
124
|
-
control: "text",
|
|
125
|
-
type: "string",
|
|
126
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
127
|
-
},
|
|
128
|
-
spellCheck: {
|
|
129
|
-
required: !1,
|
|
130
|
-
control: "boolean",
|
|
131
|
-
type: "boolean",
|
|
132
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
133
|
-
},
|
|
134
|
-
suppressContentEditableWarning: {
|
|
135
|
-
required: !1,
|
|
136
|
-
control: "boolean",
|
|
137
|
-
type: "boolean"
|
|
138
|
-
},
|
|
139
|
-
suppressHydrationWarning: {
|
|
140
|
-
required: !1,
|
|
141
|
-
control: "boolean",
|
|
142
|
-
type: "boolean"
|
|
143
|
-
},
|
|
144
|
-
tabIndex: {
|
|
145
|
-
required: !1,
|
|
146
|
-
control: "number",
|
|
147
|
-
type: "number",
|
|
148
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
149
|
-
},
|
|
150
|
-
title: {
|
|
151
|
-
required: !1,
|
|
152
|
-
control: "text",
|
|
153
|
-
type: "string",
|
|
154
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
155
|
-
},
|
|
156
|
-
translate: {
|
|
157
|
-
required: !1,
|
|
158
|
-
control: "radio",
|
|
159
|
-
type: "string",
|
|
160
|
-
options: ["yes", "no"],
|
|
161
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
162
|
-
},
|
|
163
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
164
|
-
unselectable: {
|
|
165
|
-
required: !1,
|
|
166
|
-
control: "radio",
|
|
167
|
-
type: "string",
|
|
168
|
-
options: ["on", "off"]
|
|
169
|
-
},
|
|
170
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
171
|
-
};
|
|
1
|
+
const o = {};
|
|
172
2
|
export {
|
|
173
|
-
|
|
3
|
+
o as props
|
|
174
4
|
};
|
|
@@ -1,175 +1,6 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
accessKey: {
|
|
4
|
-
required: !1,
|
|
5
|
-
control: "text",
|
|
6
|
-
type: "string",
|
|
7
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
8
|
-
},
|
|
9
|
-
autoCapitalize: {
|
|
10
|
-
required: !1,
|
|
11
|
-
control: "text",
|
|
12
|
-
type: "string",
|
|
13
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
14
|
-
},
|
|
15
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
16
|
-
autoFocus: {
|
|
17
|
-
required: !1,
|
|
18
|
-
control: "boolean",
|
|
19
|
-
type: "boolean",
|
|
20
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
21
|
-
},
|
|
22
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
23
|
-
className: { required: !1, control: "text", type: "string" },
|
|
24
|
-
color: {
|
|
25
|
-
required: !1,
|
|
26
|
-
control: "color",
|
|
27
|
-
type: "string",
|
|
28
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
29
|
-
},
|
|
30
|
-
content: {
|
|
31
|
-
required: !1,
|
|
32
|
-
control: "text",
|
|
33
|
-
type: "string",
|
|
34
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
35
|
-
},
|
|
36
|
-
contextMenu: {
|
|
37
|
-
required: !1,
|
|
38
|
-
control: "text",
|
|
39
|
-
type: "string",
|
|
40
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
41
|
-
},
|
|
42
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
43
|
-
defaultChecked: { required: !1, control: "boolean", type: "boolean" },
|
|
44
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
45
|
-
dir: {
|
|
46
|
-
required: !1,
|
|
47
|
-
control: "text",
|
|
48
|
-
type: "string",
|
|
49
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
50
|
-
},
|
|
51
|
-
draggable: {
|
|
52
|
-
required: !1,
|
|
53
|
-
control: "boolean",
|
|
54
|
-
type: "boolean",
|
|
55
|
-
description: "Defines whether the element can be dragged."
|
|
56
|
-
},
|
|
57
|
-
hidden: {
|
|
58
|
-
required: !1,
|
|
59
|
-
control: "boolean",
|
|
60
|
-
type: "boolean",
|
|
61
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
62
|
-
},
|
|
63
|
-
id: {
|
|
64
|
-
required: !1,
|
|
65
|
-
control: "text",
|
|
66
|
-
type: "string",
|
|
67
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
68
|
-
},
|
|
69
|
-
inputMode: {
|
|
70
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
71
|
-
required: !1,
|
|
72
|
-
control: "select",
|
|
73
|
-
type: "string",
|
|
74
|
-
options: [
|
|
75
|
-
"search",
|
|
76
|
-
"text",
|
|
77
|
-
"none",
|
|
78
|
-
"tel",
|
|
79
|
-
"url",
|
|
80
|
-
"email",
|
|
81
|
-
"numeric",
|
|
82
|
-
"decimal"
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
is: {
|
|
86
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
87
|
-
required: !1,
|
|
88
|
-
control: "text",
|
|
89
|
-
type: "string"
|
|
90
|
-
},
|
|
91
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
92
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
93
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
94
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
95
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
96
|
-
lang: {
|
|
97
|
-
required: !1,
|
|
98
|
-
control: "text",
|
|
99
|
-
type: "string",
|
|
100
|
-
description: "Defines the language used in the element."
|
|
101
|
-
},
|
|
102
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
103
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
104
|
-
property: { required: !1, control: "text", type: "string" },
|
|
105
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
106
|
-
rel: {
|
|
107
|
-
required: !1,
|
|
108
|
-
control: "text",
|
|
109
|
-
type: "string",
|
|
110
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
111
|
-
},
|
|
112
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
113
|
-
results: { required: !1, control: "number", type: "number" },
|
|
114
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
115
|
-
role: {
|
|
116
|
-
required: !1,
|
|
117
|
-
control: "text",
|
|
118
|
-
type: "string",
|
|
119
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
120
|
-
},
|
|
121
|
-
security: { required: !1, control: "text", type: "string" },
|
|
122
|
-
slot: {
|
|
123
|
-
required: !1,
|
|
124
|
-
control: "text",
|
|
125
|
-
type: "string",
|
|
126
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
127
|
-
},
|
|
128
|
-
spellCheck: {
|
|
129
|
-
required: !1,
|
|
130
|
-
control: "boolean",
|
|
131
|
-
type: "boolean",
|
|
132
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
133
|
-
},
|
|
134
|
-
suppressContentEditableWarning: {
|
|
135
|
-
required: !1,
|
|
136
|
-
control: "boolean",
|
|
137
|
-
type: "boolean"
|
|
138
|
-
},
|
|
139
|
-
suppressHydrationWarning: {
|
|
140
|
-
required: !1,
|
|
141
|
-
control: "boolean",
|
|
142
|
-
type: "boolean"
|
|
143
|
-
},
|
|
144
|
-
tabIndex: {
|
|
145
|
-
required: !1,
|
|
146
|
-
control: "number",
|
|
147
|
-
type: "number",
|
|
148
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
149
|
-
},
|
|
150
|
-
tag: { required: !1, control: "text", type: "string" },
|
|
151
|
-
title: {
|
|
152
|
-
required: !1,
|
|
153
|
-
control: "text",
|
|
154
|
-
type: "string",
|
|
155
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
156
|
-
},
|
|
157
|
-
translate: {
|
|
158
|
-
required: !1,
|
|
159
|
-
control: "radio",
|
|
160
|
-
type: "string",
|
|
161
|
-
options: ["yes", "no"],
|
|
162
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
163
|
-
},
|
|
164
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
165
|
-
unselectable: {
|
|
166
|
-
required: !1,
|
|
167
|
-
control: "radio",
|
|
168
|
-
type: "string",
|
|
169
|
-
options: ["on", "off"]
|
|
170
|
-
},
|
|
171
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
1
|
+
const t = {
|
|
2
|
+
tag: { required: !1, control: "text", type: "string" }
|
|
172
3
|
};
|
|
173
4
|
export {
|
|
174
|
-
|
|
5
|
+
t as props
|
|
175
6
|
};
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
const e = {
|
|
2
|
-
className: {
|
|
2
|
+
className: {
|
|
3
|
+
required: !1,
|
|
4
|
+
control: "text",
|
|
5
|
+
type: "string",
|
|
6
|
+
description: "Classes to which the element belongs"
|
|
7
|
+
},
|
|
3
8
|
clientOnly: { required: !1, control: "boolean", type: "boolean" },
|
|
4
9
|
code: { required: !0, control: "text", type: "string" },
|
|
5
10
|
executeScriptOnCanvas: {
|