html-react-parser 6.1.3 → 6.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"html-react-parser.js","sources":["../node_modules/html-dom-parser/lib/client/constants.js","../node_modules/domelementtype/dist/index.js","../node_modules/domhandler/dist/node.js","../node_modules/domhandler/dist/index.js","../node_modules/html-dom-parser/lib/client/utilities.js","../node_modules/html-dom-parser/lib/client/domparser.js","../node_modules/html-dom-parser/lib/client/html-to-dom.js","../node_modules/react-property/lib/possibleStandardNamesOptimized.js","../node_modules/react-property/lib/index.js","../node_modules/inline-style-parser/cjs/index.js","../node_modules/style-to-object/cjs/index.js","../node_modules/style-to-js/dist/index.js","../lib/utilities.js","../lib/attributes-to-props.js","../lib/dom-to-react.js","../lib/index.js","../umd/index.ts"],"sourcesContent":["const CASE_SENSITIVE_TAG_NAMES_MAP = [\n\t\"animateMotion\",\n\t\"animateTransform\",\n\t\"clipPath\",\n\t\"feBlend\",\n\t\"feColorMatrix\",\n\t\"feComponentTransfer\",\n\t\"feComposite\",\n\t\"feConvolveMatrix\",\n\t\"feDiffuseLighting\",\n\t\"feDisplacementMap\",\n\t\"feDropShadow\",\n\t\"feFlood\",\n\t\"feFuncA\",\n\t\"feFuncB\",\n\t\"feFuncG\",\n\t\"feFuncR\",\n\t\"feGaussianBlur\",\n\t\"feImage\",\n\t\"feMerge\",\n\t\"feMergeNode\",\n\t\"feMorphology\",\n\t\"feOffset\",\n\t\"fePointLight\",\n\t\"feSpecularLighting\",\n\t\"feSpotLight\",\n\t\"feTile\",\n\t\"feTurbulence\",\n\t\"foreignObject\",\n\t\"linearGradient\",\n\t\"radialGradient\",\n\t\"textPath\"\n].reduce((accumulator, tagName) => {\n\taccumulator[tagName.toLowerCase()] = tagName;\n\treturn accumulator;\n}, {});\n//#endregion\nexports.CASE_SENSITIVE_TAG_NAMES_MAP = CASE_SENSITIVE_TAG_NAMES_MAP;\n\n//# sourceMappingURL=constants.js.map","/** Types of elements found in htmlparser2's DOM */\nexport var ElementType;\n(function (ElementType) {\n /** Type for the root element of a document */\n ElementType[\"Root\"] = \"root\";\n /** Type for Text */\n ElementType[\"Text\"] = \"text\";\n /** Type for <? ... ?> */\n ElementType[\"Directive\"] = \"directive\";\n /** Type for <!-- ... --> */\n ElementType[\"Comment\"] = \"comment\";\n /** Type for <script> tags */\n ElementType[\"Script\"] = \"script\";\n /** Type for <style> tags */\n ElementType[\"Style\"] = \"style\";\n /** Type for Any tag */\n ElementType[\"Tag\"] = \"tag\";\n /** Type for <![CDATA[ ... ]]> */\n ElementType[\"CDATA\"] = \"cdata\";\n /** Type for <!doctype ...> */\n ElementType[\"Doctype\"] = \"doctype\";\n})(ElementType || (ElementType = {}));\n/**\n * Tests whether an element is a tag or not.\n * @param element Element to test\n * @param element.type Node type discriminator to check.\n */\nexport function isTag(element) {\n return (element.type === ElementType.Tag ||\n element.type === ElementType.Script ||\n element.type === ElementType.Style);\n}\n// Exports for backwards compatibility\n/** Type for the root element of a document */\n// eslint-disable-next-line prefer-destructuring\nexport const Root = ElementType.Root;\n/** Type for Text */\n// eslint-disable-next-line prefer-destructuring\nexport const Text = ElementType.Text;\n/** Type for <? ... ?> */\n// eslint-disable-next-line prefer-destructuring\nexport const Directive = ElementType.Directive;\n/** Type for <!-- ... --> */\n// eslint-disable-next-line prefer-destructuring\nexport const Comment = ElementType.Comment;\n/** Type for <script> tags */\n// eslint-disable-next-line prefer-destructuring\nexport const Script = ElementType.Script;\n/** Type for <style> tags */\n// eslint-disable-next-line prefer-destructuring\nexport const Style = ElementType.Style;\n/** Type for Any tag */\n// eslint-disable-next-line prefer-destructuring\nexport const Tag = ElementType.Tag;\n/** Type for <![CDATA[ ... ]]> */\n// eslint-disable-next-line prefer-destructuring\nexport const CDATA = ElementType.CDATA;\n/** Type for <!doctype ...> */\n// eslint-disable-next-line prefer-destructuring\nexport const Doctype = ElementType.Doctype;\n","import { ElementType, isTag as isTagRaw } from \"domelementtype\";\n/**\n * This object will be used as the prototype for Nodes when creating a\n * DOM-Level-1-compliant structure.\n */\nexport class Node {\n /** Parent of the node */\n parent = null;\n /** Previous sibling */\n prev = null;\n /** Next sibling */\n next = null;\n /** The start index of the node. Requires `withStartIndices` on the handler to be `true. */\n startIndex = null;\n /** The end index of the node. Requires `withEndIndices` on the handler to be `true. */\n endIndex = null;\n // Read-write aliases for properties\n /**\n * Same as {@link parent}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get parentNode() {\n return this.parent;\n }\n set parentNode(parent) {\n this.parent = parent;\n }\n /**\n * Same as {@link prev}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get previousSibling() {\n return this.prev;\n }\n set previousSibling(previous) {\n this.prev = previous;\n }\n /**\n * Same as {@link next}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get nextSibling() {\n return this.next;\n }\n set nextSibling(next) {\n this.next = next;\n }\n /**\n * Clone this node, and optionally its children.\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\n cloneNode(recursive = false) {\n return cloneNode(this, recursive);\n }\n}\n/**\n * A node that contains some data.\n */\nexport class DataNode extends Node {\n data;\n /**\n * @param data The content of the data node\n */\n constructor(data) {\n super();\n this.data = data;\n }\n /**\n * Same as {@link data}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get nodeValue() {\n return this.data;\n }\n set nodeValue(data) {\n this.data = data;\n }\n}\n/**\n * Text within the document.\n */\nexport class Text extends DataNode {\n type = ElementType.Text;\n get nodeType() {\n return 3;\n }\n}\n/**\n * Comments within the document.\n */\nexport class Comment extends DataNode {\n type = ElementType.Comment;\n get nodeType() {\n return 8;\n }\n}\n/**\n * Processing instructions, including doc types.\n */\nexport class ProcessingInstruction extends DataNode {\n type = ElementType.Directive;\n name;\n constructor(name, data) {\n super(data);\n this.name = name;\n }\n get nodeType() {\n return 1;\n }\n /** If this is a doctype, the document type name (parse5 only). */\n \"x-name\";\n /** If this is a doctype, the document type public identifier (parse5 only). */\n \"x-publicId\";\n /** If this is a doctype, the document type system identifier (parse5 only). */\n \"x-systemId\";\n}\n/**\n * A node that can have children.\n */\nexport class NodeWithChildren extends Node {\n children;\n /**\n * @param children Children of the node. Only certain node types can have children.\n */\n constructor(children) {\n super();\n this.children = children;\n }\n // Aliases\n /** First child of the node. */\n get firstChild() {\n return this.children[0] ?? null;\n }\n /** Last child of the node. */\n get lastChild() {\n return this.children.length > 0\n ? this.children[this.children.length - 1]\n : null;\n }\n /**\n * Same as {@link children}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get childNodes() {\n return this.children;\n }\n set childNodes(children) {\n this.children = children;\n }\n}\n/**\n * CDATA nodes.\n */\nexport class CDATA extends NodeWithChildren {\n type = ElementType.CDATA;\n get nodeType() {\n return 4;\n }\n}\n/**\n * The root node of the document.\n */\nexport class Document extends NodeWithChildren {\n type = ElementType.Root;\n get nodeType() {\n return 9;\n }\n}\n/**\n * An element within the DOM.\n */\nexport class Element extends NodeWithChildren {\n name;\n attribs;\n type;\n /**\n * @param name Name of the tag, eg. `div`, `span`.\n * @param attribs Object mapping attribute names to attribute values.\n * @param children Children of the node.\n * @param type Node type used for the new node instance.\n */\n constructor(name, attribs, children = [], type = name === \"script\"\n ? ElementType.Script\n : name === \"style\"\n ? ElementType.Style\n : ElementType.Tag) {\n super(children);\n this.name = name;\n this.attribs = attribs;\n this.type = type;\n }\n get nodeType() {\n return 1;\n }\n // DOM Level 1 aliases\n /**\n * Same as {@link name}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get tagName() {\n return this.name;\n }\n set tagName(name) {\n this.name = name;\n }\n get attributes() {\n return Object.keys(this.attribs).map((name) => ({\n name,\n value: this.attribs[name],\n namespace: this[\"x-attribsNamespace\"]?.[name],\n prefix: this[\"x-attribsPrefix\"]?.[name],\n }));\n }\n /** Element namespace (parse5 only). */\n namespace;\n /** Element attribute namespaces (parse5 only). */\n \"x-attribsNamespace\";\n /** Element attribute namespace-related prefixes (parse5 only). */\n \"x-attribsPrefix\";\n}\n/**\n * Checks if `node` is an element node.\n * @param node Node to check.\n * @returns `true` if the node is an element node.\n */\nexport function isTag(node) {\n return isTagRaw(node);\n}\n/**\n * Checks if `node` is a CDATA node.\n * @param node Node to check.\n * @returns `true` if the node is a CDATA node.\n */\nexport function isCDATA(node) {\n return node.type === ElementType.CDATA;\n}\n/**\n * Checks if `node` is a text node.\n * @param node Node to check.\n * @returns `true` if the node is a text node.\n */\nexport function isText(node) {\n return node.type === ElementType.Text;\n}\n/**\n * Checks if `node` is a comment node.\n * @param node Node to check.\n * @returns `true` if the node is a comment node.\n */\nexport function isComment(node) {\n return node.type === ElementType.Comment;\n}\n/**\n * Checks if `node` is a directive node.\n * @param node Node to check.\n * @returns `true` if the node is a directive node.\n */\nexport function isDirective(node) {\n return node.type === ElementType.Directive;\n}\n/**\n * Checks if `node` is a document node.\n * @param node Node to check.\n * @returns `true` if the node is a document node.\n */\nexport function isDocument(node) {\n return node.type === ElementType.Root;\n}\n/**\n * Checks if `node` has children.\n * @param node Node to check.\n * @returns `true` if the node has children.\n */\nexport function hasChildren(node) {\n return Object.hasOwn(node, \"children\");\n}\n/**\n * Clone a node, and optionally its children.\n * @param node Node to clone.\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\nexport function cloneNode(node, recursive = false) {\n let result;\n if (isText(node)) {\n result = new Text(node.data);\n }\n else if (isComment(node)) {\n result = new Comment(node.data);\n }\n else if (isTag(node)) {\n const children = recursive ? cloneChildren(node.children) : [];\n const clone = new Element(node.name, { ...node.attribs }, children);\n for (const child of children) {\n child.parent = clone;\n }\n if (node.namespace != null) {\n clone.namespace = node.namespace;\n }\n if (node[\"x-attribsNamespace\"]) {\n clone[\"x-attribsNamespace\"] = { ...node[\"x-attribsNamespace\"] };\n }\n if (node[\"x-attribsPrefix\"]) {\n clone[\"x-attribsPrefix\"] = { ...node[\"x-attribsPrefix\"] };\n }\n result = clone;\n }\n else if (isCDATA(node)) {\n const children = recursive ? cloneChildren(node.children) : [];\n const clone = new CDATA(children);\n for (const child of children) {\n child.parent = clone;\n }\n result = clone;\n }\n else if (isDocument(node)) {\n const children = recursive ? cloneChildren(node.children) : [];\n const clone = new Document(children);\n for (const child of children) {\n child.parent = clone;\n }\n if (node[\"x-mode\"]) {\n clone[\"x-mode\"] = node[\"x-mode\"];\n }\n result = clone;\n }\n else if (isDirective(node)) {\n const instruction = new ProcessingInstruction(node.name, node.data);\n if (node[\"x-name\"] != null) {\n instruction[\"x-name\"] = node[\"x-name\"];\n instruction[\"x-publicId\"] = node[\"x-publicId\"];\n instruction[\"x-systemId\"] = node[\"x-systemId\"];\n }\n result = instruction;\n }\n else {\n throw new Error(`Not implemented yet: ${node.type}`);\n }\n result.startIndex = node.startIndex;\n result.endIndex = node.endIndex;\n if (node.sourceCodeLocation != null) {\n result.sourceCodeLocation = node.sourceCodeLocation;\n }\n return result;\n}\n/**\n * Clone a list of child nodes.\n * @param childs The child nodes to clone.\n * @returns A list of cloned child nodes.\n */\nfunction cloneChildren(childs) {\n const children = childs.map((child) => cloneNode(child, true));\n for (let index = 1; index < children.length; index++) {\n children[index].prev = children[index - 1];\n children[index - 1].next = children[index];\n }\n return children;\n}\n","import { ElementType } from \"domelementtype\";\nimport { CDATA, Comment, Document, Element, ProcessingInstruction, Text, } from \"./node.js\";\nexport * from \"./node.js\";\n// Default options\nconst defaultOptions = {\n withStartIndices: false,\n withEndIndices: false,\n xmlMode: false,\n};\n/**\n * Event-based handler that builds a DOM tree from parser callbacks.\n */\nexport class DomHandler {\n /** The elements of the DOM */\n dom = [];\n /** The root element for the DOM */\n root = new Document(this.dom);\n /** Called once parsing has completed. */\n callback;\n /** Settings for the handler. */\n options;\n /** Callback whenever a tag is closed. */\n elementCB;\n /** Indicated whether parsing has been completed. */\n done = false;\n /** Stack of open tags. */\n tagStack = [this.root];\n /** A data node that is still being written to. */\n lastNode = null;\n /** Reference to the parser instance. Used for location information. */\n parser = null;\n /**\n * @param callback Called once parsing has completed.\n * @param options Settings for the handler.\n * @param elementCB Callback whenever a tag is closed.\n */\n constructor(callback, options, elementCB) {\n // Make it possible to skip arguments, for backwards-compatibility\n if (typeof options === \"function\") {\n elementCB = options;\n options = defaultOptions;\n }\n if (typeof callback === \"object\") {\n options = callback;\n callback = undefined;\n }\n this.callback = callback ?? null;\n this.options = options ?? defaultOptions;\n this.elementCB = elementCB ?? null;\n }\n onparserinit(parser) {\n this.parser = parser;\n }\n // Resets the handler back to starting state\n onreset() {\n this.dom = [];\n this.root = new Document(this.dom);\n this.done = false;\n this.tagStack = [this.root];\n this.lastNode = null;\n this.parser = null;\n }\n // Signals the handler that parsing is done\n onend() {\n if (this.done)\n return;\n this.done = true;\n this.parser = null;\n this.handleCallback(null);\n }\n onerror(error) {\n this.handleCallback(error);\n }\n onclosetag() {\n this.lastNode = null;\n const element = this.tagStack.pop();\n if (this.options.withEndIndices && this.parser) {\n element.endIndex = this.parser.endIndex;\n }\n if (this.elementCB)\n this.elementCB(element);\n }\n onopentag(name, attribs) {\n const type = this.options.xmlMode ? ElementType.Tag : undefined;\n const element = new Element(name, attribs, undefined, type);\n this.addNode(element);\n this.tagStack.push(element);\n }\n ontext(data) {\n const { lastNode } = this;\n if (lastNode && lastNode.type === ElementType.Text) {\n lastNode.data += data;\n if (this.options.withEndIndices && this.parser) {\n lastNode.endIndex = this.parser.endIndex;\n }\n }\n else {\n const node = new Text(data);\n this.addNode(node);\n this.lastNode = node;\n }\n }\n oncomment(data) {\n if (this.lastNode && this.lastNode.type === ElementType.Comment) {\n this.lastNode.data += data;\n return;\n }\n const node = new Comment(data);\n this.addNode(node);\n this.lastNode = node;\n }\n oncommentend() {\n this.lastNode = null;\n }\n oncdatastart() {\n const text = new Text(\"\");\n const node = new CDATA([text]);\n this.addNode(node);\n text.parent = node;\n this.lastNode = text;\n }\n oncdataend() {\n this.lastNode = null;\n }\n onprocessinginstruction(name, data) {\n const node = new ProcessingInstruction(name, data);\n this.addNode(node);\n }\n handleCallback(error) {\n if (typeof this.callback === \"function\") {\n this.callback(error, this.dom);\n }\n else if (error) {\n throw error;\n }\n }\n addNode(node) {\n const parent = this.tagStack[this.tagStack.length - 1];\n const previousSibling = parent.children[parent.children.length - 1];\n if (this.options.withStartIndices && this.parser) {\n node.startIndex = this.parser.startIndex;\n }\n if (this.options.withEndIndices && this.parser) {\n node.endIndex = this.parser.endIndex;\n }\n parent.children.push(node);\n if (previousSibling) {\n node.prev = previousSibling;\n previousSibling.next = node;\n }\n node.parent = parent;\n this.lastNode = null;\n }\n}\nexport default DomHandler;\n","const require_constants = require(\"./constants.js\");\nlet domhandler = require(\"domhandler\");\n//#region src/client/utilities.ts\nconst CARRIAGE_RETURN = \"\\r\";\nconst CARRIAGE_RETURN_REGEX = new RegExp(CARRIAGE_RETURN, \"g\");\nconst CARRIAGE_RETURN_PLACEHOLDER = `__HTML_DOM_PARSER_CARRIAGE_RETURN_PLACEHOLDER_${Date.now().toString()}__`;\nconst CARRIAGE_RETURN_PLACEHOLDER_REGEX = new RegExp(CARRIAGE_RETURN_PLACEHOLDER, \"g\");\n/**\n* Gets case-sensitive tag name.\n*\n* @param tagName - Tag name in lowercase.\n* @returns - Case-sensitive tag name.\n*/\nfunction getCaseSensitiveTagName(tagName) {\n\treturn require_constants.CASE_SENSITIVE_TAG_NAMES_MAP[tagName];\n}\n/**\n* Formats DOM attributes to a hash map.\n*\n* @param attributes - List of attributes.\n* @returns - Map of attribute name to value.\n*/\nfunction formatAttributes(attributes) {\n\tconst map = {};\n\tlet index = 0;\n\tconst attributesLength = attributes.length;\n\tfor (; index < attributesLength; index++) {\n\t\tconst attribute = attributes[index];\n\t\tmap[attribute.name] = attribute.value;\n\t}\n\treturn map;\n}\n/**\n* Corrects the tag name if it is case-sensitive (SVG).\n* Otherwise, returns the lowercase tag name (HTML).\n*\n* @param tagName - Lowercase tag name.\n* @returns - Formatted tag name.\n*/\nfunction formatTagName(tagName) {\n\ttagName = tagName.toLowerCase();\n\tconst caseSensitiveTagName = getCaseSensitiveTagName(tagName);\n\tif (caseSensitiveTagName) return caseSensitiveTagName;\n\treturn tagName;\n}\n/**\n* Checks if an HTML string contains an opening tag (case-insensitive).\n*\n* @param html - HTML string.\n* @param tagName - Tag name to search for (e.g., 'head' or 'body').\n* @returns - Whether the tag is found.\n*/\nfunction hasOpenTag(html, tagName) {\n\tconst openTag = \"<\" + tagName;\n\tconst index = html.toLowerCase().indexOf(openTag);\n\tif (index === -1) return false;\n\tconst char = html[index + openTag.length];\n\treturn char === \">\" || char === \" \" || char === \"\t\" || char === \"\\n\" || char === \"\\r\" || char === \"/\";\n}\n/**\n* Escapes special characters before parsing.\n*\n* @param html - The HTML string.\n* @returns - HTML string with escaped special characters.\n*/\nfunction escapeSpecialCharacters(html) {\n\treturn html.replace(CARRIAGE_RETURN_REGEX, CARRIAGE_RETURN_PLACEHOLDER);\n}\n/**\n* Reverts escaped special characters back to actual characters.\n*\n* @param text - The text with escaped characters.\n* @returns - Text with escaped characters reverted.\n*/\nfunction revertEscapedCharacters(text) {\n\treturn text.replace(CARRIAGE_RETURN_PLACEHOLDER_REGEX, CARRIAGE_RETURN);\n}\n/**\n* Transforms DOM nodes to `domhandler` nodes.\n*\n* @param nodes - DOM nodes.\n* @param parent - Parent node.\n* @param directive - Directive.\n* @returns - Nodes.\n*/\nfunction formatDOM(nodes, parent = null, directive) {\n\tconst domNodes = [];\n\tlet current;\n\tlet index = 0;\n\tconst nodesLength = nodes.length;\n\tfor (; index < nodesLength; index++) {\n\t\tconst node = nodes[index];\n\t\tswitch (node.nodeType) {\n\t\t\tcase 1: {\n\t\t\t\tconst tagName = formatTagName(node.nodeName);\n\t\t\t\tcurrent = new domhandler.Element(tagName, formatAttributes(node.attributes));\n\t\t\t\tcurrent.children = formatDOM(tagName === \"template\" ? node.content.childNodes : node.childNodes, current);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t/* v8 ignore start */\n\t\t\tcase 3:\n\t\t\t\tcurrent = new domhandler.Text(revertEscapedCharacters(node.nodeValue ?? \"\"));\n\t\t\t\tbreak;\n\t\t\tcase 8:\n\t\t\t\tcurrent = new domhandler.Comment(node.nodeValue ?? \"\");\n\t\t\t\tbreak;\n\t\t\t/* v8 ignore stop */\n\t\t\tdefault: continue;\n\t\t}\n\t\tconst prev = domNodes[index - 1] ?? null;\n\t\tif (prev) prev.next = current;\n\t\tcurrent.parent = parent;\n\t\tcurrent.prev = prev;\n\t\tcurrent.next = null;\n\t\tdomNodes.push(current);\n\t}\n\tif (directive) {\n\t\tcurrent = new domhandler.ProcessingInstruction(directive.substring(0, directive.indexOf(\" \")).toLowerCase(), directive);\n\t\tcurrent.next = domNodes[0] ?? null;\n\t\tcurrent.parent = parent;\n\t\tdomNodes.unshift(current);\n\t\tif (domNodes[1]) domNodes[1].prev = domNodes[0];\n\t}\n\treturn domNodes;\n}\n//#endregion\nexports.escapeSpecialCharacters = escapeSpecialCharacters;\nexports.formatDOM = formatDOM;\nexports.hasOpenTag = hasOpenTag;\n\n//# sourceMappingURL=utilities.js.map","const require_utilities = require(\"./utilities.js\");\n//#region src/client/domparser.ts\nconst HTML = \"html\";\nconst HEAD = \"head\";\nconst BODY = \"body\";\nconst FIRST_TAG_REGEX = /<([a-zA-Z]+[0-9]?)/;\nfunction getHTMLForInnerHTML(html, trustedTypePolicy) {\n\treturn trustedTypePolicy ? trustedTypePolicy.createHTML(html) : html;\n}\n/* v8 ignore start */\nlet parseFromDocument = (html, tagName, trustedTypePolicy) => {\n\tthrow new Error(\"This browser does not support `document.implementation.createHTMLDocument`\");\n};\nlet parseFromString = (html, tagName, trustedTypePolicy) => {\n\tthrow new Error(\"This browser does not support `DOMParser.prototype.parseFromString`\");\n};\nconst DOMParser = typeof window === \"object\" && window.DOMParser;\n/**\n* DOMParser (performance: slow).\n*\n* @see https://developer.mozilla.org/docs/Web/API/DOMParser#Parsing_an_SVG_or_HTML_document\n*/\nif (typeof DOMParser === \"function\") {\n\tconst domParser = new DOMParser();\n\tconst mimeType = \"text/html\";\n\t/**\n\t* Creates an HTML document using `DOMParser.parseFromString`.\n\t*\n\t* @param html - The HTML string.\n\t* @param tagName - The element to render the HTML (with 'body' as fallback).\n\t* @returns - Document.\n\t*/\n\tparseFromString = (html, tagName, trustedTypePolicy) => {\n\t\tif (tagName) html = `<${tagName}>${html}</${tagName}>`;\n\t\treturn domParser.parseFromString(html, mimeType);\n\t};\n\tparseFromDocument = parseFromString;\n}\n/**\n* DOMImplementation (performance: fair).\n*\n* @see https://developer.mozilla.org/docs/Web/API/DOMImplementation/createHTMLDocument\n*/\nif (typeof document === \"object\" && document.implementation) {\n\tconst htmlDocument = document.implementation.createHTMLDocument();\n\t/**\n\t* Use HTML document created by `document.implementation.createHTMLDocument`.\n\t*\n\t* @param html - The HTML string.\n\t* @param tagName - The element to render the HTML (with 'body' as fallback).\n\t* @returns - Document\n\t*/\n\tparseFromDocument = function(html, tagName, trustedTypePolicy) {\n\t\tif (tagName) {\n\t\t\tconst element = htmlDocument.documentElement.querySelector(tagName);\n\t\t\tif (element) element.innerHTML = getHTMLForInnerHTML(html, trustedTypePolicy);\n\t\t\treturn htmlDocument;\n\t\t}\n\t\thtmlDocument.documentElement.innerHTML = getHTMLForInnerHTML(html, trustedTypePolicy);\n\t\treturn htmlDocument;\n\t};\n}\n/**\n* Template (performance: fast).\n*\n* @see https://developer.mozilla.org/docs/Web/HTML/Element/template\n*/\nconst template = typeof document === \"object\" && document.createElement(\"template\");\nlet parseFromTemplate;\nif (template && template.content)\n /**\n* Uses a template element (content fragment) to parse HTML.\n*\n* @param html - HTML string.\n* @returns - Nodes.\n*/\nparseFromTemplate = (html, trustedTypePolicy) => {\n\ttemplate.innerHTML = getHTMLForInnerHTML(html, trustedTypePolicy);\n\treturn template.content.childNodes;\n};\nconst createNodeList = () => document.createDocumentFragment().childNodes;\n/* v8 ignore stop */\n/**\n* Parses HTML string to DOM nodes.\n*\n* @param html - HTML markup.\n* @param trustedTypePolicy - Trusted Types policy.\n* @returns - DOM nodes.\n*/\nfunction domparser(html, trustedTypePolicy) {\n\thtml = require_utilities.escapeSpecialCharacters(html);\n\tconst firstTagName = FIRST_TAG_REGEX.exec(html)?.[1]?.toLowerCase();\n\tswitch (firstTagName) {\n\t\tcase HTML: {\n\t\t\tconst doc = parseFromString(html);\n\t\t\tif (!require_utilities.hasOpenTag(html, HEAD)) {\n\t\t\t\tconst element = doc.querySelector(HEAD);\n\t\t\t\telement?.parentNode?.removeChild(element);\n\t\t\t}\n\t\t\tif (!require_utilities.hasOpenTag(html, BODY)) {\n\t\t\t\tconst element = doc.querySelector(BODY);\n\t\t\t\telement?.parentNode?.removeChild(element);\n\t\t\t}\n\t\t\treturn doc.querySelectorAll(HTML);\n\t\t}\n\t\tcase HEAD:\n\t\tcase BODY: {\n\t\t\tconst elements = parseFromDocument(html, void 0, trustedTypePolicy).querySelectorAll(firstTagName);\n\t\t\t/* v8 ignore next */\n\t\t\tif (require_utilities.hasOpenTag(html, BODY) && require_utilities.hasOpenTag(html, HEAD)) return elements[0].parentNode?.childNodes ?? createNodeList();\n\t\t\treturn elements;\n\t\t}\n\t\t/* v8 ignore start */\n\t\tdefault:\n\t\t\tif (parseFromTemplate) return parseFromTemplate(html, trustedTypePolicy);\n\t\t\treturn parseFromDocument(html, BODY, trustedTypePolicy).querySelector(BODY)?.childNodes ?? createNodeList();\n\t}\n}\n//#endregion\nexports.default = domparser;\n\n//# sourceMappingURL=domparser.js.map","Object.defineProperties(exports, {\n\t__esModule: { value: true },\n\t[Symbol.toStringTag]: { value: \"Module\" }\n});\nconst require_utilities = require(\"./utilities.js\");\nconst require_domparser = require(\"./domparser.js\");\n//#region src/client/html-to-dom.ts\nconst DIRECTIVE_REGEX = /<(![a-zA-Z\\s]+)>/;\n/**\n* Parses HTML string to DOM nodes in browser.\n*\n* @param html - HTML markup.\n* @param options - Parser options.\n* @returns - DOM elements.\n*/\nfunction HTMLDOMParser(html, options) {\n\tif (typeof html !== \"string\") throw new TypeError(\"First argument must be a string\");\n\tif (!html) return [];\n\tconst match = DIRECTIVE_REGEX.exec(html);\n\tconst directive = match ? match[1] : void 0;\n\treturn require_utilities.formatDOM(require_domparser.default(html, options?.trustedTypePolicy), null, directive);\n}\n//#endregion\nexports.default = HTMLDOMParser;\n\n//# sourceMappingURL=html-to-dom.js.map","// An attribute in which the DOM/SVG standard name is the same as the React prop name (e.g., 'accept').\nvar SAME = 0;\nexports.SAME = SAME;\n\n// An attribute in which the React prop name is the camelcased version of the DOM/SVG standard name (e.g., 'acceptCharset').\nvar CAMELCASE = 1;\nexports.CAMELCASE = CAMELCASE;\n\nexports.possibleStandardNames = {\n accept: 0,\n acceptCharset: 1,\n 'accept-charset': 'acceptCharset',\n accessKey: 1,\n action: 0,\n allowFullScreen: 1,\n alt: 0,\n as: 0,\n async: 0,\n autoCapitalize: 1,\n autoComplete: 1,\n autoCorrect: 1,\n autoFocus: 1,\n autoPlay: 1,\n autoSave: 1,\n capture: 0,\n cellPadding: 1,\n cellSpacing: 1,\n challenge: 0,\n charSet: 1,\n checked: 0,\n children: 0,\n cite: 0,\n class: 'className',\n classID: 1,\n className: 1,\n cols: 0,\n colSpan: 1,\n content: 0,\n contentEditable: 1,\n contextMenu: 1,\n controls: 0,\n controlsList: 1,\n coords: 0,\n crossOrigin: 1,\n dangerouslySetInnerHTML: 1,\n data: 0,\n dateTime: 1,\n default: 0,\n defaultChecked: 1,\n defaultValue: 1,\n defer: 0,\n dir: 0,\n disabled: 0,\n disablePictureInPicture: 1,\n disableRemotePlayback: 1,\n download: 0,\n draggable: 0,\n encType: 1,\n enterKeyHint: 1,\n for: 'htmlFor',\n form: 0,\n formMethod: 1,\n formAction: 1,\n formEncType: 1,\n formNoValidate: 1,\n formTarget: 1,\n frameBorder: 1,\n headers: 0,\n height: 0,\n hidden: 0,\n high: 0,\n href: 0,\n hrefLang: 1,\n htmlFor: 1,\n httpEquiv: 1,\n 'http-equiv': 'httpEquiv',\n icon: 0,\n id: 0,\n innerHTML: 1,\n inputMode: 1,\n integrity: 0,\n is: 0,\n itemID: 1,\n itemProp: 1,\n itemRef: 1,\n itemScope: 1,\n itemType: 1,\n keyParams: 1,\n keyType: 1,\n kind: 0,\n label: 0,\n lang: 0,\n list: 0,\n loop: 0,\n low: 0,\n manifest: 0,\n marginWidth: 1,\n marginHeight: 1,\n max: 0,\n maxLength: 1,\n media: 0,\n mediaGroup: 1,\n method: 0,\n min: 0,\n minLength: 1,\n multiple: 0,\n muted: 0,\n name: 0,\n noModule: 1,\n nonce: 0,\n noValidate: 1,\n open: 0,\n optimum: 0,\n pattern: 0,\n placeholder: 0,\n playsInline: 1,\n poster: 0,\n preload: 0,\n profile: 0,\n radioGroup: 1,\n readOnly: 1,\n referrerPolicy: 1,\n rel: 0,\n required: 0,\n reversed: 0,\n role: 0,\n rows: 0,\n rowSpan: 1,\n sandbox: 0,\n scope: 0,\n scoped: 0,\n scrolling: 0,\n seamless: 0,\n selected: 0,\n shape: 0,\n size: 0,\n sizes: 0,\n span: 0,\n spellCheck: 1,\n src: 0,\n srcDoc: 1,\n srcLang: 1,\n srcSet: 1,\n start: 0,\n step: 0,\n style: 0,\n summary: 0,\n tabIndex: 1,\n target: 0,\n title: 0,\n type: 0,\n useMap: 1,\n value: 0,\n width: 0,\n wmode: 0,\n wrap: 0,\n about: 0,\n accentHeight: 1,\n 'accent-height': 'accentHeight',\n accumulate: 0,\n additive: 0,\n alignmentBaseline: 1,\n 'alignment-baseline': 'alignmentBaseline',\n allowReorder: 1,\n alphabetic: 0,\n amplitude: 0,\n arabicForm: 1,\n 'arabic-form': 'arabicForm',\n ascent: 0,\n attributeName: 1,\n attributeType: 1,\n autoReverse: 1,\n azimuth: 0,\n baseFrequency: 1,\n baselineShift: 1,\n 'baseline-shift': 'baselineShift',\n baseProfile: 1,\n bbox: 0,\n begin: 0,\n bias: 0,\n by: 0,\n calcMode: 1,\n capHeight: 1,\n 'cap-height': 'capHeight',\n clip: 0,\n clipPath: 1,\n 'clip-path': 'clipPath',\n clipPathUnits: 1,\n clipRule: 1,\n 'clip-rule': 'clipRule',\n color: 0,\n colorInterpolation: 1,\n 'color-interpolation': 'colorInterpolation',\n colorInterpolationFilters: 1,\n 'color-interpolation-filters': 'colorInterpolationFilters',\n colorProfile: 1,\n 'color-profile': 'colorProfile',\n colorRendering: 1,\n 'color-rendering': 'colorRendering',\n contentScriptType: 1,\n contentStyleType: 1,\n cursor: 0,\n cx: 0,\n cy: 0,\n d: 0,\n datatype: 0,\n decelerate: 0,\n descent: 0,\n diffuseConstant: 1,\n direction: 0,\n display: 0,\n divisor: 0,\n dominantBaseline: 1,\n 'dominant-baseline': 'dominantBaseline',\n dur: 0,\n dx: 0,\n dy: 0,\n edgeMode: 1,\n elevation: 0,\n enableBackground: 1,\n 'enable-background': 'enableBackground',\n end: 0,\n exponent: 0,\n externalResourcesRequired: 1,\n fill: 0,\n fillOpacity: 1,\n 'fill-opacity': 'fillOpacity',\n fillRule: 1,\n 'fill-rule': 'fillRule',\n filter: 0,\n filterRes: 1,\n filterUnits: 1,\n floodOpacity: 1,\n 'flood-opacity': 'floodOpacity',\n floodColor: 1,\n 'flood-color': 'floodColor',\n focusable: 0,\n fontFamily: 1,\n 'font-family': 'fontFamily',\n fontSize: 1,\n 'font-size': 'fontSize',\n fontSizeAdjust: 1,\n 'font-size-adjust': 'fontSizeAdjust',\n fontStretch: 1,\n 'font-stretch': 'fontStretch',\n fontStyle: 1,\n 'font-style': 'fontStyle',\n fontVariant: 1,\n 'font-variant': 'fontVariant',\n fontWeight: 1,\n 'font-weight': 'fontWeight',\n format: 0,\n from: 0,\n fx: 0,\n fy: 0,\n g1: 0,\n g2: 0,\n glyphName: 1,\n 'glyph-name': 'glyphName',\n glyphOrientationHorizontal: 1,\n 'glyph-orientation-horizontal': 'glyphOrientationHorizontal',\n glyphOrientationVertical: 1,\n 'glyph-orientation-vertical': 'glyphOrientationVertical',\n glyphRef: 1,\n gradientTransform: 1,\n gradientUnits: 1,\n hanging: 0,\n horizAdvX: 1,\n 'horiz-adv-x': 'horizAdvX',\n horizOriginX: 1,\n 'horiz-origin-x': 'horizOriginX',\n ideographic: 0,\n imageRendering: 1,\n 'image-rendering': 'imageRendering',\n in2: 0,\n in: 0,\n inlist: 0,\n intercept: 0,\n k1: 0,\n k2: 0,\n k3: 0,\n k4: 0,\n k: 0,\n kernelMatrix: 1,\n kernelUnitLength: 1,\n kerning: 0,\n keyPoints: 1,\n keySplines: 1,\n keyTimes: 1,\n lengthAdjust: 1,\n letterSpacing: 1,\n 'letter-spacing': 'letterSpacing',\n lightingColor: 1,\n 'lighting-color': 'lightingColor',\n limitingConeAngle: 1,\n local: 0,\n markerEnd: 1,\n 'marker-end': 'markerEnd',\n markerHeight: 1,\n markerMid: 1,\n 'marker-mid': 'markerMid',\n markerStart: 1,\n 'marker-start': 'markerStart',\n markerUnits: 1,\n markerWidth: 1,\n mask: 0,\n maskContentUnits: 1,\n maskUnits: 1,\n mathematical: 0,\n mode: 0,\n numOctaves: 1,\n offset: 0,\n opacity: 0,\n operator: 0,\n order: 0,\n orient: 0,\n orientation: 0,\n origin: 0,\n overflow: 0,\n overlinePosition: 1,\n 'overline-position': 'overlinePosition',\n overlineThickness: 1,\n 'overline-thickness': 'overlineThickness',\n paintOrder: 1,\n 'paint-order': 'paintOrder',\n panose1: 0,\n 'panose-1': 'panose1',\n pathLength: 1,\n patternContentUnits: 1,\n patternTransform: 1,\n patternUnits: 1,\n pointerEvents: 1,\n 'pointer-events': 'pointerEvents',\n points: 0,\n pointsAtX: 1,\n pointsAtY: 1,\n pointsAtZ: 1,\n prefix: 0,\n preserveAlpha: 1,\n preserveAspectRatio: 1,\n primitiveUnits: 1,\n property: 0,\n r: 0,\n radius: 0,\n refX: 1,\n refY: 1,\n renderingIntent: 1,\n 'rendering-intent': 'renderingIntent',\n repeatCount: 1,\n repeatDur: 1,\n requiredExtensions: 1,\n requiredFeatures: 1,\n resource: 0,\n restart: 0,\n result: 0,\n results: 0,\n rotate: 0,\n rx: 0,\n ry: 0,\n scale: 0,\n security: 0,\n seed: 0,\n shapeRendering: 1,\n 'shape-rendering': 'shapeRendering',\n slope: 0,\n spacing: 0,\n specularConstant: 1,\n specularExponent: 1,\n speed: 0,\n spreadMethod: 1,\n startOffset: 1,\n stdDeviation: 1,\n stemh: 0,\n stemv: 0,\n stitchTiles: 1,\n stopColor: 1,\n 'stop-color': 'stopColor',\n stopOpacity: 1,\n 'stop-opacity': 'stopOpacity',\n strikethroughPosition: 1,\n 'strikethrough-position': 'strikethroughPosition',\n strikethroughThickness: 1,\n 'strikethrough-thickness': 'strikethroughThickness',\n string: 0,\n stroke: 0,\n strokeDasharray: 1,\n 'stroke-dasharray': 'strokeDasharray',\n strokeDashoffset: 1,\n 'stroke-dashoffset': 'strokeDashoffset',\n strokeLinecap: 1,\n 'stroke-linecap': 'strokeLinecap',\n strokeLinejoin: 1,\n 'stroke-linejoin': 'strokeLinejoin',\n strokeMiterlimit: 1,\n 'stroke-miterlimit': 'strokeMiterlimit',\n strokeWidth: 1,\n 'stroke-width': 'strokeWidth',\n strokeOpacity: 1,\n 'stroke-opacity': 'strokeOpacity',\n suppressContentEditableWarning: 1,\n suppressHydrationWarning: 1,\n surfaceScale: 1,\n systemLanguage: 1,\n tableValues: 1,\n targetX: 1,\n targetY: 1,\n textAnchor: 1,\n 'text-anchor': 'textAnchor',\n textDecoration: 1,\n 'text-decoration': 'textDecoration',\n textLength: 1,\n textRendering: 1,\n 'text-rendering': 'textRendering',\n to: 0,\n transform: 0,\n typeof: 0,\n u1: 0,\n u2: 0,\n underlinePosition: 1,\n 'underline-position': 'underlinePosition',\n underlineThickness: 1,\n 'underline-thickness': 'underlineThickness',\n unicode: 0,\n unicodeBidi: 1,\n 'unicode-bidi': 'unicodeBidi',\n unicodeRange: 1,\n 'unicode-range': 'unicodeRange',\n unitsPerEm: 1,\n 'units-per-em': 'unitsPerEm',\n unselectable: 0,\n vAlphabetic: 1,\n 'v-alphabetic': 'vAlphabetic',\n values: 0,\n vectorEffect: 1,\n 'vector-effect': 'vectorEffect',\n version: 0,\n vertAdvY: 1,\n 'vert-adv-y': 'vertAdvY',\n vertOriginX: 1,\n 'vert-origin-x': 'vertOriginX',\n vertOriginY: 1,\n 'vert-origin-y': 'vertOriginY',\n vHanging: 1,\n 'v-hanging': 'vHanging',\n vIdeographic: 1,\n 'v-ideographic': 'vIdeographic',\n viewBox: 1,\n viewTarget: 1,\n visibility: 0,\n vMathematical: 1,\n 'v-mathematical': 'vMathematical',\n vocab: 0,\n widths: 0,\n wordSpacing: 1,\n 'word-spacing': 'wordSpacing',\n writingMode: 1,\n 'writing-mode': 'writingMode',\n x1: 0,\n x2: 0,\n x: 0,\n xChannelSelector: 1,\n xHeight: 1,\n 'x-height': 'xHeight',\n xlinkActuate: 1,\n 'xlink:actuate': 'xlinkActuate',\n xlinkArcrole: 1,\n 'xlink:arcrole': 'xlinkArcrole',\n xlinkHref: 1,\n 'xlink:href': 'xlinkHref',\n xlinkRole: 1,\n 'xlink:role': 'xlinkRole',\n xlinkShow: 1,\n 'xlink:show': 'xlinkShow',\n xlinkTitle: 1,\n 'xlink:title': 'xlinkTitle',\n xlinkType: 1,\n 'xlink:type': 'xlinkType',\n xmlBase: 1,\n 'xml:base': 'xmlBase',\n xmlLang: 1,\n 'xml:lang': 'xmlLang',\n xmlns: 0,\n 'xml:space': 'xmlSpace',\n xmlnsXlink: 1,\n 'xmlns:xlink': 'xmlnsXlink',\n xmlSpace: 1,\n y1: 0,\n y2: 0,\n y: 0,\n yChannelSelector: 1,\n z: 0,\n zoomAndPan: 1\n};\n","'use strict';\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\n\n\n\n\n// A reserved attribute.\n// It is handled by React separately and shouldn't be written to the DOM.\nconst RESERVED = 0;\n\n// A simple string attribute.\n// Attributes that aren't in the filter are presumed to have this type.\nconst STRING = 1;\n\n// A string attribute that accepts booleans in React. In HTML, these are called\n// \"enumerated\" attributes with \"true\" and \"false\" as possible values.\n// When true, it should be set to a \"true\" string.\n// When false, it should be set to a \"false\" string.\nconst BOOLEANISH_STRING = 2;\n\n// A real boolean attribute.\n// When true, it should be present (set either to an empty string or its name).\n// When false, it should be omitted.\nconst BOOLEAN = 3;\n\n// An attribute that can be used as a flag as well as with a value.\n// When true, it should be present (set either to an empty string or its name).\n// When false, it should be omitted.\n// For any other value, should be present with that value.\nconst OVERLOADED_BOOLEAN = 4;\n\n// An attribute that must be numeric or parse as a numeric.\n// When falsy, it should be removed.\nconst NUMERIC = 5;\n\n// An attribute that must be positive numeric or parse as a positive numeric.\n// When falsy, it should be removed.\nconst POSITIVE_NUMERIC = 6;\n\nfunction getPropertyInfo(name) {\n return properties.hasOwnProperty(name) ? properties[name] : null;\n}\n\nfunction PropertyInfoRecord(\n name,\n type,\n mustUseProperty,\n attributeName,\n attributeNamespace,\n sanitizeURL,\n removeEmptyString,\n) {\n this.acceptsBooleans =\n type === BOOLEANISH_STRING ||\n type === BOOLEAN ||\n type === OVERLOADED_BOOLEAN;\n this.attributeName = attributeName;\n this.attributeNamespace = attributeNamespace;\n this.mustUseProperty = mustUseProperty;\n this.propertyName = name;\n this.type = type;\n this.sanitizeURL = sanitizeURL;\n this.removeEmptyString = removeEmptyString;\n}\n\n// When adding attributes to this list, be sure to also add them to\n// the `possibleStandardNames` module to ensure casing and incorrect\n// name warnings.\nconst properties = {};\n\n// These props are reserved by React. They shouldn't be written to the DOM.\nconst reservedProps = [\n 'children',\n 'dangerouslySetInnerHTML',\n // TODO: This prevents the assignment of defaultValue to regular\n // elements (not just inputs). Now that ReactDOMInput assigns to the\n // defaultValue property -- do we need this?\n 'defaultValue',\n 'defaultChecked',\n 'innerHTML',\n 'suppressContentEditableWarning',\n 'suppressHydrationWarning',\n 'style',\n];\n\nreservedProps.forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n RESERVED,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// A few React string attributes have a different name.\n// This is a mapping from React prop names to the attribute names.\n[\n ['acceptCharset', 'accept-charset'],\n ['className', 'class'],\n ['htmlFor', 'for'],\n ['httpEquiv', 'http-equiv'],\n].forEach(([name, attributeName]) => {\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are \"enumerated\" HTML attributes that accept \"true\" and \"false\".\n// In React, we let users pass `true` and `false` even though technically\n// these aren't boolean attributes (they are coerced to strings).\n['contentEditable', 'draggable', 'spellCheck', 'value'].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEANISH_STRING,\n false, // mustUseProperty\n name.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are \"enumerated\" SVG attributes that accept \"true\" and \"false\".\n// In React, we let users pass `true` and `false` even though technically\n// these aren't boolean attributes (they are coerced to strings).\n// Since these are SVG attributes, their attribute names are case-sensitive.\n[\n 'autoReverse',\n 'externalResourcesRequired',\n 'focusable',\n 'preserveAlpha',\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEANISH_STRING,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML boolean attributes.\n[\n 'allowFullScreen',\n 'async',\n // Note: there is a special case that prevents it from being written to the DOM\n // on the client side because the browsers are inconsistent. Instead we call focus().\n 'autoFocus',\n 'autoPlay',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'disablePictureInPicture',\n 'disableRemotePlayback',\n 'formNoValidate',\n 'hidden',\n 'loop',\n 'noModule',\n 'noValidate',\n 'open',\n 'playsInline',\n 'readOnly',\n 'required',\n 'reversed',\n 'scoped',\n 'seamless',\n // Microdata\n 'itemScope',\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEAN,\n false, // mustUseProperty\n name.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are the few React props that we set as DOM properties\n// rather than attributes. These are all booleans.\n[\n 'checked',\n // Note: `option.selected` is not updated if `select.multiple` is\n // disabled with `removeAttribute`. We have special logic for handling this.\n 'multiple',\n 'muted',\n 'selected',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEAN,\n true, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML attributes that are \"overloaded booleans\": they behave like\n// booleans, but can also accept a string value.\n[\n 'capture',\n 'download',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n OVERLOADED_BOOLEAN,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML attributes that must be positive numbers.\n[\n 'cols',\n 'rows',\n 'size',\n 'span',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n POSITIVE_NUMERIC,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML attributes that must be numbers.\n['rowSpan', 'start'].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n NUMERIC,\n false, // mustUseProperty\n name.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\nconst CAMELIZE = /[\\-\\:]([a-z])/g;\nconst capitalize = token => token[1].toUpperCase();\n\n// This is a list of all SVG attributes that need special casing, namespacing,\n// or boolean value assignment. Regular attributes that just accept strings\n// and have the same names are omitted, just like in the HTML attribute filter.\n// Some of these attributes can be hard to find. This list was created by\n// scraping the MDN documentation.\n[\n 'accent-height',\n 'alignment-baseline',\n 'arabic-form',\n 'baseline-shift',\n 'cap-height',\n 'clip-path',\n 'clip-rule',\n 'color-interpolation',\n 'color-interpolation-filters',\n 'color-profile',\n 'color-rendering',\n 'dominant-baseline',\n 'enable-background',\n 'fill-opacity',\n 'fill-rule',\n 'flood-color',\n 'flood-opacity',\n 'font-family',\n 'font-size',\n 'font-size-adjust',\n 'font-stretch',\n 'font-style',\n 'font-variant',\n 'font-weight',\n 'glyph-name',\n 'glyph-orientation-horizontal',\n 'glyph-orientation-vertical',\n 'horiz-adv-x',\n 'horiz-origin-x',\n 'image-rendering',\n 'letter-spacing',\n 'lighting-color',\n 'marker-end',\n 'marker-mid',\n 'marker-start',\n 'overline-position',\n 'overline-thickness',\n 'paint-order',\n 'panose-1',\n 'pointer-events',\n 'rendering-intent',\n 'shape-rendering',\n 'stop-color',\n 'stop-opacity',\n 'strikethrough-position',\n 'strikethrough-thickness',\n 'stroke-dasharray',\n 'stroke-dashoffset',\n 'stroke-linecap',\n 'stroke-linejoin',\n 'stroke-miterlimit',\n 'stroke-opacity',\n 'stroke-width',\n 'text-anchor',\n 'text-decoration',\n 'text-rendering',\n 'underline-position',\n 'underline-thickness',\n 'unicode-bidi',\n 'unicode-range',\n 'units-per-em',\n 'v-alphabetic',\n 'v-hanging',\n 'v-ideographic',\n 'v-mathematical',\n 'vector-effect',\n 'vert-adv-y',\n 'vert-origin-x',\n 'vert-origin-y',\n 'word-spacing',\n 'writing-mode',\n 'xmlns:xlink',\n 'x-height',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(attributeName => {\n const name = attributeName.replace(CAMELIZE, capitalize);\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName,\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// String SVG attributes with the xlink namespace.\n[\n 'xlink:actuate',\n 'xlink:arcrole',\n 'xlink:role',\n 'xlink:show',\n 'xlink:title',\n 'xlink:type',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(attributeName => {\n const name = attributeName.replace(CAMELIZE, capitalize);\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName,\n 'http://www.w3.org/1999/xlink',\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// String SVG attributes with the xml namespace.\n[\n 'xml:base',\n 'xml:lang',\n 'xml:space',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(attributeName => {\n const name = attributeName.replace(CAMELIZE, capitalize);\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName,\n 'http://www.w3.org/XML/1998/namespace',\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These attribute exists both in HTML and SVG.\n// The attribute name is case-sensitive in SVG so we can't just use\n// the React name like we do for attributes that exist only in HTML.\n['tabIndex', 'crossOrigin'].forEach(attributeName => {\n properties[attributeName] = new PropertyInfoRecord(\n attributeName,\n STRING,\n false, // mustUseProperty\n attributeName.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These attributes accept URLs. These must not allow javascript: URLS.\n// These will also need to accept Trusted Types object in the future.\nconst xlinkHref = 'xlinkHref';\nproperties[xlinkHref] = new PropertyInfoRecord(\n 'xlinkHref',\n STRING,\n false, // mustUseProperty\n 'xlink:href',\n 'http://www.w3.org/1999/xlink',\n true, // sanitizeURL\n false, // removeEmptyString\n);\n\n['src', 'href', 'action', 'formAction'].forEach(attributeName => {\n properties[attributeName] = new PropertyInfoRecord(\n attributeName,\n STRING,\n false, // mustUseProperty\n attributeName.toLowerCase(), // attributeName\n null, // attributeNamespace\n true, // sanitizeURL\n true, // removeEmptyString\n );\n});\n\n// \nconst {\n CAMELCASE,\n SAME,\n possibleStandardNames: possibleStandardNamesOptimized\n} = require('../lib/possibleStandardNamesOptimized');\n\nconst ATTRIBUTE_NAME_START_CHAR =\n ':A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\n\nconst ATTRIBUTE_NAME_CHAR =\n ATTRIBUTE_NAME_START_CHAR + '\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040';\n\n/**\n * Checks whether a property name is a custom attribute.\n *\n * @see https://github.com/facebook/react/blob/15-stable/src/renderers/dom/shared/HTMLDOMPropertyConfig.js#L23-L25\n *\n * @type {(attribute: string) => boolean}\n */\nconst isCustomAttribute =\n RegExp.prototype.test.bind(\n // eslint-disable-next-line no-misleading-character-class\n new RegExp('^(data|aria)-[' + ATTRIBUTE_NAME_CHAR + ']*$')\n );\n\n/**\n * @type {Record<string, string>}\n */\nconst possibleStandardNames = Object.keys(\n possibleStandardNamesOptimized\n).reduce((accumulator, standardName) => {\n const propName = possibleStandardNamesOptimized[standardName];\n if (propName === SAME) {\n accumulator[standardName] = standardName;\n } else if (propName === CAMELCASE) {\n accumulator[standardName.toLowerCase()] = standardName;\n } else {\n accumulator[standardName] = propName;\n }\n return accumulator;\n}, {});\n\nexports.BOOLEAN = BOOLEAN;\nexports.BOOLEANISH_STRING = BOOLEANISH_STRING;\nexports.NUMERIC = NUMERIC;\nexports.OVERLOADED_BOOLEAN = OVERLOADED_BOOLEAN;\nexports.POSITIVE_NUMERIC = POSITIVE_NUMERIC;\nexports.RESERVED = RESERVED;\nexports.STRING = STRING;\nexports.getPropertyInfo = getPropertyInfo;\nexports.isCustomAttribute = isCustomAttribute;\nexports.possibleStandardNames = possibleStandardNames;\n","'use strict';\n\n// http://www.w3.org/TR/CSS21/grammar.html\n// https://github.com/visionmedia/css-parse/pull/49#issuecomment-30088027\nvar COMMENT_REGEX = /\\/\\*[^*]*\\*+([^/*][^*]*\\*+)*\\//g;\n\nvar NEWLINE_REGEX = /\\n/g;\nvar WHITESPACE_REGEX = /^\\s*/;\n\n// declaration\nvar PROPERTY_REGEX = /^(\\*?[-#/*\\\\\\w]+(\\[[0-9a-z_-]+\\])?)\\s*/;\nvar COLON_REGEX = /^:\\s*/;\nvar VALUE_REGEX = /^((?:'(?:\\\\'|.)*?'|\"(?:\\\\\"|.)*?\"|\\([^)]*?\\)|[^};])+)/;\nvar SEMICOLON_REGEX = /^[;\\s]*/;\n\n// https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String/Trim#Polyfill\nvar TRIM_REGEX = /^\\s+|\\s+$/g;\n\n// strings\nvar NEWLINE = '\\n';\nvar FORWARD_SLASH = '/';\nvar ASTERISK = '*';\nvar EMPTY_STRING = '';\n\n// types\nvar TYPE_COMMENT = 'comment';\nvar TYPE_DECLARATION = 'declaration';\n\n/**\n * @param {String} style\n * @param {Object} [options]\n * @return {Object[]}\n * @throws {TypeError}\n * @throws {Error}\n */\nfunction index (style, options) {\n if (typeof style !== 'string') {\n throw new TypeError('First argument must be a string');\n }\n\n if (!style) return [];\n\n options = options || {};\n\n /**\n * Positional.\n */\n var lineno = 1;\n var column = 1;\n\n /**\n * Update lineno and column based on `str`.\n *\n * @param {String} str\n */\n function updatePosition(str) {\n var lines = str.match(NEWLINE_REGEX);\n if (lines) lineno += lines.length;\n var i = str.lastIndexOf(NEWLINE);\n column = ~i ? str.length - i : column + str.length;\n }\n\n /**\n * Mark position and patch `node.position`.\n *\n * @return {Function}\n */\n function position() {\n var start = { line: lineno, column: column };\n return function (node) {\n node.position = new Position(start);\n whitespace();\n return node;\n };\n }\n\n /**\n * Store position information for a node.\n *\n * @constructor\n * @property {Object} start\n * @property {Object} end\n * @property {undefined|String} source\n */\n function Position(start) {\n this.start = start;\n this.end = { line: lineno, column: column };\n this.source = options.source;\n }\n\n /**\n * Non-enumerable source string.\n */\n Position.prototype.content = style;\n\n /**\n * Error `msg`.\n *\n * @param {String} msg\n * @throws {Error}\n */\n function error(msg) {\n var err = new Error(\n options.source + ':' + lineno + ':' + column + ': ' + msg\n );\n err.reason = msg;\n err.filename = options.source;\n err.line = lineno;\n err.column = column;\n err.source = style;\n\n if (options.silent) ; else {\n throw err;\n }\n }\n\n /**\n * Match `re` and return captures.\n *\n * @param {RegExp} re\n * @return {undefined|Array}\n */\n function match(re) {\n var m = re.exec(style);\n if (!m) return;\n var str = m[0];\n updatePosition(str);\n style = style.slice(str.length);\n return m;\n }\n\n /**\n * Parse whitespace.\n */\n function whitespace() {\n match(WHITESPACE_REGEX);\n }\n\n /**\n * Parse comments.\n *\n * @param {Object[]} [rules]\n * @return {Object[]}\n */\n function comments(rules) {\n var c;\n rules = rules || [];\n while ((c = comment())) {\n if (c !== false) {\n rules.push(c);\n }\n }\n return rules;\n }\n\n /**\n * Parse comment.\n *\n * @return {Object}\n * @throws {Error}\n */\n function comment() {\n var pos = position();\n if (FORWARD_SLASH != style.charAt(0) || ASTERISK != style.charAt(1)) return;\n\n var i = 2;\n while (\n EMPTY_STRING != style.charAt(i) &&\n (ASTERISK != style.charAt(i) || FORWARD_SLASH != style.charAt(i + 1))\n ) {\n ++i;\n }\n i += 2;\n\n if (EMPTY_STRING === style.charAt(i - 1)) {\n return error('End of comment missing');\n }\n\n var str = style.slice(2, i - 2);\n column += 2;\n updatePosition(str);\n style = style.slice(i);\n column += 2;\n\n return pos({\n type: TYPE_COMMENT,\n comment: str\n });\n }\n\n /**\n * Parse declaration.\n *\n * @return {Object}\n * @throws {Error}\n */\n function declaration() {\n var pos = position();\n\n // prop\n var prop = match(PROPERTY_REGEX);\n if (!prop) return;\n comment();\n\n // :\n if (!match(COLON_REGEX)) return error(\"property missing ':'\");\n\n // val\n var val = match(VALUE_REGEX);\n\n var ret = pos({\n type: TYPE_DECLARATION,\n property: trim(prop[0].replace(COMMENT_REGEX, EMPTY_STRING)),\n value: val\n ? trim(val[0].replace(COMMENT_REGEX, EMPTY_STRING))\n : EMPTY_STRING\n });\n\n // ;\n match(SEMICOLON_REGEX);\n\n return ret;\n }\n\n /**\n * Parse declarations.\n *\n * @return {Object[]}\n */\n function declarations() {\n var decls = [];\n\n comments(decls);\n\n // declarations\n var decl;\n while ((decl = declaration())) {\n if (decl !== false) {\n decls.push(decl);\n comments(decls);\n }\n }\n\n return decls;\n }\n\n whitespace();\n return declarations();\n}\n\n/**\n * Trim `str`.\n *\n * @param {String} str\n * @return {String}\n */\nfunction trim(str) {\n return str ? str.replace(TRIM_REGEX, EMPTY_STRING) : EMPTY_STRING;\n}\n\nmodule.exports = index;\n//# sourceMappingURL=index.js.map\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.default = StyleToObject;\nconst inline_style_parser_1 = __importDefault(require(\"inline-style-parser\"));\n/**\n * Parses inline style to object.\n *\n * @param style - Inline style.\n * @param iterator - Iterator.\n * @returns - Style object or null.\n *\n * @example Parsing inline style to object:\n *\n * ```js\n * import parse from 'style-to-object';\n * parse('line-height: 42;'); // { 'line-height': '42' }\n * ```\n */\nfunction StyleToObject(style, iterator) {\n let styleObject = null;\n if (!style || typeof style !== 'string') {\n return styleObject;\n }\n const declarations = (0, inline_style_parser_1.default)(style);\n const hasIterator = typeof iterator === 'function';\n declarations.forEach((declaration) => {\n if (declaration.type !== 'declaration') {\n return;\n }\n const { property, value } = declaration;\n if (hasIterator) {\n iterator(property, value, declaration);\n }\n else if (value) {\n styleObject = styleObject || {};\n styleObject[property] = value;\n }\n });\n return styleObject;\n}\n//# sourceMappingURL=index.js.map","//#region \\0rolldown/runtime.js\nvar __create = Object.create;\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __getProtoOf = Object.getPrototypeOf;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __copyProps = (to, from, except, desc) => {\n\tif (from && typeof from === \"object\" || typeof from === \"function\") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {\n\t\tkey = keys[i];\n\t\tif (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {\n\t\t\tget: ((k) => from[k]).bind(null, key),\n\t\t\tenumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable\n\t\t});\n\t}\n\treturn to;\n};\nvar __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, \"default\", {\n\tvalue: mod,\n\tenumerable: true\n}) : target, mod));\n//#endregion\nlet style_to_object = require(\"style-to-object\");\nstyle_to_object = __toESM(style_to_object);\n//#region src/utilities.ts\nconst CUSTOM_PROPERTY_REGEX = /^--[a-zA-Z0-9_-]+$/;\nconst HYPHEN_REGEX = /-([a-z])/g;\nconst NO_HYPHEN_REGEX = /^[^-]+$/;\nconst VENDOR_PREFIX_REGEX = /^-(webkit|moz|ms|o|khtml)-/;\nconst MS_VENDOR_PREFIX_REGEX = /^-(ms)-/;\n/**\n* Checks whether to skip camelCase.\n*/\nconst skipCamelCase = (property) => !property || NO_HYPHEN_REGEX.test(property) || CUSTOM_PROPERTY_REGEX.test(property);\n/**\n* Replacer that capitalizes first character.\n*/\nconst capitalize = (match, character) => character.toUpperCase();\n/**\n* Replacer that removes beginning hyphen of vendor prefix property.\n*/\nconst trimHyphen = (match, prefix) => `${prefix}-`;\n/**\n* CamelCases a CSS property.\n*/\nconst camelCase = (property, options = {}) => {\n\tif (skipCamelCase(property)) return property;\n\tproperty = property.toLowerCase();\n\tif (options.reactCompat) property = property.replace(MS_VENDOR_PREFIX_REGEX, trimHyphen);\n\telse property = property.replace(VENDOR_PREFIX_REGEX, trimHyphen);\n\treturn property.replace(HYPHEN_REGEX, capitalize);\n};\n//#endregion\n//#region src/index.ts\n/**\n* Parses CSS inline style to JavaScript object (camelCased).\n*/\nfunction StyleToJS(style, options) {\n\tconst output = {};\n\tif (!style || typeof style !== \"string\") return output;\n\t(0, style_to_object.default)(style, (property, value) => {\n\t\tif (property && value) output[camelCase(property, options)] = value;\n\t});\n\treturn output;\n}\n//#endregion\nmodule.exports = StyleToJS;\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.returnFirstArg = exports.canTextBeChildOfNode = exports.ELEMENTS_WITH_NO_TEXT_CHILDREN = exports.PRESERVE_CUSTOM_ATTRIBUTES = void 0;\nexports.isCustomComponent = isCustomComponent;\nexports.setStyleProp = setStyleProp;\nconst react_1 = require(\"react\");\nconst style_to_js_1 = __importDefault(require(\"style-to-js\"));\nconst RESERVED_SVG_MATHML_ELEMENTS = new Set([\n 'annotation-xml',\n 'color-profile',\n 'font-face',\n 'font-face-src',\n 'font-face-uri',\n 'font-face-format',\n 'font-face-name',\n 'missing-glyph',\n]);\n/**\n * Check if a tag is a custom component.\n *\n * @see {@link https://github.com/facebook/react/blob/v16.6.3/packages/react-dom/src/shared/isCustomComponent.js}\n *\n * @param tagName - Tag name.\n * @param props - Props passed to the element.\n * @returns - Whether the tag is custom component.\n */\nfunction isCustomComponent(tagName, props) {\n if (!tagName.includes('-')) {\n return Boolean(props && typeof props.is === 'string');\n }\n // These are reserved SVG and MathML elements.\n // We don't mind this whitelist too much because we expect it to never grow.\n // The alternative is to track the namespace in a few places which is convoluted.\n // https://w3c.github.io/webcomponents/spec/custom/#custom-elements-core-concepts\n if (RESERVED_SVG_MATHML_ELEMENTS.has(tagName)) {\n return false;\n }\n return true;\n}\nconst styleOptions = {\n reactCompat: true,\n};\n/**\n * Sets style prop.\n *\n * @param style - Inline style.\n * @param props - Props object.\n */\nfunction setStyleProp(style, props) {\n if (typeof style !== 'string') {\n return;\n }\n if (!style.trim()) {\n props.style = {};\n return;\n }\n try {\n props.style = (0, style_to_js_1.default)(style, styleOptions);\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n }\n catch (error) {\n props.style = {};\n }\n}\n/**\n * @see https://reactjs.org/blog/2017/09/08/dom-attributes-in-react-16.html\n */\nexports.PRESERVE_CUSTOM_ATTRIBUTES = Number(react_1.version.split('.')[0]) >= 16;\n/**\n * @see https://github.com/facebook/react/blob/cae635054e17a6f107a39d328649137b83f25972/packages/react-dom/src/client/validateDOMNesting.js#L213\n */\nexports.ELEMENTS_WITH_NO_TEXT_CHILDREN = new Set([\n 'tr',\n 'tbody',\n 'thead',\n 'tfoot',\n 'colgroup',\n 'table',\n 'head',\n 'html',\n 'frameset',\n]);\n/**\n * Checks if the given node can contain text nodes\n *\n * @param node - Element node.\n * @returns - Whether the node can contain text nodes.\n */\nconst canTextBeChildOfNode = (node) => !exports.ELEMENTS_WITH_NO_TEXT_CHILDREN.has(node.name);\nexports.canTextBeChildOfNode = canTextBeChildOfNode;\n/**\n * Returns the first argument as is.\n *\n * @param arg - The argument to be returned.\n * @returns - The input argument `arg`.\n */\nconst returnFirstArg = (arg) => arg;\nexports.returnFirstArg = returnFirstArg;\n//# sourceMappingURL=utilities.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.default = attributesToProps;\nconst react_property_1 = require(\"react-property\");\nconst utilities_1 = require(\"./utilities\");\n// https://react.dev/learn/sharing-state-between-components#controlled-and-uncontrolled-components\n// https://developer.mozilla.org/docs/Web/HTML/Attributes\nconst UNCONTROLLED_COMPONENT_ATTRIBUTES = ['checked', 'value'];\nconst UNCONTROLLED_COMPONENT_NAMES = ['input', 'select', 'textarea'];\nconst valueOnlyInputs = {\n reset: true,\n submit: true,\n};\n/**\n * Converts HTML/SVG DOM attributes to React props.\n *\n * @param attributes - HTML/SVG DOM attributes.\n * @param nodeName - DOM node name.\n * @returns - React props.\n */\nfunction attributesToProps(attributes = {}, nodeName) {\n const props = {};\n const isInputValueOnly = Boolean(attributes.type && valueOnlyInputs[attributes.type]);\n for (const attributeName in attributes) {\n const attributeValue = attributes[attributeName];\n // ARIA (aria-*) or custom data (data-*) attribute\n if ((0, react_property_1.isCustomAttribute)(attributeName)) {\n props[attributeName] = attributeValue;\n continue;\n }\n // convert HTML/SVG attribute to React prop\n const attributeNameLowerCased = attributeName.toLowerCase();\n let propName = getPropName(attributeNameLowerCased);\n if (propName) {\n const propertyInfo = (0, react_property_1.getPropertyInfo)(propName);\n // convert attribute to uncontrolled component prop (e.g., `value` to `defaultValue`)\n if (UNCONTROLLED_COMPONENT_ATTRIBUTES.includes(propName) &&\n UNCONTROLLED_COMPONENT_NAMES.includes(nodeName) &&\n !isInputValueOnly) {\n propName = getPropName('default' + attributeNameLowerCased);\n }\n props[propName] = attributeValue;\n switch (propertyInfo === null || propertyInfo === void 0 ? void 0 : propertyInfo.type) {\n case react_property_1.BOOLEAN:\n props[propName] = true;\n break;\n case react_property_1.OVERLOADED_BOOLEAN:\n if (attributeValue === '') {\n props[propName] = true;\n }\n break;\n }\n continue;\n }\n // preserve custom attribute if React >=16\n if (utilities_1.PRESERVE_CUSTOM_ATTRIBUTES) {\n props[attributeName] = attributeValue;\n }\n }\n // transform inline style to object\n (0, utilities_1.setStyleProp)(attributes.style, props);\n return props;\n}\n/**\n * Gets prop name from lowercased attribute name.\n *\n * @param attributeName - Lowercased attribute name.\n * @returns - Prop name.\n */\nfunction getPropName(attributeName) {\n return react_property_1.possibleStandardNames[attributeName];\n}\n//# sourceMappingURL=attributes-to-props.js.map","\"use strict\";\n/* eslint-disable @typescript-eslint/no-unsafe-enum-comparison */\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.default = domToReact;\nconst domhandler_1 = require(\"domhandler\");\nconst react_1 = require(\"react\");\nconst attributes_to_props_1 = __importDefault(require(\"./attributes-to-props\"));\nconst utilities_1 = require(\"./utilities\");\nconst React = {\n cloneElement: react_1.cloneElement,\n createElement: react_1.createElement,\n isValidElement: react_1.isValidElement,\n};\n/**\n * Converts DOM nodes to JSX element(s).\n *\n * @param nodes - DOM nodes.\n * @param options - Options.\n * @returns - String or JSX element(s).\n */\nfunction domToReact(nodes, options = {}) {\n var _a, _b, _c, _d, _e;\n const reactElements = [];\n const hasReplace = typeof options.replace === 'function';\n const transform = (_a = options.transform) !== null && _a !== void 0 ? _a : utilities_1.returnFirstArg;\n const { cloneElement, createElement, isValidElement } = (_b = options.library) !== null && _b !== void 0 ? _b : React;\n const nodesLength = nodes.length;\n normalizeDOMNodes(nodes);\n for (let index = 0; index < nodesLength; index++) {\n const node = nodes[index];\n // replace with custom React element (if present)\n if (hasReplace) {\n let replaceElement = (_c = options.replace) === null || _c === void 0 ? void 0 : _c.call(options, node, index);\n if (isValidElement(replaceElement)) {\n // set \"key\" prop for sibling elements\n // https://react.dev/learn/rendering-lists#rules-of-keys\n if (nodesLength > 1) {\n replaceElement = cloneElement(replaceElement, {\n key: (_d = replaceElement.key) !== null && _d !== void 0 ? _d : index,\n });\n }\n reactElements.push(transform(replaceElement, node, index));\n continue;\n }\n }\n if (node.type === 'text') {\n const isWhitespace = !node.data.trim().length;\n // We have a whitespace node that can't be nested in its parent\n // so skip it\n if (isWhitespace &&\n node.parent &&\n !(0, utilities_1.canTextBeChildOfNode)(node.parent)) {\n continue;\n }\n // Trim is enabled and we have a whitespace node\n // so skip it\n if (options.trim && isWhitespace) {\n continue;\n }\n // We have a text node that's not whitespace and it can be nested\n // in its parent so add it to the results\n reactElements.push(transform(node.data, node, index));\n continue;\n }\n const element = node;\n let props = {};\n if (skipAttributesToProps(element)) {\n (0, utilities_1.setStyleProp)(element.attribs.style, element.attribs);\n props = element.attribs;\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n }\n else if (element.attribs) {\n props = (0, attributes_to_props_1.default)(element.attribs, element.name);\n }\n let children;\n switch (node.type) {\n case 'script':\n case 'style':\n // prevent text in <script> or <style> from being escaped\n // https://react.dev/reference/react-dom/components/common#dangerously-setting-the-inner-html\n if (node.children[0]) {\n props.dangerouslySetInnerHTML = {\n __html: node.children[0].data,\n };\n }\n break;\n case 'tag':\n // setting textarea value in children is an antipattern in React\n // https://react.dev/reference/react-dom/components/textarea#caveats\n if (node.name === 'textarea' && node.children[0]) {\n props.defaultValue = node.children[0].data;\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n }\n else if ((_e = node.children) === null || _e === void 0 ? void 0 : _e.length) {\n // continue recursion of creating React elements (if applicable)\n children = domToReact(node.children, options);\n }\n break;\n // skip all other cases (e.g., comment)\n default:\n continue;\n }\n // set \"key\" prop for sibling elements\n // https://react.dev/learn/rendering-lists#rules-of-keys\n if (nodesLength > 1) {\n props.key = index;\n }\n reactElements.push(transform(createElement(node.name, props, children), node, index));\n }\n return reactElements.length === 1 ? reactElements[0] : reactElements;\n}\nfunction normalizeDOMNodes(nodes) {\n for (const node of nodes) {\n if (node.type === 'tag' ||\n node.type === 'script' ||\n node.type === 'style') {\n Object.setPrototypeOf(node, domhandler_1.Element.prototype);\n normalizeDOMNodes(node.children);\n }\n }\n}\n/**\n * Determines whether DOM element attributes should be transformed to props.\n * Web Components should not have their attributes transformed except for `style`.\n *\n * @param node - Element node.\n * @returns - Whether the node attributes should be converted to props.\n */\nfunction skipAttributesToProps(node) {\n return (utilities_1.PRESERVE_CUSTOM_ATTRIBUTES &&\n node.type === 'tag' &&\n (0, utilities_1.isCustomComponent)(node.name, node.attribs));\n}\n//# sourceMappingURL=dom-to-react.js.map","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.htmlToDOM = exports.domToReact = exports.attributesToProps = exports.Text = exports.ProcessingInstruction = exports.Element = exports.Comment = void 0;\nexports.default = HTMLReactParser;\nconst html_dom_parser_1 = __importDefault(require(\"html-dom-parser\"));\nexports.htmlToDOM = html_dom_parser_1.default;\nconst attributes_to_props_1 = __importDefault(require(\"./attributes-to-props\"));\nexports.attributesToProps = attributes_to_props_1.default;\nconst dom_to_react_1 = __importDefault(require(\"./dom-to-react\"));\nexports.domToReact = dom_to_react_1.default;\nvar domhandler_1 = require(\"domhandler\");\nObject.defineProperty(exports, \"Comment\", { enumerable: true, get: function () { return domhandler_1.Comment; } });\nObject.defineProperty(exports, \"Element\", { enumerable: true, get: function () { return domhandler_1.Element; } });\nObject.defineProperty(exports, \"ProcessingInstruction\", { enumerable: true, get: function () { return domhandler_1.ProcessingInstruction; } });\nObject.defineProperty(exports, \"Text\", { enumerable: true, get: function () { return domhandler_1.Text; } });\nconst domParserOptions = { lowerCaseAttributeNames: false };\n/**\n * Converts HTML string to React elements.\n *\n * @param html - HTML string.\n * @param options - Parser options.\n * @returns - React element(s), empty array, or string.\n */\nfunction HTMLReactParser(html, options) {\n var _a;\n if (typeof html !== 'string') {\n throw new TypeError('First argument must be a string');\n }\n if (!html) {\n return [];\n }\n const htmlToDOMOptions = Object.assign(Object.assign({}, ((_a = options === null || options === void 0 ? void 0 : options.htmlparser2) !== null && _a !== void 0 ? _a : domParserOptions)), { trustedTypePolicy: options === null || options === void 0 ? void 0 : options.trustedTypePolicy });\n return (0, dom_to_react_1.default)((0, html_dom_parser_1.default)(html, htmlToDOMOptions), options);\n}\n//# sourceMappingURL=index.js.map","import * as HTMLReactParser from '../lib';\n\nconst parse = HTMLReactParser.default;\nObject.assign(parse, HTMLReactParser);\n\nexport default parse;\n"],"names":["isTag","isTagRaw","require$$0","require$$1","utilities","domparser","domparser_1","this","cjs","attributesToProps_1","attributesToProps","domToReact_1","domToReact","require$$2","require$$3","HTMLReactParser.default"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11]}
1
+ {"version":3,"file":"html-react-parser.js","sources":["../node_modules/html-dom-parser/lib/client/constants.js","../node_modules/domelementtype/dist/index.js","../node_modules/domhandler/dist/node.js","../node_modules/domhandler/dist/index.js","../node_modules/html-dom-parser/lib/client/utilities.js","../node_modules/html-dom-parser/lib/client/domparser.js","../node_modules/html-dom-parser/lib/client/html-to-dom.js","../node_modules/react-property/lib/possibleStandardNamesOptimized.js","../node_modules/react-property/lib/index.js","../node_modules/inline-style-parser/cjs/index.js","../node_modules/style-to-object/cjs/index.js","../node_modules/style-to-js/dist/index.js","../lib/utilities.js","../lib/attributes-to-props.js","../lib/dom-to-react.js","../lib/index.js","../umd/index.ts"],"sourcesContent":["const CASE_SENSITIVE_TAG_NAMES_MAP = [\n\t\"animateMotion\",\n\t\"animateTransform\",\n\t\"clipPath\",\n\t\"feBlend\",\n\t\"feColorMatrix\",\n\t\"feComponentTransfer\",\n\t\"feComposite\",\n\t\"feConvolveMatrix\",\n\t\"feDiffuseLighting\",\n\t\"feDisplacementMap\",\n\t\"feDropShadow\",\n\t\"feFlood\",\n\t\"feFuncA\",\n\t\"feFuncB\",\n\t\"feFuncG\",\n\t\"feFuncR\",\n\t\"feGaussianBlur\",\n\t\"feImage\",\n\t\"feMerge\",\n\t\"feMergeNode\",\n\t\"feMorphology\",\n\t\"feOffset\",\n\t\"fePointLight\",\n\t\"feSpecularLighting\",\n\t\"feSpotLight\",\n\t\"feTile\",\n\t\"feTurbulence\",\n\t\"foreignObject\",\n\t\"linearGradient\",\n\t\"radialGradient\",\n\t\"textPath\"\n].reduce((accumulator, tagName) => {\n\taccumulator[tagName.toLowerCase()] = tagName;\n\treturn accumulator;\n}, {});\n//#endregion\nexports.CASE_SENSITIVE_TAG_NAMES_MAP = CASE_SENSITIVE_TAG_NAMES_MAP;\n\n//# sourceMappingURL=constants.js.map","/** Types of elements found in htmlparser2's DOM */\nexport var ElementType;\n(function (ElementType) {\n /** Type for the root element of a document */\n ElementType[\"Root\"] = \"root\";\n /** Type for Text */\n ElementType[\"Text\"] = \"text\";\n /** Type for <? ... ?> */\n ElementType[\"Directive\"] = \"directive\";\n /** Type for <!-- ... --> */\n ElementType[\"Comment\"] = \"comment\";\n /** Type for <script> tags */\n ElementType[\"Script\"] = \"script\";\n /** Type for <style> tags */\n ElementType[\"Style\"] = \"style\";\n /** Type for Any tag */\n ElementType[\"Tag\"] = \"tag\";\n /** Type for <![CDATA[ ... ]]> */\n ElementType[\"CDATA\"] = \"cdata\";\n /** Type for <!doctype ...> */\n ElementType[\"Doctype\"] = \"doctype\";\n})(ElementType || (ElementType = {}));\n/**\n * Tests whether an element is a tag or not.\n * @param element Element to test\n * @param element.type Node type discriminator to check.\n */\nexport function isTag(element) {\n return (element.type === ElementType.Tag ||\n element.type === ElementType.Script ||\n element.type === ElementType.Style);\n}\n// Exports for backwards compatibility\n/** Type for the root element of a document */\n// eslint-disable-next-line prefer-destructuring\nexport const Root = ElementType.Root;\n/** Type for Text */\n// eslint-disable-next-line prefer-destructuring\nexport const Text = ElementType.Text;\n/** Type for <? ... ?> */\n// eslint-disable-next-line prefer-destructuring\nexport const Directive = ElementType.Directive;\n/** Type for <!-- ... --> */\n// eslint-disable-next-line prefer-destructuring\nexport const Comment = ElementType.Comment;\n/** Type for <script> tags */\n// eslint-disable-next-line prefer-destructuring\nexport const Script = ElementType.Script;\n/** Type for <style> tags */\n// eslint-disable-next-line prefer-destructuring\nexport const Style = ElementType.Style;\n/** Type for Any tag */\n// eslint-disable-next-line prefer-destructuring\nexport const Tag = ElementType.Tag;\n/** Type for <![CDATA[ ... ]]> */\n// eslint-disable-next-line prefer-destructuring\nexport const CDATA = ElementType.CDATA;\n/** Type for <!doctype ...> */\n// eslint-disable-next-line prefer-destructuring\nexport const Doctype = ElementType.Doctype;\n","import { ElementType, isTag as isTagRaw } from \"domelementtype\";\n/**\n * This object will be used as the prototype for Nodes when creating a\n * DOM-Level-1-compliant structure.\n */\nexport class Node {\n /** Parent of the node */\n parent = null;\n /** Previous sibling */\n prev = null;\n /** Next sibling */\n next = null;\n /** The start index of the node. Requires `withStartIndices` on the handler to be `true. */\n startIndex = null;\n /** The end index of the node. Requires `withEndIndices` on the handler to be `true. */\n endIndex = null;\n // Read-write aliases for properties\n /**\n * Same as {@link parent}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get parentNode() {\n return this.parent;\n }\n set parentNode(parent) {\n this.parent = parent;\n }\n /**\n * Same as {@link prev}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get previousSibling() {\n return this.prev;\n }\n set previousSibling(previous) {\n this.prev = previous;\n }\n /**\n * Same as {@link next}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get nextSibling() {\n return this.next;\n }\n set nextSibling(next) {\n this.next = next;\n }\n /**\n * Clone this node, and optionally its children.\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\n cloneNode(recursive = false) {\n return cloneNode(this, recursive);\n }\n}\n/**\n * A node that contains some data.\n */\nexport class DataNode extends Node {\n data;\n /**\n * @param data The content of the data node\n */\n constructor(data) {\n super();\n this.data = data;\n }\n /**\n * Same as {@link data}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get nodeValue() {\n return this.data;\n }\n set nodeValue(data) {\n this.data = data;\n }\n}\n/**\n * Text within the document.\n */\nexport class Text extends DataNode {\n type = ElementType.Text;\n get nodeType() {\n return 3;\n }\n}\n/**\n * Comments within the document.\n */\nexport class Comment extends DataNode {\n type = ElementType.Comment;\n get nodeType() {\n return 8;\n }\n}\n/**\n * Processing instructions, including doc types.\n */\nexport class ProcessingInstruction extends DataNode {\n type = ElementType.Directive;\n name;\n constructor(name, data) {\n super(data);\n this.name = name;\n }\n get nodeType() {\n return 1;\n }\n /** If this is a doctype, the document type name (parse5 only). */\n \"x-name\";\n /** If this is a doctype, the document type public identifier (parse5 only). */\n \"x-publicId\";\n /** If this is a doctype, the document type system identifier (parse5 only). */\n \"x-systemId\";\n}\n/**\n * A node that can have children.\n */\nexport class NodeWithChildren extends Node {\n children;\n /**\n * @param children Children of the node. Only certain node types can have children.\n */\n constructor(children) {\n super();\n this.children = children;\n }\n // Aliases\n /** First child of the node. */\n get firstChild() {\n return this.children[0] ?? null;\n }\n /** Last child of the node. */\n get lastChild() {\n return this.children.length > 0\n ? this.children[this.children.length - 1]\n : null;\n }\n /**\n * Same as {@link children}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get childNodes() {\n return this.children;\n }\n set childNodes(children) {\n this.children = children;\n }\n}\n/**\n * CDATA nodes.\n */\nexport class CDATA extends NodeWithChildren {\n type = ElementType.CDATA;\n get nodeType() {\n return 4;\n }\n}\n/**\n * The root node of the document.\n */\nexport class Document extends NodeWithChildren {\n type = ElementType.Root;\n get nodeType() {\n return 9;\n }\n}\n/**\n * An element within the DOM.\n */\nexport class Element extends NodeWithChildren {\n name;\n attribs;\n type;\n /**\n * @param name Name of the tag, eg. `div`, `span`.\n * @param attribs Object mapping attribute names to attribute values.\n * @param children Children of the node.\n * @param type Node type used for the new node instance.\n */\n constructor(name, attribs, children = [], type = name === \"script\"\n ? ElementType.Script\n : name === \"style\"\n ? ElementType.Style\n : ElementType.Tag) {\n super(children);\n this.name = name;\n this.attribs = attribs;\n this.type = type;\n }\n get nodeType() {\n return 1;\n }\n // DOM Level 1 aliases\n /**\n * Same as {@link name}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get tagName() {\n return this.name;\n }\n set tagName(name) {\n this.name = name;\n }\n get attributes() {\n return Object.keys(this.attribs).map((name) => ({\n name,\n value: this.attribs[name],\n namespace: this[\"x-attribsNamespace\"]?.[name],\n prefix: this[\"x-attribsPrefix\"]?.[name],\n }));\n }\n /** Element namespace (parse5 only). */\n namespace;\n /** Element attribute namespaces (parse5 only). */\n \"x-attribsNamespace\";\n /** Element attribute namespace-related prefixes (parse5 only). */\n \"x-attribsPrefix\";\n}\n/**\n * Checks if `node` is an element node.\n * @param node Node to check.\n * @returns `true` if the node is an element node.\n */\nexport function isTag(node) {\n return isTagRaw(node);\n}\n/**\n * Checks if `node` is a CDATA node.\n * @param node Node to check.\n * @returns `true` if the node is a CDATA node.\n */\nexport function isCDATA(node) {\n return node.type === ElementType.CDATA;\n}\n/**\n * Checks if `node` is a text node.\n * @param node Node to check.\n * @returns `true` if the node is a text node.\n */\nexport function isText(node) {\n return node.type === ElementType.Text;\n}\n/**\n * Checks if `node` is a comment node.\n * @param node Node to check.\n * @returns `true` if the node is a comment node.\n */\nexport function isComment(node) {\n return node.type === ElementType.Comment;\n}\n/**\n * Checks if `node` is a directive node.\n * @param node Node to check.\n * @returns `true` if the node is a directive node.\n */\nexport function isDirective(node) {\n return node.type === ElementType.Directive;\n}\n/**\n * Checks if `node` is a document node.\n * @param node Node to check.\n * @returns `true` if the node is a document node.\n */\nexport function isDocument(node) {\n return node.type === ElementType.Root;\n}\n/**\n * Checks if `node` has children.\n * @param node Node to check.\n * @returns `true` if the node has children.\n */\nexport function hasChildren(node) {\n return Object.hasOwn(node, \"children\");\n}\n/**\n * Clone a node, and optionally its children.\n * @param node Node to clone.\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\nexport function cloneNode(node, recursive = false) {\n let result;\n if (isText(node)) {\n result = new Text(node.data);\n }\n else if (isComment(node)) {\n result = new Comment(node.data);\n }\n else if (isTag(node)) {\n const children = recursive ? cloneChildren(node.children) : [];\n const clone = new Element(node.name, { ...node.attribs }, children);\n for (const child of children) {\n child.parent = clone;\n }\n if (node.namespace != null) {\n clone.namespace = node.namespace;\n }\n if (node[\"x-attribsNamespace\"]) {\n clone[\"x-attribsNamespace\"] = { ...node[\"x-attribsNamespace\"] };\n }\n if (node[\"x-attribsPrefix\"]) {\n clone[\"x-attribsPrefix\"] = { ...node[\"x-attribsPrefix\"] };\n }\n result = clone;\n }\n else if (isCDATA(node)) {\n const children = recursive ? cloneChildren(node.children) : [];\n const clone = new CDATA(children);\n for (const child of children) {\n child.parent = clone;\n }\n result = clone;\n }\n else if (isDocument(node)) {\n const children = recursive ? cloneChildren(node.children) : [];\n const clone = new Document(children);\n for (const child of children) {\n child.parent = clone;\n }\n if (node[\"x-mode\"]) {\n clone[\"x-mode\"] = node[\"x-mode\"];\n }\n result = clone;\n }\n else if (isDirective(node)) {\n const instruction = new ProcessingInstruction(node.name, node.data);\n if (node[\"x-name\"] != null) {\n instruction[\"x-name\"] = node[\"x-name\"];\n instruction[\"x-publicId\"] = node[\"x-publicId\"];\n instruction[\"x-systemId\"] = node[\"x-systemId\"];\n }\n result = instruction;\n }\n else {\n throw new Error(`Not implemented yet: ${node.type}`);\n }\n result.startIndex = node.startIndex;\n result.endIndex = node.endIndex;\n if (node.sourceCodeLocation != null) {\n result.sourceCodeLocation = node.sourceCodeLocation;\n }\n return result;\n}\n/**\n * Clone a list of child nodes.\n * @param childs The child nodes to clone.\n * @returns A list of cloned child nodes.\n */\nfunction cloneChildren(childs) {\n const children = childs.map((child) => cloneNode(child, true));\n for (let index = 1; index < children.length; index++) {\n children[index].prev = children[index - 1];\n children[index - 1].next = children[index];\n }\n return children;\n}\n","import { ElementType } from \"domelementtype\";\nimport { CDATA, Comment, Document, Element, ProcessingInstruction, Text, } from \"./node.js\";\nexport * from \"./node.js\";\n// Default options\nconst defaultOptions = {\n withStartIndices: false,\n withEndIndices: false,\n xmlMode: false,\n};\n/**\n * Event-based handler that builds a DOM tree from parser callbacks.\n */\nexport class DomHandler {\n /** The elements of the DOM */\n dom = [];\n /** The root element for the DOM */\n root = new Document(this.dom);\n /** Called once parsing has completed. */\n callback;\n /** Settings for the handler. */\n options;\n /** Callback whenever a tag is closed. */\n elementCB;\n /** Indicated whether parsing has been completed. */\n done = false;\n /** Stack of open tags. */\n tagStack = [this.root];\n /** A data node that is still being written to. */\n lastNode = null;\n /** Reference to the parser instance. Used for location information. */\n parser = null;\n /**\n * @param callback Called once parsing has completed.\n * @param options Settings for the handler.\n * @param elementCB Callback whenever a tag is closed.\n */\n constructor(callback, options, elementCB) {\n // Make it possible to skip arguments, for backwards-compatibility\n if (typeof options === \"function\") {\n elementCB = options;\n options = defaultOptions;\n }\n if (typeof callback === \"object\") {\n options = callback;\n callback = undefined;\n }\n this.callback = callback ?? null;\n this.options = options ?? defaultOptions;\n this.elementCB = elementCB ?? null;\n }\n onparserinit(parser) {\n this.parser = parser;\n }\n // Resets the handler back to starting state\n onreset() {\n this.dom = [];\n this.root = new Document(this.dom);\n this.done = false;\n this.tagStack = [this.root];\n this.lastNode = null;\n this.parser = null;\n }\n // Signals the handler that parsing is done\n onend() {\n if (this.done)\n return;\n this.done = true;\n this.parser = null;\n this.handleCallback(null);\n }\n onerror(error) {\n this.handleCallback(error);\n }\n onclosetag() {\n this.lastNode = null;\n const element = this.tagStack.pop();\n if (this.options.withEndIndices && this.parser) {\n element.endIndex = this.parser.endIndex;\n }\n if (this.elementCB)\n this.elementCB(element);\n }\n onopentag(name, attribs) {\n const type = this.options.xmlMode ? ElementType.Tag : undefined;\n const element = new Element(name, attribs, undefined, type);\n this.addNode(element);\n this.tagStack.push(element);\n }\n ontext(data) {\n const { lastNode } = this;\n if (lastNode && lastNode.type === ElementType.Text) {\n lastNode.data += data;\n if (this.options.withEndIndices && this.parser) {\n lastNode.endIndex = this.parser.endIndex;\n }\n }\n else {\n const node = new Text(data);\n this.addNode(node);\n this.lastNode = node;\n }\n }\n oncomment(data) {\n if (this.lastNode && this.lastNode.type === ElementType.Comment) {\n this.lastNode.data += data;\n return;\n }\n const node = new Comment(data);\n this.addNode(node);\n this.lastNode = node;\n }\n oncommentend() {\n this.lastNode = null;\n }\n oncdatastart() {\n const text = new Text(\"\");\n const node = new CDATA([text]);\n this.addNode(node);\n text.parent = node;\n this.lastNode = text;\n }\n oncdataend() {\n this.lastNode = null;\n }\n onprocessinginstruction(name, data) {\n const node = new ProcessingInstruction(name, data);\n this.addNode(node);\n }\n handleCallback(error) {\n if (typeof this.callback === \"function\") {\n this.callback(error, this.dom);\n }\n else if (error) {\n throw error;\n }\n }\n addNode(node) {\n const parent = this.tagStack[this.tagStack.length - 1];\n const previousSibling = parent.children[parent.children.length - 1];\n if (this.options.withStartIndices && this.parser) {\n node.startIndex = this.parser.startIndex;\n }\n if (this.options.withEndIndices && this.parser) {\n node.endIndex = this.parser.endIndex;\n }\n parent.children.push(node);\n if (previousSibling) {\n node.prev = previousSibling;\n previousSibling.next = node;\n }\n node.parent = parent;\n this.lastNode = null;\n }\n}\nexport default DomHandler;\n","const require_constants = require(\"./constants.js\");\nlet domhandler = require(\"domhandler\");\n//#region src/client/utilities.ts\nconst CARRIAGE_RETURN = \"\\r\";\nconst CARRIAGE_RETURN_REGEX = new RegExp(CARRIAGE_RETURN, \"g\");\nconst CARRIAGE_RETURN_PLACEHOLDER = `__HTML_DOM_PARSER_CARRIAGE_RETURN_PLACEHOLDER_${Date.now().toString()}__`;\nconst CARRIAGE_RETURN_PLACEHOLDER_REGEX = new RegExp(CARRIAGE_RETURN_PLACEHOLDER, \"g\");\n/**\n* Gets case-sensitive tag name.\n*\n* @param tagName - Tag name in lowercase.\n* @returns - Case-sensitive tag name.\n*/\nfunction getCaseSensitiveTagName(tagName) {\n\treturn require_constants.CASE_SENSITIVE_TAG_NAMES_MAP[tagName];\n}\n/**\n* Formats DOM attributes to a hash map.\n*\n* @param attributes - List of attributes.\n* @returns - Map of attribute name to value.\n*/\nfunction formatAttributes(attributes) {\n\tconst map = {};\n\tlet index = 0;\n\tconst attributesLength = attributes.length;\n\tfor (; index < attributesLength; index++) {\n\t\tconst attribute = attributes[index];\n\t\tmap[attribute.name] = attribute.value;\n\t}\n\treturn map;\n}\n/**\n* Corrects the tag name if it is case-sensitive (SVG).\n* Otherwise, returns the lowercase tag name (HTML).\n*\n* @param tagName - Lowercase tag name.\n* @returns - Formatted tag name.\n*/\nfunction formatTagName(tagName) {\n\ttagName = tagName.toLowerCase();\n\tconst caseSensitiveTagName = getCaseSensitiveTagName(tagName);\n\tif (caseSensitiveTagName) return caseSensitiveTagName;\n\treturn tagName;\n}\n/**\n* Checks if an HTML string contains an opening tag (case-insensitive).\n*\n* @param html - HTML string.\n* @param tagName - Tag name to search for (e.g., 'head' or 'body').\n* @returns - Whether the tag is found.\n*/\nfunction hasOpenTag(html, tagName) {\n\tconst openTag = \"<\" + tagName;\n\tconst index = html.toLowerCase().indexOf(openTag);\n\tif (index === -1) return false;\n\tconst char = html[index + openTag.length];\n\treturn char === \">\" || char === \" \" || char === \"\t\" || char === \"\\n\" || char === \"\\r\" || char === \"/\";\n}\n/**\n* Escapes special characters before parsing.\n*\n* @param html - The HTML string.\n* @returns - HTML string with escaped special characters.\n*/\nfunction escapeSpecialCharacters(html) {\n\treturn html.replace(CARRIAGE_RETURN_REGEX, CARRIAGE_RETURN_PLACEHOLDER);\n}\n/**\n* Reverts escaped special characters back to actual characters.\n*\n* @param text - The text with escaped characters.\n* @returns - Text with escaped characters reverted.\n*/\nfunction revertEscapedCharacters(text) {\n\treturn text.replace(CARRIAGE_RETURN_PLACEHOLDER_REGEX, CARRIAGE_RETURN);\n}\n/**\n* Transforms DOM nodes to `domhandler` nodes.\n*\n* @param nodes - DOM nodes.\n* @param parent - Parent node.\n* @param directive - Directive.\n* @returns - Nodes.\n*/\nfunction formatDOM(nodes, parent = null, directive) {\n\tconst domNodes = [];\n\tlet current;\n\tlet index = 0;\n\tconst nodesLength = nodes.length;\n\tfor (; index < nodesLength; index++) {\n\t\tconst node = nodes[index];\n\t\tswitch (node.nodeType) {\n\t\t\tcase 1: {\n\t\t\t\tconst tagName = formatTagName(node.nodeName);\n\t\t\t\tcurrent = new domhandler.Element(tagName, formatAttributes(node.attributes));\n\t\t\t\tcurrent.children = formatDOM(tagName === \"template\" ? node.content.childNodes : node.childNodes, current);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t/* v8 ignore start */\n\t\t\tcase 3:\n\t\t\t\tcurrent = new domhandler.Text(revertEscapedCharacters(node.nodeValue ?? \"\"));\n\t\t\t\tbreak;\n\t\t\tcase 8:\n\t\t\t\tcurrent = new domhandler.Comment(node.nodeValue ?? \"\");\n\t\t\t\tbreak;\n\t\t\t/* v8 ignore stop */\n\t\t\tdefault: continue;\n\t\t}\n\t\tconst prev = domNodes[index - 1] ?? null;\n\t\tif (prev) prev.next = current;\n\t\tcurrent.parent = parent;\n\t\tcurrent.prev = prev;\n\t\tcurrent.next = null;\n\t\tdomNodes.push(current);\n\t}\n\tif (directive) {\n\t\tcurrent = new domhandler.ProcessingInstruction(directive.substring(0, directive.indexOf(\" \")).toLowerCase(), directive);\n\t\tcurrent.next = domNodes[0] ?? null;\n\t\tcurrent.parent = parent;\n\t\tdomNodes.unshift(current);\n\t\tif (domNodes[1]) domNodes[1].prev = domNodes[0];\n\t}\n\treturn domNodes;\n}\n//#endregion\nexports.escapeSpecialCharacters = escapeSpecialCharacters;\nexports.formatDOM = formatDOM;\nexports.hasOpenTag = hasOpenTag;\n\n//# sourceMappingURL=utilities.js.map","const require_utilities = require(\"./utilities.js\");\n//#region src/client/domparser.ts\nconst HTML = \"html\";\nconst HEAD = \"head\";\nconst BODY = \"body\";\nconst FIRST_TAG_REGEX = /<([a-zA-Z]+[0-9]?)/;\nfunction getHTMLForInnerHTML(html, trustedTypePolicy) {\n\treturn trustedTypePolicy ? trustedTypePolicy.createHTML(html) : html;\n}\n/* v8 ignore start */\nlet parseFromDocument = (html, tagName, trustedTypePolicy) => {\n\tthrow new Error(\"This browser does not support `document.implementation.createHTMLDocument`\");\n};\nlet parseFromString = (html, tagName, trustedTypePolicy) => {\n\tthrow new Error(\"This browser does not support `DOMParser.prototype.parseFromString`\");\n};\nconst DOMParser = typeof window === \"object\" && window.DOMParser;\n/**\n* DOMParser (performance: slow).\n*\n* @see https://developer.mozilla.org/docs/Web/API/DOMParser#Parsing_an_SVG_or_HTML_document\n*/\nif (typeof DOMParser === \"function\") {\n\tconst domParser = new DOMParser();\n\tconst mimeType = \"text/html\";\n\t/**\n\t* Creates an HTML document using `DOMParser.parseFromString`.\n\t*\n\t* @param html - The HTML string.\n\t* @param tagName - The element to render the HTML (with 'body' as fallback).\n\t* @returns - Document.\n\t*/\n\tparseFromString = (html, tagName, trustedTypePolicy) => {\n\t\tif (tagName) html = `<${tagName}>${html}</${tagName}>`;\n\t\treturn domParser.parseFromString(html, mimeType);\n\t};\n\tparseFromDocument = parseFromString;\n}\n/**\n* DOMImplementation (performance: fair).\n*\n* @see https://developer.mozilla.org/docs/Web/API/DOMImplementation/createHTMLDocument\n*/\nif (typeof document === \"object\" && document.implementation) {\n\tconst htmlDocument = document.implementation.createHTMLDocument();\n\t/**\n\t* Use HTML document created by `document.implementation.createHTMLDocument`.\n\t*\n\t* @param html - The HTML string.\n\t* @param tagName - The element to render the HTML (with 'body' as fallback).\n\t* @returns - Document\n\t*/\n\tparseFromDocument = function(html, tagName, trustedTypePolicy) {\n\t\tif (tagName) {\n\t\t\tconst element = htmlDocument.documentElement.querySelector(tagName);\n\t\t\tif (element) element.innerHTML = getHTMLForInnerHTML(html, trustedTypePolicy);\n\t\t\treturn htmlDocument;\n\t\t}\n\t\thtmlDocument.documentElement.innerHTML = getHTMLForInnerHTML(html, trustedTypePolicy);\n\t\treturn htmlDocument;\n\t};\n}\n/**\n* Template (performance: fast).\n*\n* @see https://developer.mozilla.org/docs/Web/HTML/Element/template\n*/\nconst template = typeof document === \"object\" && document.createElement(\"template\");\nlet parseFromTemplate;\nif (template && template.content)\n /**\n* Uses a template element (content fragment) to parse HTML.\n*\n* @param html - HTML string.\n* @returns - Nodes.\n*/\nparseFromTemplate = (html, trustedTypePolicy) => {\n\ttemplate.innerHTML = getHTMLForInnerHTML(html, trustedTypePolicy);\n\treturn template.content.childNodes;\n};\nconst createNodeList = () => document.createDocumentFragment().childNodes;\n/* v8 ignore stop */\n/**\n* Parses HTML string to DOM nodes.\n*\n* @param html - HTML markup.\n* @param trustedTypePolicy - Trusted Types policy.\n* @returns - DOM nodes.\n*/\nfunction domparser(html, trustedTypePolicy) {\n\thtml = require_utilities.escapeSpecialCharacters(html);\n\tconst firstTagName = FIRST_TAG_REGEX.exec(html)?.[1]?.toLowerCase();\n\tswitch (firstTagName) {\n\t\tcase HTML: {\n\t\t\tconst doc = parseFromString(html);\n\t\t\tif (!require_utilities.hasOpenTag(html, HEAD)) {\n\t\t\t\tconst element = doc.querySelector(HEAD);\n\t\t\t\telement?.parentNode?.removeChild(element);\n\t\t\t}\n\t\t\tif (!require_utilities.hasOpenTag(html, BODY)) {\n\t\t\t\tconst element = doc.querySelector(BODY);\n\t\t\t\telement?.parentNode?.removeChild(element);\n\t\t\t}\n\t\t\treturn doc.querySelectorAll(HTML);\n\t\t}\n\t\tcase HEAD:\n\t\tcase BODY: {\n\t\t\tconst elements = parseFromDocument(html, void 0, trustedTypePolicy).querySelectorAll(firstTagName);\n\t\t\t/* v8 ignore next */\n\t\t\tif (require_utilities.hasOpenTag(html, BODY) && require_utilities.hasOpenTag(html, HEAD)) return elements[0].parentNode?.childNodes ?? createNodeList();\n\t\t\treturn elements;\n\t\t}\n\t\t/* v8 ignore start */\n\t\tdefault:\n\t\t\tif (parseFromTemplate) return parseFromTemplate(html, trustedTypePolicy);\n\t\t\treturn parseFromDocument(html, BODY, trustedTypePolicy).querySelector(BODY)?.childNodes ?? createNodeList();\n\t}\n}\n//#endregion\nexports.default = domparser;\n\n//# sourceMappingURL=domparser.js.map","Object.defineProperties(exports, {\n\t__esModule: { value: true },\n\t[Symbol.toStringTag]: { value: \"Module\" }\n});\nconst require_utilities = require(\"./utilities.js\");\nconst require_domparser = require(\"./domparser.js\");\n//#region src/client/html-to-dom.ts\nconst DIRECTIVE_REGEX = /<(![a-zA-Z\\s]+)>/;\n/**\n* Parses HTML string to DOM nodes in browser.\n*\n* @param html - HTML markup.\n* @param options - Parser options.\n* @returns - DOM elements.\n*/\nfunction HTMLDOMParser(html, options) {\n\tif (typeof html !== \"string\") throw new TypeError(\"First argument must be a string\");\n\tif (!html) return [];\n\tconst match = DIRECTIVE_REGEX.exec(html);\n\tconst directive = match ? match[1] : void 0;\n\treturn require_utilities.formatDOM(require_domparser.default(html, options?.trustedTypePolicy), null, directive);\n}\n//#endregion\nexports.default = HTMLDOMParser;\n\n//# sourceMappingURL=html-to-dom.js.map","// An attribute in which the DOM/SVG standard name is the same as the React prop name (e.g., 'accept').\nvar SAME = 0;\nexports.SAME = SAME;\n\n// An attribute in which the React prop name is the camelcased version of the DOM/SVG standard name (e.g., 'acceptCharset').\nvar CAMELCASE = 1;\nexports.CAMELCASE = CAMELCASE;\n\nexports.possibleStandardNames = {\n accept: 0,\n acceptCharset: 1,\n 'accept-charset': 'acceptCharset',\n accessKey: 1,\n action: 0,\n allowFullScreen: 1,\n alt: 0,\n as: 0,\n async: 0,\n autoCapitalize: 1,\n autoComplete: 1,\n autoCorrect: 1,\n autoFocus: 1,\n autoPlay: 1,\n autoSave: 1,\n capture: 0,\n cellPadding: 1,\n cellSpacing: 1,\n challenge: 0,\n charSet: 1,\n checked: 0,\n children: 0,\n cite: 0,\n class: 'className',\n classID: 1,\n className: 1,\n cols: 0,\n colSpan: 1,\n content: 0,\n contentEditable: 1,\n contextMenu: 1,\n controls: 0,\n controlsList: 1,\n coords: 0,\n crossOrigin: 1,\n dangerouslySetInnerHTML: 1,\n data: 0,\n dateTime: 1,\n default: 0,\n defaultChecked: 1,\n defaultValue: 1,\n defer: 0,\n dir: 0,\n disabled: 0,\n disablePictureInPicture: 1,\n disableRemotePlayback: 1,\n download: 0,\n draggable: 0,\n encType: 1,\n enterKeyHint: 1,\n for: 'htmlFor',\n form: 0,\n formMethod: 1,\n formAction: 1,\n formEncType: 1,\n formNoValidate: 1,\n formTarget: 1,\n frameBorder: 1,\n headers: 0,\n height: 0,\n hidden: 0,\n high: 0,\n href: 0,\n hrefLang: 1,\n htmlFor: 1,\n httpEquiv: 1,\n 'http-equiv': 'httpEquiv',\n icon: 0,\n id: 0,\n innerHTML: 1,\n inputMode: 1,\n integrity: 0,\n is: 0,\n itemID: 1,\n itemProp: 1,\n itemRef: 1,\n itemScope: 1,\n itemType: 1,\n keyParams: 1,\n keyType: 1,\n kind: 0,\n label: 0,\n lang: 0,\n list: 0,\n loop: 0,\n low: 0,\n manifest: 0,\n marginWidth: 1,\n marginHeight: 1,\n max: 0,\n maxLength: 1,\n media: 0,\n mediaGroup: 1,\n method: 0,\n min: 0,\n minLength: 1,\n multiple: 0,\n muted: 0,\n name: 0,\n noModule: 1,\n nonce: 0,\n noValidate: 1,\n open: 0,\n optimum: 0,\n pattern: 0,\n placeholder: 0,\n playsInline: 1,\n poster: 0,\n preload: 0,\n profile: 0,\n radioGroup: 1,\n readOnly: 1,\n referrerPolicy: 1,\n rel: 0,\n required: 0,\n reversed: 0,\n role: 0,\n rows: 0,\n rowSpan: 1,\n sandbox: 0,\n scope: 0,\n scoped: 0,\n scrolling: 0,\n seamless: 0,\n selected: 0,\n shape: 0,\n size: 0,\n sizes: 0,\n span: 0,\n spellCheck: 1,\n src: 0,\n srcDoc: 1,\n srcLang: 1,\n srcSet: 1,\n start: 0,\n step: 0,\n style: 0,\n summary: 0,\n tabIndex: 1,\n target: 0,\n title: 0,\n type: 0,\n useMap: 1,\n value: 0,\n width: 0,\n wmode: 0,\n wrap: 0,\n about: 0,\n accentHeight: 1,\n 'accent-height': 'accentHeight',\n accumulate: 0,\n additive: 0,\n alignmentBaseline: 1,\n 'alignment-baseline': 'alignmentBaseline',\n allowReorder: 1,\n alphabetic: 0,\n amplitude: 0,\n arabicForm: 1,\n 'arabic-form': 'arabicForm',\n ascent: 0,\n attributeName: 1,\n attributeType: 1,\n autoReverse: 1,\n azimuth: 0,\n baseFrequency: 1,\n baselineShift: 1,\n 'baseline-shift': 'baselineShift',\n baseProfile: 1,\n bbox: 0,\n begin: 0,\n bias: 0,\n by: 0,\n calcMode: 1,\n capHeight: 1,\n 'cap-height': 'capHeight',\n clip: 0,\n clipPath: 1,\n 'clip-path': 'clipPath',\n clipPathUnits: 1,\n clipRule: 1,\n 'clip-rule': 'clipRule',\n color: 0,\n colorInterpolation: 1,\n 'color-interpolation': 'colorInterpolation',\n colorInterpolationFilters: 1,\n 'color-interpolation-filters': 'colorInterpolationFilters',\n colorProfile: 1,\n 'color-profile': 'colorProfile',\n colorRendering: 1,\n 'color-rendering': 'colorRendering',\n contentScriptType: 1,\n contentStyleType: 1,\n cursor: 0,\n cx: 0,\n cy: 0,\n d: 0,\n datatype: 0,\n decelerate: 0,\n descent: 0,\n diffuseConstant: 1,\n direction: 0,\n display: 0,\n divisor: 0,\n dominantBaseline: 1,\n 'dominant-baseline': 'dominantBaseline',\n dur: 0,\n dx: 0,\n dy: 0,\n edgeMode: 1,\n elevation: 0,\n enableBackground: 1,\n 'enable-background': 'enableBackground',\n end: 0,\n exponent: 0,\n externalResourcesRequired: 1,\n fill: 0,\n fillOpacity: 1,\n 'fill-opacity': 'fillOpacity',\n fillRule: 1,\n 'fill-rule': 'fillRule',\n filter: 0,\n filterRes: 1,\n filterUnits: 1,\n floodOpacity: 1,\n 'flood-opacity': 'floodOpacity',\n floodColor: 1,\n 'flood-color': 'floodColor',\n focusable: 0,\n fontFamily: 1,\n 'font-family': 'fontFamily',\n fontSize: 1,\n 'font-size': 'fontSize',\n fontSizeAdjust: 1,\n 'font-size-adjust': 'fontSizeAdjust',\n fontStretch: 1,\n 'font-stretch': 'fontStretch',\n fontStyle: 1,\n 'font-style': 'fontStyle',\n fontVariant: 1,\n 'font-variant': 'fontVariant',\n fontWeight: 1,\n 'font-weight': 'fontWeight',\n format: 0,\n from: 0,\n fx: 0,\n fy: 0,\n g1: 0,\n g2: 0,\n glyphName: 1,\n 'glyph-name': 'glyphName',\n glyphOrientationHorizontal: 1,\n 'glyph-orientation-horizontal': 'glyphOrientationHorizontal',\n glyphOrientationVertical: 1,\n 'glyph-orientation-vertical': 'glyphOrientationVertical',\n glyphRef: 1,\n gradientTransform: 1,\n gradientUnits: 1,\n hanging: 0,\n horizAdvX: 1,\n 'horiz-adv-x': 'horizAdvX',\n horizOriginX: 1,\n 'horiz-origin-x': 'horizOriginX',\n ideographic: 0,\n imageRendering: 1,\n 'image-rendering': 'imageRendering',\n in2: 0,\n in: 0,\n inlist: 0,\n intercept: 0,\n k1: 0,\n k2: 0,\n k3: 0,\n k4: 0,\n k: 0,\n kernelMatrix: 1,\n kernelUnitLength: 1,\n kerning: 0,\n keyPoints: 1,\n keySplines: 1,\n keyTimes: 1,\n lengthAdjust: 1,\n letterSpacing: 1,\n 'letter-spacing': 'letterSpacing',\n lightingColor: 1,\n 'lighting-color': 'lightingColor',\n limitingConeAngle: 1,\n local: 0,\n markerEnd: 1,\n 'marker-end': 'markerEnd',\n markerHeight: 1,\n markerMid: 1,\n 'marker-mid': 'markerMid',\n markerStart: 1,\n 'marker-start': 'markerStart',\n markerUnits: 1,\n markerWidth: 1,\n mask: 0,\n maskContentUnits: 1,\n maskUnits: 1,\n mathematical: 0,\n mode: 0,\n numOctaves: 1,\n offset: 0,\n opacity: 0,\n operator: 0,\n order: 0,\n orient: 0,\n orientation: 0,\n origin: 0,\n overflow: 0,\n overlinePosition: 1,\n 'overline-position': 'overlinePosition',\n overlineThickness: 1,\n 'overline-thickness': 'overlineThickness',\n paintOrder: 1,\n 'paint-order': 'paintOrder',\n panose1: 0,\n 'panose-1': 'panose1',\n pathLength: 1,\n patternContentUnits: 1,\n patternTransform: 1,\n patternUnits: 1,\n pointerEvents: 1,\n 'pointer-events': 'pointerEvents',\n points: 0,\n pointsAtX: 1,\n pointsAtY: 1,\n pointsAtZ: 1,\n prefix: 0,\n preserveAlpha: 1,\n preserveAspectRatio: 1,\n primitiveUnits: 1,\n property: 0,\n r: 0,\n radius: 0,\n refX: 1,\n refY: 1,\n renderingIntent: 1,\n 'rendering-intent': 'renderingIntent',\n repeatCount: 1,\n repeatDur: 1,\n requiredExtensions: 1,\n requiredFeatures: 1,\n resource: 0,\n restart: 0,\n result: 0,\n results: 0,\n rotate: 0,\n rx: 0,\n ry: 0,\n scale: 0,\n security: 0,\n seed: 0,\n shapeRendering: 1,\n 'shape-rendering': 'shapeRendering',\n slope: 0,\n spacing: 0,\n specularConstant: 1,\n specularExponent: 1,\n speed: 0,\n spreadMethod: 1,\n startOffset: 1,\n stdDeviation: 1,\n stemh: 0,\n stemv: 0,\n stitchTiles: 1,\n stopColor: 1,\n 'stop-color': 'stopColor',\n stopOpacity: 1,\n 'stop-opacity': 'stopOpacity',\n strikethroughPosition: 1,\n 'strikethrough-position': 'strikethroughPosition',\n strikethroughThickness: 1,\n 'strikethrough-thickness': 'strikethroughThickness',\n string: 0,\n stroke: 0,\n strokeDasharray: 1,\n 'stroke-dasharray': 'strokeDasharray',\n strokeDashoffset: 1,\n 'stroke-dashoffset': 'strokeDashoffset',\n strokeLinecap: 1,\n 'stroke-linecap': 'strokeLinecap',\n strokeLinejoin: 1,\n 'stroke-linejoin': 'strokeLinejoin',\n strokeMiterlimit: 1,\n 'stroke-miterlimit': 'strokeMiterlimit',\n strokeWidth: 1,\n 'stroke-width': 'strokeWidth',\n strokeOpacity: 1,\n 'stroke-opacity': 'strokeOpacity',\n suppressContentEditableWarning: 1,\n suppressHydrationWarning: 1,\n surfaceScale: 1,\n systemLanguage: 1,\n tableValues: 1,\n targetX: 1,\n targetY: 1,\n textAnchor: 1,\n 'text-anchor': 'textAnchor',\n textDecoration: 1,\n 'text-decoration': 'textDecoration',\n textLength: 1,\n textRendering: 1,\n 'text-rendering': 'textRendering',\n to: 0,\n transform: 0,\n typeof: 0,\n u1: 0,\n u2: 0,\n underlinePosition: 1,\n 'underline-position': 'underlinePosition',\n underlineThickness: 1,\n 'underline-thickness': 'underlineThickness',\n unicode: 0,\n unicodeBidi: 1,\n 'unicode-bidi': 'unicodeBidi',\n unicodeRange: 1,\n 'unicode-range': 'unicodeRange',\n unitsPerEm: 1,\n 'units-per-em': 'unitsPerEm',\n unselectable: 0,\n vAlphabetic: 1,\n 'v-alphabetic': 'vAlphabetic',\n values: 0,\n vectorEffect: 1,\n 'vector-effect': 'vectorEffect',\n version: 0,\n vertAdvY: 1,\n 'vert-adv-y': 'vertAdvY',\n vertOriginX: 1,\n 'vert-origin-x': 'vertOriginX',\n vertOriginY: 1,\n 'vert-origin-y': 'vertOriginY',\n vHanging: 1,\n 'v-hanging': 'vHanging',\n vIdeographic: 1,\n 'v-ideographic': 'vIdeographic',\n viewBox: 1,\n viewTarget: 1,\n visibility: 0,\n vMathematical: 1,\n 'v-mathematical': 'vMathematical',\n vocab: 0,\n widths: 0,\n wordSpacing: 1,\n 'word-spacing': 'wordSpacing',\n writingMode: 1,\n 'writing-mode': 'writingMode',\n x1: 0,\n x2: 0,\n x: 0,\n xChannelSelector: 1,\n xHeight: 1,\n 'x-height': 'xHeight',\n xlinkActuate: 1,\n 'xlink:actuate': 'xlinkActuate',\n xlinkArcrole: 1,\n 'xlink:arcrole': 'xlinkArcrole',\n xlinkHref: 1,\n 'xlink:href': 'xlinkHref',\n xlinkRole: 1,\n 'xlink:role': 'xlinkRole',\n xlinkShow: 1,\n 'xlink:show': 'xlinkShow',\n xlinkTitle: 1,\n 'xlink:title': 'xlinkTitle',\n xlinkType: 1,\n 'xlink:type': 'xlinkType',\n xmlBase: 1,\n 'xml:base': 'xmlBase',\n xmlLang: 1,\n 'xml:lang': 'xmlLang',\n xmlns: 0,\n 'xml:space': 'xmlSpace',\n xmlnsXlink: 1,\n 'xmlns:xlink': 'xmlnsXlink',\n xmlSpace: 1,\n y1: 0,\n y2: 0,\n y: 0,\n yChannelSelector: 1,\n z: 0,\n zoomAndPan: 1\n};\n","'use strict';\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\n\n\n\n\n// A reserved attribute.\n// It is handled by React separately and shouldn't be written to the DOM.\nconst RESERVED = 0;\n\n// A simple string attribute.\n// Attributes that aren't in the filter are presumed to have this type.\nconst STRING = 1;\n\n// A string attribute that accepts booleans in React. In HTML, these are called\n// \"enumerated\" attributes with \"true\" and \"false\" as possible values.\n// When true, it should be set to a \"true\" string.\n// When false, it should be set to a \"false\" string.\nconst BOOLEANISH_STRING = 2;\n\n// A real boolean attribute.\n// When true, it should be present (set either to an empty string or its name).\n// When false, it should be omitted.\nconst BOOLEAN = 3;\n\n// An attribute that can be used as a flag as well as with a value.\n// When true, it should be present (set either to an empty string or its name).\n// When false, it should be omitted.\n// For any other value, should be present with that value.\nconst OVERLOADED_BOOLEAN = 4;\n\n// An attribute that must be numeric or parse as a numeric.\n// When falsy, it should be removed.\nconst NUMERIC = 5;\n\n// An attribute that must be positive numeric or parse as a positive numeric.\n// When falsy, it should be removed.\nconst POSITIVE_NUMERIC = 6;\n\nfunction getPropertyInfo(name) {\n return properties.hasOwnProperty(name) ? properties[name] : null;\n}\n\nfunction PropertyInfoRecord(\n name,\n type,\n mustUseProperty,\n attributeName,\n attributeNamespace,\n sanitizeURL,\n removeEmptyString,\n) {\n this.acceptsBooleans =\n type === BOOLEANISH_STRING ||\n type === BOOLEAN ||\n type === OVERLOADED_BOOLEAN;\n this.attributeName = attributeName;\n this.attributeNamespace = attributeNamespace;\n this.mustUseProperty = mustUseProperty;\n this.propertyName = name;\n this.type = type;\n this.sanitizeURL = sanitizeURL;\n this.removeEmptyString = removeEmptyString;\n}\n\n// When adding attributes to this list, be sure to also add them to\n// the `possibleStandardNames` module to ensure casing and incorrect\n// name warnings.\nconst properties = {};\n\n// These props are reserved by React. They shouldn't be written to the DOM.\nconst reservedProps = [\n 'children',\n 'dangerouslySetInnerHTML',\n // TODO: This prevents the assignment of defaultValue to regular\n // elements (not just inputs). Now that ReactDOMInput assigns to the\n // defaultValue property -- do we need this?\n 'defaultValue',\n 'defaultChecked',\n 'innerHTML',\n 'suppressContentEditableWarning',\n 'suppressHydrationWarning',\n 'style',\n];\n\nreservedProps.forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n RESERVED,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// A few React string attributes have a different name.\n// This is a mapping from React prop names to the attribute names.\n[\n ['acceptCharset', 'accept-charset'],\n ['className', 'class'],\n ['htmlFor', 'for'],\n ['httpEquiv', 'http-equiv'],\n].forEach(([name, attributeName]) => {\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are \"enumerated\" HTML attributes that accept \"true\" and \"false\".\n// In React, we let users pass `true` and `false` even though technically\n// these aren't boolean attributes (they are coerced to strings).\n['contentEditable', 'draggable', 'spellCheck', 'value'].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEANISH_STRING,\n false, // mustUseProperty\n name.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are \"enumerated\" SVG attributes that accept \"true\" and \"false\".\n// In React, we let users pass `true` and `false` even though technically\n// these aren't boolean attributes (they are coerced to strings).\n// Since these are SVG attributes, their attribute names are case-sensitive.\n[\n 'autoReverse',\n 'externalResourcesRequired',\n 'focusable',\n 'preserveAlpha',\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEANISH_STRING,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML boolean attributes.\n[\n 'allowFullScreen',\n 'async',\n // Note: there is a special case that prevents it from being written to the DOM\n // on the client side because the browsers are inconsistent. Instead we call focus().\n 'autoFocus',\n 'autoPlay',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'disablePictureInPicture',\n 'disableRemotePlayback',\n 'formNoValidate',\n 'hidden',\n 'loop',\n 'noModule',\n 'noValidate',\n 'open',\n 'playsInline',\n 'readOnly',\n 'required',\n 'reversed',\n 'scoped',\n 'seamless',\n // Microdata\n 'itemScope',\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEAN,\n false, // mustUseProperty\n name.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are the few React props that we set as DOM properties\n// rather than attributes. These are all booleans.\n[\n 'checked',\n // Note: `option.selected` is not updated if `select.multiple` is\n // disabled with `removeAttribute`. We have special logic for handling this.\n 'multiple',\n 'muted',\n 'selected',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n BOOLEAN,\n true, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML attributes that are \"overloaded booleans\": they behave like\n// booleans, but can also accept a string value.\n[\n 'capture',\n 'download',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n OVERLOADED_BOOLEAN,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML attributes that must be positive numbers.\n[\n 'cols',\n 'rows',\n 'size',\n 'span',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n POSITIVE_NUMERIC,\n false, // mustUseProperty\n name, // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These are HTML attributes that must be numbers.\n['rowSpan', 'start'].forEach(name => {\n properties[name] = new PropertyInfoRecord(\n name,\n NUMERIC,\n false, // mustUseProperty\n name.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\nconst CAMELIZE = /[\\-\\:]([a-z])/g;\nconst capitalize = token => token[1].toUpperCase();\n\n// This is a list of all SVG attributes that need special casing, namespacing,\n// or boolean value assignment. Regular attributes that just accept strings\n// and have the same names are omitted, just like in the HTML attribute filter.\n// Some of these attributes can be hard to find. This list was created by\n// scraping the MDN documentation.\n[\n 'accent-height',\n 'alignment-baseline',\n 'arabic-form',\n 'baseline-shift',\n 'cap-height',\n 'clip-path',\n 'clip-rule',\n 'color-interpolation',\n 'color-interpolation-filters',\n 'color-profile',\n 'color-rendering',\n 'dominant-baseline',\n 'enable-background',\n 'fill-opacity',\n 'fill-rule',\n 'flood-color',\n 'flood-opacity',\n 'font-family',\n 'font-size',\n 'font-size-adjust',\n 'font-stretch',\n 'font-style',\n 'font-variant',\n 'font-weight',\n 'glyph-name',\n 'glyph-orientation-horizontal',\n 'glyph-orientation-vertical',\n 'horiz-adv-x',\n 'horiz-origin-x',\n 'image-rendering',\n 'letter-spacing',\n 'lighting-color',\n 'marker-end',\n 'marker-mid',\n 'marker-start',\n 'overline-position',\n 'overline-thickness',\n 'paint-order',\n 'panose-1',\n 'pointer-events',\n 'rendering-intent',\n 'shape-rendering',\n 'stop-color',\n 'stop-opacity',\n 'strikethrough-position',\n 'strikethrough-thickness',\n 'stroke-dasharray',\n 'stroke-dashoffset',\n 'stroke-linecap',\n 'stroke-linejoin',\n 'stroke-miterlimit',\n 'stroke-opacity',\n 'stroke-width',\n 'text-anchor',\n 'text-decoration',\n 'text-rendering',\n 'underline-position',\n 'underline-thickness',\n 'unicode-bidi',\n 'unicode-range',\n 'units-per-em',\n 'v-alphabetic',\n 'v-hanging',\n 'v-ideographic',\n 'v-mathematical',\n 'vector-effect',\n 'vert-adv-y',\n 'vert-origin-x',\n 'vert-origin-y',\n 'word-spacing',\n 'writing-mode',\n 'xmlns:xlink',\n 'x-height',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(attributeName => {\n const name = attributeName.replace(CAMELIZE, capitalize);\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName,\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// String SVG attributes with the xlink namespace.\n[\n 'xlink:actuate',\n 'xlink:arcrole',\n 'xlink:role',\n 'xlink:show',\n 'xlink:title',\n 'xlink:type',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(attributeName => {\n const name = attributeName.replace(CAMELIZE, capitalize);\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName,\n 'http://www.w3.org/1999/xlink',\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// String SVG attributes with the xml namespace.\n[\n 'xml:base',\n 'xml:lang',\n 'xml:space',\n\n // NOTE: if you add a camelCased prop to this list,\n // you'll need to set attributeName to name.toLowerCase()\n // instead in the assignment below.\n].forEach(attributeName => {\n const name = attributeName.replace(CAMELIZE, capitalize);\n properties[name] = new PropertyInfoRecord(\n name,\n STRING,\n false, // mustUseProperty\n attributeName,\n 'http://www.w3.org/XML/1998/namespace',\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These attribute exists both in HTML and SVG.\n// The attribute name is case-sensitive in SVG so we can't just use\n// the React name like we do for attributes that exist only in HTML.\n['tabIndex', 'crossOrigin'].forEach(attributeName => {\n properties[attributeName] = new PropertyInfoRecord(\n attributeName,\n STRING,\n false, // mustUseProperty\n attributeName.toLowerCase(), // attributeName\n null, // attributeNamespace\n false, // sanitizeURL\n false, // removeEmptyString\n );\n});\n\n// These attributes accept URLs. These must not allow javascript: URLS.\n// These will also need to accept Trusted Types object in the future.\nconst xlinkHref = 'xlinkHref';\nproperties[xlinkHref] = new PropertyInfoRecord(\n 'xlinkHref',\n STRING,\n false, // mustUseProperty\n 'xlink:href',\n 'http://www.w3.org/1999/xlink',\n true, // sanitizeURL\n false, // removeEmptyString\n);\n\n['src', 'href', 'action', 'formAction'].forEach(attributeName => {\n properties[attributeName] = new PropertyInfoRecord(\n attributeName,\n STRING,\n false, // mustUseProperty\n attributeName.toLowerCase(), // attributeName\n null, // attributeNamespace\n true, // sanitizeURL\n true, // removeEmptyString\n );\n});\n\n// \nconst {\n CAMELCASE,\n SAME,\n possibleStandardNames: possibleStandardNamesOptimized\n} = require('../lib/possibleStandardNamesOptimized');\n\nconst ATTRIBUTE_NAME_START_CHAR =\n ':A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\n\nconst ATTRIBUTE_NAME_CHAR =\n ATTRIBUTE_NAME_START_CHAR + '\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040';\n\n/**\n * Checks whether a property name is a custom attribute.\n *\n * @see https://github.com/facebook/react/blob/15-stable/src/renderers/dom/shared/HTMLDOMPropertyConfig.js#L23-L25\n *\n * @type {(attribute: string) => boolean}\n */\nconst isCustomAttribute =\n RegExp.prototype.test.bind(\n // eslint-disable-next-line no-misleading-character-class\n new RegExp('^(data|aria)-[' + ATTRIBUTE_NAME_CHAR + ']*$')\n );\n\n/**\n * @type {Record<string, string>}\n */\nconst possibleStandardNames = Object.keys(\n possibleStandardNamesOptimized\n).reduce((accumulator, standardName) => {\n const propName = possibleStandardNamesOptimized[standardName];\n if (propName === SAME) {\n accumulator[standardName] = standardName;\n } else if (propName === CAMELCASE) {\n accumulator[standardName.toLowerCase()] = standardName;\n } else {\n accumulator[standardName] = propName;\n }\n return accumulator;\n}, {});\n\nexports.BOOLEAN = BOOLEAN;\nexports.BOOLEANISH_STRING = BOOLEANISH_STRING;\nexports.NUMERIC = NUMERIC;\nexports.OVERLOADED_BOOLEAN = OVERLOADED_BOOLEAN;\nexports.POSITIVE_NUMERIC = POSITIVE_NUMERIC;\nexports.RESERVED = RESERVED;\nexports.STRING = STRING;\nexports.getPropertyInfo = getPropertyInfo;\nexports.isCustomAttribute = isCustomAttribute;\nexports.possibleStandardNames = possibleStandardNames;\n","'use strict';\n\n// http://www.w3.org/TR/CSS21/grammar.html\n// https://github.com/visionmedia/css-parse/pull/49#issuecomment-30088027\nvar COMMENT_REGEX = /\\/\\*[^*]*\\*+([^/*][^*]*\\*+)*\\//g;\n\nvar NEWLINE_REGEX = /\\n/g;\nvar WHITESPACE_REGEX = /^\\s*/;\n\n// declaration\nvar PROPERTY_REGEX = /^(\\*?[-#/*\\\\\\w]+(\\[[0-9a-z_-]+\\])?)\\s*/;\nvar COLON_REGEX = /^:\\s*/;\nvar VALUE_REGEX = /^((?:'(?:\\\\'|.)*?'|\"(?:\\\\\"|.)*?\"|\\([^)]*?\\)|[^};])+)/;\nvar SEMICOLON_REGEX = /^[;\\s]*/;\n\n// https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String/Trim#Polyfill\nvar TRIM_REGEX = /^\\s+|\\s+$/g;\n\n// strings\nvar NEWLINE = '\\n';\nvar FORWARD_SLASH = '/';\nvar ASTERISK = '*';\nvar EMPTY_STRING = '';\n\n// types\nvar TYPE_COMMENT = 'comment';\nvar TYPE_DECLARATION = 'declaration';\n\n/**\n * @param {String} style\n * @param {Object} [options]\n * @return {Object[]}\n * @throws {TypeError}\n * @throws {Error}\n */\nfunction index (style, options) {\n if (typeof style !== 'string') {\n throw new TypeError('First argument must be a string');\n }\n\n if (!style) return [];\n\n options = options || {};\n\n /**\n * Positional.\n */\n var lineno = 1;\n var column = 1;\n\n /**\n * Update lineno and column based on `str`.\n *\n * @param {String} str\n */\n function updatePosition(str) {\n var lines = str.match(NEWLINE_REGEX);\n if (lines) lineno += lines.length;\n var i = str.lastIndexOf(NEWLINE);\n column = ~i ? str.length - i : column + str.length;\n }\n\n /**\n * Mark position and patch `node.position`.\n *\n * @return {Function}\n */\n function position() {\n var start = { line: lineno, column: column };\n return function (node) {\n node.position = new Position(start);\n whitespace();\n return node;\n };\n }\n\n /**\n * Store position information for a node.\n *\n * @constructor\n * @property {Object} start\n * @property {Object} end\n * @property {undefined|String} source\n */\n function Position(start) {\n this.start = start;\n this.end = { line: lineno, column: column };\n this.source = options.source;\n }\n\n /**\n * Non-enumerable source string.\n */\n Position.prototype.content = style;\n\n /**\n * Error `msg`.\n *\n * @param {String} msg\n * @throws {Error}\n */\n function error(msg) {\n var err = new Error(\n options.source + ':' + lineno + ':' + column + ': ' + msg\n );\n err.reason = msg;\n err.filename = options.source;\n err.line = lineno;\n err.column = column;\n err.source = style;\n\n if (options.silent) ; else {\n throw err;\n }\n }\n\n /**\n * Match `re` and return captures.\n *\n * @param {RegExp} re\n * @return {undefined|Array}\n */\n function match(re) {\n var m = re.exec(style);\n if (!m) return;\n var str = m[0];\n updatePosition(str);\n style = style.slice(str.length);\n return m;\n }\n\n /**\n * Parse whitespace.\n */\n function whitespace() {\n match(WHITESPACE_REGEX);\n }\n\n /**\n * Parse comments.\n *\n * @param {Object[]} [rules]\n * @return {Object[]}\n */\n function comments(rules) {\n var c;\n rules = rules || [];\n while ((c = comment())) {\n if (c !== false) {\n rules.push(c);\n }\n }\n return rules;\n }\n\n /**\n * Parse comment.\n *\n * @return {Object}\n * @throws {Error}\n */\n function comment() {\n var pos = position();\n if (FORWARD_SLASH != style.charAt(0) || ASTERISK != style.charAt(1)) return;\n\n var i = 2;\n while (\n EMPTY_STRING != style.charAt(i) &&\n (ASTERISK != style.charAt(i) || FORWARD_SLASH != style.charAt(i + 1))\n ) {\n ++i;\n }\n i += 2;\n\n if (EMPTY_STRING === style.charAt(i - 1)) {\n return error('End of comment missing');\n }\n\n var str = style.slice(2, i - 2);\n column += 2;\n updatePosition(str);\n style = style.slice(i);\n column += 2;\n\n return pos({\n type: TYPE_COMMENT,\n comment: str\n });\n }\n\n /**\n * Parse declaration.\n *\n * @return {Object}\n * @throws {Error}\n */\n function declaration() {\n var pos = position();\n\n // prop\n var prop = match(PROPERTY_REGEX);\n if (!prop) return;\n comment();\n\n // :\n if (!match(COLON_REGEX)) return error(\"property missing ':'\");\n\n // val\n var val = match(VALUE_REGEX);\n\n var ret = pos({\n type: TYPE_DECLARATION,\n property: trim(prop[0].replace(COMMENT_REGEX, EMPTY_STRING)),\n value: val\n ? trim(val[0].replace(COMMENT_REGEX, EMPTY_STRING))\n : EMPTY_STRING\n });\n\n // ;\n match(SEMICOLON_REGEX);\n\n return ret;\n }\n\n /**\n * Parse declarations.\n *\n * @return {Object[]}\n */\n function declarations() {\n var decls = [];\n\n comments(decls);\n\n // declarations\n var decl;\n while ((decl = declaration())) {\n if (decl !== false) {\n decls.push(decl);\n comments(decls);\n }\n }\n\n return decls;\n }\n\n whitespace();\n return declarations();\n}\n\n/**\n * Trim `str`.\n *\n * @param {String} str\n * @return {String}\n */\nfunction trim(str) {\n return str ? str.replace(TRIM_REGEX, EMPTY_STRING) : EMPTY_STRING;\n}\n\nmodule.exports = index;\n//# sourceMappingURL=index.js.map\n","//#region \\0rolldown/runtime.js\nvar __create = Object.create;\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __getProtoOf = Object.getPrototypeOf;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __copyProps = (to, from, except, desc) => {\n\tif (from && typeof from === \"object\" || typeof from === \"function\") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {\n\t\tkey = keys[i];\n\t\tif (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {\n\t\t\tget: ((k) => from[k]).bind(null, key),\n\t\t\tenumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable\n\t\t});\n\t}\n\treturn to;\n};\nvar __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, \"default\", {\n\tvalue: mod,\n\tenumerable: true\n}) : target, mod));\n//#endregion\nlet inline_style_parser = require(\"inline-style-parser\");\ninline_style_parser = __toESM(inline_style_parser);\n//#region src/index.ts\n/**\n* Parses inline style to object.\n*\n* @param style - Inline style.\n* @param iterator - Iterator.\n* @returns - Style object or null.\n*\n* @example Parsing inline style to object:\n*\n* ```js\n* import parse from 'style-to-object';\n* parse('line-height: 42;'); // { 'line-height': '42' }\n* ```\n*/\nfunction StyleToObject(style, iterator) {\n\tlet styleObject = null;\n\tif (!style || typeof style !== \"string\") return styleObject;\n\tconst declarations = (0, inline_style_parser.default)(style);\n\tconst hasIterator = typeof iterator === \"function\";\n\tdeclarations.forEach((declaration) => {\n\t\tif (declaration.type !== \"declaration\") return;\n\t\tconst { property, value } = declaration;\n\t\tif (hasIterator) iterator(property, value, declaration);\n\t\telse if (value) {\n\t\t\tstyleObject = styleObject ?? {};\n\t\t\tstyleObject[property] = value;\n\t\t}\n\t});\n\treturn styleObject;\n}\n//#endregion\nmodule.exports = StyleToObject;\n\n//# sourceMappingURL=index.js.map","//#region \\0rolldown/runtime.js\nvar __create = Object.create;\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __getProtoOf = Object.getPrototypeOf;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __copyProps = (to, from, except, desc) => {\n\tif (from && typeof from === \"object\" || typeof from === \"function\") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {\n\t\tkey = keys[i];\n\t\tif (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {\n\t\t\tget: ((k) => from[k]).bind(null, key),\n\t\t\tenumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable\n\t\t});\n\t}\n\treturn to;\n};\nvar __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, \"default\", {\n\tvalue: mod,\n\tenumerable: true\n}) : target, mod));\n//#endregion\nlet style_to_object = require(\"style-to-object\");\nstyle_to_object = __toESM(style_to_object);\n//#region src/utilities.ts\nconst CUSTOM_PROPERTY_REGEX = /^--[a-zA-Z0-9_-]+$/;\nconst HYPHEN_REGEX = /-([a-z])/g;\nconst NO_HYPHEN_REGEX = /^[^-]+$/;\nconst VENDOR_PREFIX_REGEX = /^-(webkit|moz|ms|o|khtml)-/;\nconst MS_VENDOR_PREFIX_REGEX = /^-(ms)-/;\n/**\n* Checks whether to skip camelCase.\n*/\nconst skipCamelCase = (property) => !property || NO_HYPHEN_REGEX.test(property) || CUSTOM_PROPERTY_REGEX.test(property);\n/**\n* Replacer that capitalizes first character.\n*/\nconst capitalize = (match, character) => character.toUpperCase();\n/**\n* Replacer that removes beginning hyphen of vendor prefix property.\n*/\nconst trimHyphen = (match, prefix) => `${prefix}-`;\n/**\n* CamelCases a CSS property.\n*/\nconst camelCase = (property, options = {}) => {\n\tif (skipCamelCase(property)) return property;\n\tproperty = property.toLowerCase();\n\tif (options.reactCompat) property = property.replace(MS_VENDOR_PREFIX_REGEX, trimHyphen);\n\telse property = property.replace(VENDOR_PREFIX_REGEX, trimHyphen);\n\treturn property.replace(HYPHEN_REGEX, capitalize);\n};\n//#endregion\n//#region src/index.ts\n/**\n* Parses CSS inline style to JavaScript object (camelCased).\n*/\nfunction StyleToJS(style, options) {\n\tconst output = {};\n\tif (!style || typeof style !== \"string\") return output;\n\t(0, style_to_object.default)(style, (property, value) => {\n\t\tif (property && value) output[camelCase(property, options)] = value;\n\t});\n\treturn output;\n}\n//#endregion\nmodule.exports = StyleToJS;\n","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.returnFirstArg = exports.canTextBeChildOfNode = exports.ELEMENTS_WITH_NO_TEXT_CHILDREN = exports.PRESERVE_CUSTOM_ATTRIBUTES = void 0;\nexports.isCustomComponent = isCustomComponent;\nexports.setStyleProp = setStyleProp;\nconst react_1 = require(\"react\");\nconst style_to_js_1 = __importDefault(require(\"style-to-js\"));\nconst RESERVED_SVG_MATHML_ELEMENTS = new Set([\n 'annotation-xml',\n 'color-profile',\n 'font-face',\n 'font-face-src',\n 'font-face-uri',\n 'font-face-format',\n 'font-face-name',\n 'missing-glyph',\n]);\n/**\n * Check if a tag is a custom component.\n *\n * @see {@link https://github.com/facebook/react/blob/v16.6.3/packages/react-dom/src/shared/isCustomComponent.js}\n *\n * @param tagName - Tag name.\n * @param props - Props passed to the element.\n * @returns - Whether the tag is custom component.\n */\nfunction isCustomComponent(tagName, props) {\n if (!tagName.includes('-')) {\n return Boolean(props && typeof props.is === 'string');\n }\n // These are reserved SVG and MathML elements.\n // We don't mind this whitelist too much because we expect it to never grow.\n // The alternative is to track the namespace in a few places which is convoluted.\n // https://w3c.github.io/webcomponents/spec/custom/#custom-elements-core-concepts\n if (RESERVED_SVG_MATHML_ELEMENTS.has(tagName)) {\n return false;\n }\n return true;\n}\nconst styleOptions = {\n reactCompat: true,\n};\n/**\n * Sets style prop.\n *\n * @param style - Inline style.\n * @param props - Props object.\n */\nfunction setStyleProp(style, props) {\n if (typeof style !== 'string') {\n return;\n }\n if (!style.trim()) {\n props.style = {};\n return;\n }\n try {\n props.style = (0, style_to_js_1.default)(style, styleOptions);\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n }\n catch (error) {\n props.style = {};\n }\n}\n/**\n * @see https://reactjs.org/blog/2017/09/08/dom-attributes-in-react-16.html\n */\nexports.PRESERVE_CUSTOM_ATTRIBUTES = Number(react_1.version.split('.')[0]) >= 16;\n/**\n * @see https://github.com/facebook/react/blob/cae635054e17a6f107a39d328649137b83f25972/packages/react-dom/src/client/validateDOMNesting.js#L213\n */\nexports.ELEMENTS_WITH_NO_TEXT_CHILDREN = new Set([\n 'tr',\n 'tbody',\n 'thead',\n 'tfoot',\n 'colgroup',\n 'table',\n 'head',\n 'html',\n 'frameset',\n]);\n/**\n * Checks if the given node can contain text nodes\n *\n * @param node - Element node.\n * @returns - Whether the node can contain text nodes.\n */\nconst canTextBeChildOfNode = (node) => !exports.ELEMENTS_WITH_NO_TEXT_CHILDREN.has(node.name);\nexports.canTextBeChildOfNode = canTextBeChildOfNode;\n/**\n * Returns the first argument as is.\n *\n * @param arg - The argument to be returned.\n * @returns - The input argument `arg`.\n */\nconst returnFirstArg = (arg) => arg;\nexports.returnFirstArg = returnFirstArg;\n//# sourceMappingURL=utilities.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.default = attributesToProps;\nconst react_property_1 = require(\"react-property\");\nconst utilities_1 = require(\"./utilities\");\n// https://react.dev/learn/sharing-state-between-components#controlled-and-uncontrolled-components\n// https://developer.mozilla.org/docs/Web/HTML/Attributes\nconst UNCONTROLLED_COMPONENT_ATTRIBUTES = ['checked', 'value'];\nconst UNCONTROLLED_COMPONENT_NAMES = ['input', 'select', 'textarea'];\nconst valueOnlyInputs = {\n reset: true,\n submit: true,\n};\n/**\n * Converts HTML/SVG DOM attributes to React props.\n *\n * @param attributes - HTML/SVG DOM attributes.\n * @param nodeName - DOM node name.\n * @returns - React props.\n */\nfunction attributesToProps(attributes = {}, nodeName) {\n const props = {};\n const isInputValueOnly = Boolean(attributes.type && valueOnlyInputs[attributes.type]);\n for (const attributeName in attributes) {\n const attributeValue = attributes[attributeName];\n // ARIA (aria-*) or custom data (data-*) attribute\n if ((0, react_property_1.isCustomAttribute)(attributeName)) {\n props[attributeName] = attributeValue;\n continue;\n }\n // convert HTML/SVG attribute to React prop\n const attributeNameLowerCased = attributeName.toLowerCase();\n let propName = getPropName(attributeNameLowerCased);\n if (propName) {\n const propertyInfo = (0, react_property_1.getPropertyInfo)(propName);\n // convert attribute to uncontrolled component prop (e.g., `value` to `defaultValue`)\n if (UNCONTROLLED_COMPONENT_ATTRIBUTES.includes(propName) &&\n UNCONTROLLED_COMPONENT_NAMES.includes(nodeName) &&\n !isInputValueOnly) {\n propName = getPropName('default' + attributeNameLowerCased);\n }\n props[propName] = attributeValue;\n switch (propertyInfo === null || propertyInfo === void 0 ? void 0 : propertyInfo.type) {\n case react_property_1.BOOLEAN:\n props[propName] = true;\n break;\n case react_property_1.OVERLOADED_BOOLEAN:\n if (attributeValue === '') {\n props[propName] = true;\n }\n break;\n }\n continue;\n }\n // preserve custom attribute if React >=16\n if (utilities_1.PRESERVE_CUSTOM_ATTRIBUTES) {\n props[attributeName] = attributeValue;\n }\n }\n // transform inline style to object\n (0, utilities_1.setStyleProp)(attributes.style, props);\n return props;\n}\n/**\n * Gets prop name from lowercased attribute name.\n *\n * @param attributeName - Lowercased attribute name.\n * @returns - Prop name.\n */\nfunction getPropName(attributeName) {\n return react_property_1.possibleStandardNames[attributeName];\n}\n//# sourceMappingURL=attributes-to-props.js.map","\"use strict\";\n/* eslint-disable @typescript-eslint/no-unsafe-enum-comparison */\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.default = domToReact;\nconst domhandler_1 = require(\"domhandler\");\nconst react_1 = require(\"react\");\nconst attributes_to_props_1 = __importDefault(require(\"./attributes-to-props\"));\nconst utilities_1 = require(\"./utilities\");\nconst React = {\n cloneElement: react_1.cloneElement,\n createElement: react_1.createElement,\n isValidElement: react_1.isValidElement,\n};\n/**\n * Converts DOM nodes to JSX element(s).\n *\n * @param nodes - DOM nodes.\n * @param options - Options.\n * @returns - String or JSX element(s).\n */\nfunction domToReact(nodes, options = {}) {\n var _a, _b, _c, _d, _e;\n const reactElements = [];\n const hasReplace = typeof options.replace === 'function';\n const transform = (_a = options.transform) !== null && _a !== void 0 ? _a : utilities_1.returnFirstArg;\n const { cloneElement, createElement, isValidElement } = (_b = options.library) !== null && _b !== void 0 ? _b : React;\n const nodesLength = nodes.length;\n normalizeDOMNodes(nodes);\n for (let index = 0; index < nodesLength; index++) {\n const node = nodes[index];\n // replace with custom React element (if present)\n if (hasReplace) {\n let replaceElement = (_c = options.replace) === null || _c === void 0 ? void 0 : _c.call(options, node, index);\n if (isValidElement(replaceElement)) {\n // set \"key\" prop for sibling elements\n // https://react.dev/learn/rendering-lists#rules-of-keys\n if (nodesLength > 1) {\n replaceElement = cloneElement(replaceElement, {\n key: (_d = replaceElement.key) !== null && _d !== void 0 ? _d : index,\n });\n }\n reactElements.push(transform(replaceElement, node, index));\n continue;\n }\n }\n if (node.type === 'text') {\n const isWhitespace = !node.data.trim().length;\n // We have a whitespace node that can't be nested in its parent\n // so skip it\n if (isWhitespace &&\n node.parent &&\n !(0, utilities_1.canTextBeChildOfNode)(node.parent)) {\n continue;\n }\n // Trim is enabled and we have a whitespace node\n // so skip it\n if (options.trim && isWhitespace) {\n continue;\n }\n // We have a text node that's not whitespace and it can be nested\n // in its parent so add it to the results\n reactElements.push(transform(node.data, node, index));\n continue;\n }\n const element = node;\n let props = {};\n if (skipAttributesToProps(element)) {\n (0, utilities_1.setStyleProp)(element.attribs.style, element.attribs);\n props = element.attribs;\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n }\n else if (element.attribs) {\n props = (0, attributes_to_props_1.default)(element.attribs, element.name);\n }\n let children;\n switch (node.type) {\n case 'script':\n case 'style':\n // prevent text in <script> or <style> from being escaped\n // https://react.dev/reference/react-dom/components/common#dangerously-setting-the-inner-html\n if (node.children[0]) {\n props.dangerouslySetInnerHTML = {\n __html: node.children[0].data,\n };\n }\n break;\n case 'tag':\n // setting textarea value in children is an antipattern in React\n // https://react.dev/reference/react-dom/components/textarea#caveats\n if (node.name === 'textarea' && node.children[0]) {\n props.defaultValue = node.children[0].data;\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n }\n else if ((_e = node.children) === null || _e === void 0 ? void 0 : _e.length) {\n // continue recursion of creating React elements (if applicable)\n children = domToReact(node.children, options);\n }\n break;\n // skip all other cases (e.g., comment)\n default:\n continue;\n }\n // set \"key\" prop for sibling elements\n // https://react.dev/learn/rendering-lists#rules-of-keys\n if (nodesLength > 1) {\n props.key = index;\n }\n reactElements.push(transform(createElement(node.name, props, children), node, index));\n }\n return reactElements.length === 1 ? reactElements[0] : reactElements;\n}\nfunction normalizeDOMNodes(nodes) {\n for (const node of nodes) {\n if (node.type === 'tag' ||\n node.type === 'script' ||\n node.type === 'style') {\n Object.setPrototypeOf(node, domhandler_1.Element.prototype);\n normalizeDOMNodes(node.children);\n }\n }\n}\n/**\n * Determines whether DOM element attributes should be transformed to props.\n * Web Components should not have their attributes transformed except for `style`.\n *\n * @param node - Element node.\n * @returns - Whether the node attributes should be converted to props.\n */\nfunction skipAttributesToProps(node) {\n return (utilities_1.PRESERVE_CUSTOM_ATTRIBUTES &&\n node.type === 'tag' &&\n (0, utilities_1.isCustomComponent)(node.name, node.attribs));\n}\n//# sourceMappingURL=dom-to-react.js.map","\"use strict\";\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.htmlToDOM = exports.domToReact = exports.attributesToProps = exports.Text = exports.ProcessingInstruction = exports.Element = exports.Comment = void 0;\nexports.default = HTMLReactParser;\nconst html_dom_parser_1 = __importDefault(require(\"html-dom-parser\"));\nexports.htmlToDOM = html_dom_parser_1.default;\nconst attributes_to_props_1 = __importDefault(require(\"./attributes-to-props\"));\nexports.attributesToProps = attributes_to_props_1.default;\nconst dom_to_react_1 = __importDefault(require(\"./dom-to-react\"));\nexports.domToReact = dom_to_react_1.default;\nvar domhandler_1 = require(\"domhandler\");\nObject.defineProperty(exports, \"Comment\", { enumerable: true, get: function () { return domhandler_1.Comment; } });\nObject.defineProperty(exports, \"Element\", { enumerable: true, get: function () { return domhandler_1.Element; } });\nObject.defineProperty(exports, \"ProcessingInstruction\", { enumerable: true, get: function () { return domhandler_1.ProcessingInstruction; } });\nObject.defineProperty(exports, \"Text\", { enumerable: true, get: function () { return domhandler_1.Text; } });\nconst domParserOptions = { lowerCaseAttributeNames: false };\n/**\n * Converts HTML string to React elements.\n *\n * @param html - HTML string.\n * @param options - Parser options.\n * @returns - React element(s), empty array, or string.\n */\nfunction HTMLReactParser(html, options) {\n var _a;\n if (typeof html !== 'string') {\n throw new TypeError('First argument must be a string');\n }\n if (!html) {\n return [];\n }\n const htmlToDOMOptions = Object.assign(Object.assign({}, ((_a = options === null || options === void 0 ? void 0 : options.htmlparser2) !== null && _a !== void 0 ? _a : domParserOptions)), { trustedTypePolicy: options === null || options === void 0 ? void 0 : options.trustedTypePolicy });\n return (0, dom_to_react_1.default)((0, html_dom_parser_1.default)(html, htmlToDOMOptions), options);\n}\n//# sourceMappingURL=index.js.map","import * as HTMLReactParser from '../lib';\n\nconst parse = HTMLReactParser.default;\nObject.assign(parse, HTMLReactParser);\n\nexport default parse;\n"],"names":["isTag","isTagRaw","require$$0","require$$1","utilities","domparser","domparser_1","cjs","this","attributesToProps_1","attributesToProps","domToReact_1","domToReact","require$$2","require$$3","HTMLReactParser.default"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11]}