diff --git a/.gitignore b/.gitignore index acaf1992..8f14053e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.tox build/ dist/ dash_html_components/metadata.json diff --git a/lib/metadata.json b/lib/metadata.json index 696628ae..9435b1d2 100644 --- a/lib/metadata.json +++ b/lib/metadata.json @@ -1,20 +1,19 @@ { "src/components/A.react.js": { "description": "", + "displayName": "A", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -33,176 +32,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "download": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates that the hyperlink is to be used for downloading a resource." }, "href": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of a linked resource." }, "hrefLang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the language of the linked resource." }, "media": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies a hint of the media for which the linked resource was designed." }, "rel": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the relationship of the target object to the link object." }, "shape": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "target": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -211,20 +208,19 @@ }, "src/components/Abbr.react.js": { "description": "", + "displayName": "Abbr", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -243,120 +239,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -365,20 +366,19 @@ }, "src/components/Acronym.react.js": { "description": "", + "displayName": "Acronym", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -397,120 +397,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -519,20 +524,19 @@ }, "src/components/Address.react.js": { "description": "", + "displayName": "Address", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -551,120 +555,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -673,20 +682,19 @@ }, "src/components/Area.react.js": { "description": "", + "displayName": "Area", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -705,192 +713,188 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "alt": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Alternative text in case an image can't be displayed." }, "coords": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A set of values specifying the coordinates of the hot-spot region." }, "download": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates that the hyperlink is to be used for downloading a resource." }, "href": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of a linked resource." }, "hrefLang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the language of the linked resource." }, "media": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies a hint of the media for which the linked resource was designed." }, "rel": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the relationship of the target object to the link object." }, "shape": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "target": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -899,20 +903,19 @@ }, "src/components/Article.react.js": { "description": "", + "displayName": "Article", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -931,120 +934,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -1053,20 +1061,19 @@ }, "src/components/Aside.react.js": { "description": "", + "displayName": "Aside", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -1085,120 +1092,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -1207,20 +1219,19 @@ }, "src/components/Audio.react.js": { "description": "", + "displayName": "Audio", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -1239,176 +1250,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "autoPlay": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The audio or video should play as soon as possible." }, "controls": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the browser should show playback controls to the user." }, "crossOrigin": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "How the element handles cross-origin requests" }, "loop": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the media should start playing from the start when it's finished." }, "muted": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the audio will be initially silenced on page load." }, "preload": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the whole resource, parts of it or nothing should be preloaded." }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -1417,20 +1426,19 @@ }, "src/components/B.react.js": { "description": "", + "displayName": "B", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -1449,120 +1457,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -1571,20 +1584,19 @@ }, "src/components/Base.react.js": { "description": "", + "displayName": "Base", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -1603,136 +1615,139 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, - "href": { + "data-*": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, - "description": "The URL of a linked resource." + "description": "A wildcard data attribute" }, - "target": { + "aria-*": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, + "href": { + "type": { + "name": "string" + }, + "required": false, + "description": "The URL of a linked resource." + }, + "target": { + "type": { + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -1741,20 +1756,19 @@ }, "src/components/Basefont.react.js": { "description": "", + "displayName": "Basefont", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -1773,120 +1787,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -1895,20 +1914,19 @@ }, "src/components/Bdi.react.js": { "description": "", + "displayName": "Bdi", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -1927,120 +1945,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -2049,20 +2072,19 @@ }, "src/components/Bdo.react.js": { "description": "", + "displayName": "Bdo", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -2081,120 +2103,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -2203,20 +2230,19 @@ }, "src/components/Big.react.js": { "description": "", + "displayName": "Big", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -2235,120 +2261,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -2357,20 +2388,19 @@ }, "src/components/Blink.react.js": { "description": "", + "displayName": "Blink", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -2389,120 +2419,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -2511,20 +2546,19 @@ }, "src/components/Blockquote.react.js": { "description": "", + "displayName": "Blockquote", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -2543,128 +2577,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "cite": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Contains a URI which points to the source of the quote or change." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -2673,20 +2711,19 @@ }, "src/components/Br.react.js": { "description": "", + "displayName": "Br", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -2705,120 +2742,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -2827,20 +2869,19 @@ }, "src/components/Button.react.js": { "description": "", + "displayName": "Button", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -2859,176 +2900,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "autoFocus": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The element should be automatically focused after the page loaded." }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "formAction": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the action of the element, overriding the action defined in the
." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "type": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the type of the element." }, "value": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a default value which will be displayed in the element on page load." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -3037,20 +3076,19 @@ }, "src/components/Canvas.react.js": { "description": "", + "displayName": "Canvas", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -3069,136 +3107,139 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "height": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as
, this is a legacy attribute, in which case the CSS height property should be used instead." }, "width": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "For the elements listed here, this establishes the element's width. Note: For all other instances, such as
, this is a legacy attribute, in which case the CSS width property should be used instead." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -3207,20 +3248,19 @@ }, "src/components/Caption.react.js": { "description": "", + "displayName": "Caption", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -3239,120 +3279,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -3361,20 +3406,19 @@ }, "src/components/Center.react.js": { "description": "", + "displayName": "Center", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -3393,120 +3437,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -3515,20 +3564,19 @@ }, "src/components/Cite.react.js": { "description": "", + "displayName": "Cite", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -3547,120 +3595,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -3669,20 +3722,19 @@ }, "src/components/Code.react.js": { "description": "", + "displayName": "Code", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -3701,120 +3753,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -3823,20 +3880,19 @@ }, "src/components/Col.react.js": { "description": "", + "displayName": "Col", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -3855,128 +3911,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "span": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -3985,20 +4045,19 @@ }, "src/components/Colgroup.react.js": { "description": "", + "displayName": "Colgroup", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -4017,128 +4076,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "span": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -4147,20 +4210,19 @@ }, "src/components/Command.react.js": { "description": "", + "displayName": "Command", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -4179,160 +4241,160 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "checked": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element should be checked on page load." }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "icon": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies a picture which represents the command." }, "radioGroup": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "type": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the type of the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -4341,20 +4403,19 @@ }, "src/components/Content.react.js": { "description": "", + "displayName": "Content", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -4373,120 +4434,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -4495,20 +4561,19 @@ }, "src/components/Data.react.js": { "description": "", + "displayName": "Data", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -4527,120 +4592,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -4649,20 +4719,19 @@ }, "src/components/Datalist.react.js": { "description": "", + "displayName": "Datalist", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -4681,120 +4750,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -4803,20 +4877,19 @@ }, "src/components/Dd.react.js": { "description": "", + "displayName": "Dd", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -4835,120 +4908,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -4957,20 +5035,19 @@ }, "src/components/Del.react.js": { "description": "", + "displayName": "Del", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -4989,136 +5066,139 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "cite": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Contains a URI which points to the source of the quote or change." }, "dateTime": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the date and time associated with the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -5127,20 +5207,19 @@ }, "src/components/Details.react.js": { "description": "", + "displayName": "Details", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -5159,128 +5238,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "open": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the details will be shown on page load." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -5289,20 +5372,19 @@ }, "src/components/Dfn.react.js": { "description": "", + "displayName": "Dfn", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -5321,120 +5403,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -5443,20 +5530,19 @@ }, "src/components/Dialog.react.js": { "description": "", + "displayName": "Dialog", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -5475,120 +5561,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -5597,20 +5688,19 @@ }, "src/components/Div.react.js": { "description": "", + "displayName": "Div", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -5629,120 +5719,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -5751,20 +5846,19 @@ }, "src/components/Dl.react.js": { "description": "", + "displayName": "Dl", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -5783,120 +5877,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -5905,20 +6004,19 @@ }, "src/components/Dt.react.js": { "description": "", + "displayName": "Dt", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -5937,120 +6035,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -6059,20 +6162,19 @@ }, "src/components/Element.react.js": { "description": "", + "displayName": "Element", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -6091,120 +6193,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -6213,20 +6320,19 @@ }, "src/components/Em.react.js": { "description": "", + "displayName": "Em", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -6245,120 +6351,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -6367,20 +6478,19 @@ }, "src/components/Embed.react.js": { "description": "", + "displayName": "Embed", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -6399,152 +6509,153 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "height": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as
, this is a legacy attribute, in which case the CSS height property should be used instead." }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "type": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the type of the element." }, "width": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "For the elements listed here, this establishes the element's width. Note: For all other instances, such as
, this is a legacy attribute, in which case the CSS width property should be used instead." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -6553,20 +6664,19 @@ }, "src/components/Fieldset.react.js": { "description": "", + "displayName": "Fieldset", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -6585,144 +6695,146 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -6731,20 +6843,19 @@ }, "src/components/Figcaption.react.js": { "description": "", + "displayName": "Figcaption", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -6763,120 +6874,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -6885,20 +7001,19 @@ }, "src/components/Figure.react.js": { "description": "", + "displayName": "Figure", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -6917,120 +7032,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -7039,20 +7159,19 @@ }, "src/components/Font.react.js": { "description": "", + "displayName": "Font", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -7071,120 +7190,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -7193,20 +7317,19 @@ }, "src/components/Footer.react.js": { "description": "", + "displayName": "Footer", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -7225,120 +7348,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -7347,20 +7475,19 @@ }, "src/components/Form.react.js": { "description": "", + "displayName": "Form", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -7379,192 +7506,188 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accept": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "List of types the server accepts, typically a file type." }, "acceptCharset": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "List of supported charsets." }, "action": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URI of a program that processes the information submitted via the form." }, "autoComplete": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether controls in this form can by default have their values automatically completed by the browser." }, "encType": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the content type of the form date when the method is POST." }, "method": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines which HTTP method to use when submitting the form. Can be GET (default) or POST." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "noValidate": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "This attribute indicates that the form shouldn't be validated when submitted." }, "target": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -7573,20 +7696,19 @@ }, "src/components/Frame.react.js": { "description": "", + "displayName": "Frame", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -7605,120 +7727,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -7727,20 +7854,19 @@ }, "src/components/Frameset.react.js": { "description": "", + "displayName": "Frameset", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -7759,120 +7885,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -7881,20 +8012,19 @@ }, "src/components/H1.react.js": { "description": "", + "displayName": "H1", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -7913,120 +8043,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -8035,20 +8170,19 @@ }, "src/components/H2.react.js": { "description": "", + "displayName": "H2", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -8067,120 +8201,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -8189,20 +8328,19 @@ }, "src/components/H3.react.js": { "description": "", + "displayName": "H3", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -8221,120 +8359,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -8343,20 +8486,19 @@ }, "src/components/H4.react.js": { "description": "", + "displayName": "H4", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -8375,120 +8517,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -8497,20 +8644,19 @@ }, "src/components/H5.react.js": { "description": "", + "displayName": "H5", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -8529,120 +8675,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -8651,20 +8802,19 @@ }, "src/components/H6.react.js": { "description": "", + "displayName": "H6", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -8681,122 +8831,127 @@ "computed": false } }, - "key": { + "key": { + "type": { + "name": "string" + }, + "required": false, + "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, - "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + "description": "A wildcard aria attribute" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -8805,20 +8960,19 @@ }, "src/components/Header.react.js": { "description": "", + "displayName": "Header", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -8837,120 +8991,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -8959,20 +9118,19 @@ }, "src/components/Hgroup.react.js": { "description": "", + "displayName": "Hgroup", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -8991,120 +9149,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -9113,20 +9276,19 @@ }, "src/components/Hr.react.js": { "description": "", + "displayName": "Hr", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -9145,120 +9307,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -9267,20 +9434,19 @@ }, "src/components/I.react.js": { "description": "", + "displayName": "I", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -9299,120 +9465,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -9421,20 +9592,19 @@ }, "src/components/Iframe.react.js": { "description": "", + "displayName": "Iframe", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -9453,176 +9623,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "height": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as
, this is a legacy attribute, in which case the CSS height property should be used instead." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "sandbox": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "seamless": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "srcDoc": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "width": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "For the elements listed here, this establishes the element's width. Note: For all other instances, such as
, this is a legacy attribute, in which case the CSS width property should be used instead." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -9631,20 +9799,19 @@ }, "src/components/Img.react.js": { "description": "", + "displayName": "Img", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -9663,184 +9830,181 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "alt": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Alternative text in case an image can't be displayed." }, "crossOrigin": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "How the element handles cross-origin requests" }, "height": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as
, this is a legacy attribute, in which case the CSS height property should be used instead." }, "sizes": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "srcSet": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "useMap": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "width": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "For the elements listed here, this establishes the element's width. Note: For all other instances, such as
, this is a legacy attribute, in which case the CSS width property should be used instead." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -9849,20 +10013,19 @@ }, "src/components/Ins.react.js": { "description": "", + "displayName": "Ins", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -9881,136 +10044,139 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "cite": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Contains a URI which points to the source of the quote or change." }, "dateTime": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the date and time associated with the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -10019,20 +10185,19 @@ }, "src/components/Isindex.react.js": { "description": "", + "displayName": "Isindex", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -10051,120 +10216,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -10173,20 +10343,19 @@ }, "src/components/Kbd.react.js": { "description": "", + "displayName": "Kbd", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -10205,120 +10374,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -10327,20 +10501,19 @@ }, "src/components/Keygen.react.js": { "description": "", + "displayName": "Keygen", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -10359,168 +10532,167 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "autoFocus": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The element should be automatically focused after the page loaded." }, "challenge": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A challenge string that is submitted along with the public key." }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "keyType": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the type of key generated." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -10529,20 +10701,19 @@ }, "src/components/Label.react.js": { "description": "", + "displayName": "Label", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -10561,136 +10732,139 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "htmlFor": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Describes elements which belongs to this one." }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -10699,20 +10873,19 @@ }, "src/components/Legend.react.js": { "description": "", + "displayName": "Legend", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -10731,120 +10904,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -10853,20 +11031,19 @@ }, "src/components/Li.react.js": { "description": "", + "displayName": "Li", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -10885,128 +11062,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "value": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a default value which will be displayed in the element on page load." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -11015,20 +11196,19 @@ }, "src/components/Link.react.js": { "description": "", + "displayName": "Link", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -11047,176 +11227,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "crossOrigin": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "How the element handles cross-origin requests" }, "href": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of a linked resource." }, "hrefLang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the language of the linked resource." }, "integrity": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Security Feature that allows browsers to verify what they fetch. MDN Link" }, "media": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies a hint of the media for which the linked resource was designed." }, "rel": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the relationship of the target object to the link object." }, "sizes": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -11225,20 +11403,19 @@ }, "src/components/Listing.react.js": { "description": "", + "displayName": "Listing", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -11257,120 +11434,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -11379,20 +11561,19 @@ }, "src/components/Main.react.js": { "description": "", + "displayName": "Main", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -11411,120 +11592,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -11533,20 +11719,19 @@ }, "src/components/MapEl.react.js": { "description": "", + "displayName": "MapEl", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -11565,128 +11750,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -11695,20 +11884,19 @@ }, "src/components/Mark.react.js": { "description": "", + "displayName": "Mark", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -11727,120 +11915,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -11849,20 +12042,19 @@ }, "src/components/Marquee.react.js": { "description": "", + "displayName": "Marquee", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -11879,130 +12071,134 @@ "computed": false } }, - "key": { + "key": { + "type": { + "name": "string" + }, + "required": false, + "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, - "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + "description": "A wildcard aria attribute" }, "loop": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the media should start playing from the start when it's finished." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -12011,20 +12207,19 @@ }, "src/components/Meta.react.js": { "description": "", + "displayName": "Meta", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -12043,152 +12238,153 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "charSet": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Declares the character encoding of the page or script." }, "content": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A value associated with http-equiv or name depending on the context." }, "httpEquiv": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -12197,20 +12393,19 @@ }, "src/components/Meter.react.js": { "description": "", + "displayName": "Meter", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -12229,176 +12424,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "high": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the lower bound of the upper range." }, "low": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the upper bound of the lower range." }, "max": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the maximum value allowed." }, "min": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the minimum value allowed." }, "optimum": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the optimal numeric value." }, "value": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a default value which will be displayed in the element on page load." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -12407,20 +12600,19 @@ }, "src/components/Multicol.react.js": { "description": "", + "displayName": "Multicol", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -12439,120 +12631,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -12561,20 +12758,19 @@ }, "src/components/Nav.react.js": { "description": "", + "displayName": "Nav", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -12593,120 +12789,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -12715,20 +12916,19 @@ }, "src/components/Nextid.react.js": { "description": "", + "displayName": "Nextid", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -12747,120 +12947,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -12869,20 +13074,19 @@ }, "src/components/Nobr.react.js": { "description": "", + "displayName": "Nobr", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -12901,120 +13105,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -13023,20 +13232,19 @@ }, "src/components/Noscript.react.js": { "description": "", + "displayName": "Noscript", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -13055,120 +13263,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -13177,20 +13390,19 @@ }, "src/components/ObjectEl.react.js": { "description": "", + "displayName": "ObjectEl", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -13209,168 +13421,167 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "height": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as
, this is a legacy attribute, in which case the CSS height property should be used instead." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "type": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the type of the element." }, "useMap": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "width": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "For the elements listed here, this establishes the element's width. Note: For all other instances, such as
, this is a legacy attribute, in which case the CSS width property should be used instead." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -13379,20 +13590,19 @@ }, "src/components/Ol.react.js": { "description": "", + "displayName": "Ol", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -13411,136 +13621,139 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "reversed": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the list should be displayed in a descending order instead of a ascending." }, "start": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the first number if other than 1." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -13549,20 +13762,19 @@ }, "src/components/Optgroup.react.js": { "description": "", + "displayName": "Optgroup", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -13581,128 +13793,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -13711,20 +13927,19 @@ }, "src/components/Option.react.js": { "description": "", + "displayName": "Option", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -13743,144 +13958,146 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "selected": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a value which will be selected on page load." }, "value": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a default value which will be displayed in the element on page load." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -13889,20 +14106,19 @@ }, "src/components/Output.react.js": { "description": "", + "displayName": "Output", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -13921,144 +14137,146 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "htmlFor": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Describes elements which belongs to this one." }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -14067,20 +14285,19 @@ }, "src/components/P.react.js": { "description": "", + "displayName": "P", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -14099,120 +14316,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -14221,20 +14443,19 @@ }, "src/components/Param.react.js": { "description": "", + "displayName": "Param", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -14253,136 +14474,139 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "value": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a default value which will be displayed in the element on page load." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -14391,20 +14615,19 @@ }, "src/components/Picture.react.js": { "description": "", + "displayName": "Picture", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -14423,120 +14646,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -14545,20 +14773,19 @@ }, "src/components/Plaintext.react.js": { "description": "", + "displayName": "Plaintext", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -14577,120 +14804,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -14699,20 +14931,19 @@ }, "src/components/Pre.react.js": { "description": "", + "displayName": "Pre", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -14731,120 +14962,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -14853,20 +15089,19 @@ }, "src/components/Progress.react.js": { "description": "", + "displayName": "Progress", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -14885,144 +15120,146 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "max": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the maximum value allowed." }, "value": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a default value which will be displayed in the element on page load." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -15031,20 +15268,19 @@ }, "src/components/Q.react.js": { "description": "", + "displayName": "Q", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -15061,130 +15297,134 @@ "computed": false } }, - "key": { + "key": { + "type": { + "name": "string" + }, + "required": false, + "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, - "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + "description": "A wildcard aria attribute" }, "cite": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Contains a URI which points to the source of the quote or change." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -15193,20 +15433,19 @@ }, "src/components/Rp.react.js": { "description": "", + "displayName": "Rp", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -15225,120 +15464,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -15347,20 +15591,19 @@ }, "src/components/Rt.react.js": { "description": "", + "displayName": "Rt", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -15379,120 +15622,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -15501,20 +15749,19 @@ }, "src/components/Rtc.react.js": { "description": "", + "displayName": "Rtc", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -15533,120 +15780,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -15655,20 +15907,19 @@ }, "src/components/Ruby.react.js": { "description": "", + "displayName": "Ruby", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -15687,120 +15938,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -15809,20 +16065,19 @@ }, "src/components/S.react.js": { "description": "", + "displayName": "S", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -15841,120 +16096,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -15963,20 +16223,19 @@ }, "src/components/Samp.react.js": { "description": "", + "displayName": "Samp", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -15995,120 +16254,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -16117,20 +16381,19 @@ }, "src/components/Script.react.js": { "description": "", + "displayName": "Script", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -16149,176 +16412,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "async": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates that the script should be executed asynchronously." }, "charSet": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Declares the character encoding of the page or script." }, "crossOrigin": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "How the element handles cross-origin requests" }, "defer": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates that the script should be executed after the page has been parsed." }, "integrity": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Security Feature that allows browsers to verify what they fetch. MDN Link" }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "type": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the type of the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -16327,20 +16588,19 @@ }, "src/components/Section.react.js": { "description": "", + "displayName": "Section", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -16359,120 +16619,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -16481,20 +16746,19 @@ }, "src/components/Select.react.js": { "description": "", + "displayName": "Select", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -16513,176 +16777,174 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "autoFocus": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The element should be automatically focused after the page loaded." }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "multiple": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether multiple values can be entered in an input of the type email or file." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "required": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether this element is required to fill out or not." }, "size": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the width of the element (in pixels). If the element's type attribute is text or password then it's the number of characters." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -16691,20 +16953,19 @@ }, "src/components/Shadow.react.js": { "description": "", + "displayName": "Shadow", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -16723,120 +16984,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -16845,20 +17111,19 @@ }, "src/components/Slot.react.js": { "description": "", + "displayName": "Slot", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -16877,120 +17142,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -16999,20 +17269,19 @@ }, "src/components/Small.react.js": { "description": "", + "displayName": "Small", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -17031,120 +17300,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -17153,20 +17427,19 @@ }, "src/components/Source.react.js": { "description": "", + "displayName": "Source", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -17185,152 +17458,153 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "media": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies a hint of the media for which the linked resource was designed." }, "sizes": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "type": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the type of the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -17339,20 +17613,19 @@ }, "src/components/Spacer.react.js": { "description": "", + "displayName": "Spacer", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -17371,120 +17644,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -17493,20 +17771,19 @@ }, "src/components/Span.react.js": { "description": "", + "displayName": "Span", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -17525,120 +17802,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -17647,20 +17929,19 @@ }, "src/components/Strike.react.js": { "description": "", + "displayName": "Strike", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -17679,120 +17960,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -17801,20 +18087,19 @@ }, "src/components/Strong.react.js": { "description": "", + "displayName": "Strong", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -17833,120 +18118,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -17955,20 +18245,19 @@ }, "src/components/Sub.react.js": { "description": "", + "displayName": "Sub", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -17987,120 +18276,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -18109,20 +18403,19 @@ }, "src/components/Summary.react.js": { "description": "", + "displayName": "Summary", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -18141,120 +18434,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -18263,20 +18561,19 @@ }, "src/components/Sup.react.js": { "description": "", + "displayName": "Sup", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -18295,120 +18592,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -18417,20 +18719,19 @@ }, "src/components/Table.react.js": { "description": "", + "displayName": "Table", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -18449,128 +18750,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "summary": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -18579,20 +18884,19 @@ }, "src/components/Tbody.react.js": { "description": "", + "displayName": "Tbody", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -18611,120 +18915,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -18733,20 +19042,19 @@ }, "src/components/Td.react.js": { "description": "", + "displayName": "Td", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -18765,144 +19073,146 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "colSpan": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The colspan attribute defines the number of columns a cell should span." }, "headers": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "IDs of the elements which applies to this element." }, "rowSpan": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the number of rows a table cell should span over." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -18911,20 +19221,19 @@ }, "src/components/Template.react.js": { "description": "", + "displayName": "Template", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -18943,120 +19252,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -19065,20 +19379,19 @@ }, "src/components/Textarea.react.js": { "description": "", + "displayName": "Textarea", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -19097,216 +19410,209 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "autoFocus": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The element should be automatically focused after the page loaded." }, "cols": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the number of columns in a textarea." }, "disabled": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the user can interact with the element." }, "form": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the form that is the owner of the element." }, "maxLength": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the maximum number of characters allowed in the element." }, "minLength": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the minimum number of characters allowed in the element." }, "name": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Name of the element. For example used by the server to identify the fields in form submits." }, "placeholder": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Provides a hint to the user of what can be entered in the field." }, "readOnly": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element can be edited." }, "required": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether this element is required to fill out or not." }, "rows": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the number of rows in a text area." }, "wrap": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the text should be wrapped." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -19315,20 +19621,19 @@ }, "src/components/Tfoot.react.js": { "description": "", + "displayName": "Tfoot", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -19347,120 +19652,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -19469,20 +19779,19 @@ }, "src/components/Th.react.js": { "description": "", + "displayName": "Th", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -19501,152 +19810,153 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "colSpan": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The colspan attribute defines the number of columns a cell should span." }, "headers": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "IDs of the elements which applies to this element." }, "rowSpan": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the number of rows a table cell should span over." }, "scope": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -19655,20 +19965,19 @@ }, "src/components/Thead.react.js": { "description": "", + "displayName": "Thead", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -19687,120 +19996,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -19809,20 +20123,19 @@ }, "src/components/Time.react.js": { "description": "", + "displayName": "Time", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -19841,128 +20154,132 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" + }, + "required": false, + "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" }, "required": false, - "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" + "description": "A wildcard aria attribute" }, "dateTime": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates the date and time associated with the element." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -19971,20 +20288,19 @@ }, "src/components/Title.react.js": { "description": "", + "displayName": "Title", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -20003,120 +20319,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -20125,20 +20446,19 @@ }, "src/components/Tr.react.js": { "description": "", + "displayName": "Tr", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -20157,120 +20477,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -20279,20 +20604,19 @@ }, "src/components/Track.react.js": { "description": "", + "displayName": "Track", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -20311,160 +20635,160 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "default": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates that the track should be enabled unless the user's preferences indicate something different." }, "kind": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the kind of text track." }, "label": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies a user-readable title of the text track." }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "srcLang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "" }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -20473,20 +20797,19 @@ }, "src/components/U.react.js": { "description": "", + "displayName": "U", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -20505,120 +20828,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -20627,20 +20955,19 @@ }, "src/components/Ul.react.js": { "description": "", + "displayName": "Ul", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -20659,120 +20986,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -20781,20 +21113,19 @@ }, "src/components/Var.react.js": { "description": "", + "displayName": "Var", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -20813,120 +21144,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -20935,20 +21271,19 @@ }, "src/components/Video.react.js": { "description": "", + "displayName": "Video", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -20967,200 +21302,195 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "autoPlay": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The audio or video should play as soon as possible." }, "controls": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the browser should show playback controls to the user." }, "crossOrigin": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "How the element handles cross-origin requests" }, "height": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as
, this is a legacy attribute, in which case the CSS height property should be used instead." }, "loop": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the media should start playing from the start when it's finished." }, "muted": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the audio will be initially silenced on page load." }, "poster": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A URL indicating a poster frame to show until the user plays or seeks." }, "preload": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the whole resource, parts of it or nothing should be preloaded." }, "src": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The URL of the embeddable content." }, "width": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "For the elements listed here, this establishes the element's width. Note: For all other instances, such as
, this is a legacy attribute, in which case the CSS width property should be used instead." }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -21169,20 +21499,19 @@ }, "src/components/Wbr.react.js": { "description": "", + "displayName": "Wbr", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -21201,120 +21530,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" @@ -21323,20 +21657,19 @@ }, "src/components/Xmp.react.js": { "description": "", + "displayName": "Xmp", "methods": [], "props": { "id": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "The ID of this component, used to identify dash components\nin callbacks. The ID needs to be unique across all of the\ncomponents in an app." }, "children": { "type": { - "name": "custom", - "raw": "PropTypes.node" + "name": "node" }, "required": false, "description": "The children of this component" @@ -21355,120 +21688,125 @@ }, "key": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "A unique identifier for the component, used to improve\nperformance by React.js while rendering components\nSee https://reactjs.org/docs/lists-and-keys.html for more info" }, + "data-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard data attribute" + }, + "aria-*": { + "type": { + "name": "string" + }, + "required": false, + "description": "A wildcard aria attribute" + }, "accessKey": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines a keyboard shortcut to activate or add focus to the element." }, "className": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Often used with CSS to style elements with common properties." }, "contentEditable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether the element's content is editable." }, "contextMenu": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the ID of a element which will serve as the element's context menu." }, "dir": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)" }, "draggable": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines whether the element can be dragged." }, "hidden": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Prevents rendering of given element, while keeping child elements, e.g. script elements, active." }, "lang": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Defines the language used in the element." }, "spellCheck": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Indicates whether spell checking is allowed for the element." }, "style": { "type": { - "name": "custom", - "raw": "PropTypes.object" + "name": "object" }, "required": false, "description": "Defines CSS styles which will override styles previously set." }, "tabIndex": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Overrides the browser's default tab order and follows the one specified instead." }, "title": { "type": { - "name": "custom", - "raw": "PropTypes.string" + "name": "string" }, "required": false, "description": "Text to be displayed in a tooltip when hovering over the element." }, "fireEvent": { "type": { - "name": "custom", - "raw": "PropTypes.func" + "name": "func" }, "required": false, "description": "A callback for firing events to dash." }, "dashEvents": { "type": { - "name": "custom", - "raw": "PropTypes.oneOf(['click'])" + "name": "enum", + "value": [ + { + "value": "'click'", + "computed": false + } + ] }, "required": false, "description": "" diff --git a/scripts/generate-components.js b/scripts/generate-components.js index 691e41d6..32a3b3d9 100644 --- a/scripts/generate-components.js +++ b/scripts/generate-components.js @@ -65,6 +65,16 @@ function generatePropTypes(element, attributes) { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, ` + supportedAttributes.reduce((propTypes, attributeName) => { diff --git a/src/components/A.react.js b/src/components/A.react.js index d6d200c7..ead78534 100644 --- a/src/components/A.react.js +++ b/src/components/A.react.js @@ -53,6 +53,16 @@ A.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Abbr.react.js b/src/components/Abbr.react.js index a019dab0..f6d1117f 100644 --- a/src/components/Abbr.react.js +++ b/src/components/Abbr.react.js @@ -53,6 +53,16 @@ Abbr.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Acronym.react.js b/src/components/Acronym.react.js index c4dfad36..355b5958 100644 --- a/src/components/Acronym.react.js +++ b/src/components/Acronym.react.js @@ -53,6 +53,16 @@ Acronym.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Address.react.js b/src/components/Address.react.js index 4edc0f0d..408e3047 100644 --- a/src/components/Address.react.js +++ b/src/components/Address.react.js @@ -53,6 +53,16 @@ Address.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Area.react.js b/src/components/Area.react.js index feb1c310..891d7304 100644 --- a/src/components/Area.react.js +++ b/src/components/Area.react.js @@ -53,6 +53,16 @@ Area.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Article.react.js b/src/components/Article.react.js index 07e64482..68a464e5 100644 --- a/src/components/Article.react.js +++ b/src/components/Article.react.js @@ -53,6 +53,16 @@ Article.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Aside.react.js b/src/components/Aside.react.js index 2fb10cf9..0c64334c 100644 --- a/src/components/Aside.react.js +++ b/src/components/Aside.react.js @@ -53,6 +53,16 @@ Aside.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Audio.react.js b/src/components/Audio.react.js index e137dbb8..01f61249 100644 --- a/src/components/Audio.react.js +++ b/src/components/Audio.react.js @@ -53,6 +53,16 @@ Audio.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/B.react.js b/src/components/B.react.js index c0f137e2..15ca32e5 100644 --- a/src/components/B.react.js +++ b/src/components/B.react.js @@ -53,6 +53,16 @@ B.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Base.react.js b/src/components/Base.react.js index 0b7dcfdd..d05aa306 100644 --- a/src/components/Base.react.js +++ b/src/components/Base.react.js @@ -53,6 +53,16 @@ Base.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Basefont.react.js b/src/components/Basefont.react.js index f8bc58ed..fae026ac 100644 --- a/src/components/Basefont.react.js +++ b/src/components/Basefont.react.js @@ -53,6 +53,16 @@ Basefont.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Bdi.react.js b/src/components/Bdi.react.js index 9e0b13df..76e403e2 100644 --- a/src/components/Bdi.react.js +++ b/src/components/Bdi.react.js @@ -53,6 +53,16 @@ Bdi.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Bdo.react.js b/src/components/Bdo.react.js index dd91d624..d6b91181 100644 --- a/src/components/Bdo.react.js +++ b/src/components/Bdo.react.js @@ -53,6 +53,16 @@ Bdo.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Big.react.js b/src/components/Big.react.js index a0023881..d8f5ce48 100644 --- a/src/components/Big.react.js +++ b/src/components/Big.react.js @@ -53,6 +53,16 @@ Big.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Blink.react.js b/src/components/Blink.react.js index 2d78ab2b..e88f2fb7 100644 --- a/src/components/Blink.react.js +++ b/src/components/Blink.react.js @@ -53,6 +53,16 @@ Blink.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Blockquote.react.js b/src/components/Blockquote.react.js index c7789442..b9d73c7a 100644 --- a/src/components/Blockquote.react.js +++ b/src/components/Blockquote.react.js @@ -53,6 +53,16 @@ Blockquote.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Br.react.js b/src/components/Br.react.js index 96cc9bc5..a186933b 100644 --- a/src/components/Br.react.js +++ b/src/components/Br.react.js @@ -53,6 +53,16 @@ Br.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Button.react.js b/src/components/Button.react.js index 0b25c6d4..5e9214a8 100644 --- a/src/components/Button.react.js +++ b/src/components/Button.react.js @@ -53,6 +53,16 @@ Button.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Canvas.react.js b/src/components/Canvas.react.js index e51e50b5..73b67b39 100644 --- a/src/components/Canvas.react.js +++ b/src/components/Canvas.react.js @@ -53,6 +53,16 @@ Canvas.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Caption.react.js b/src/components/Caption.react.js index 9ce2fc71..dbb4e2c1 100644 --- a/src/components/Caption.react.js +++ b/src/components/Caption.react.js @@ -53,6 +53,16 @@ Caption.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Center.react.js b/src/components/Center.react.js index 2e2f6e31..d89aca7e 100644 --- a/src/components/Center.react.js +++ b/src/components/Center.react.js @@ -53,6 +53,16 @@ Center.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Cite.react.js b/src/components/Cite.react.js index 9ffc3090..bbe98afd 100644 --- a/src/components/Cite.react.js +++ b/src/components/Cite.react.js @@ -53,6 +53,16 @@ Cite.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Code.react.js b/src/components/Code.react.js index 824f0641..0c04c996 100644 --- a/src/components/Code.react.js +++ b/src/components/Code.react.js @@ -53,6 +53,16 @@ Code.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Col.react.js b/src/components/Col.react.js index bff4a286..accf2328 100644 --- a/src/components/Col.react.js +++ b/src/components/Col.react.js @@ -53,6 +53,16 @@ Col.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Colgroup.react.js b/src/components/Colgroup.react.js index fda32379..0e2d198c 100644 --- a/src/components/Colgroup.react.js +++ b/src/components/Colgroup.react.js @@ -53,6 +53,16 @@ Colgroup.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Command.react.js b/src/components/Command.react.js index 1a3878db..9ef3a37b 100644 --- a/src/components/Command.react.js +++ b/src/components/Command.react.js @@ -53,6 +53,16 @@ Command.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Content.react.js b/src/components/Content.react.js index 4bf5d180..f1778e19 100644 --- a/src/components/Content.react.js +++ b/src/components/Content.react.js @@ -53,6 +53,16 @@ Content.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Data.react.js b/src/components/Data.react.js index cbc0e945..06d83a1e 100644 --- a/src/components/Data.react.js +++ b/src/components/Data.react.js @@ -53,6 +53,16 @@ Data.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Datalist.react.js b/src/components/Datalist.react.js index 9aa4936c..11c97c56 100644 --- a/src/components/Datalist.react.js +++ b/src/components/Datalist.react.js @@ -53,6 +53,16 @@ Datalist.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Dd.react.js b/src/components/Dd.react.js index dd8f7c9e..0d98232c 100644 --- a/src/components/Dd.react.js +++ b/src/components/Dd.react.js @@ -53,6 +53,16 @@ Dd.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Del.react.js b/src/components/Del.react.js index 211755ae..a2836580 100644 --- a/src/components/Del.react.js +++ b/src/components/Del.react.js @@ -53,6 +53,16 @@ Del.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Details.react.js b/src/components/Details.react.js index f4ec7be5..f4266133 100644 --- a/src/components/Details.react.js +++ b/src/components/Details.react.js @@ -53,6 +53,16 @@ Details.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Dfn.react.js b/src/components/Dfn.react.js index 33441f83..e20353fa 100644 --- a/src/components/Dfn.react.js +++ b/src/components/Dfn.react.js @@ -53,6 +53,16 @@ Dfn.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Dialog.react.js b/src/components/Dialog.react.js index f51d9be9..912ecad8 100644 --- a/src/components/Dialog.react.js +++ b/src/components/Dialog.react.js @@ -53,6 +53,16 @@ Dialog.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Div.react.js b/src/components/Div.react.js index 4d39955b..a37ced2f 100644 --- a/src/components/Div.react.js +++ b/src/components/Div.react.js @@ -53,6 +53,16 @@ Div.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Dl.react.js b/src/components/Dl.react.js index dd2c51c3..aac7bca4 100644 --- a/src/components/Dl.react.js +++ b/src/components/Dl.react.js @@ -53,6 +53,16 @@ Dl.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Dt.react.js b/src/components/Dt.react.js index 39188a3e..a90d269c 100644 --- a/src/components/Dt.react.js +++ b/src/components/Dt.react.js @@ -53,6 +53,16 @@ Dt.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Element.react.js b/src/components/Element.react.js index ee0e9441..b3051f4f 100644 --- a/src/components/Element.react.js +++ b/src/components/Element.react.js @@ -53,6 +53,16 @@ Element.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Em.react.js b/src/components/Em.react.js index b14b8d94..2eecbff6 100644 --- a/src/components/Em.react.js +++ b/src/components/Em.react.js @@ -53,6 +53,16 @@ Em.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Embed.react.js b/src/components/Embed.react.js index c86b1ea4..9c19af26 100644 --- a/src/components/Embed.react.js +++ b/src/components/Embed.react.js @@ -53,6 +53,16 @@ Embed.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Fieldset.react.js b/src/components/Fieldset.react.js index 9eea3eeb..8ef1f314 100644 --- a/src/components/Fieldset.react.js +++ b/src/components/Fieldset.react.js @@ -53,6 +53,16 @@ Fieldset.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Figcaption.react.js b/src/components/Figcaption.react.js index 2e1b81b6..fafd62ef 100644 --- a/src/components/Figcaption.react.js +++ b/src/components/Figcaption.react.js @@ -53,6 +53,16 @@ Figcaption.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Figure.react.js b/src/components/Figure.react.js index 9ebf483c..ba77ba24 100644 --- a/src/components/Figure.react.js +++ b/src/components/Figure.react.js @@ -53,6 +53,16 @@ Figure.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Font.react.js b/src/components/Font.react.js index cc3b32b4..e5b51752 100644 --- a/src/components/Font.react.js +++ b/src/components/Font.react.js @@ -53,6 +53,16 @@ Font.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Footer.react.js b/src/components/Footer.react.js index ac0506bc..e2d718a5 100644 --- a/src/components/Footer.react.js +++ b/src/components/Footer.react.js @@ -53,6 +53,16 @@ Footer.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Form.react.js b/src/components/Form.react.js index 7a9b4524..ee0c627f 100644 --- a/src/components/Form.react.js +++ b/src/components/Form.react.js @@ -53,6 +53,16 @@ Form.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Frame.react.js b/src/components/Frame.react.js index 2cacbef3..6ffce378 100644 --- a/src/components/Frame.react.js +++ b/src/components/Frame.react.js @@ -53,6 +53,16 @@ Frame.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Frameset.react.js b/src/components/Frameset.react.js index 179c820e..a050afe1 100644 --- a/src/components/Frameset.react.js +++ b/src/components/Frameset.react.js @@ -53,6 +53,16 @@ Frameset.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/H1.react.js b/src/components/H1.react.js index 232393d7..7d79f597 100644 --- a/src/components/H1.react.js +++ b/src/components/H1.react.js @@ -53,6 +53,16 @@ H1.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/H2.react.js b/src/components/H2.react.js index 8fd54967..7a759f07 100644 --- a/src/components/H2.react.js +++ b/src/components/H2.react.js @@ -53,6 +53,16 @@ H2.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/H3.react.js b/src/components/H3.react.js index c7577d51..9b7b2ea3 100644 --- a/src/components/H3.react.js +++ b/src/components/H3.react.js @@ -53,6 +53,16 @@ H3.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/H4.react.js b/src/components/H4.react.js index 2df4c1ff..caf8f000 100644 --- a/src/components/H4.react.js +++ b/src/components/H4.react.js @@ -53,6 +53,16 @@ H4.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/H5.react.js b/src/components/H5.react.js index 899b84b5..4cfc81c3 100644 --- a/src/components/H5.react.js +++ b/src/components/H5.react.js @@ -53,6 +53,16 @@ H5.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/H6.react.js b/src/components/H6.react.js index d37e9eff..2d4fcc89 100644 --- a/src/components/H6.react.js +++ b/src/components/H6.react.js @@ -53,6 +53,16 @@ H6.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Header.react.js b/src/components/Header.react.js index dd7e3976..7dbefc2b 100644 --- a/src/components/Header.react.js +++ b/src/components/Header.react.js @@ -53,6 +53,16 @@ Header.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Hgroup.react.js b/src/components/Hgroup.react.js index cd6b7fe7..a49004e0 100644 --- a/src/components/Hgroup.react.js +++ b/src/components/Hgroup.react.js @@ -53,6 +53,16 @@ Hgroup.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Hr.react.js b/src/components/Hr.react.js index 9127b406..cb0ad2a5 100644 --- a/src/components/Hr.react.js +++ b/src/components/Hr.react.js @@ -53,6 +53,16 @@ Hr.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/I.react.js b/src/components/I.react.js index e312b502..8063a7a5 100644 --- a/src/components/I.react.js +++ b/src/components/I.react.js @@ -53,6 +53,16 @@ I.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Iframe.react.js b/src/components/Iframe.react.js index 2e5a441a..fb81b2c6 100644 --- a/src/components/Iframe.react.js +++ b/src/components/Iframe.react.js @@ -53,6 +53,16 @@ Iframe.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Img.react.js b/src/components/Img.react.js index 51f0f435..bcb36816 100644 --- a/src/components/Img.react.js +++ b/src/components/Img.react.js @@ -53,6 +53,16 @@ Img.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Ins.react.js b/src/components/Ins.react.js index e8859ba2..4d9e34b3 100644 --- a/src/components/Ins.react.js +++ b/src/components/Ins.react.js @@ -53,6 +53,16 @@ Ins.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Isindex.react.js b/src/components/Isindex.react.js index 3fe03f5c..f0a409cd 100644 --- a/src/components/Isindex.react.js +++ b/src/components/Isindex.react.js @@ -53,6 +53,16 @@ Isindex.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Kbd.react.js b/src/components/Kbd.react.js index 1f9126d8..e8487ada 100644 --- a/src/components/Kbd.react.js +++ b/src/components/Kbd.react.js @@ -53,6 +53,16 @@ Kbd.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Keygen.react.js b/src/components/Keygen.react.js index 052be85d..3467b583 100644 --- a/src/components/Keygen.react.js +++ b/src/components/Keygen.react.js @@ -53,6 +53,16 @@ Keygen.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Label.react.js b/src/components/Label.react.js index 225295c6..b4233a60 100644 --- a/src/components/Label.react.js +++ b/src/components/Label.react.js @@ -53,6 +53,16 @@ Label.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Legend.react.js b/src/components/Legend.react.js index 53f00fc7..379240b1 100644 --- a/src/components/Legend.react.js +++ b/src/components/Legend.react.js @@ -53,6 +53,16 @@ Legend.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Li.react.js b/src/components/Li.react.js index 075f6bca..cc4e8de6 100644 --- a/src/components/Li.react.js +++ b/src/components/Li.react.js @@ -53,6 +53,16 @@ Li.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Link.react.js b/src/components/Link.react.js index c71892a9..dcd4defa 100644 --- a/src/components/Link.react.js +++ b/src/components/Link.react.js @@ -53,6 +53,16 @@ Link.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Listing.react.js b/src/components/Listing.react.js index 3bfd9e39..b7912c2e 100644 --- a/src/components/Listing.react.js +++ b/src/components/Listing.react.js @@ -53,6 +53,16 @@ Listing.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Main.react.js b/src/components/Main.react.js index a3f2299c..829b45a4 100644 --- a/src/components/Main.react.js +++ b/src/components/Main.react.js @@ -53,6 +53,16 @@ Main.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/MapEl.react.js b/src/components/MapEl.react.js index 47952017..9807f785 100644 --- a/src/components/MapEl.react.js +++ b/src/components/MapEl.react.js @@ -53,6 +53,16 @@ MapEl.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Mark.react.js b/src/components/Mark.react.js index 9894834e..616a3911 100644 --- a/src/components/Mark.react.js +++ b/src/components/Mark.react.js @@ -53,6 +53,16 @@ Mark.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Marquee.react.js b/src/components/Marquee.react.js index fa772771..3c2bcda3 100644 --- a/src/components/Marquee.react.js +++ b/src/components/Marquee.react.js @@ -53,6 +53,16 @@ Marquee.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Meta.react.js b/src/components/Meta.react.js index d6390fa0..75755db4 100644 --- a/src/components/Meta.react.js +++ b/src/components/Meta.react.js @@ -53,6 +53,16 @@ Meta.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Meter.react.js b/src/components/Meter.react.js index bdb3c2c9..b5aa2317 100644 --- a/src/components/Meter.react.js +++ b/src/components/Meter.react.js @@ -53,6 +53,16 @@ Meter.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Multicol.react.js b/src/components/Multicol.react.js index c2bf9e6f..e4604b8c 100644 --- a/src/components/Multicol.react.js +++ b/src/components/Multicol.react.js @@ -53,6 +53,16 @@ Multicol.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Nav.react.js b/src/components/Nav.react.js index 433032fc..12a8bee4 100644 --- a/src/components/Nav.react.js +++ b/src/components/Nav.react.js @@ -53,6 +53,16 @@ Nav.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Nextid.react.js b/src/components/Nextid.react.js index 9c1b6511..0189e0f9 100644 --- a/src/components/Nextid.react.js +++ b/src/components/Nextid.react.js @@ -53,6 +53,16 @@ Nextid.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Nobr.react.js b/src/components/Nobr.react.js index 83028a3a..c8a8def5 100644 --- a/src/components/Nobr.react.js +++ b/src/components/Nobr.react.js @@ -53,6 +53,16 @@ Nobr.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Noscript.react.js b/src/components/Noscript.react.js index 782f2a7f..abc3b6e1 100644 --- a/src/components/Noscript.react.js +++ b/src/components/Noscript.react.js @@ -53,6 +53,16 @@ Noscript.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/ObjectEl.react.js b/src/components/ObjectEl.react.js index c295c9db..0ba614b0 100644 --- a/src/components/ObjectEl.react.js +++ b/src/components/ObjectEl.react.js @@ -53,6 +53,16 @@ ObjectEl.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Ol.react.js b/src/components/Ol.react.js index caf4d8f0..7c455ee7 100644 --- a/src/components/Ol.react.js +++ b/src/components/Ol.react.js @@ -53,6 +53,16 @@ Ol.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Optgroup.react.js b/src/components/Optgroup.react.js index a05c6a76..b633f4d8 100644 --- a/src/components/Optgroup.react.js +++ b/src/components/Optgroup.react.js @@ -53,6 +53,16 @@ Optgroup.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Option.react.js b/src/components/Option.react.js index b222e3f1..ec769c7c 100644 --- a/src/components/Option.react.js +++ b/src/components/Option.react.js @@ -53,6 +53,16 @@ Option.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Output.react.js b/src/components/Output.react.js index a9059283..2bb8ab40 100644 --- a/src/components/Output.react.js +++ b/src/components/Output.react.js @@ -53,6 +53,16 @@ Output.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/P.react.js b/src/components/P.react.js index 3624c282..5bb3eb4e 100644 --- a/src/components/P.react.js +++ b/src/components/P.react.js @@ -53,6 +53,16 @@ P.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Param.react.js b/src/components/Param.react.js index bf5ef64c..62c31a3a 100644 --- a/src/components/Param.react.js +++ b/src/components/Param.react.js @@ -53,6 +53,16 @@ Param.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Picture.react.js b/src/components/Picture.react.js index 9eb924cd..6709bc74 100644 --- a/src/components/Picture.react.js +++ b/src/components/Picture.react.js @@ -53,6 +53,16 @@ Picture.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Plaintext.react.js b/src/components/Plaintext.react.js index 72fd815f..0ef24c1d 100644 --- a/src/components/Plaintext.react.js +++ b/src/components/Plaintext.react.js @@ -53,6 +53,16 @@ Plaintext.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Pre.react.js b/src/components/Pre.react.js index d5b07af3..b8c9a204 100644 --- a/src/components/Pre.react.js +++ b/src/components/Pre.react.js @@ -53,6 +53,16 @@ Pre.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Progress.react.js b/src/components/Progress.react.js index d398f361..4c9536e1 100644 --- a/src/components/Progress.react.js +++ b/src/components/Progress.react.js @@ -53,6 +53,16 @@ Progress.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Q.react.js b/src/components/Q.react.js index 309afbee..cc322311 100644 --- a/src/components/Q.react.js +++ b/src/components/Q.react.js @@ -53,6 +53,16 @@ Q.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Rp.react.js b/src/components/Rp.react.js index 8b06f25d..47738330 100644 --- a/src/components/Rp.react.js +++ b/src/components/Rp.react.js @@ -53,6 +53,16 @@ Rp.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Rt.react.js b/src/components/Rt.react.js index d1c9a189..d1139a41 100644 --- a/src/components/Rt.react.js +++ b/src/components/Rt.react.js @@ -53,6 +53,16 @@ Rt.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Rtc.react.js b/src/components/Rtc.react.js index 6f530ade..4c857a96 100644 --- a/src/components/Rtc.react.js +++ b/src/components/Rtc.react.js @@ -53,6 +53,16 @@ Rtc.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Ruby.react.js b/src/components/Ruby.react.js index 45617297..e03177d6 100644 --- a/src/components/Ruby.react.js +++ b/src/components/Ruby.react.js @@ -53,6 +53,16 @@ Ruby.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/S.react.js b/src/components/S.react.js index 7544e791..5372fbbb 100644 --- a/src/components/S.react.js +++ b/src/components/S.react.js @@ -53,6 +53,16 @@ S.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Samp.react.js b/src/components/Samp.react.js index 9dc12529..25608d4b 100644 --- a/src/components/Samp.react.js +++ b/src/components/Samp.react.js @@ -53,6 +53,16 @@ Samp.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Script.react.js b/src/components/Script.react.js index 20cd428e..67157902 100644 --- a/src/components/Script.react.js +++ b/src/components/Script.react.js @@ -53,6 +53,16 @@ Script.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Section.react.js b/src/components/Section.react.js index fa41a909..f186b8bd 100644 --- a/src/components/Section.react.js +++ b/src/components/Section.react.js @@ -53,6 +53,16 @@ Section.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Select.react.js b/src/components/Select.react.js index 5d1932a6..961d6476 100644 --- a/src/components/Select.react.js +++ b/src/components/Select.react.js @@ -53,6 +53,16 @@ Select.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Shadow.react.js b/src/components/Shadow.react.js index 0abc1861..1d5b8750 100644 --- a/src/components/Shadow.react.js +++ b/src/components/Shadow.react.js @@ -53,6 +53,16 @@ Shadow.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Slot.react.js b/src/components/Slot.react.js index 3a03cf1f..c125edc8 100644 --- a/src/components/Slot.react.js +++ b/src/components/Slot.react.js @@ -53,6 +53,16 @@ Slot.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Small.react.js b/src/components/Small.react.js index 81e0df1e..bbc2c518 100644 --- a/src/components/Small.react.js +++ b/src/components/Small.react.js @@ -53,6 +53,16 @@ Small.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Source.react.js b/src/components/Source.react.js index 0cd46e25..e4030d6e 100644 --- a/src/components/Source.react.js +++ b/src/components/Source.react.js @@ -53,6 +53,16 @@ Source.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Spacer.react.js b/src/components/Spacer.react.js index 9c065f7b..652bc5cf 100644 --- a/src/components/Spacer.react.js +++ b/src/components/Spacer.react.js @@ -53,6 +53,16 @@ Spacer.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Span.react.js b/src/components/Span.react.js index c22f57cb..9405b7e5 100644 --- a/src/components/Span.react.js +++ b/src/components/Span.react.js @@ -53,6 +53,16 @@ Span.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Strike.react.js b/src/components/Strike.react.js index 4cc5df49..85148bc7 100644 --- a/src/components/Strike.react.js +++ b/src/components/Strike.react.js @@ -53,6 +53,16 @@ Strike.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Strong.react.js b/src/components/Strong.react.js index 16940a32..63d2ed1c 100644 --- a/src/components/Strong.react.js +++ b/src/components/Strong.react.js @@ -53,6 +53,16 @@ Strong.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Sub.react.js b/src/components/Sub.react.js index a581b2e0..b73955da 100644 --- a/src/components/Sub.react.js +++ b/src/components/Sub.react.js @@ -53,6 +53,16 @@ Sub.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Summary.react.js b/src/components/Summary.react.js index e691af43..8e80856b 100644 --- a/src/components/Summary.react.js +++ b/src/components/Summary.react.js @@ -53,6 +53,16 @@ Summary.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Sup.react.js b/src/components/Sup.react.js index 69e08b0f..d63074b0 100644 --- a/src/components/Sup.react.js +++ b/src/components/Sup.react.js @@ -53,6 +53,16 @@ Sup.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Table.react.js b/src/components/Table.react.js index a2ca2a58..b74cea00 100644 --- a/src/components/Table.react.js +++ b/src/components/Table.react.js @@ -53,6 +53,16 @@ Table.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Tbody.react.js b/src/components/Tbody.react.js index 643bceae..21c3e269 100644 --- a/src/components/Tbody.react.js +++ b/src/components/Tbody.react.js @@ -53,6 +53,16 @@ Tbody.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Td.react.js b/src/components/Td.react.js index af44cf62..d40cae71 100644 --- a/src/components/Td.react.js +++ b/src/components/Td.react.js @@ -53,6 +53,16 @@ Td.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Template.react.js b/src/components/Template.react.js index 65d6b899..d328ff45 100644 --- a/src/components/Template.react.js +++ b/src/components/Template.react.js @@ -53,6 +53,16 @@ Template.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Textarea.react.js b/src/components/Textarea.react.js index 400ba8b9..8d0b9d43 100644 --- a/src/components/Textarea.react.js +++ b/src/components/Textarea.react.js @@ -53,6 +53,16 @@ Textarea.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Tfoot.react.js b/src/components/Tfoot.react.js index a7ed52c3..81eddbd3 100644 --- a/src/components/Tfoot.react.js +++ b/src/components/Tfoot.react.js @@ -53,6 +53,16 @@ Tfoot.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Th.react.js b/src/components/Th.react.js index becaa1ff..72d2f06a 100644 --- a/src/components/Th.react.js +++ b/src/components/Th.react.js @@ -53,6 +53,16 @@ Th.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Thead.react.js b/src/components/Thead.react.js index 72939dac..1f6b895f 100644 --- a/src/components/Thead.react.js +++ b/src/components/Thead.react.js @@ -53,6 +53,16 @@ Thead.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Time.react.js b/src/components/Time.react.js index aa81f3a3..c5d3f61f 100644 --- a/src/components/Time.react.js +++ b/src/components/Time.react.js @@ -53,6 +53,16 @@ Time.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Title.react.js b/src/components/Title.react.js index 674c5cd4..ef0f401a 100644 --- a/src/components/Title.react.js +++ b/src/components/Title.react.js @@ -53,6 +53,16 @@ Title.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Tr.react.js b/src/components/Tr.react.js index 8c26fa5d..80f64856 100644 --- a/src/components/Tr.react.js +++ b/src/components/Tr.react.js @@ -53,6 +53,16 @@ Tr.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Track.react.js b/src/components/Track.react.js index 4f3b1aed..5977adb0 100644 --- a/src/components/Track.react.js +++ b/src/components/Track.react.js @@ -53,6 +53,16 @@ Track.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/U.react.js b/src/components/U.react.js index f88ae235..6812054f 100644 --- a/src/components/U.react.js +++ b/src/components/U.react.js @@ -53,6 +53,16 @@ U.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Ul.react.js b/src/components/Ul.react.js index c13a0d22..ea83be3e 100644 --- a/src/components/Ul.react.js +++ b/src/components/Ul.react.js @@ -53,6 +53,16 @@ Ul.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Var.react.js b/src/components/Var.react.js index 5a7d2d04..71eba47e 100644 --- a/src/components/Var.react.js +++ b/src/components/Var.react.js @@ -53,6 +53,16 @@ Var.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Video.react.js b/src/components/Video.react.js index 3d32a277..8de8ba4c 100644 --- a/src/components/Video.react.js +++ b/src/components/Video.react.js @@ -53,6 +53,16 @@ Video.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Wbr.react.js b/src/components/Wbr.react.js index 8fd5c395..c047873c 100644 --- a/src/components/Wbr.react.js +++ b/src/components/Wbr.react.js @@ -53,6 +53,16 @@ Wbr.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /** diff --git a/src/components/Xmp.react.js b/src/components/Xmp.react.js index 16939831..92a5d035 100644 --- a/src/components/Xmp.react.js +++ b/src/components/Xmp.react.js @@ -53,6 +53,16 @@ Xmp.propTypes = { * See https://reactjs.org/docs/lists-and-keys.html for more info */ 'key': PropTypes.string, + + /** + * A wildcard data attribute + */ + 'data-*': PropTypes.string, + + /** + * A wildcard aria attribute + */ + 'aria-*': PropTypes.string, /**