Skip to content

Commit 5ab414b

Browse files
committed
ignore selecteccontent html attributes & update extracted descriptions
1 parent bb13521 commit 5ab414b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

components/dash-html-components/scripts/data/attributes.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,28 +248,28 @@
248248
"button",
249249
"input"
250250
],
251-
"description": "If the button/input is a submit button (e.g. type=\"submit\"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides the enctype attribute of the button's form owner."
251+
"description": "If the button/input is a submit button (e.g., type=\"submit\"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides the enctype attribute of the button's form owner."
252252
},
253253
"formMethod": {
254254
"elements": [
255255
"button",
256256
"input"
257257
],
258-
"description": "If the button/input is a submit button (e.g. type=\"submit\"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner."
258+
"description": "If the button/input is a submit button (e.g., type=\"submit\"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner."
259259
},
260260
"formNoValidate": {
261261
"elements": [
262262
"button",
263263
"input"
264264
],
265-
"description": "If the button/input is a submit button (e.g. type=\"submit\"), this boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the novalidate attribute of the button's form owner."
265+
"description": "If the button/input is a submit button (e.g., type=\"submit\"), this boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the novalidate attribute of the button's form owner."
266266
},
267267
"formTarget": {
268268
"elements": [
269269
"button",
270270
"input"
271271
],
272-
"description": "If the button/input is a submit button (e.g. type=\"submit\"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received after submitting the form. If this attribute is specified, it overrides the target attribute of the button's form owner."
272+
"description": "If the button/input is a submit button (e.g., type=\"submit\"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received after submitting the form. If this attribute is specified, it overrides the target attribute of the button's form owner."
273273
},
274274
"headers": {
275275
"elements": [

components/dash-html-components/scripts/extract-elements.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ function extractElements($) {
2222
'noframes',
2323
// experimental, don't add yet
2424
'portal',
25-
'fencedframe'
25+
'fencedframe',
26+
'selectedcontent'
2627
];
2728
// `<section>` is for some reason missing from the reference tables.
2829
const addElements = [

0 commit comments

Comments
 (0)