@zipify/wysiwyg 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (980) hide show
  1. package/.release-it.json +2 -1
  2. package/config/build/lambda.config.js +39 -0
  3. package/dist/lambda-to-json.zip +0 -0
  4. package/lib/entry-lambda-to-json.js +8 -0
  5. package/node_modules_lambda/.bin/acorn +4 -0
  6. package/node_modules_lambda/.bin/escodegen +77 -0
  7. package/node_modules_lambda/.bin/esgenerate +64 -0
  8. package/node_modules_lambda/.bin/esparse +139 -0
  9. package/node_modules_lambda/.bin/esvalidate +236 -0
  10. package/node_modules_lambda/.package-lock.json +602 -0
  11. package/node_modules_lambda/@tootallnate/once/LICENSE +21 -0
  12. package/node_modules_lambda/@tootallnate/once/README.md +93 -0
  13. package/node_modules_lambda/@tootallnate/once/dist/index.d.ts +7 -0
  14. package/node_modules_lambda/@tootallnate/once/dist/index.js +24 -0
  15. package/node_modules_lambda/@tootallnate/once/dist/index.js.map +1 -0
  16. package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.d.ts +231 -0
  17. package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js +3 -0
  18. package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js.map +1 -0
  19. package/node_modules_lambda/@tootallnate/once/dist/types.d.ts +17 -0
  20. package/node_modules_lambda/@tootallnate/once/dist/types.js +3 -0
  21. package/node_modules_lambda/@tootallnate/once/dist/types.js.map +1 -0
  22. package/node_modules_lambda/@tootallnate/once/package.json +52 -0
  23. package/node_modules_lambda/abab/LICENSE.md +13 -0
  24. package/node_modules_lambda/abab/README.md +51 -0
  25. package/node_modules_lambda/abab/index.d.ts +2 -0
  26. package/node_modules_lambda/abab/index.js +9 -0
  27. package/node_modules_lambda/abab/lib/atob.js +101 -0
  28. package/node_modules_lambda/abab/lib/btoa.js +62 -0
  29. package/node_modules_lambda/abab/package.json +42 -0
  30. package/node_modules_lambda/acorn/CHANGELOG.md +798 -0
  31. package/node_modules_lambda/acorn/LICENSE +21 -0
  32. package/node_modules_lambda/acorn/README.md +273 -0
  33. package/node_modules_lambda/acorn/bin/acorn +4 -0
  34. package/node_modules_lambda/acorn/dist/acorn.d.ts +252 -0
  35. package/node_modules_lambda/acorn/dist/acorn.js +5608 -0
  36. package/node_modules_lambda/acorn/dist/acorn.mjs +5577 -0
  37. package/node_modules_lambda/acorn/dist/acorn.mjs.d.ts +2 -0
  38. package/node_modules_lambda/acorn/dist/bin.js +91 -0
  39. package/node_modules_lambda/acorn/package.json +50 -0
  40. package/node_modules_lambda/acorn-globals/LICENSE +19 -0
  41. package/node_modules_lambda/acorn-globals/README.md +81 -0
  42. package/node_modules_lambda/acorn-globals/index.js +179 -0
  43. package/node_modules_lambda/acorn-globals/package.json +35 -0
  44. package/node_modules_lambda/acorn-walk/CHANGELOG.md +131 -0
  45. package/node_modules_lambda/acorn-walk/LICENSE +19 -0
  46. package/node_modules_lambda/acorn-walk/README.md +126 -0
  47. package/node_modules_lambda/acorn-walk/dist/walk.d.ts +112 -0
  48. package/node_modules_lambda/acorn-walk/dist/walk.js +463 -0
  49. package/node_modules_lambda/acorn-walk/dist/walk.js.map +1 -0
  50. package/node_modules_lambda/acorn-walk/dist/walk.mjs +443 -0
  51. package/node_modules_lambda/acorn-walk/dist/walk.mjs.map +1 -0
  52. package/node_modules_lambda/acorn-walk/package.json +34 -0
  53. package/node_modules_lambda/agent-base/README.md +145 -0
  54. package/node_modules_lambda/agent-base/dist/src/index.d.ts +78 -0
  55. package/node_modules_lambda/agent-base/dist/src/index.js +203 -0
  56. package/node_modules_lambda/agent-base/dist/src/index.js.map +1 -0
  57. package/node_modules_lambda/agent-base/dist/src/promisify.d.ts +4 -0
  58. package/node_modules_lambda/agent-base/dist/src/promisify.js +18 -0
  59. package/node_modules_lambda/agent-base/dist/src/promisify.js.map +1 -0
  60. package/node_modules_lambda/agent-base/package.json +64 -0
  61. package/node_modules_lambda/agent-base/src/index.ts +345 -0
  62. package/node_modules_lambda/agent-base/src/promisify.ts +33 -0
  63. package/node_modules_lambda/asynckit/LICENSE +21 -0
  64. package/node_modules_lambda/asynckit/README.md +233 -0
  65. package/node_modules_lambda/asynckit/bench.js +76 -0
  66. package/node_modules_lambda/asynckit/index.js +6 -0
  67. package/node_modules_lambda/asynckit/lib/abort.js +29 -0
  68. package/node_modules_lambda/asynckit/lib/async.js +34 -0
  69. package/node_modules_lambda/asynckit/lib/defer.js +26 -0
  70. package/node_modules_lambda/asynckit/lib/iterate.js +75 -0
  71. package/node_modules_lambda/asynckit/lib/readable_asynckit.js +91 -0
  72. package/node_modules_lambda/asynckit/lib/readable_parallel.js +25 -0
  73. package/node_modules_lambda/asynckit/lib/readable_serial.js +25 -0
  74. package/node_modules_lambda/asynckit/lib/readable_serial_ordered.js +29 -0
  75. package/node_modules_lambda/asynckit/lib/state.js +37 -0
  76. package/node_modules_lambda/asynckit/lib/streamify.js +141 -0
  77. package/node_modules_lambda/asynckit/lib/terminator.js +29 -0
  78. package/node_modules_lambda/asynckit/package.json +63 -0
  79. package/node_modules_lambda/asynckit/parallel.js +43 -0
  80. package/node_modules_lambda/asynckit/serial.js +17 -0
  81. package/node_modules_lambda/asynckit/serialOrdered.js +75 -0
  82. package/node_modules_lambda/asynckit/stream.js +21 -0
  83. package/node_modules_lambda/browser-process-hrtime/LICENSE +9 -0
  84. package/node_modules_lambda/browser-process-hrtime/README.md +27 -0
  85. package/node_modules_lambda/browser-process-hrtime/index.d.ts +4 -0
  86. package/node_modules_lambda/browser-process-hrtime/index.js +28 -0
  87. package/node_modules_lambda/browser-process-hrtime/package.json +15 -0
  88. package/node_modules_lambda/combined-stream/License +19 -0
  89. package/node_modules_lambda/combined-stream/Readme.md +138 -0
  90. package/node_modules_lambda/combined-stream/lib/combined_stream.js +208 -0
  91. package/node_modules_lambda/combined-stream/package.json +25 -0
  92. package/node_modules_lambda/combined-stream/yarn.lock +17 -0
  93. package/node_modules_lambda/cssom/LICENSE.txt +20 -0
  94. package/node_modules_lambda/cssom/README.mdown +67 -0
  95. package/node_modules_lambda/cssom/lib/CSSConditionRule.js +25 -0
  96. package/node_modules_lambda/cssom/lib/CSSDocumentRule.js +39 -0
  97. package/node_modules_lambda/cssom/lib/CSSFontFaceRule.js +36 -0
  98. package/node_modules_lambda/cssom/lib/CSSGroupingRule.js +68 -0
  99. package/node_modules_lambda/cssom/lib/CSSHostRule.js +37 -0
  100. package/node_modules_lambda/cssom/lib/CSSImportRule.js +132 -0
  101. package/node_modules_lambda/cssom/lib/CSSKeyframeRule.js +37 -0
  102. package/node_modules_lambda/cssom/lib/CSSKeyframesRule.js +39 -0
  103. package/node_modules_lambda/cssom/lib/CSSMediaRule.js +53 -0
  104. package/node_modules_lambda/cssom/lib/CSSOM.js +3 -0
  105. package/node_modules_lambda/cssom/lib/CSSRule.js +43 -0
  106. package/node_modules_lambda/cssom/lib/CSSStyleDeclaration.js +148 -0
  107. package/node_modules_lambda/cssom/lib/CSSStyleRule.js +190 -0
  108. package/node_modules_lambda/cssom/lib/CSSStyleSheet.js +88 -0
  109. package/node_modules_lambda/cssom/lib/CSSSupportsRule.js +36 -0
  110. package/node_modules_lambda/cssom/lib/CSSValue.js +43 -0
  111. package/node_modules_lambda/cssom/lib/CSSValueExpression.js +344 -0
  112. package/node_modules_lambda/cssom/lib/MatcherList.js +62 -0
  113. package/node_modules_lambda/cssom/lib/MediaList.js +61 -0
  114. package/node_modules_lambda/cssom/lib/StyleSheet.js +17 -0
  115. package/node_modules_lambda/cssom/lib/clone.js +74 -0
  116. package/node_modules_lambda/cssom/lib/index.js +23 -0
  117. package/node_modules_lambda/cssom/lib/parse.js +465 -0
  118. package/node_modules_lambda/cssom/package.json +18 -0
  119. package/node_modules_lambda/cssstyle/LICENSE +20 -0
  120. package/node_modules_lambda/cssstyle/README.md +15 -0
  121. package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.js +260 -0
  122. package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.test.js +556 -0
  123. package/node_modules_lambda/cssstyle/lib/allExtraProperties.js +67 -0
  124. package/node_modules_lambda/cssstyle/lib/allProperties.js +462 -0
  125. package/node_modules_lambda/cssstyle/lib/allWebkitProperties.js +194 -0
  126. package/node_modules_lambda/cssstyle/lib/constants.js +6 -0
  127. package/node_modules_lambda/cssstyle/lib/implementedProperties.js +90 -0
  128. package/node_modules_lambda/cssstyle/lib/named_colors.json +152 -0
  129. package/node_modules_lambda/cssstyle/lib/parsers.js +722 -0
  130. package/node_modules_lambda/cssstyle/lib/parsers.test.js +139 -0
  131. package/node_modules_lambda/cssstyle/lib/properties/azimuth.js +67 -0
  132. package/node_modules_lambda/cssstyle/lib/properties/background.js +19 -0
  133. package/node_modules_lambda/cssstyle/lib/properties/backgroundAttachment.js +24 -0
  134. package/node_modules_lambda/cssstyle/lib/properties/backgroundColor.js +36 -0
  135. package/node_modules_lambda/cssstyle/lib/properties/backgroundImage.js +32 -0
  136. package/node_modules_lambda/cssstyle/lib/properties/backgroundPosition.js +58 -0
  137. package/node_modules_lambda/cssstyle/lib/properties/backgroundRepeat.js +32 -0
  138. package/node_modules_lambda/cssstyle/lib/properties/border.js +33 -0
  139. package/node_modules_lambda/cssstyle/lib/properties/borderBottom.js +17 -0
  140. package/node_modules_lambda/cssstyle/lib/properties/borderBottomColor.js +16 -0
  141. package/node_modules_lambda/cssstyle/lib/properties/borderBottomStyle.js +21 -0
  142. package/node_modules_lambda/cssstyle/lib/properties/borderBottomWidth.js +16 -0
  143. package/node_modules_lambda/cssstyle/lib/properties/borderCollapse.js +26 -0
  144. package/node_modules_lambda/cssstyle/lib/properties/borderColor.js +30 -0
  145. package/node_modules_lambda/cssstyle/lib/properties/borderLeft.js +17 -0
  146. package/node_modules_lambda/cssstyle/lib/properties/borderLeftColor.js +16 -0
  147. package/node_modules_lambda/cssstyle/lib/properties/borderLeftStyle.js +21 -0
  148. package/node_modules_lambda/cssstyle/lib/properties/borderLeftWidth.js +16 -0
  149. package/node_modules_lambda/cssstyle/lib/properties/borderRight.js +17 -0
  150. package/node_modules_lambda/cssstyle/lib/properties/borderRightColor.js +16 -0
  151. package/node_modules_lambda/cssstyle/lib/properties/borderRightStyle.js +21 -0
  152. package/node_modules_lambda/cssstyle/lib/properties/borderRightWidth.js +16 -0
  153. package/node_modules_lambda/cssstyle/lib/properties/borderSpacing.js +41 -0
  154. package/node_modules_lambda/cssstyle/lib/properties/borderStyle.js +38 -0
  155. package/node_modules_lambda/cssstyle/lib/properties/borderTop.js +17 -0
  156. package/node_modules_lambda/cssstyle/lib/properties/borderTopColor.js +16 -0
  157. package/node_modules_lambda/cssstyle/lib/properties/borderTopStyle.js +21 -0
  158. package/node_modules_lambda/cssstyle/lib/properties/borderTopWidth.js +17 -0
  159. package/node_modules_lambda/cssstyle/lib/properties/borderWidth.js +46 -0
  160. package/node_modules_lambda/cssstyle/lib/properties/bottom.js +14 -0
  161. package/node_modules_lambda/cssstyle/lib/properties/clear.js +16 -0
  162. package/node_modules_lambda/cssstyle/lib/properties/clip.js +47 -0
  163. package/node_modules_lambda/cssstyle/lib/properties/color.js +14 -0
  164. package/node_modules_lambda/cssstyle/lib/properties/cssFloat.js +12 -0
  165. package/node_modules_lambda/cssstyle/lib/properties/flex.js +45 -0
  166. package/node_modules_lambda/cssstyle/lib/properties/flexBasis.js +28 -0
  167. package/node_modules_lambda/cssstyle/lib/properties/flexGrow.js +19 -0
  168. package/node_modules_lambda/cssstyle/lib/properties/flexShrink.js +19 -0
  169. package/node_modules_lambda/cssstyle/lib/properties/float.js +12 -0
  170. package/node_modules_lambda/cssstyle/lib/properties/floodColor.js +14 -0
  171. package/node_modules_lambda/cssstyle/lib/properties/font.js +43 -0
  172. package/node_modules_lambda/cssstyle/lib/properties/fontFamily.js +33 -0
  173. package/node_modules_lambda/cssstyle/lib/properties/fontSize.js +38 -0
  174. package/node_modules_lambda/cssstyle/lib/properties/fontStyle.js +18 -0
  175. package/node_modules_lambda/cssstyle/lib/properties/fontVariant.js +18 -0
  176. package/node_modules_lambda/cssstyle/lib/properties/fontWeight.js +33 -0
  177. package/node_modules_lambda/cssstyle/lib/properties/height.js +24 -0
  178. package/node_modules_lambda/cssstyle/lib/properties/left.js +14 -0
  179. package/node_modules_lambda/cssstyle/lib/properties/lightingColor.js +14 -0
  180. package/node_modules_lambda/cssstyle/lib/properties/lineHeight.js +26 -0
  181. package/node_modules_lambda/cssstyle/lib/properties/margin.js +68 -0
  182. package/node_modules_lambda/cssstyle/lib/properties/marginBottom.js +13 -0
  183. package/node_modules_lambda/cssstyle/lib/properties/marginLeft.js +13 -0
  184. package/node_modules_lambda/cssstyle/lib/properties/marginRight.js +13 -0
  185. package/node_modules_lambda/cssstyle/lib/properties/marginTop.js +13 -0
  186. package/node_modules_lambda/cssstyle/lib/properties/opacity.js +14 -0
  187. package/node_modules_lambda/cssstyle/lib/properties/outlineColor.js +14 -0
  188. package/node_modules_lambda/cssstyle/lib/properties/padding.js +61 -0
  189. package/node_modules_lambda/cssstyle/lib/properties/paddingBottom.js +13 -0
  190. package/node_modules_lambda/cssstyle/lib/properties/paddingLeft.js +13 -0
  191. package/node_modules_lambda/cssstyle/lib/properties/paddingRight.js +13 -0
  192. package/node_modules_lambda/cssstyle/lib/properties/paddingTop.js +13 -0
  193. package/node_modules_lambda/cssstyle/lib/properties/right.js +14 -0
  194. package/node_modules_lambda/cssstyle/lib/properties/stopColor.js +14 -0
  195. package/node_modules_lambda/cssstyle/lib/properties/textLineThroughColor.js +14 -0
  196. package/node_modules_lambda/cssstyle/lib/properties/textOverlineColor.js +14 -0
  197. package/node_modules_lambda/cssstyle/lib/properties/textUnderlineColor.js +14 -0
  198. package/node_modules_lambda/cssstyle/lib/properties/top.js +14 -0
  199. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderAfterColor.js +14 -0
  200. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderBeforeColor.js +14 -0
  201. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderEndColor.js +14 -0
  202. package/node_modules_lambda/cssstyle/lib/properties/webkitBorderStartColor.js +14 -0
  203. package/node_modules_lambda/cssstyle/lib/properties/webkitColumnRuleColor.js +14 -0
  204. package/node_modules_lambda/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js +14 -0
  205. package/node_modules_lambda/cssstyle/lib/properties/webkitTapHighlightColor.js +14 -0
  206. package/node_modules_lambda/cssstyle/lib/properties/webkitTextEmphasisColor.js +14 -0
  207. package/node_modules_lambda/cssstyle/lib/properties/webkitTextFillColor.js +14 -0
  208. package/node_modules_lambda/cssstyle/lib/properties/webkitTextStrokeColor.js +14 -0
  209. package/node_modules_lambda/cssstyle/lib/properties/width.js +24 -0
  210. package/node_modules_lambda/cssstyle/lib/properties.js +1833 -0
  211. package/node_modules_lambda/cssstyle/lib/utils/colorSpace.js +21 -0
  212. package/node_modules_lambda/cssstyle/lib/utils/getBasicPropertyDescriptor.js +14 -0
  213. package/node_modules_lambda/cssstyle/package.json +72 -0
  214. package/node_modules_lambda/data-urls/LICENSE.txt +7 -0
  215. package/node_modules_lambda/data-urls/README.md +62 -0
  216. package/node_modules_lambda/data-urls/lib/parser.js +69 -0
  217. package/node_modules_lambda/data-urls/lib/utils.js +18 -0
  218. package/node_modules_lambda/data-urls/package.json +54 -0
  219. package/node_modules_lambda/debug/LICENSE +20 -0
  220. package/node_modules_lambda/debug/README.md +481 -0
  221. package/node_modules_lambda/debug/package.json +59 -0
  222. package/node_modules_lambda/debug/src/browser.js +269 -0
  223. package/node_modules_lambda/debug/src/common.js +274 -0
  224. package/node_modules_lambda/debug/src/index.js +10 -0
  225. package/node_modules_lambda/debug/src/node.js +263 -0
  226. package/node_modules_lambda/decimal.js/CHANGELOG.md +231 -0
  227. package/node_modules_lambda/decimal.js/LICENCE.md +23 -0
  228. package/node_modules_lambda/decimal.js/README.md +246 -0
  229. package/node_modules_lambda/decimal.js/decimal.d.ts +300 -0
  230. package/node_modules_lambda/decimal.js/decimal.js +4934 -0
  231. package/node_modules_lambda/decimal.js/decimal.mjs +4898 -0
  232. package/node_modules_lambda/decimal.js/package.json +40 -0
  233. package/node_modules_lambda/deep-is/.travis.yml +5 -0
  234. package/node_modules_lambda/deep-is/LICENSE +22 -0
  235. package/node_modules_lambda/deep-is/README.markdown +70 -0
  236. package/node_modules_lambda/deep-is/example/cmp.js +11 -0
  237. package/node_modules_lambda/deep-is/index.js +102 -0
  238. package/node_modules_lambda/deep-is/package.json +58 -0
  239. package/node_modules_lambda/deep-is/test/NaN.js +16 -0
  240. package/node_modules_lambda/deep-is/test/cmp.js +23 -0
  241. package/node_modules_lambda/deep-is/test/neg-vs-pos-0.js +15 -0
  242. package/node_modules_lambda/delayed-stream/License +19 -0
  243. package/node_modules_lambda/delayed-stream/Makefile +7 -0
  244. package/node_modules_lambda/delayed-stream/Readme.md +141 -0
  245. package/node_modules_lambda/delayed-stream/lib/delayed_stream.js +107 -0
  246. package/node_modules_lambda/delayed-stream/package.json +27 -0
  247. package/node_modules_lambda/domexception/LICENSE.txt +21 -0
  248. package/node_modules_lambda/domexception/README.md +31 -0
  249. package/node_modules_lambda/domexception/index.js +7 -0
  250. package/node_modules_lambda/domexception/lib/DOMException-impl.js +22 -0
  251. package/node_modules_lambda/domexception/lib/DOMException.js +222 -0
  252. package/node_modules_lambda/domexception/lib/Function.js +42 -0
  253. package/node_modules_lambda/domexception/lib/VoidFunction.js +26 -0
  254. package/node_modules_lambda/domexception/lib/legacy-error-codes.json +24 -0
  255. package/node_modules_lambda/domexception/lib/utils.js +190 -0
  256. package/node_modules_lambda/domexception/package.json +42 -0
  257. package/node_modules_lambda/domexception/webidl2js-wrapper.js +15 -0
  258. package/node_modules_lambda/escodegen/LICENSE.BSD +21 -0
  259. package/node_modules_lambda/escodegen/README.md +84 -0
  260. package/node_modules_lambda/escodegen/bin/escodegen.js +77 -0
  261. package/node_modules_lambda/escodegen/bin/esgenerate.js +64 -0
  262. package/node_modules_lambda/escodegen/escodegen.js +2647 -0
  263. package/node_modules_lambda/escodegen/package.json +62 -0
  264. package/node_modules_lambda/esprima/ChangeLog +235 -0
  265. package/node_modules_lambda/esprima/LICENSE.BSD +21 -0
  266. package/node_modules_lambda/esprima/README.md +46 -0
  267. package/node_modules_lambda/esprima/bin/esparse.js +139 -0
  268. package/node_modules_lambda/esprima/bin/esvalidate.js +236 -0
  269. package/node_modules_lambda/esprima/dist/esprima.js +6709 -0
  270. package/node_modules_lambda/esprima/package.json +112 -0
  271. package/node_modules_lambda/esutils/LICENSE.BSD +19 -0
  272. package/node_modules_lambda/esutils/README.md +174 -0
  273. package/node_modules_lambda/esutils/lib/ast.js +144 -0
  274. package/node_modules_lambda/esutils/lib/code.js +135 -0
  275. package/node_modules_lambda/esutils/lib/keyword.js +165 -0
  276. package/node_modules_lambda/esutils/lib/utils.js +33 -0
  277. package/node_modules_lambda/esutils/package.json +44 -0
  278. package/node_modules_lambda/fast-levenshtein/LICENSE.md +25 -0
  279. package/node_modules_lambda/fast-levenshtein/README.md +104 -0
  280. package/node_modules_lambda/fast-levenshtein/levenshtein.js +136 -0
  281. package/node_modules_lambda/fast-levenshtein/package.json +39 -0
  282. package/node_modules_lambda/form-data/License +19 -0
  283. package/node_modules_lambda/form-data/README.md.bak +358 -0
  284. package/node_modules_lambda/form-data/Readme.md +358 -0
  285. package/node_modules_lambda/form-data/index.d.ts +62 -0
  286. package/node_modules_lambda/form-data/lib/browser.js +2 -0
  287. package/node_modules_lambda/form-data/lib/form_data.js +501 -0
  288. package/node_modules_lambda/form-data/lib/populate.js +10 -0
  289. package/node_modules_lambda/form-data/package.json +68 -0
  290. package/node_modules_lambda/html-encoding-sniffer/LICENSE.txt +7 -0
  291. package/node_modules_lambda/html-encoding-sniffer/README.md +40 -0
  292. package/node_modules_lambda/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
  293. package/node_modules_lambda/html-encoding-sniffer/package.json +31 -0
  294. package/node_modules_lambda/http-proxy-agent/README.md +74 -0
  295. package/node_modules_lambda/http-proxy-agent/dist/agent.d.ts +32 -0
  296. package/node_modules_lambda/http-proxy-agent/dist/agent.js +145 -0
  297. package/node_modules_lambda/http-proxy-agent/dist/agent.js.map +1 -0
  298. package/node_modules_lambda/http-proxy-agent/dist/index.d.ts +21 -0
  299. package/node_modules_lambda/http-proxy-agent/dist/index.js +14 -0
  300. package/node_modules_lambda/http-proxy-agent/dist/index.js.map +1 -0
  301. package/node_modules_lambda/http-proxy-agent/package.json +57 -0
  302. package/node_modules_lambda/https-proxy-agent/README.md +137 -0
  303. package/node_modules_lambda/https-proxy-agent/dist/agent.d.ts +30 -0
  304. package/node_modules_lambda/https-proxy-agent/dist/agent.js +177 -0
  305. package/node_modules_lambda/https-proxy-agent/dist/agent.js.map +1 -0
  306. package/node_modules_lambda/https-proxy-agent/dist/index.d.ts +23 -0
  307. package/node_modules_lambda/https-proxy-agent/dist/index.js +14 -0
  308. package/node_modules_lambda/https-proxy-agent/dist/index.js.map +1 -0
  309. package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
  310. package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js +66 -0
  311. package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
  312. package/node_modules_lambda/https-proxy-agent/package.json +56 -0
  313. package/node_modules_lambda/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
  314. package/node_modules_lambda/is-potential-custom-element-name/README.md +40 -0
  315. package/node_modules_lambda/is-potential-custom-element-name/index.js +9 -0
  316. package/node_modules_lambda/is-potential-custom-element-name/package.json +35 -0
  317. package/node_modules_lambda/jsdom/LICENSE.txt +22 -0
  318. package/node_modules_lambda/jsdom/README.md +522 -0
  319. package/node_modules_lambda/jsdom/lib/api.js +333 -0
  320. package/node_modules_lambda/jsdom/lib/jsdom/browser/Window.js +933 -0
  321. package/node_modules_lambda/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
  322. package/node_modules_lambda/jsdom/lib/jsdom/browser/js-globals.json +307 -0
  323. package/node_modules_lambda/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
  324. package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/html.js +224 -0
  325. package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/index.js +37 -0
  326. package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
  327. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
  328. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
  329. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +95 -0
  330. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
  331. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
  332. package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
  333. package/node_modules_lambda/jsdom/lib/jsdom/level2/style.js +57 -0
  334. package/node_modules_lambda/jsdom/lib/jsdom/level3/xpath.js +1874 -0
  335. package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
  336. package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +69 -0
  337. package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
  338. package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
  339. package/node_modules_lambda/jsdom/lib/jsdom/living/attributes.js +312 -0
  340. package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
  341. package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
  342. package/node_modules_lambda/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
  343. package/node_modules_lambda/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +265 -0
  344. package/node_modules_lambda/jsdom/lib/jsdom/living/documents.js +15 -0
  345. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +58 -0
  346. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +29 -0
  347. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
  348. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
  349. package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/serialization.js +45 -0
  350. package/node_modules_lambda/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
  351. package/node_modules_lambda/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
  352. package/node_modules_lambda/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
  353. package/node_modules_lambda/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
  354. package/node_modules_lambda/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
  355. package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +18 -0
  356. package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventTarget-impl.js +405 -0
  357. package/node_modules_lambda/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
  358. package/node_modules_lambda/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
  359. package/node_modules_lambda/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
  360. package/node_modules_lambda/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
  361. package/node_modules_lambda/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
  362. package/node_modules_lambda/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +49 -0
  363. package/node_modules_lambda/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
  364. package/node_modules_lambda/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
  365. package/node_modules_lambda/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
  366. package/node_modules_lambda/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
  367. package/node_modules_lambda/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
  368. package/node_modules_lambda/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
  369. package/node_modules_lambda/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
  370. package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/Headers-impl.js +170 -0
  371. package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-list.js +54 -0
  372. package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
  373. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
  374. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
  375. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
  376. package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
  377. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
  378. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortSignal.js +184 -0
  379. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
  380. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +44 -0
  381. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
  382. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
  383. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
  384. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
  385. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Blob.js +203 -0
  386. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
  387. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
  388. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
  389. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
  390. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
  391. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
  392. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
  393. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
  394. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
  395. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
  396. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
  397. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
  398. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
  399. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
  400. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
  401. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
  402. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMStringMap.js +323 -0
  403. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMTokenList.js +563 -0
  404. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Document.js +3593 -0
  405. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
  406. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
  407. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
  408. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Element.js +1718 -0
  409. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
  410. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
  411. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
  412. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
  413. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
  414. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Event.js +430 -0
  415. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
  416. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
  417. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
  418. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
  419. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
  420. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
  421. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/External.js +130 -0
  422. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/File.js +177 -0
  423. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileList.js +324 -0
  424. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
  425. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
  426. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
  427. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
  428. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FormData.js +452 -0
  429. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Function.js +42 -0
  430. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
  431. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
  432. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
  433. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
  434. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
  435. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
  436. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
  437. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
  438. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
  439. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCollection.js +378 -0
  440. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
  441. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
  442. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
  443. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
  444. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
  445. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
  446. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
  447. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLElement.js +2549 -0
  448. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +371 -0
  449. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
  450. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
  451. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +501 -0
  452. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +494 -0
  453. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
  454. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
  455. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
  456. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
  457. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
  458. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +670 -0
  459. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +870 -0
  460. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1875 -0
  461. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +199 -0
  462. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
  463. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
  464. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +542 -0
  465. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
  466. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +546 -0
  467. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +888 -0
  468. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
  469. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
  470. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
  471. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLModElement.js +207 -0
  472. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
  473. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +921 -0
  474. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
  475. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
  476. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +537 -0
  477. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
  478. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
  479. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
  480. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
  481. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +158 -0
  482. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +218 -0
  483. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
  484. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +459 -0
  485. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +1013 -0
  486. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
  487. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +330 -0
  488. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
  489. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
  490. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
  491. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +700 -0
  492. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +364 -0
  493. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
  494. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
  495. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
  496. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
  497. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1171 -0
  498. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
  499. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
  500. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +356 -0
  501. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
  502. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
  503. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +329 -0
  504. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
  505. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
  506. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Headers.js +408 -0
  507. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/History.js +266 -0
  508. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
  509. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
  510. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
  511. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
  512. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Location.js +404 -0
  513. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
  514. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
  515. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
  516. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +352 -0
  517. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEvent.js +499 -0
  518. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEventInit.js +111 -0
  519. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
  520. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
  521. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
  522. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
  523. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +553 -0
  524. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
  525. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Node.js +763 -0
  526. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
  527. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
  528. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeList.js +328 -0
  529. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
  530. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
  531. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
  532. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
  533. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
  534. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Plugin.js +385 -0
  535. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PluginArray.js +362 -0
  536. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
  537. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
  538. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
  539. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
  540. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
  541. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Range.js +641 -0
  542. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
  543. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
  544. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGElement.js +2227 -0
  545. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
  546. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
  547. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +737 -0
  548. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGStringList.js +537 -0
  549. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
  550. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
  551. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
  552. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
  553. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
  554. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
  555. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
  556. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
  557. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
  558. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
  559. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
  560. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
  561. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
  562. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
  563. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Storage.js +423 -0
  564. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
  565. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
  566. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StyleSheetList.js +326 -0
  567. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
  568. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Text.js +170 -0
  569. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
  570. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
  571. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
  572. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
  573. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
  574. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
  575. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
  576. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
  577. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
  578. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WebSocket.js +476 -0
  579. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
  580. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
  581. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
  582. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +655 -0
  583. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
  584. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
  585. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
  586. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
  587. package/node_modules_lambda/jsdom/lib/jsdom/living/generated/utils.js +190 -0
  588. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/agent-factory.js +15 -0
  589. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
  590. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-element.js +320 -0
  591. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
  592. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/custom-elements.js +270 -0
  593. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
  594. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/details.js +15 -0
  595. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
  596. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/events.js +24 -0
  597. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
  598. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
  599. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
  600. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/http-request.js +254 -0
  601. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
  602. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
  603. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/json.js +12 -0
  604. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
  605. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
  606. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/node.js +68 -0
  607. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
  608. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
  609. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
  610. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
  611. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
  612. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
  613. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
  614. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/style-rules.js +114 -0
  615. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/stylesheets.js +113 -0
  616. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
  617. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
  618. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/text.js +19 -0
  619. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
  620. package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
  621. package/node_modules_lambda/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +25 -0
  622. package/node_modules_lambda/jsdom/lib/jsdom/living/interfaces.js +217 -0
  623. package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
  624. package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
  625. package/node_modules_lambda/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
  626. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
  627. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
  628. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
  629. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
  630. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
  631. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
  632. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
  633. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
  634. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
  635. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
  636. package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
  637. package/node_modules_lambda/jsdom/lib/jsdom/living/node-document-position.js +10 -0
  638. package/node_modules_lambda/jsdom/lib/jsdom/living/node-type.js +16 -0
  639. package/node_modules_lambda/jsdom/lib/jsdom/living/node.js +331 -0
  640. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
  641. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
  642. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
  643. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
  644. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
  645. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
  646. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
  647. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Document-impl.js +946 -0
  648. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
  649. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
  650. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
  651. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Element-impl.js +582 -0
  652. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +25 -0
  653. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
  654. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +95 -0
  655. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
  656. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
  657. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
  658. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
  659. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
  660. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
  661. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
  662. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
  663. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
  664. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
  665. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
  666. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
  667. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
  668. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
  669. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
  670. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
  671. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +160 -0
  672. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
  673. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
  674. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
  675. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +232 -0
  676. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
  677. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
  678. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
  679. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
  680. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
  681. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
  682. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +371 -0
  683. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
  684. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
  685. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1129 -0
  686. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
  687. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
  688. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
  689. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +101 -0
  690. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
  691. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
  692. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
  693. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
  694. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
  695. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
  696. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
  697. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
  698. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
  699. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
  700. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
  701. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
  702. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
  703. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
  704. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
  705. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
  706. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
  707. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
  708. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +74 -0
  709. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
  710. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +265 -0
  711. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
  712. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
  713. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
  714. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
  715. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
  716. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
  717. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
  718. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
  719. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
  720. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
  721. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
  722. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
  723. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +272 -0
  724. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
  725. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
  726. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
  727. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
  728. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
  729. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
  730. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
  731. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Node-impl.js +1159 -0
  732. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
  733. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
  734. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
  735. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
  736. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
  737. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
  738. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
  739. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
  740. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
  741. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
  742. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +40 -0
  743. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
  744. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
  745. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
  746. package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
  747. package/node_modules_lambda/jsdom/lib/jsdom/living/post-message.js +39 -0
  748. package/node_modules_lambda/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
  749. package/node_modules_lambda/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
  750. package/node_modules_lambda/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
  751. package/node_modules_lambda/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
  752. package/node_modules_lambda/jsdom/lib/jsdom/living/selection/Selection-impl.js +342 -0
  753. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
  754. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
  755. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
  756. package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
  757. package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +127 -0
  758. package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
  759. package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
  760. package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js +175 -0
  761. package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
  762. package/node_modules_lambda/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
  763. package/node_modules_lambda/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
  764. package/node_modules_lambda/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
  765. package/node_modules_lambda/jsdom/lib/jsdom/living/window/History-impl.js +134 -0
  766. package/node_modules_lambda/jsdom/lib/jsdom/living/window/Location-impl.js +238 -0
  767. package/node_modules_lambda/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
  768. package/node_modules_lambda/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
  769. package/node_modules_lambda/jsdom/lib/jsdom/living/window/navigation.js +85 -0
  770. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/FormData-impl.js +171 -0
  771. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
  772. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
  773. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
  774. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +60 -0
  775. package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-utils.js +438 -0
  776. package/node_modules_lambda/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
  777. package/node_modules_lambda/jsdom/lib/jsdom/utils.js +165 -0
  778. package/node_modules_lambda/jsdom/lib/jsdom/virtual-console.js +34 -0
  779. package/node_modules_lambda/jsdom/lib/jsdom/vm-shim.js +106 -0
  780. package/node_modules_lambda/jsdom/package.json +116 -0
  781. package/node_modules_lambda/mime-db/HISTORY.md +507 -0
  782. package/node_modules_lambda/mime-db/LICENSE +23 -0
  783. package/node_modules_lambda/mime-db/README.md +100 -0
  784. package/node_modules_lambda/mime-db/db.json +8519 -0
  785. package/node_modules_lambda/mime-db/index.js +12 -0
  786. package/node_modules_lambda/mime-db/package.json +60 -0
  787. package/node_modules_lambda/mime-types/HISTORY.md +397 -0
  788. package/node_modules_lambda/mime-types/LICENSE +23 -0
  789. package/node_modules_lambda/mime-types/README.md +113 -0
  790. package/node_modules_lambda/mime-types/index.js +188 -0
  791. package/node_modules_lambda/mime-types/package.json +44 -0
  792. package/node_modules_lambda/ms/index.js +162 -0
  793. package/node_modules_lambda/ms/license.md +21 -0
  794. package/node_modules_lambda/ms/package.json +37 -0
  795. package/node_modules_lambda/ms/readme.md +60 -0
  796. package/node_modules_lambda/nwsapi/LICENSE +22 -0
  797. package/node_modules_lambda/nwsapi/README.md +132 -0
  798. package/node_modules_lambda/nwsapi/dist/lint.log +0 -0
  799. package/node_modules_lambda/nwsapi/package.json +38 -0
  800. package/node_modules_lambda/nwsapi/src/modules/nwsapi-jquery.js +135 -0
  801. package/node_modules_lambda/nwsapi/src/modules/nwsapi-traversal.js +90 -0
  802. package/node_modules_lambda/nwsapi/src/nwsapi.js +1800 -0
  803. package/node_modules_lambda/parse5/LICENSE +19 -0
  804. package/node_modules_lambda/parse5/README.md +38 -0
  805. package/node_modules_lambda/parse5/lib/common/doctype.js +162 -0
  806. package/node_modules_lambda/parse5/lib/common/error-codes.js +65 -0
  807. package/node_modules_lambda/parse5/lib/common/foreign-content.js +265 -0
  808. package/node_modules_lambda/parse5/lib/common/html.js +272 -0
  809. package/node_modules_lambda/parse5/lib/common/unicode.js +109 -0
  810. package/node_modules_lambda/parse5/lib/extensions/error-reporting/mixin-base.js +43 -0
  811. package/node_modules_lambda/parse5/lib/extensions/error-reporting/parser-mixin.js +52 -0
  812. package/node_modules_lambda/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +24 -0
  813. package/node_modules_lambda/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +17 -0
  814. package/node_modules_lambda/parse5/lib/extensions/location-info/open-element-stack-mixin.js +35 -0
  815. package/node_modules_lambda/parse5/lib/extensions/location-info/parser-mixin.js +223 -0
  816. package/node_modules_lambda/parse5/lib/extensions/location-info/tokenizer-mixin.js +146 -0
  817. package/node_modules_lambda/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +64 -0
  818. package/node_modules_lambda/parse5/lib/index.js +29 -0
  819. package/node_modules_lambda/parse5/lib/parser/formatting-element-list.js +181 -0
  820. package/node_modules_lambda/parse5/lib/parser/index.js +2956 -0
  821. package/node_modules_lambda/parse5/lib/parser/open-element-stack.js +482 -0
  822. package/node_modules_lambda/parse5/lib/serializer/index.js +176 -0
  823. package/node_modules_lambda/parse5/lib/tokenizer/index.js +2196 -0
  824. package/node_modules_lambda/parse5/lib/tokenizer/named-entity-data.js +5 -0
  825. package/node_modules_lambda/parse5/lib/tokenizer/preprocessor.js +159 -0
  826. package/node_modules_lambda/parse5/lib/tree-adapters/default.js +221 -0
  827. package/node_modules_lambda/parse5/lib/utils/merge-options.js +13 -0
  828. package/node_modules_lambda/parse5/lib/utils/mixin.js +39 -0
  829. package/node_modules_lambda/parse5/package.json +35 -0
  830. package/node_modules_lambda/psl/LICENSE +9 -0
  831. package/node_modules_lambda/psl/README.md +215 -0
  832. package/node_modules_lambda/psl/browserstack-logo.svg +90 -0
  833. package/node_modules_lambda/psl/data/rules.json +8834 -0
  834. package/node_modules_lambda/psl/dist/psl.js +9645 -0
  835. package/node_modules_lambda/psl/dist/psl.min.js +1 -0
  836. package/node_modules_lambda/psl/index.js +269 -0
  837. package/node_modules_lambda/psl/package.json +44 -0
  838. package/node_modules_lambda/punycode/LICENSE-MIT.txt +20 -0
  839. package/node_modules_lambda/punycode/README.md +122 -0
  840. package/node_modules_lambda/punycode/package.json +58 -0
  841. package/node_modules_lambda/punycode/punycode.es6.js +441 -0
  842. package/node_modules_lambda/punycode/punycode.js +440 -0
  843. package/node_modules_lambda/safer-buffer/LICENSE +21 -0
  844. package/node_modules_lambda/safer-buffer/Porting-Buffer.md +268 -0
  845. package/node_modules_lambda/safer-buffer/Readme.md +156 -0
  846. package/node_modules_lambda/safer-buffer/dangerous.js +58 -0
  847. package/node_modules_lambda/safer-buffer/package.json +34 -0
  848. package/node_modules_lambda/safer-buffer/safer.js +77 -0
  849. package/node_modules_lambda/safer-buffer/tests.js +406 -0
  850. package/node_modules_lambda/saxes/README.md +323 -0
  851. package/node_modules_lambda/saxes/package.json +70 -0
  852. package/node_modules_lambda/saxes/saxes.d.ts +635 -0
  853. package/node_modules_lambda/saxes/saxes.js +2064 -0
  854. package/node_modules_lambda/saxes/saxes.js.map +1 -0
  855. package/node_modules_lambda/symbol-tree/LICENSE +21 -0
  856. package/node_modules_lambda/symbol-tree/README.md +545 -0
  857. package/node_modules_lambda/symbol-tree/lib/SymbolTree.js +838 -0
  858. package/node_modules_lambda/symbol-tree/lib/SymbolTreeNode.js +54 -0
  859. package/node_modules_lambda/symbol-tree/lib/TreeIterator.js +69 -0
  860. package/node_modules_lambda/symbol-tree/lib/TreePosition.js +11 -0
  861. package/node_modules_lambda/symbol-tree/package.json +47 -0
  862. package/node_modules_lambda/tough-cookie/LICENSE +12 -0
  863. package/node_modules_lambda/tough-cookie/README.md +582 -0
  864. package/node_modules_lambda/tough-cookie/lib/cookie.js +1671 -0
  865. package/node_modules_lambda/tough-cookie/lib/memstore.js +190 -0
  866. package/node_modules_lambda/tough-cookie/lib/pathMatch.js +61 -0
  867. package/node_modules_lambda/tough-cookie/lib/permuteDomain.js +70 -0
  868. package/node_modules_lambda/tough-cookie/lib/pubsuffix-psl.js +38 -0
  869. package/node_modules_lambda/tough-cookie/lib/store.js +76 -0
  870. package/node_modules_lambda/tough-cookie/lib/version.js +2 -0
  871. package/node_modules_lambda/tough-cookie/package.json +109 -0
  872. package/node_modules_lambda/tr46/LICENSE.md +21 -0
  873. package/node_modules_lambda/tr46/README.md +78 -0
  874. package/node_modules_lambda/tr46/index.js +298 -0
  875. package/node_modules_lambda/tr46/lib/mappingTable.json +1 -0
  876. package/node_modules_lambda/tr46/lib/regexes.js +29 -0
  877. package/node_modules_lambda/tr46/lib/statusMapping.js +11 -0
  878. package/node_modules_lambda/tr46/package.json +47 -0
  879. package/node_modules_lambda/universalify/LICENSE +20 -0
  880. package/node_modules_lambda/universalify/README.md +76 -0
  881. package/node_modules_lambda/universalify/index.js +25 -0
  882. package/node_modules_lambda/universalify/package.json +34 -0
  883. package/node_modules_lambda/w3c-hr-time/CHANGELOG.md +19 -0
  884. package/node_modules_lambda/w3c-hr-time/LICENSE.md +21 -0
  885. package/node_modules_lambda/w3c-hr-time/README.md +130 -0
  886. package/node_modules_lambda/w3c-hr-time/index.js +11 -0
  887. package/node_modules_lambda/w3c-hr-time/lib/calculate-clock-offset.js +39 -0
  888. package/node_modules_lambda/w3c-hr-time/lib/clock-is-accurate.js +61 -0
  889. package/node_modules_lambda/w3c-hr-time/lib/global-monotonic-clock.js +10 -0
  890. package/node_modules_lambda/w3c-hr-time/lib/performance.js +53 -0
  891. package/node_modules_lambda/w3c-hr-time/lib/utils.js +11 -0
  892. package/node_modules_lambda/w3c-hr-time/package.json +26 -0
  893. package/node_modules_lambda/w3c-xmlserializer/LICENSE.md +25 -0
  894. package/node_modules_lambda/w3c-xmlserializer/README.md +41 -0
  895. package/node_modules_lambda/w3c-xmlserializer/lib/attributes.js +125 -0
  896. package/node_modules_lambda/w3c-xmlserializer/lib/constants.js +44 -0
  897. package/node_modules_lambda/w3c-xmlserializer/lib/serialize.js +365 -0
  898. package/node_modules_lambda/w3c-xmlserializer/package.json +33 -0
  899. package/node_modules_lambda/webidl-conversions/LICENSE.md +12 -0
  900. package/node_modules_lambda/webidl-conversions/README.md +99 -0
  901. package/node_modules_lambda/webidl-conversions/lib/index.js +450 -0
  902. package/node_modules_lambda/webidl-conversions/package.json +35 -0
  903. package/node_modules_lambda/whatwg-encoding/LICENSE.txt +7 -0
  904. package/node_modules_lambda/whatwg-encoding/README.md +50 -0
  905. package/node_modules_lambda/whatwg-encoding/lib/labels-to-names.json +216 -0
  906. package/node_modules_lambda/whatwg-encoding/lib/supported-names.json +37 -0
  907. package/node_modules_lambda/whatwg-encoding/lib/whatwg-encoding.js +47 -0
  908. package/node_modules_lambda/whatwg-encoding/package.json +33 -0
  909. package/node_modules_lambda/whatwg-mimetype/LICENSE.txt +7 -0
  910. package/node_modules_lambda/whatwg-mimetype/README.md +101 -0
  911. package/node_modules_lambda/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
  912. package/node_modules_lambda/whatwg-mimetype/lib/mime-type.js +127 -0
  913. package/node_modules_lambda/whatwg-mimetype/lib/parser.js +105 -0
  914. package/node_modules_lambda/whatwg-mimetype/lib/serializer.js +25 -0
  915. package/node_modules_lambda/whatwg-mimetype/lib/utils.js +60 -0
  916. package/node_modules_lambda/whatwg-mimetype/package.json +47 -0
  917. package/node_modules_lambda/whatwg-url/LICENSE.txt +21 -0
  918. package/node_modules_lambda/whatwg-url/README.md +105 -0
  919. package/node_modules_lambda/whatwg-url/index.js +25 -0
  920. package/node_modules_lambda/whatwg-url/lib/Function.js +42 -0
  921. package/node_modules_lambda/whatwg-url/lib/URL-impl.js +217 -0
  922. package/node_modules_lambda/whatwg-url/lib/URL.js +442 -0
  923. package/node_modules_lambda/whatwg-url/lib/URLSearchParams-impl.js +130 -0
  924. package/node_modules_lambda/whatwg-url/lib/URLSearchParams.js +472 -0
  925. package/node_modules_lambda/whatwg-url/lib/VoidFunction.js +26 -0
  926. package/node_modules_lambda/whatwg-url/lib/encoding.js +16 -0
  927. package/node_modules_lambda/whatwg-url/lib/infra.js +26 -0
  928. package/node_modules_lambda/whatwg-url/lib/percent-encoding.js +142 -0
  929. package/node_modules_lambda/whatwg-url/lib/url-state-machine.js +1234 -0
  930. package/node_modules_lambda/whatwg-url/lib/urlencoded.js +106 -0
  931. package/node_modules_lambda/whatwg-url/lib/utils.js +190 -0
  932. package/node_modules_lambda/whatwg-url/package.json +58 -0
  933. package/node_modules_lambda/whatwg-url/webidl2js-wrapper.js +7 -0
  934. package/node_modules_lambda/word-wrap/LICENSE +21 -0
  935. package/node_modules_lambda/word-wrap/README.md +182 -0
  936. package/node_modules_lambda/word-wrap/index.d.ts +50 -0
  937. package/node_modules_lambda/word-wrap/index.js +46 -0
  938. package/node_modules_lambda/word-wrap/package.json +77 -0
  939. package/node_modules_lambda/ws/LICENSE +19 -0
  940. package/node_modules_lambda/ws/README.md +495 -0
  941. package/node_modules_lambda/ws/browser.js +8 -0
  942. package/node_modules_lambda/ws/index.js +13 -0
  943. package/node_modules_lambda/ws/lib/buffer-util.js +127 -0
  944. package/node_modules_lambda/ws/lib/constants.js +12 -0
  945. package/node_modules_lambda/ws/lib/event-target.js +266 -0
  946. package/node_modules_lambda/ws/lib/extension.js +203 -0
  947. package/node_modules_lambda/ws/lib/limiter.js +55 -0
  948. package/node_modules_lambda/ws/lib/permessage-deflate.js +511 -0
  949. package/node_modules_lambda/ws/lib/receiver.js +618 -0
  950. package/node_modules_lambda/ws/lib/sender.js +478 -0
  951. package/node_modules_lambda/ws/lib/stream.js +159 -0
  952. package/node_modules_lambda/ws/lib/subprotocol.js +62 -0
  953. package/node_modules_lambda/ws/lib/validation.js +125 -0
  954. package/node_modules_lambda/ws/lib/websocket-server.js +535 -0
  955. package/node_modules_lambda/ws/lib/websocket.js +1296 -0
  956. package/node_modules_lambda/ws/package.json +61 -0
  957. package/node_modules_lambda/ws/wrapper.mjs +8 -0
  958. package/node_modules_lambda/xml-name-validator/LICENSE.txt +176 -0
  959. package/node_modules_lambda/xml-name-validator/README.md +35 -0
  960. package/node_modules_lambda/xml-name-validator/lib/xml-name-validator.js +9 -0
  961. package/node_modules_lambda/xml-name-validator/package.json +30 -0
  962. package/node_modules_lambda/xmlchars/LICENSE +18 -0
  963. package/node_modules_lambda/xmlchars/README.md +33 -0
  964. package/node_modules_lambda/xmlchars/package.json +51 -0
  965. package/node_modules_lambda/xmlchars/xml/1.0/ed4.d.ts +31 -0
  966. package/node_modules_lambda/xmlchars/xml/1.0/ed4.js +44 -0
  967. package/node_modules_lambda/xmlchars/xml/1.0/ed4.js.map +1 -0
  968. package/node_modules_lambda/xmlchars/xml/1.0/ed5.d.ts +51 -0
  969. package/node_modules_lambda/xmlchars/xml/1.0/ed5.js +105 -0
  970. package/node_modules_lambda/xmlchars/xml/1.0/ed5.js.map +1 -0
  971. package/node_modules_lambda/xmlchars/xml/1.1/ed2.d.ts +73 -0
  972. package/node_modules_lambda/xmlchars/xml/1.1/ed2.js +145 -0
  973. package/node_modules_lambda/xmlchars/xml/1.1/ed2.js.map +1 -0
  974. package/node_modules_lambda/xmlchars/xmlchars.d.ts +170 -0
  975. package/node_modules_lambda/xmlchars/xmlchars.js +191 -0
  976. package/node_modules_lambda/xmlchars/xmlchars.js.map +1 -0
  977. package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
  978. package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js +65 -0
  979. package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js.map +1 -0
  980. package/package.json +8 -3
