vasuzex 2.0.13 → 2.0.15

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