@@ -0,0 +1,1875 @@
1
+ "use strict";
2
+
3
+ const conversions = require("webidl-conversions");
4
+ const utils = require("./utils.js");
5
+
6
+ const HTMLConstructor_helpers_html_constructor = require("../helpers/html-constructor.js").HTMLConstructor;
7
+ const SelectionMode = require("./SelectionMode.js");
8
+ const ceReactionsPreSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPreSteps;
9
+ const ceReactionsPostSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPostSteps;
10
+ const FileList = require("./FileList.js");
11
+ const parseURLToResultingURLRecord_helpers_document_base_url =
12
+ require("../helpers/document-base-url.js").parseURLToResultingURLRecord;
13
+ const serializeURLwhatwg_url = require("whatwg-url").serializeURL;
14
+ const implSymbol = utils.implSymbol;
15
+ const ctorRegistrySymbol = utils.ctorRegistrySymbol;
16
+ const HTMLElement = require("./HTMLElement.js");
17
+
18
+ const interfaceName = "HTMLInputElement";
19
+
20
+ exports.is = value => {
21
+ return utils.isObject(value) && utils.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation;
22
+ };
23
+ exports.isImpl = value => {
24
+ return utils.isObject(value) && value instanceof Impl.implementation;
25
+ };
26
+ exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
27
+ if (exports.is(value)) {
28
+ return utils.implForWrapper(value);
29
+ }
30
+ throw new globalObject.TypeError(`${context} is not of type 'HTMLInputElement'.`);
31
+ };
32
+
33
+ function makeWrapper(globalObject, newTarget) {
34
+ let proto;
35
+ if (newTarget !== undefined) {
36
+ proto = newTarget.prototype;
37
+ }
38
+
39
+ if (!utils.isObject(proto)) {
40
+ proto = globalObject[ctorRegistrySymbol]["HTMLInputElement"].prototype;
41
+ }
42
+
43
+ return Object.create(proto);
44
+ }
45
+
46
+ exports.create = (globalObject, constructorArgs, privateData) => {
47
+ const wrapper = makeWrapper(globalObject);
48
+ return exports.setup(wrapper, globalObject, constructorArgs, privateData);
49
+ };
50
+
51
+ exports.createImpl = (globalObject, constructorArgs, privateData) => {
52
+ const wrapper = exports.create(globalObject, constructorArgs, privateData);
53
+ return utils.implForWrapper(wrapper);
54
+ };
55
+
56
+ exports._internalSetup = (wrapper, globalObject) => {
57
+ HTMLElement._internalSetup(wrapper, globalObject);
58
+ };
59
+
60
+ exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => {
61
+ privateData.wrapper = wrapper;
62
+
63
+ exports._internalSetup(wrapper, globalObject);
64
+ Object.defineProperty(wrapper, implSymbol, {
65
+ value: new Impl.implementation(globalObject, constructorArgs, privateData),
66
+ configurable: true
67
+ });
68
+
69
+ wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
70
+ if (Impl.init) {
71
+ Impl.init(wrapper[implSymbol]);
72
+ }
73
+ return wrapper;
74
+ };
75
+
76
+ exports.new = (globalObject, newTarget) => {
77
+ const wrapper = makeWrapper(globalObject, newTarget);
78
+
79
+ exports._internalSetup(wrapper, globalObject);
80
+ Object.defineProperty(wrapper, implSymbol, {
81
+ value: Object.create(Impl.implementation.prototype),
82
+ configurable: true
83
+ });
84
+
85
+ wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
86
+ if (Impl.init) {
87
+ Impl.init(wrapper[implSymbol]);
88
+ }
89
+ return wrapper[implSymbol];
90
+ };
91
+
92
+ const exposed = new Set(["Window"]);
93
+
94
+ exports.install = (globalObject, globalNames) => {
95
+ if (!globalNames.some(globalName => exposed.has(globalName))) {
96
+ return;
97
+ }
98
+
99
+ const ctorRegistry = utils.initCtorRegistry(globalObject);
100
+ class HTMLInputElement extends globalObject.HTMLElement {
101
+ constructor() {
102
+ return HTMLConstructor_helpers_html_constructor(globalObject, interfaceName, new.target);
103
+ }
104
+
105
+ stepUp() {
106
+ const esValue = this !== null && this !== undefined ? this : globalObject;
107
+ if (!exports.is(esValue)) {
108
+ throw new globalObject.TypeError(
109
+ "'stepUp' called on an object that is not a valid instance of HTMLInputElement."
110
+ );
111
+ }
112
+ const args = [];
113
+ {
114
+ let curArg = arguments[0];
115
+ if (curArg !== undefined) {
116
+ curArg = conversions["long"](curArg, {
117
+ context: "Failed to execute 'stepUp' on 'HTMLInputElement': parameter 1",
118
+ globals: globalObject
119
+ });
120
+ } else {
121
+ curArg = 1;
122
+ }
123
+ args.push(curArg);
124
+ }
125
+ return esValue[implSymbol].stepUp(...args);
126
+ }
127
+
128
+ stepDown() {
129
+ const esValue = this !== null && this !== undefined ? this : globalObject;
130
+ if (!exports.is(esValue)) {
131
+ throw new globalObject.TypeError(
132
+ "'stepDown' called on an object that is not a valid instance of HTMLInputElement."
133
+ );
134
+ }
135
+ const args = [];
136
+ {
137
+ let curArg = arguments[0];
138
+ if (curArg !== undefined) {
139
+ curArg = conversions["long"](curArg, {
140
+ context: "Failed to execute 'stepDown' on 'HTMLInputElement': parameter 1",
141
+ globals: globalObject
142
+ });
143
+ } else {
144
+ curArg = 1;
145
+ }
146
+ args.push(curArg);
147
+ }
148
+ return esValue[implSymbol].stepDown(...args);
149
+ }
150
+
151
+ checkValidity() {
152
+ const esValue = this !== null && this !== undefined ? this : globalObject;
153
+ if (!exports.is(esValue)) {
154
+ throw new globalObject.TypeError(
155
+ "'checkValidity' called on an object that is not a valid instance of HTMLInputElement."
156
+ );
157
+ }
158
+
159
+ return esValue[implSymbol].checkValidity();
160
+ }
161
+
162
+ reportValidity() {
163
+ const esValue = this !== null && this !== undefined ? this : globalObject;
164
+ if (!exports.is(esValue)) {
165
+ throw new globalObject.TypeError(
166
+ "'reportValidity' called on an object that is not a valid instance of HTMLInputElement."
167
+ );
168
+ }
169
+
170
+ return esValue[implSymbol].reportValidity();
171
+ }
172
+
173
+ setCustomValidity(error) {
174
+ const esValue = this !== null && this !== undefined ? this : globalObject;
175
+ if (!exports.is(esValue)) {
176
+ throw new globalObject.TypeError(
177
+ "'setCustomValidity' called on an object that is not a valid instance of HTMLInputElement."
178
+ );
179
+ }
180
+
181
+ if (arguments.length < 1) {
182
+ throw new globalObject.TypeError(
183
+ `Failed to execute 'setCustomValidity' on 'HTMLInputElement': 1 argument required, but only ${arguments.length} present.`
184
+ );
185
+ }
186
+ const args = [];
187
+ {
188
+ let curArg = arguments[0];
189
+ curArg = conversions["DOMString"](curArg, {
190
+ context: "Failed to execute 'setCustomValidity' on 'HTMLInputElement': parameter 1",
191
+ globals: globalObject
192
+ });
193
+ args.push(curArg);
194
+ }
195
+ return esValue[implSymbol].setCustomValidity(...args);
196
+ }
197
+
198
+ select() {
199
+ const esValue = this !== null && this !== undefined ? this : globalObject;
200
+ if (!exports.is(esValue)) {
201
+ throw new globalObject.TypeError(
202
+ "'select' called on an object that is not a valid instance of HTMLInputElement."
203
+ );
204
+ }
205
+
206
+ return esValue[implSymbol].select();
207
+ }
208
+
209
+ setRangeText(replacement) {
210
+ const esValue = this !== null && this !== undefined ? this : globalObject;
211
+ if (!exports.is(esValue)) {
212
+ throw new globalObject.TypeError(
213
+ "'setRangeText' called on an object that is not a valid instance of HTMLInputElement."
214
+ );
215
+ }
216
+
217
+ if (arguments.length < 1) {
218
+ throw new globalObject.TypeError(
219
+ `Failed to execute 'setRangeText' on 'HTMLInputElement': 1 argument required, but only ${arguments.length} present.`
220
+ );
221
+ }
222
+ const args = [];
223
+ switch (arguments.length) {
224
+ case 1:
225
+ {
226
+ let curArg = arguments[0];
227
+ curArg = conversions["DOMString"](curArg, {
228
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 1",
229
+ globals: globalObject
230
+ });
231
+ args.push(curArg);
232
+ }
233
+ break;
234
+ case 2:
235
+ throw new globalObject.TypeError(
236
+ `Failed to execute 'setRangeText' on 'HTMLInputElement': only ${arguments.length} arguments present.`
237
+ );
238
+ break;
239
+ case 3:
240
+ {
241
+ let curArg = arguments[0];
242
+ curArg = conversions["DOMString"](curArg, {
243
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 1",
244
+ globals: globalObject
245
+ });
246
+ args.push(curArg);
247
+ }
248
+ {
249
+ let curArg = arguments[1];
250
+ curArg = conversions["unsigned long"](curArg, {
251
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 2",
252
+ globals: globalObject
253
+ });
254
+ args.push(curArg);
255
+ }
256
+ {
257
+ let curArg = arguments[2];
258
+ curArg = conversions["unsigned long"](curArg, {
259
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 3",
260
+ globals: globalObject
261
+ });
262
+ args.push(curArg);
263
+ }
264
+ break;
265
+ default:
266
+ {
267
+ let curArg = arguments[0];
268
+ curArg = conversions["DOMString"](curArg, {
269
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 1",
270
+ globals: globalObject
271
+ });
272
+ args.push(curArg);
273
+ }
274
+ {
275
+ let curArg = arguments[1];
276
+ curArg = conversions["unsigned long"](curArg, {
277
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 2",
278
+ globals: globalObject
279
+ });
280
+ args.push(curArg);
281
+ }
282
+ {
283
+ let curArg = arguments[2];
284
+ curArg = conversions["unsigned long"](curArg, {
285
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 3",
286
+ globals: globalObject
287
+ });
288
+ args.push(curArg);
289
+ }
290
+ {
291
+ let curArg = arguments[3];
292
+ if (curArg !== undefined) {
293
+ curArg = SelectionMode.convert(globalObject, curArg, {
294
+ context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 4"
295
+ });
296
+ } else {
297
+ curArg = "preserve";
298
+ }
299
+ args.push(curArg);
300
+ }
301
+ }
302
+ return esValue[implSymbol].setRangeText(...args);
303
+ }
304
+
305
+ setSelectionRange(start, end) {
306
+ const esValue = this !== null && this !== undefined ? this : globalObject;
307
+ if (!exports.is(esValue)) {
308
+ throw new globalObject.TypeError(
309
+ "'setSelectionRange' called on an object that is not a valid instance of HTMLInputElement."
310
+ );
311
+ }
312
+
313
+ if (arguments.length < 2) {
314
+ throw new globalObject.TypeError(
315
+ `Failed to execute 'setSelectionRange' on 'HTMLInputElement': 2 arguments required, but only ${arguments.length} present.`
316
+ );
317
+ }
318
+ const args = [];
319
+ {
320
+ let curArg = arguments[0];
321
+ curArg = conversions["unsigned long"](curArg, {
322
+ context: "Failed to execute 'setSelectionRange' on 'HTMLInputElement': parameter 1",
323
+ globals: globalObject
324
+ });
325
+ args.push(curArg);
326
+ }
327
+ {
328
+ let curArg = arguments[1];
329
+ curArg = conversions["unsigned long"](curArg, {
330
+ context: "Failed to execute 'setSelectionRange' on 'HTMLInputElement': parameter 2",
331
+ globals: globalObject
332
+ });
333
+ args.push(curArg);
334
+ }
335
+ {
336
+ let curArg = arguments[2];
337
+ if (curArg !== undefined) {
338
+ curArg = conversions["DOMString"](curArg, {
339
+ context: "Failed to execute 'setSelectionRange' on 'HTMLInputElement': parameter 3",
340
+ globals: globalObject
341
+ });
342
+ }
343
+ args.push(curArg);
344
+ }
345
+ return esValue[implSymbol].setSelectionRange(...args);
346
+ }
347
+
348
+ get accept() {
349
+ const esValue = this !== null && this !== undefined ? this : globalObject;
350
+
351
+ if (!exports.is(esValue)) {
352
+ throw new globalObject.TypeError(
353
+ "'get accept' called on an object that is not a valid instance of HTMLInputElement."
354
+ );
355
+ }
356
+
357
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
358
+ try {
359
+ const value = esValue[implSymbol].getAttributeNS(null, "accept");
360
+ return value === null ? "" : value;
361
+ } finally {
362
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
363
+ }
364
+ }
365
+
366
+ set accept(V) {
367
+ const esValue = this !== null && this !== undefined ? this : globalObject;
368
+
369
+ if (!exports.is(esValue)) {
370
+ throw new globalObject.TypeError(
371
+ "'set accept' called on an object that is not a valid instance of HTMLInputElement."
372
+ );
373
+ }
374
+
375
+ V = conversions["DOMString"](V, {
376
+ context: "Failed to set the 'accept' property on 'HTMLInputElement': The provided value",
377
+ globals: globalObject
378
+ });
379
+
380
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
381
+ try {
382
+ esValue[implSymbol].setAttributeNS(null, "accept", V);
383
+ } finally {
384
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
385
+ }
386
+ }
387
+
388
+ get alt() {
389
+ const esValue = this !== null && this !== undefined ? this : globalObject;
390
+
391
+ if (!exports.is(esValue)) {
392
+ throw new globalObject.TypeError(
393
+ "'get alt' called on an object that is not a valid instance of HTMLInputElement."
394
+ );
395
+ }
396
+
397
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
398
+ try {
399
+ const value = esValue[implSymbol].getAttributeNS(null, "alt");
400
+ return value === null ? "" : value;
401
+ } finally {
402
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
403
+ }
404
+ }
405
+
406
+ set alt(V) {
407
+ const esValue = this !== null && this !== undefined ? this : globalObject;
408
+
409
+ if (!exports.is(esValue)) {
410
+ throw new globalObject.TypeError(
411
+ "'set alt' called on an object that is not a valid instance of HTMLInputElement."
412
+ );
413
+ }
414
+
415
+ V = conversions["DOMString"](V, {
416
+ context: "Failed to set the 'alt' property on 'HTMLInputElement': The provided value",
417
+ globals: globalObject
418
+ });
419
+
420
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
421
+ try {
422
+ esValue[implSymbol].setAttributeNS(null, "alt", V);
423
+ } finally {
424
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
425
+ }
426
+ }
427
+
428
+ get autocomplete() {
429
+ const esValue = this !== null && this !== undefined ? this : globalObject;
430
+
431
+ if (!exports.is(esValue)) {
432
+ throw new globalObject.TypeError(
433
+ "'get autocomplete' called on an object that is not a valid instance of HTMLInputElement."
434
+ );
435
+ }
436
+
437
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
438
+ try {
439
+ const value = esValue[implSymbol].getAttributeNS(null, "autocomplete");
440
+ return value === null ? "" : value;
441
+ } finally {
442
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
443
+ }
444
+ }
445
+
446
+ set autocomplete(V) {
447
+ const esValue = this !== null && this !== undefined ? this : globalObject;
448
+
449
+ if (!exports.is(esValue)) {
450
+ throw new globalObject.TypeError(
451
+ "'set autocomplete' called on an object that is not a valid instance of HTMLInputElement."
452
+ );
453
+ }
454
+
455
+ V = conversions["DOMString"](V, {
456
+ context: "Failed to set the 'autocomplete' property on 'HTMLInputElement': The provided value",
457
+ globals: globalObject
458
+ });
459
+
460
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
461
+ try {
462
+ esValue[implSymbol].setAttributeNS(null, "autocomplete", V);
463
+ } finally {
464
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
465
+ }
466
+ }
467
+
468
+ get autofocus() {
469
+ const esValue = this !== null && this !== undefined ? this : globalObject;
470
+
471
+ if (!exports.is(esValue)) {
472
+ throw new globalObject.TypeError(
473
+ "'get autofocus' called on an object that is not a valid instance of HTMLInputElement."
474
+ );
475
+ }
476
+
477
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
478
+ try {
479
+ return esValue[implSymbol].hasAttributeNS(null, "autofocus");
480
+ } finally {
481
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
482
+ }
483
+ }
484
+
485
+ set autofocus(V) {
486
+ const esValue = this !== null && this !== undefined ? this : globalObject;
487
+
488
+ if (!exports.is(esValue)) {
489
+ throw new globalObject.TypeError(
490
+ "'set autofocus' called on an object that is not a valid instance of HTMLInputElement."
491
+ );
492
+ }
493
+
494
+ V = conversions["boolean"](V, {
495
+ context: "Failed to set the 'autofocus' property on 'HTMLInputElement': The provided value",
496
+ globals: globalObject
497
+ });
498
+
499
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
500
+ try {
501
+ if (V) {
502
+ esValue[implSymbol].setAttributeNS(null, "autofocus", "");
503
+ } else {
504
+ esValue[implSymbol].removeAttributeNS(null, "autofocus");
505
+ }
506
+ } finally {
507
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
508
+ }
509
+ }
510
+
511
+ get defaultChecked() {
512
+ const esValue = this !== null && this !== undefined ? this : globalObject;
513
+
514
+ if (!exports.is(esValue)) {
515
+ throw new globalObject.TypeError(
516
+ "'get defaultChecked' called on an object that is not a valid instance of HTMLInputElement."
517
+ );
518
+ }
519
+
520
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
521
+ try {
522
+ return esValue[implSymbol].hasAttributeNS(null, "checked");
523
+ } finally {
524
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
525
+ }
526
+ }
527
+
528
+ set defaultChecked(V) {
529
+ const esValue = this !== null && this !== undefined ? this : globalObject;
530
+
531
+ if (!exports.is(esValue)) {
532
+ throw new globalObject.TypeError(
533
+ "'set defaultChecked' called on an object that is not a valid instance of HTMLInputElement."
534
+ );
535
+ }
536
+
537
+ V = conversions["boolean"](V, {
538
+ context: "Failed to set the 'defaultChecked' property on 'HTMLInputElement': The provided value",
539
+ globals: globalObject
540
+ });
541
+
542
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
543
+ try {
544
+ if (V) {
545
+ esValue[implSymbol].setAttributeNS(null, "checked", "");
546
+ } else {
547
+ esValue[implSymbol].removeAttributeNS(null, "checked");
548
+ }
549
+ } finally {
550
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
551
+ }
552
+ }
553
+
554
+ get checked() {
555
+ const esValue = this !== null && this !== undefined ? this : globalObject;
556
+
557
+ if (!exports.is(esValue)) {
558
+ throw new globalObject.TypeError(
559
+ "'get checked' called on an object that is not a valid instance of HTMLInputElement."
560
+ );
561
+ }
562
+
563
+ return esValue[implSymbol]["checked"];
564
+ }
565
+
566
+ set checked(V) {
567
+ const esValue = this !== null && this !== undefined ? this : globalObject;
568
+
569
+ if (!exports.is(esValue)) {
570
+ throw new globalObject.TypeError(
571
+ "'set checked' called on an object that is not a valid instance of HTMLInputElement."
572
+ );
573
+ }
574
+
575
+ V = conversions["boolean"](V, {
576
+ context: "Failed to set the 'checked' property on 'HTMLInputElement': The provided value",
577
+ globals: globalObject
578
+ });
579
+
580
+ esValue[implSymbol]["checked"] = V;
581
+ }
582
+
583
+ get dirName() {
584
+ const esValue = this !== null && this !== undefined ? this : globalObject;
585
+
586
+ if (!exports.is(esValue)) {
587
+ throw new globalObject.TypeError(
588
+ "'get dirName' called on an object that is not a valid instance of HTMLInputElement."
589
+ );
590
+ }
591
+
592
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
593
+ try {
594
+ const value = esValue[implSymbol].getAttributeNS(null, "dirname");
595
+ return value === null ? "" : value;
596
+ } finally {
597
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
598
+ }
599
+ }
600
+
601
+ set dirName(V) {
602
+ const esValue = this !== null && this !== undefined ? this : globalObject;
603
+
604
+ if (!exports.is(esValue)) {
605
+ throw new globalObject.TypeError(
606
+ "'set dirName' called on an object that is not a valid instance of HTMLInputElement."
607
+ );
608
+ }
609
+
610
+ V = conversions["DOMString"](V, {
611
+ context: "Failed to set the 'dirName' property on 'HTMLInputElement': The provided value",
612
+ globals: globalObject
613
+ });
614
+
615
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
616
+ try {
617
+ esValue[implSymbol].setAttributeNS(null, "dirname", V);
618
+ } finally {
619
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
620
+ }
621
+ }
622
+
623
+ get disabled() {
624
+ const esValue = this !== null && this !== undefined ? this : globalObject;
625
+
626
+ if (!exports.is(esValue)) {
627
+ throw new globalObject.TypeError(
628
+ "'get disabled' called on an object that is not a valid instance of HTMLInputElement."
629
+ );
630
+ }
631
+
632
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
633
+ try {
634
+ return esValue[implSymbol].hasAttributeNS(null, "disabled");
635
+ } finally {
636
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
637
+ }
638
+ }
639
+
640
+ set disabled(V) {
641
+ const esValue = this !== null && this !== undefined ? this : globalObject;
642
+
643
+ if (!exports.is(esValue)) {
644
+ throw new globalObject.TypeError(
645
+ "'set disabled' called on an object that is not a valid instance of HTMLInputElement."
646
+ );
647
+ }
648
+
649
+ V = conversions["boolean"](V, {
650
+ context: "Failed to set the 'disabled' property on 'HTMLInputElement': The provided value",
651
+ globals: globalObject
652
+ });
653
+
654
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
655
+ try {
656
+ if (V) {
657
+ esValue[implSymbol].setAttributeNS(null, "disabled", "");
658
+ } else {
659
+ esValue[implSymbol].removeAttributeNS(null, "disabled");
660
+ }
661
+ } finally {
662
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
663
+ }
664
+ }
665
+
666
+ get form() {
667
+ const esValue = this !== null && this !== undefined ? this : globalObject;
668
+
669
+ if (!exports.is(esValue)) {
670
+ throw new globalObject.TypeError(
671
+ "'get form' called on an object that is not a valid instance of HTMLInputElement."
672
+ );
673
+ }
674
+
675
+ return utils.tryWrapperForImpl(esValue[implSymbol]["form"]);
676
+ }
677
+
678
+ get files() {
679
+ const esValue = this !== null && this !== undefined ? this : globalObject;
680
+
681
+ if (!exports.is(esValue)) {
682
+ throw new globalObject.TypeError(
683
+ "'get files' called on an object that is not a valid instance of HTMLInputElement."
684
+ );
685
+ }
686
+
687
+ return utils.tryWrapperForImpl(esValue[implSymbol]["files"]);
688
+ }
689
+
690
+ set files(V) {
691
+ const esValue = this !== null && this !== undefined ? this : globalObject;
692
+
693
+ if (!exports.is(esValue)) {
694
+ throw new globalObject.TypeError(
695
+ "'set files' called on an object that is not a valid instance of HTMLInputElement."
696
+ );
697
+ }
698
+
699
+ if (V === null || V === undefined) {
700
+ V = null;
701
+ } else {
702
+ V = FileList.convert(globalObject, V, {
703
+ context: "Failed to set the 'files' property on 'HTMLInputElement': The provided value"
704
+ });
705
+ }
706
+ esValue[implSymbol]["files"] = V;
707
+ }
708
+
709
+ get formNoValidate() {
710
+ const esValue = this !== null && this !== undefined ? this : globalObject;
711
+
712
+ if (!exports.is(esValue)) {
713
+ throw new globalObject.TypeError(
714
+ "'get formNoValidate' called on an object that is not a valid instance of HTMLInputElement."
715
+ );
716
+ }
717
+
718
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
719
+ try {
720
+ return esValue[implSymbol].hasAttributeNS(null, "formnovalidate");
721
+ } finally {
722
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
723
+ }
724
+ }
725
+
726
+ set formNoValidate(V) {
727
+ const esValue = this !== null && this !== undefined ? this : globalObject;
728
+
729
+ if (!exports.is(esValue)) {
730
+ throw new globalObject.TypeError(
731
+ "'set formNoValidate' called on an object that is not a valid instance of HTMLInputElement."
732
+ );
733
+ }
734
+
735
+ V = conversions["boolean"](V, {
736
+ context: "Failed to set the 'formNoValidate' property on 'HTMLInputElement': The provided value",
737
+ globals: globalObject
738
+ });
739
+
740
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
741
+ try {
742
+ if (V) {
743
+ esValue[implSymbol].setAttributeNS(null, "formnovalidate", "");
744
+ } else {
745
+ esValue[implSymbol].removeAttributeNS(null, "formnovalidate");
746
+ }
747
+ } finally {
748
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
749
+ }
750
+ }
751
+
752
+ get formTarget() {
753
+ const esValue = this !== null && this !== undefined ? this : globalObject;
754
+
755
+ if (!exports.is(esValue)) {
756
+ throw new globalObject.TypeError(
757
+ "'get formTarget' called on an object that is not a valid instance of HTMLInputElement."
758
+ );
759
+ }
760
+
761
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
762
+ try {
763
+ const value = esValue[implSymbol].getAttributeNS(null, "formtarget");
764
+ return value === null ? "" : value;
765
+ } finally {
766
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
767
+ }
768
+ }
769
+
770
+ set formTarget(V) {
771
+ const esValue = this !== null && this !== undefined ? this : globalObject;
772
+
773
+ if (!exports.is(esValue)) {
774
+ throw new globalObject.TypeError(
775
+ "'set formTarget' called on an object that is not a valid instance of HTMLInputElement."
776
+ );
777
+ }
778
+
779
+ V = conversions["DOMString"](V, {
780
+ context: "Failed to set the 'formTarget' property on 'HTMLInputElement': The provided value",
781
+ globals: globalObject
782
+ });
783
+
784
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
785
+ try {
786
+ esValue[implSymbol].setAttributeNS(null, "formtarget", V);
787
+ } finally {
788
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
789
+ }
790
+ }
791
+
792
+ get indeterminate() {
793
+ const esValue = this !== null && this !== undefined ? this : globalObject;
794
+
795
+ if (!exports.is(esValue)) {
796
+ throw new globalObject.TypeError(
797
+ "'get indeterminate' called on an object that is not a valid instance of HTMLInputElement."
798
+ );
799
+ }
800
+
801
+ return esValue[implSymbol]["indeterminate"];
802
+ }
803
+
804
+ set indeterminate(V) {
805
+ const esValue = this !== null && this !== undefined ? this : globalObject;
806
+
807
+ if (!exports.is(esValue)) {
808
+ throw new globalObject.TypeError(
809
+ "'set indeterminate' called on an object that is not a valid instance of HTMLInputElement."
810
+ );
811
+ }
812
+
813
+ V = conversions["boolean"](V, {
814
+ context: "Failed to set the 'indeterminate' property on 'HTMLInputElement': The provided value",
815
+ globals: globalObject
816
+ });
817
+
818
+ esValue[implSymbol]["indeterminate"] = V;
819
+ }
820
+
821
+ get inputMode() {
822
+ const esValue = this !== null && this !== undefined ? this : globalObject;
823
+
824
+ if (!exports.is(esValue)) {
825
+ throw new globalObject.TypeError(
826
+ "'get inputMode' called on an object that is not a valid instance of HTMLInputElement."
827
+ );
828
+ }
829
+
830
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
831
+ try {
832
+ const value = esValue[implSymbol].getAttributeNS(null, "inputmode");
833
+ return value === null ? "" : value;
834
+ } finally {
835
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
836
+ }
837
+ }
838
+
839
+ set inputMode(V) {
840
+ const esValue = this !== null && this !== undefined ? this : globalObject;
841
+
842
+ if (!exports.is(esValue)) {
843
+ throw new globalObject.TypeError(
844
+ "'set inputMode' called on an object that is not a valid instance of HTMLInputElement."
845
+ );
846
+ }
847
+
848
+ V = conversions["DOMString"](V, {
849
+ context: "Failed to set the 'inputMode' property on 'HTMLInputElement': The provided value",
850
+ globals: globalObject
851
+ });
852
+
853
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
854
+ try {
855
+ esValue[implSymbol].setAttributeNS(null, "inputmode", V);
856
+ } finally {
857
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
858
+ }
859
+ }
860
+
861
+ get list() {
862
+ const esValue = this !== null && this !== undefined ? this : globalObject;
863
+
864
+ if (!exports.is(esValue)) {
865
+ throw new globalObject.TypeError(
866
+ "'get list' called on an object that is not a valid instance of HTMLInputElement."
867
+ );
868
+ }
869
+
870
+ return utils.tryWrapperForImpl(esValue[implSymbol]["list"]);
871
+ }
872
+
873
+ get max() {
874
+ const esValue = this !== null && this !== undefined ? this : globalObject;
875
+
876
+ if (!exports.is(esValue)) {
877
+ throw new globalObject.TypeError(
878
+ "'get max' called on an object that is not a valid instance of HTMLInputElement."
879
+ );
880
+ }
881
+
882
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
883
+ try {
884
+ const value = esValue[implSymbol].getAttributeNS(null, "max");
885
+ return value === null ? "" : value;
886
+ } finally {
887
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
888
+ }
889
+ }
890
+
891
+ set max(V) {
892
+ const esValue = this !== null && this !== undefined ? this : globalObject;
893
+
894
+ if (!exports.is(esValue)) {
895
+ throw new globalObject.TypeError(
896
+ "'set max' called on an object that is not a valid instance of HTMLInputElement."
897
+ );
898
+ }
899
+
900
+ V = conversions["DOMString"](V, {
901
+ context: "Failed to set the 'max' property on 'HTMLInputElement': The provided value",
902
+ globals: globalObject
903
+ });
904
+
905
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
906
+ try {
907
+ esValue[implSymbol].setAttributeNS(null, "max", V);
908
+ } finally {
909
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
910
+ }
911
+ }
912
+
913
+ get maxLength() {
914
+ const esValue = this !== null && this !== undefined ? this : globalObject;
915
+
916
+ if (!exports.is(esValue)) {
917
+ throw new globalObject.TypeError(
918
+ "'get maxLength' called on an object that is not a valid instance of HTMLInputElement."
919
+ );
920
+ }
921
+
922
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
923
+ try {
924
+ return esValue[implSymbol]["maxLength"];
925
+ } finally {
926
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
927
+ }
928
+ }
929
+
930
+ set maxLength(V) {
931
+ const esValue = this !== null && this !== undefined ? this : globalObject;
932
+
933
+ if (!exports.is(esValue)) {
934
+ throw new globalObject.TypeError(
935
+ "'set maxLength' called on an object that is not a valid instance of HTMLInputElement."
936
+ );
937
+ }
938
+
939
+ V = conversions["long"](V, {
940
+ context: "Failed to set the 'maxLength' property on 'HTMLInputElement': The provided value",
941
+ globals: globalObject
942
+ });
943
+
944
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
945
+ try {
946
+ esValue[implSymbol]["maxLength"] = V;
947
+ } finally {
948
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
949
+ }
950
+ }
951
+
952
+ get min() {
953
+ const esValue = this !== null && this !== undefined ? this : globalObject;
954
+
955
+ if (!exports.is(esValue)) {
956
+ throw new globalObject.TypeError(
957
+ "'get min' called on an object that is not a valid instance of HTMLInputElement."
958
+ );
959
+ }
960
+
961
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
962
+ try {
963
+ const value = esValue[implSymbol].getAttributeNS(null, "min");
964
+ return value === null ? "" : value;
965
+ } finally {
966
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
967
+ }
968
+ }
969
+
970
+ set min(V) {
971
+ const esValue = this !== null && this !== undefined ? this : globalObject;
972
+
973
+ if (!exports.is(esValue)) {
974
+ throw new globalObject.TypeError(
975
+ "'set min' called on an object that is not a valid instance of HTMLInputElement."
976
+ );
977
+ }
978
+
979
+ V = conversions["DOMString"](V, {
980
+ context: "Failed to set the 'min' property on 'HTMLInputElement': The provided value",
981
+ globals: globalObject
982
+ });
983
+
984
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
985
+ try {
986
+ esValue[implSymbol].setAttributeNS(null, "min", V);
987
+ } finally {
988
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
989
+ }
990
+ }
991
+
992
+ get minLength() {
993
+ const esValue = this !== null && this !== undefined ? this : globalObject;
994
+
995
+ if (!exports.is(esValue)) {
996
+ throw new globalObject.TypeError(
997
+ "'get minLength' called on an object that is not a valid instance of HTMLInputElement."
998
+ );
999
+ }
1000
+
1001
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1002
+ try {
1003
+ return esValue[implSymbol]["minLength"];
1004
+ } finally {
1005
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1006
+ }
1007
+ }
1008
+
1009
+ set minLength(V) {
1010
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1011
+
1012
+ if (!exports.is(esValue)) {
1013
+ throw new globalObject.TypeError(
1014
+ "'set minLength' called on an object that is not a valid instance of HTMLInputElement."
1015
+ );
1016
+ }
1017
+
1018
+ V = conversions["long"](V, {
1019
+ context: "Failed to set the 'minLength' property on 'HTMLInputElement': The provided value",
1020
+ globals: globalObject
1021
+ });
1022
+
1023
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1024
+ try {
1025
+ esValue[implSymbol]["minLength"] = V;
1026
+ } finally {
1027
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1028
+ }
1029
+ }
1030
+
1031
+ get multiple() {
1032
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1033
+
1034
+ if (!exports.is(esValue)) {
1035
+ throw new globalObject.TypeError(
1036
+ "'get multiple' called on an object that is not a valid instance of HTMLInputElement."
1037
+ );
1038
+ }
1039
+
1040
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1041
+ try {
1042
+ return esValue[implSymbol].hasAttributeNS(null, "multiple");
1043
+ } finally {
1044
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1045
+ }
1046
+ }
1047
+
1048
+ set multiple(V) {
1049
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1050
+
1051
+ if (!exports.is(esValue)) {
1052
+ throw new globalObject.TypeError(
1053
+ "'set multiple' called on an object that is not a valid instance of HTMLInputElement."
1054
+ );
1055
+ }
1056
+
1057
+ V = conversions["boolean"](V, {
1058
+ context: "Failed to set the 'multiple' property on 'HTMLInputElement': The provided value",
1059
+ globals: globalObject
1060
+ });
1061
+
1062
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1063
+ try {
1064
+ if (V) {
1065
+ esValue[implSymbol].setAttributeNS(null, "multiple", "");
1066
+ } else {
1067
+ esValue[implSymbol].removeAttributeNS(null, "multiple");
1068
+ }
1069
+ } finally {
1070
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1071
+ }
1072
+ }
1073
+
1074
+ get name() {
1075
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1076
+
1077
+ if (!exports.is(esValue)) {
1078
+ throw new globalObject.TypeError(
1079
+ "'get name' called on an object that is not a valid instance of HTMLInputElement."
1080
+ );
1081
+ }
1082
+
1083
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1084
+ try {
1085
+ const value = esValue[implSymbol].getAttributeNS(null, "name");
1086
+ return value === null ? "" : value;
1087
+ } finally {
1088
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1089
+ }
1090
+ }
1091
+
1092
+ set name(V) {
1093
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1094
+
1095
+ if (!exports.is(esValue)) {
1096
+ throw new globalObject.TypeError(
1097
+ "'set name' called on an object that is not a valid instance of HTMLInputElement."
1098
+ );
1099
+ }
1100
+
1101
+ V = conversions["DOMString"](V, {
1102
+ context: "Failed to set the 'name' property on 'HTMLInputElement': The provided value",
1103
+ globals: globalObject
1104
+ });
1105
+
1106
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1107
+ try {
1108
+ esValue[implSymbol].setAttributeNS(null, "name", V);
1109
+ } finally {
1110
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1111
+ }
1112
+ }
1113
+
1114
+ get pattern() {
1115
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1116
+
1117
+ if (!exports.is(esValue)) {
1118
+ throw new globalObject.TypeError(
1119
+ "'get pattern' called on an object that is not a valid instance of HTMLInputElement."
1120
+ );
1121
+ }
1122
+
1123
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1124
+ try {
1125
+ const value = esValue[implSymbol].getAttributeNS(null, "pattern");
1126
+ return value === null ? "" : value;
1127
+ } finally {
1128
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1129
+ }
1130
+ }
1131
+
1132
+ set pattern(V) {
1133
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1134
+
1135
+ if (!exports.is(esValue)) {
1136
+ throw new globalObject.TypeError(
1137
+ "'set pattern' called on an object that is not a valid instance of HTMLInputElement."
1138
+ );
1139
+ }
1140
+
1141
+ V = conversions["DOMString"](V, {
1142
+ context: "Failed to set the 'pattern' property on 'HTMLInputElement': The provided value",
1143
+ globals: globalObject
1144
+ });
1145
+
1146
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1147
+ try {
1148
+ esValue[implSymbol].setAttributeNS(null, "pattern", V);
1149
+ } finally {
1150
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1151
+ }
1152
+ }
1153
+
1154
+ get placeholder() {
1155
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1156
+
1157
+ if (!exports.is(esValue)) {
1158
+ throw new globalObject.TypeError(
1159
+ "'get placeholder' called on an object that is not a valid instance of HTMLInputElement."
1160
+ );
1161
+ }
1162
+
1163
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1164
+ try {
1165
+ const value = esValue[implSymbol].getAttributeNS(null, "placeholder");
1166
+ return value === null ? "" : value;
1167
+ } finally {
1168
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1169
+ }
1170
+ }
1171
+
1172
+ set placeholder(V) {
1173
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1174
+
1175
+ if (!exports.is(esValue)) {
1176
+ throw new globalObject.TypeError(
1177
+ "'set placeholder' called on an object that is not a valid instance of HTMLInputElement."
1178
+ );
1179
+ }
1180
+
1181
+ V = conversions["DOMString"](V, {
1182
+ context: "Failed to set the 'placeholder' property on 'HTMLInputElement': The provided value",
1183
+ globals: globalObject
1184
+ });
1185
+
1186
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1187
+ try {
1188
+ esValue[implSymbol].setAttributeNS(null, "placeholder", V);
1189
+ } finally {
1190
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1191
+ }
1192
+ }
1193
+
1194
+ get readOnly() {
1195
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1196
+
1197
+ if (!exports.is(esValue)) {
1198
+ throw new globalObject.TypeError(
1199
+ "'get readOnly' called on an object that is not a valid instance of HTMLInputElement."
1200
+ );
1201
+ }
1202
+
1203
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1204
+ try {
1205
+ return esValue[implSymbol].hasAttributeNS(null, "readonly");
1206
+ } finally {
1207
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1208
+ }
1209
+ }
1210
+
1211
+ set readOnly(V) {
1212
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1213
+
1214
+ if (!exports.is(esValue)) {
1215
+ throw new globalObject.TypeError(
1216
+ "'set readOnly' called on an object that is not a valid instance of HTMLInputElement."
1217
+ );
1218
+ }
1219
+
1220
+ V = conversions["boolean"](V, {
1221
+ context: "Failed to set the 'readOnly' property on 'HTMLInputElement': The provided value",
1222
+ globals: globalObject
1223
+ });
1224
+
1225
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1226
+ try {
1227
+ if (V) {
1228
+ esValue[implSymbol].setAttributeNS(null, "readonly", "");
1229
+ } else {
1230
+ esValue[implSymbol].removeAttributeNS(null, "readonly");
1231
+ }
1232
+ } finally {
1233
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1234
+ }
1235
+ }
1236
+
1237
+ get required() {
1238
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1239
+
1240
+ if (!exports.is(esValue)) {
1241
+ throw new globalObject.TypeError(
1242
+ "'get required' called on an object that is not a valid instance of HTMLInputElement."
1243
+ );
1244
+ }
1245
+
1246
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1247
+ try {
1248
+ return esValue[implSymbol].hasAttributeNS(null, "required");
1249
+ } finally {
1250
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1251
+ }
1252
+ }
1253
+
1254
+ set required(V) {
1255
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1256
+
1257
+ if (!exports.is(esValue)) {
1258
+ throw new globalObject.TypeError(
1259
+ "'set required' called on an object that is not a valid instance of HTMLInputElement."
1260
+ );
1261
+ }
1262
+
1263
+ V = conversions["boolean"](V, {
1264
+ context: "Failed to set the 'required' property on 'HTMLInputElement': The provided value",
1265
+ globals: globalObject
1266
+ });
1267
+
1268
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1269
+ try {
1270
+ if (V) {
1271
+ esValue[implSymbol].setAttributeNS(null, "required", "");
1272
+ } else {
1273
+ esValue[implSymbol].removeAttributeNS(null, "required");
1274
+ }
1275
+ } finally {
1276
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1277
+ }
1278
+ }
1279
+
1280
+ get size() {
1281
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1282
+
1283
+ if (!exports.is(esValue)) {
1284
+ throw new globalObject.TypeError(
1285
+ "'get size' called on an object that is not a valid instance of HTMLInputElement."
1286
+ );
1287
+ }
1288
+
1289
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1290
+ try {
1291
+ return esValue[implSymbol]["size"];
1292
+ } finally {
1293
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1294
+ }
1295
+ }
1296
+
1297
+ set size(V) {
1298
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1299
+
1300
+ if (!exports.is(esValue)) {
1301
+ throw new globalObject.TypeError(
1302
+ "'set size' called on an object that is not a valid instance of HTMLInputElement."
1303
+ );
1304
+ }
1305
+
1306
+ V = conversions["unsigned long"](V, {
1307
+ context: "Failed to set the 'size' property on 'HTMLInputElement': The provided value",
1308
+ globals: globalObject
1309
+ });
1310
+
1311
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1312
+ try {
1313
+ esValue[implSymbol]["size"] = V;
1314
+ } finally {
1315
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1316
+ }
1317
+ }
1318
+
1319
+ get src() {
1320
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1321
+
1322
+ if (!exports.is(esValue)) {
1323
+ throw new globalObject.TypeError(
1324
+ "'get src' called on an object that is not a valid instance of HTMLInputElement."
1325
+ );
1326
+ }
1327
+
1328
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1329
+ try {
1330
+ const value = esValue[implSymbol].getAttributeNS(null, "src");
1331
+ if (value === null) {
1332
+ return "";
1333
+ }
1334
+ const urlRecord = parseURLToResultingURLRecord_helpers_document_base_url(
1335
+ value,
1336
+ esValue[implSymbol]._ownerDocument
1337
+ );
1338
+ if (urlRecord !== null) {
1339
+ return serializeURLwhatwg_url(urlRecord);
1340
+ }
1341
+ return conversions.USVString(value);
1342
+ } finally {
1343
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1344
+ }
1345
+ }
1346
+
1347
+ set src(V) {
1348
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1349
+
1350
+ if (!exports.is(esValue)) {
1351
+ throw new globalObject.TypeError(
1352
+ "'set src' called on an object that is not a valid instance of HTMLInputElement."
1353
+ );
1354
+ }
1355
+
1356
+ V = conversions["USVString"](V, {
1357
+ context: "Failed to set the 'src' property on 'HTMLInputElement': The provided value",
1358
+ globals: globalObject
1359
+ });
1360
+
1361
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1362
+ try {
1363
+ esValue[implSymbol].setAttributeNS(null, "src", V);
1364
+ } finally {
1365
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1366
+ }
1367
+ }
1368
+
1369
+ get step() {
1370
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1371
+
1372
+ if (!exports.is(esValue)) {
1373
+ throw new globalObject.TypeError(
1374
+ "'get step' called on an object that is not a valid instance of HTMLInputElement."
1375
+ );
1376
+ }
1377
+
1378
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1379
+ try {
1380
+ const value = esValue[implSymbol].getAttributeNS(null, "step");
1381
+ return value === null ? "" : value;
1382
+ } finally {
1383
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1384
+ }
1385
+ }
1386
+
1387
+ set step(V) {
1388
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1389
+
1390
+ if (!exports.is(esValue)) {
1391
+ throw new globalObject.TypeError(
1392
+ "'set step' called on an object that is not a valid instance of HTMLInputElement."
1393
+ );
1394
+ }
1395
+
1396
+ V = conversions["DOMString"](V, {
1397
+ context: "Failed to set the 'step' property on 'HTMLInputElement': The provided value",
1398
+ globals: globalObject
1399
+ });
1400
+
1401
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1402
+ try {
1403
+ esValue[implSymbol].setAttributeNS(null, "step", V);
1404
+ } finally {
1405
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1406
+ }
1407
+ }
1408
+
1409
+ get type() {
1410
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1411
+
1412
+ if (!exports.is(esValue)) {
1413
+ throw new globalObject.TypeError(
1414
+ "'get type' called on an object that is not a valid instance of HTMLInputElement."
1415
+ );
1416
+ }
1417
+
1418
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1419
+ try {
1420
+ return esValue[implSymbol]["type"];
1421
+ } finally {
1422
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1423
+ }
1424
+ }
1425
+
1426
+ set type(V) {
1427
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1428
+
1429
+ if (!exports.is(esValue)) {
1430
+ throw new globalObject.TypeError(
1431
+ "'set type' called on an object that is not a valid instance of HTMLInputElement."
1432
+ );
1433
+ }
1434
+
1435
+ V = conversions["DOMString"](V, {
1436
+ context: "Failed to set the 'type' property on 'HTMLInputElement': The provided value",
1437
+ globals: globalObject
1438
+ });
1439
+
1440
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1441
+ try {
1442
+ esValue[implSymbol]["type"] = V;
1443
+ } finally {
1444
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1445
+ }
1446
+ }
1447
+
1448
+ get defaultValue() {
1449
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1450
+
1451
+ if (!exports.is(esValue)) {
1452
+ throw new globalObject.TypeError(
1453
+ "'get defaultValue' called on an object that is not a valid instance of HTMLInputElement."
1454
+ );
1455
+ }
1456
+
1457
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1458
+ try {
1459
+ const value = esValue[implSymbol].getAttributeNS(null, "value");
1460
+ return value === null ? "" : value;
1461
+ } finally {
1462
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1463
+ }
1464
+ }
1465
+
1466
+ set defaultValue(V) {
1467
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1468
+
1469
+ if (!exports.is(esValue)) {
1470
+ throw new globalObject.TypeError(
1471
+ "'set defaultValue' called on an object that is not a valid instance of HTMLInputElement."
1472
+ );
1473
+ }
1474
+
1475
+ V = conversions["DOMString"](V, {
1476
+ context: "Failed to set the 'defaultValue' property on 'HTMLInputElement': The provided value",
1477
+ globals: globalObject
1478
+ });
1479
+
1480
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1481
+ try {
1482
+ esValue[implSymbol].setAttributeNS(null, "value", V);
1483
+ } finally {
1484
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1485
+ }
1486
+ }
1487
+
1488
+ get value() {
1489
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1490
+
1491
+ if (!exports.is(esValue)) {
1492
+ throw new globalObject.TypeError(
1493
+ "'get value' called on an object that is not a valid instance of HTMLInputElement."
1494
+ );
1495
+ }
1496
+
1497
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1498
+ try {
1499
+ return esValue[implSymbol]["value"];
1500
+ } finally {
1501
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1502
+ }
1503
+ }
1504
+
1505
+ set value(V) {
1506
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1507
+
1508
+ if (!exports.is(esValue)) {
1509
+ throw new globalObject.TypeError(
1510
+ "'set value' called on an object that is not a valid instance of HTMLInputElement."
1511
+ );
1512
+ }
1513
+
1514
+ V = conversions["DOMString"](V, {
1515
+ context: "Failed to set the 'value' property on 'HTMLInputElement': The provided value",
1516
+ globals: globalObject,
1517
+ treatNullAsEmptyString: true
1518
+ });
1519
+
1520
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1521
+ try {
1522
+ esValue[implSymbol]["value"] = V;
1523
+ } finally {
1524
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1525
+ }
1526
+ }
1527
+
1528
+ get valueAsDate() {
1529
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1530
+
1531
+ if (!exports.is(esValue)) {
1532
+ throw new globalObject.TypeError(
1533
+ "'get valueAsDate' called on an object that is not a valid instance of HTMLInputElement."
1534
+ );
1535
+ }
1536
+
1537
+ return esValue[implSymbol]["valueAsDate"];
1538
+ }
1539
+
1540
+ set valueAsDate(V) {
1541
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1542
+
1543
+ if (!exports.is(esValue)) {
1544
+ throw new globalObject.TypeError(
1545
+ "'set valueAsDate' called on an object that is not a valid instance of HTMLInputElement."
1546
+ );
1547
+ }
1548
+
1549
+ if (V === null || V === undefined) {
1550
+ V = null;
1551
+ } else {
1552
+ V = conversions["object"](V, {
1553
+ context: "Failed to set the 'valueAsDate' property on 'HTMLInputElement': The provided value",
1554
+ globals: globalObject
1555
+ });
1556
+ }
1557
+ esValue[implSymbol]["valueAsDate"] = V;
1558
+ }
1559
+
1560
+ get valueAsNumber() {
1561
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1562
+
1563
+ if (!exports.is(esValue)) {
1564
+ throw new globalObject.TypeError(
1565
+ "'get valueAsNumber' called on an object that is not a valid instance of HTMLInputElement."
1566
+ );
1567
+ }
1568
+
1569
+ return esValue[implSymbol]["valueAsNumber"];
1570
+ }
1571
+
1572
+ set valueAsNumber(V) {
1573
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1574
+
1575
+ if (!exports.is(esValue)) {
1576
+ throw new globalObject.TypeError(
1577
+ "'set valueAsNumber' called on an object that is not a valid instance of HTMLInputElement."
1578
+ );
1579
+ }
1580
+
1581
+ V = conversions["unrestricted double"](V, {
1582
+ context: "Failed to set the 'valueAsNumber' property on 'HTMLInputElement': The provided value",
1583
+ globals: globalObject
1584
+ });
1585
+
1586
+ esValue[implSymbol]["valueAsNumber"] = V;
1587
+ }
1588
+
1589
+ get willValidate() {
1590
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1591
+
1592
+ if (!exports.is(esValue)) {
1593
+ throw new globalObject.TypeError(
1594
+ "'get willValidate' called on an object that is not a valid instance of HTMLInputElement."
1595
+ );
1596
+ }
1597
+
1598
+ return esValue[implSymbol]["willValidate"];
1599
+ }
1600
+
1601
+ get validity() {
1602
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1603
+
1604
+ if (!exports.is(esValue)) {
1605
+ throw new globalObject.TypeError(
1606
+ "'get validity' called on an object that is not a valid instance of HTMLInputElement."
1607
+ );
1608
+ }
1609
+
1610
+ return utils.tryWrapperForImpl(esValue[implSymbol]["validity"]);
1611
+ }
1612
+
1613
+ get validationMessage() {
1614
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1615
+
1616
+ if (!exports.is(esValue)) {
1617
+ throw new globalObject.TypeError(
1618
+ "'get validationMessage' called on an object that is not a valid instance of HTMLInputElement."
1619
+ );
1620
+ }
1621
+
1622
+ return esValue[implSymbol]["validationMessage"];
1623
+ }
1624
+
1625
+ get labels() {
1626
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1627
+
1628
+ if (!exports.is(esValue)) {
1629
+ throw new globalObject.TypeError(
1630
+ "'get labels' called on an object that is not a valid instance of HTMLInputElement."
1631
+ );
1632
+ }
1633
+
1634
+ return utils.tryWrapperForImpl(esValue[implSymbol]["labels"]);
1635
+ }
1636
+
1637
+ get selectionStart() {
1638
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1639
+
1640
+ if (!exports.is(esValue)) {
1641
+ throw new globalObject.TypeError(
1642
+ "'get selectionStart' called on an object that is not a valid instance of HTMLInputElement."
1643
+ );
1644
+ }
1645
+
1646
+ return esValue[implSymbol]["selectionStart"];
1647
+ }
1648
+
1649
+ set selectionStart(V) {
1650
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1651
+
1652
+ if (!exports.is(esValue)) {
1653
+ throw new globalObject.TypeError(
1654
+ "'set selectionStart' called on an object that is not a valid instance of HTMLInputElement."
1655
+ );
1656
+ }
1657
+
1658
+ if (V === null || V === undefined) {
1659
+ V = null;
1660
+ } else {
1661
+ V = conversions["unsigned long"](V, {
1662
+ context: "Failed to set the 'selectionStart' property on 'HTMLInputElement': The provided value",
1663
+ globals: globalObject
1664
+ });
1665
+ }
1666
+ esValue[implSymbol]["selectionStart"] = V;
1667
+ }
1668
+
1669
+ get selectionEnd() {
1670
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1671
+
1672
+ if (!exports.is(esValue)) {
1673
+ throw new globalObject.TypeError(
1674
+ "'get selectionEnd' called on an object that is not a valid instance of HTMLInputElement."
1675
+ );
1676
+ }
1677
+
1678
+ return esValue[implSymbol]["selectionEnd"];
1679
+ }
1680
+
1681
+ set selectionEnd(V) {
1682
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1683
+
1684
+ if (!exports.is(esValue)) {
1685
+ throw new globalObject.TypeError(
1686
+ "'set selectionEnd' called on an object that is not a valid instance of HTMLInputElement."
1687
+ );
1688
+ }
1689
+
1690
+ if (V === null || V === undefined) {
1691
+ V = null;
1692
+ } else {
1693
+ V = conversions["unsigned long"](V, {
1694
+ context: "Failed to set the 'selectionEnd' property on 'HTMLInputElement': The provided value",
1695
+ globals: globalObject
1696
+ });
1697
+ }
1698
+ esValue[implSymbol]["selectionEnd"] = V;
1699
+ }
1700
+
1701
+ get selectionDirection() {
1702
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1703
+
1704
+ if (!exports.is(esValue)) {
1705
+ throw new globalObject.TypeError(
1706
+ "'get selectionDirection' called on an object that is not a valid instance of HTMLInputElement."
1707
+ );
1708
+ }
1709
+
1710
+ return esValue[implSymbol]["selectionDirection"];
1711
+ }
1712
+
1713
+ set selectionDirection(V) {
1714
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1715
+
1716
+ if (!exports.is(esValue)) {
1717
+ throw new globalObject.TypeError(
1718
+ "'set selectionDirection' called on an object that is not a valid instance of HTMLInputElement."
1719
+ );
1720
+ }
1721
+
1722
+ if (V === null || V === undefined) {
1723
+ V = null;
1724
+ } else {
1725
+ V = conversions["DOMString"](V, {
1726
+ context: "Failed to set the 'selectionDirection' property on 'HTMLInputElement': The provided value",
1727
+ globals: globalObject
1728
+ });
1729
+ }
1730
+ esValue[implSymbol]["selectionDirection"] = V;
1731
+ }
1732
+
1733
+ get align() {
1734
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1735
+
1736
+ if (!exports.is(esValue)) {
1737
+ throw new globalObject.TypeError(
1738
+ "'get align' called on an object that is not a valid instance of HTMLInputElement."
1739
+ );
1740
+ }
1741
+
1742
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1743
+ try {
1744
+ const value = esValue[implSymbol].getAttributeNS(null, "align");
1745
+ return value === null ? "" : value;
1746
+ } finally {
1747
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1748
+ }
1749
+ }
1750
+
1751
+ set align(V) {
1752
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1753
+
1754
+ if (!exports.is(esValue)) {
1755
+ throw new globalObject.TypeError(
1756
+ "'set align' called on an object that is not a valid instance of HTMLInputElement."
1757
+ );
1758
+ }
1759
+
1760
+ V = conversions["DOMString"](V, {
1761
+ context: "Failed to set the 'align' property on 'HTMLInputElement': The provided value",
1762
+ globals: globalObject
1763
+ });
1764
+
1765
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1766
+ try {
1767
+ esValue[implSymbol].setAttributeNS(null, "align", V);
1768
+ } finally {
1769
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1770
+ }
1771
+ }
1772
+
1773
+ get useMap() {
1774
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1775
+
1776
+ if (!exports.is(esValue)) {
1777
+ throw new globalObject.TypeError(
1778
+ "'get useMap' called on an object that is not a valid instance of HTMLInputElement."
1779
+ );
1780
+ }
1781
+
1782
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1783
+ try {
1784
+ const value = esValue[implSymbol].getAttributeNS(null, "usemap");
1785
+ return value === null ? "" : value;
1786
+ } finally {
1787
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1788
+ }
1789
+ }
1790
+
1791
+ set useMap(V) {
1792
+ const esValue = this !== null && this !== undefined ? this : globalObject;
1793
+
1794
+ if (!exports.is(esValue)) {
1795
+ throw new globalObject.TypeError(
1796
+ "'set useMap' called on an object that is not a valid instance of HTMLInputElement."
1797
+ );
1798
+ }
1799
+
1800
+ V = conversions["DOMString"](V, {
1801
+ context: "Failed to set the 'useMap' property on 'HTMLInputElement': The provided value",
1802
+ globals: globalObject
1803
+ });
1804
+
1805
+ ceReactionsPreSteps_helpers_custom_elements(globalObject);
1806
+ try {
1807
+ esValue[implSymbol].setAttributeNS(null, "usemap", V);
1808
+ } finally {
1809
+ ceReactionsPostSteps_helpers_custom_elements(globalObject);
1810
+ }
1811
+ }
1812
+ }
1813
+ Object.defineProperties(HTMLInputElement.prototype, {
1814
+ stepUp: { enumerable: true },
1815
+ stepDown: { enumerable: true },
1816
+ checkValidity: { enumerable: true },
1817
+ reportValidity: { enumerable: true },
1818
+ setCustomValidity: { enumerable: true },
1819
+ select: { enumerable: true },
1820
+ setRangeText: { enumerable: true },
1821
+ setSelectionRange: { enumerable: true },
1822
+ accept: { enumerable: true },
1823
+ alt: { enumerable: true },
1824
+ autocomplete: { enumerable: true },
1825
+ autofocus: { enumerable: true },
1826
+ defaultChecked: { enumerable: true },
1827
+ checked: { enumerable: true },
1828
+ dirName: { enumerable: true },
1829
+ disabled: { enumerable: true },
1830
+ form: { enumerable: true },
1831
+ files: { enumerable: true },
1832
+ formNoValidate: { enumerable: true },
1833
+ formTarget: { enumerable: true },
1834
+ indeterminate: { enumerable: true },
1835
+ inputMode: { enumerable: true },
1836
+ list: { enumerable: true },
1837
+ max: { enumerable: true },
1838
+ maxLength: { enumerable: true },
1839
+ min: { enumerable: true },
1840
+ minLength: { enumerable: true },
1841
+ multiple: { enumerable: true },
1842
+ name: { enumerable: true },
1843
+ pattern: { enumerable: true },
1844
+ placeholder: { enumerable: true },
1845
+ readOnly: { enumerable: true },
1846
+ required: { enumerable: true },
1847
+ size: { enumerable: true },
1848
+ src: { enumerable: true },
1849
+ step: { enumerable: true },
1850
+ type: { enumerable: true },
1851
+ defaultValue: { enumerable: true },
1852
+ value: { enumerable: true },
1853
+ valueAsDate: { enumerable: true },
1854
+ valueAsNumber: { enumerable: true },
1855
+ willValidate: { enumerable: true },
1856
+ validity: { enumerable: true },
1857
+ validationMessage: { enumerable: true },
1858
+ labels: { enumerable: true },
1859
+ selectionStart: { enumerable: true },
1860
+ selectionEnd: { enumerable: true },
1861
+ selectionDirection: { enumerable: true },
1862
+ align: { enumerable: true },
1863
+ useMap: { enumerable: true },
1864
+ [Symbol.toStringTag]: { value: "HTMLInputElement", configurable: true }
1865
+ });
1866
+ ctorRegistry[interfaceName] = HTMLInputElement;
1867
+
1868
+ Object.defineProperty(globalObject, interfaceName, {
1869
+ configurable: true,
1870
+ writable: true,
1871
+ value: HTMLInputElement
1872
+ });
1873
+ };
1874
+
1875
+ const Impl = require("../nodes/HTMLInputElement-impl.js");