@depup/happy-dom 20.8.4-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2904) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +35 -0
  3. package/changes.json +26 -0
  4. package/lib/PropertySymbol.d.ts +414 -0
  5. package/lib/PropertySymbol.d.ts.map +1 -0
  6. package/lib/PropertySymbol.js +414 -0
  7. package/lib/PropertySymbol.js.map +1 -0
  8. package/lib/async-task-manager/AsyncTaskManager.d.ts +100 -0
  9. package/lib/async-task-manager/AsyncTaskManager.d.ts.map +1 -0
  10. package/lib/async-task-manager/AsyncTaskManager.js +301 -0
  11. package/lib/async-task-manager/AsyncTaskManager.js.map +1 -0
  12. package/lib/async-task-manager/AsyncTaskManagerDebugError.d.ts +12 -0
  13. package/lib/async-task-manager/AsyncTaskManagerDebugError.d.ts.map +1 -0
  14. package/lib/async-task-manager/AsyncTaskManagerDebugError.js +15 -0
  15. package/lib/async-task-manager/AsyncTaskManagerDebugError.js.map +1 -0
  16. package/lib/base64/Base64.d.ts +24 -0
  17. package/lib/base64/Base64.d.ts.map +1 -0
  18. package/lib/base64/Base64.js +83 -0
  19. package/lib/base64/Base64.js.map +1 -0
  20. package/lib/browser/Browser.d.ts +66 -0
  21. package/lib/browser/Browser.d.ts.map +1 -0
  22. package/lib/browser/Browser.js +110 -0
  23. package/lib/browser/Browser.js.map +1 -0
  24. package/lib/browser/BrowserContext.d.ts +47 -0
  25. package/lib/browser/BrowserContext.d.ts.map +1 -0
  26. package/lib/browser/BrowserContext.js +80 -0
  27. package/lib/browser/BrowserContext.js.map +1 -0
  28. package/lib/browser/BrowserFrame.d.ts +134 -0
  29. package/lib/browser/BrowserFrame.d.ts.map +1 -0
  30. package/lib/browser/BrowserFrame.js +198 -0
  31. package/lib/browser/BrowserFrame.js.map +1 -0
  32. package/lib/browser/BrowserPage.d.ts +132 -0
  33. package/lib/browser/BrowserPage.d.ts.map +1 -0
  34. package/lib/browser/BrowserPage.js +172 -0
  35. package/lib/browser/BrowserPage.js.map +1 -0
  36. package/lib/browser/BrowserSettingsFactory.d.ts +23 -0
  37. package/lib/browser/BrowserSettingsFactory.d.ts.map +1 -0
  38. package/lib/browser/BrowserSettingsFactory.js +88 -0
  39. package/lib/browser/BrowserSettingsFactory.js.map +1 -0
  40. package/lib/browser/DefaultBrowserSettings.d.ts +4 -0
  41. package/lib/browser/DefaultBrowserSettings.d.ts.map +1 -0
  42. package/lib/browser/DefaultBrowserSettings.js +62 -0
  43. package/lib/browser/DefaultBrowserSettings.js.map +1 -0
  44. package/lib/browser/detached-browser/DetachedBrowser.d.ts +76 -0
  45. package/lib/browser/detached-browser/DetachedBrowser.d.ts.map +1 -0
  46. package/lib/browser/detached-browser/DetachedBrowser.js +104 -0
  47. package/lib/browser/detached-browser/DetachedBrowser.js.map +1 -0
  48. package/lib/browser/detached-browser/DetachedBrowserContext.d.ts +48 -0
  49. package/lib/browser/detached-browser/DetachedBrowserContext.d.ts.map +1 -0
  50. package/lib/browser/detached-browser/DetachedBrowserContext.js +83 -0
  51. package/lib/browser/detached-browser/DetachedBrowserContext.js.map +1 -0
  52. package/lib/browser/detached-browser/DetachedBrowserFrame.d.ts +135 -0
  53. package/lib/browser/detached-browser/DetachedBrowserFrame.d.ts.map +1 -0
  54. package/lib/browser/detached-browser/DetachedBrowserFrame.js +211 -0
  55. package/lib/browser/detached-browser/DetachedBrowserFrame.js.map +1 -0
  56. package/lib/browser/detached-browser/DetachedBrowserPage.d.ts +132 -0
  57. package/lib/browser/detached-browser/DetachedBrowserPage.d.ts.map +1 -0
  58. package/lib/browser/detached-browser/DetachedBrowserPage.js +186 -0
  59. package/lib/browser/detached-browser/DetachedBrowserPage.js.map +1 -0
  60. package/lib/browser/enums/BrowserErrorCaptureEnum.d.ts +10 -0
  61. package/lib/browser/enums/BrowserErrorCaptureEnum.d.ts.map +1 -0
  62. package/lib/browser/enums/BrowserErrorCaptureEnum.js +11 -0
  63. package/lib/browser/enums/BrowserErrorCaptureEnum.js.map +1 -0
  64. package/lib/browser/enums/BrowserNavigationCrossOriginPolicyEnum.d.ts +10 -0
  65. package/lib/browser/enums/BrowserNavigationCrossOriginPolicyEnum.d.ts.map +1 -0
  66. package/lib/browser/enums/BrowserNavigationCrossOriginPolicyEnum.js +11 -0
  67. package/lib/browser/enums/BrowserNavigationCrossOriginPolicyEnum.js.map +1 -0
  68. package/lib/browser/types/IBrowser.d.ts +45 -0
  69. package/lib/browser/types/IBrowser.d.ts.map +1 -0
  70. package/lib/browser/types/IBrowser.js +2 -0
  71. package/lib/browser/types/IBrowser.js.map +1 -0
  72. package/lib/browser/types/IBrowserContext.d.ts +40 -0
  73. package/lib/browser/types/IBrowserContext.d.ts.map +1 -0
  74. package/lib/browser/types/IBrowserContext.js +2 -0
  75. package/lib/browser/types/IBrowserContext.js.map +1 -0
  76. package/lib/browser/types/IBrowserFrame.d.ts +103 -0
  77. package/lib/browser/types/IBrowserFrame.d.ts.map +1 -0
  78. package/lib/browser/types/IBrowserFrame.js +2 -0
  79. package/lib/browser/types/IBrowserFrame.js.map +1 -0
  80. package/lib/browser/types/IBrowserPage.d.ts +97 -0
  81. package/lib/browser/types/IBrowserPage.d.ts.map +1 -0
  82. package/lib/browser/types/IBrowserPage.js +2 -0
  83. package/lib/browser/types/IBrowserPage.js.map +1 -0
  84. package/lib/browser/types/IBrowserPageViewport.d.ts +6 -0
  85. package/lib/browser/types/IBrowserPageViewport.d.ts.map +1 -0
  86. package/lib/browser/types/IBrowserPageViewport.js +2 -0
  87. package/lib/browser/types/IBrowserPageViewport.js.map +1 -0
  88. package/lib/browser/types/IBrowserSettings.d.ts +159 -0
  89. package/lib/browser/types/IBrowserSettings.d.ts.map +1 -0
  90. package/lib/browser/types/IBrowserSettings.js +2 -0
  91. package/lib/browser/types/IBrowserSettings.js.map +1 -0
  92. package/lib/browser/types/IGoToOptions.d.ts +16 -0
  93. package/lib/browser/types/IGoToOptions.d.ts.map +1 -0
  94. package/lib/browser/types/IGoToOptions.js +2 -0
  95. package/lib/browser/types/IGoToOptions.js.map +1 -0
  96. package/lib/browser/types/IOptionalBrowserPageViewport.d.ts +6 -0
  97. package/lib/browser/types/IOptionalBrowserPageViewport.d.ts.map +1 -0
  98. package/lib/browser/types/IOptionalBrowserPageViewport.js +2 -0
  99. package/lib/browser/types/IOptionalBrowserPageViewport.js.map +1 -0
  100. package/lib/browser/types/IOptionalBrowserSettings.d.ts +155 -0
  101. package/lib/browser/types/IOptionalBrowserSettings.d.ts.map +1 -0
  102. package/lib/browser/types/IOptionalBrowserSettings.js +2 -0
  103. package/lib/browser/types/IOptionalBrowserSettings.js.map +1 -0
  104. package/lib/browser/types/IReloadOptions.d.ts +24 -0
  105. package/lib/browser/types/IReloadOptions.d.ts.map +1 -0
  106. package/lib/browser/types/IReloadOptions.js +2 -0
  107. package/lib/browser/types/IReloadOptions.js.map +1 -0
  108. package/lib/browser/utilities/BrowserExceptionObserver.d.ts +23 -0
  109. package/lib/browser/utilities/BrowserExceptionObserver.d.ts.map +1 -0
  110. package/lib/browser/utilities/BrowserExceptionObserver.js +99 -0
  111. package/lib/browser/utilities/BrowserExceptionObserver.js.map +1 -0
  112. package/lib/browser/utilities/BrowserFrameFactory.d.ts +20 -0
  113. package/lib/browser/utilities/BrowserFrameFactory.d.ts.map +1 -0
  114. package/lib/browser/utilities/BrowserFrameFactory.js +89 -0
  115. package/lib/browser/utilities/BrowserFrameFactory.js.map +1 -0
  116. package/lib/browser/utilities/BrowserFrameNavigator.d.ts +108 -0
  117. package/lib/browser/utilities/BrowserFrameNavigator.d.ts.map +1 -0
  118. package/lib/browser/utilities/BrowserFrameNavigator.js +447 -0
  119. package/lib/browser/utilities/BrowserFrameNavigator.js.map +1 -0
  120. package/lib/browser/utilities/BrowserFrameScriptEvaluator.d.ts +31 -0
  121. package/lib/browser/utilities/BrowserFrameScriptEvaluator.d.ts.map +1 -0
  122. package/lib/browser/utilities/BrowserFrameScriptEvaluator.js +61 -0
  123. package/lib/browser/utilities/BrowserFrameScriptEvaluator.js.map +1 -0
  124. package/lib/browser/utilities/BrowserFrameURL.d.ts +16 -0
  125. package/lib/browser/utilities/BrowserFrameURL.d.ts.map +1 -0
  126. package/lib/browser/utilities/BrowserFrameURL.js +28 -0
  127. package/lib/browser/utilities/BrowserFrameURL.js.map +1 -0
  128. package/lib/browser/utilities/BrowserFrameValidator.d.ts +23 -0
  129. package/lib/browser/utilities/BrowserFrameValidator.d.ts.map +1 -0
  130. package/lib/browser/utilities/BrowserFrameValidator.js +66 -0
  131. package/lib/browser/utilities/BrowserFrameValidator.js.map +1 -0
  132. package/lib/browser/utilities/BrowserPageUtility.d.ts +28 -0
  133. package/lib/browser/utilities/BrowserPageUtility.d.ts.map +1 -0
  134. package/lib/browser/utilities/BrowserPageUtility.js +47 -0
  135. package/lib/browser/utilities/BrowserPageUtility.js.map +1 -0
  136. package/lib/clipboard/Clipboard.d.ts +42 -0
  137. package/lib/clipboard/Clipboard.d.ts.map +1 -0
  138. package/lib/clipboard/Clipboard.js +94 -0
  139. package/lib/clipboard/Clipboard.js.map +1 -0
  140. package/lib/clipboard/ClipboardItem.d.ts +37 -0
  141. package/lib/clipboard/ClipboardItem.d.ts.map +1 -0
  142. package/lib/clipboard/ClipboardItem.js +49 -0
  143. package/lib/clipboard/ClipboardItem.js.map +1 -0
  144. package/lib/config/HTMLElementConfig.d.ts +19 -0
  145. package/lib/config/HTMLElementConfig.d.ts.map +1 -0
  146. package/lib/config/HTMLElementConfig.js +524 -0
  147. package/lib/config/HTMLElementConfig.js.map +1 -0
  148. package/lib/config/HTMLElementConfigContentModelEnum.d.ts +12 -0
  149. package/lib/config/HTMLElementConfigContentModelEnum.d.ts.map +1 -0
  150. package/lib/config/HTMLElementConfigContentModelEnum.js +13 -0
  151. package/lib/config/HTMLElementConfigContentModelEnum.js.map +1 -0
  152. package/lib/config/IHTMLElementTagNameMap.d.ts +181 -0
  153. package/lib/config/IHTMLElementTagNameMap.d.ts.map +1 -0
  154. package/lib/config/IHTMLElementTagNameMap.js +2 -0
  155. package/lib/config/IHTMLElementTagNameMap.js.map +1 -0
  156. package/lib/config/ISVGElementTagNameMap.d.ts +127 -0
  157. package/lib/config/ISVGElementTagNameMap.d.ts.map +1 -0
  158. package/lib/config/ISVGElementTagNameMap.js +2 -0
  159. package/lib/config/ISVGElementTagNameMap.js.map +1 -0
  160. package/lib/config/NamespaceURI.d.ts +10 -0
  161. package/lib/config/NamespaceURI.d.ts.map +1 -0
  162. package/lib/config/NamespaceURI.js +9 -0
  163. package/lib/config/NamespaceURI.js.map +1 -0
  164. package/lib/config/SVGElementConfig.d.ts +8 -0
  165. package/lib/config/SVGElementConfig.d.ts.map +1 -0
  166. package/lib/config/SVGElementConfig.js +71 -0
  167. package/lib/config/SVGElementConfig.js.map +1 -0
  168. package/lib/console/IVirtualConsoleLogEntry.d.ts +10 -0
  169. package/lib/console/IVirtualConsoleLogEntry.d.ts.map +1 -0
  170. package/lib/console/IVirtualConsoleLogEntry.js +2 -0
  171. package/lib/console/IVirtualConsoleLogEntry.js.map +1 -0
  172. package/lib/console/IVirtualConsoleLogGroup.d.ts +7 -0
  173. package/lib/console/IVirtualConsoleLogGroup.d.ts.map +1 -0
  174. package/lib/console/IVirtualConsoleLogGroup.js +2 -0
  175. package/lib/console/IVirtualConsoleLogGroup.js.map +1 -0
  176. package/lib/console/IVirtualConsolePrinter.d.ts +52 -0
  177. package/lib/console/IVirtualConsolePrinter.d.ts.map +1 -0
  178. package/lib/console/IVirtualConsolePrinter.js +2 -0
  179. package/lib/console/IVirtualConsolePrinter.js.map +1 -0
  180. package/lib/console/VirtualConsole.d.ts +166 -0
  181. package/lib/console/VirtualConsole.d.ts.map +1 -0
  182. package/lib/console/VirtualConsole.js +333 -0
  183. package/lib/console/VirtualConsole.js.map +1 -0
  184. package/lib/console/VirtualConsolePrinter.d.ts +64 -0
  185. package/lib/console/VirtualConsolePrinter.d.ts.map +1 -0
  186. package/lib/console/VirtualConsolePrinter.js +132 -0
  187. package/lib/console/VirtualConsolePrinter.js.map +1 -0
  188. package/lib/console/enums/VirtualConsoleLogLevelEnum.d.ts +13 -0
  189. package/lib/console/enums/VirtualConsoleLogLevelEnum.d.ts.map +1 -0
  190. package/lib/console/enums/VirtualConsoleLogLevelEnum.js +14 -0
  191. package/lib/console/enums/VirtualConsoleLogLevelEnum.js.map +1 -0
  192. package/lib/console/enums/VirtualConsoleLogTypeEnum.d.ts +23 -0
  193. package/lib/console/enums/VirtualConsoleLogTypeEnum.d.ts.map +1 -0
  194. package/lib/console/enums/VirtualConsoleLogTypeEnum.js +28 -0
  195. package/lib/console/enums/VirtualConsoleLogTypeEnum.js.map +1 -0
  196. package/lib/console/utilities/VirtualConsoleLogEntryStringifier.d.ts +35 -0
  197. package/lib/console/utilities/VirtualConsoleLogEntryStringifier.d.ts.map +1 -0
  198. package/lib/console/utilities/VirtualConsoleLogEntryStringifier.js +91 -0
  199. package/lib/console/utilities/VirtualConsoleLogEntryStringifier.js.map +1 -0
  200. package/lib/cookie/CookieContainer.d.ts +32 -0
  201. package/lib/cookie/CookieContainer.d.ts.map +1 -0
  202. package/lib/cookie/CookieContainer.js +64 -0
  203. package/lib/cookie/CookieContainer.js.map +1 -0
  204. package/lib/cookie/DefaultCookie.d.ts +4 -0
  205. package/lib/cookie/DefaultCookie.d.ts.map +1 -0
  206. package/lib/cookie/DefaultCookie.js +15 -0
  207. package/lib/cookie/DefaultCookie.js.map +1 -0
  208. package/lib/cookie/ICookie.d.ts +13 -0
  209. package/lib/cookie/ICookie.d.ts.map +1 -0
  210. package/lib/cookie/ICookie.js +2 -0
  211. package/lib/cookie/ICookie.js.map +1 -0
  212. package/lib/cookie/ICookieContainer.d.ts +30 -0
  213. package/lib/cookie/ICookieContainer.d.ts.map +1 -0
  214. package/lib/cookie/ICookieContainer.js +2 -0
  215. package/lib/cookie/ICookieContainer.js.map +1 -0
  216. package/lib/cookie/IOptionalCookie.d.ts +13 -0
  217. package/lib/cookie/IOptionalCookie.d.ts.map +1 -0
  218. package/lib/cookie/IOptionalCookie.js +2 -0
  219. package/lib/cookie/IOptionalCookie.js.map +1 -0
  220. package/lib/cookie/enums/CookieSameSiteEnum.d.ts +7 -0
  221. package/lib/cookie/enums/CookieSameSiteEnum.d.ts.map +1 -0
  222. package/lib/cookie/enums/CookieSameSiteEnum.js +8 -0
  223. package/lib/cookie/enums/CookieSameSiteEnum.js.map +1 -0
  224. package/lib/cookie/urilities/CookieExpireUtility.d.ts +14 -0
  225. package/lib/cookie/urilities/CookieExpireUtility.d.ts.map +1 -0
  226. package/lib/cookie/urilities/CookieExpireUtility.js +15 -0
  227. package/lib/cookie/urilities/CookieExpireUtility.js.map +1 -0
  228. package/lib/cookie/urilities/CookieStringUtility.d.ts +24 -0
  229. package/lib/cookie/urilities/CookieStringUtility.d.ts.map +1 -0
  230. package/lib/cookie/urilities/CookieStringUtility.js +101 -0
  231. package/lib/cookie/urilities/CookieStringUtility.js.map +1 -0
  232. package/lib/cookie/urilities/CookieURLUtility.d.ts +16 -0
  233. package/lib/cookie/urilities/CookieURLUtility.d.ts.map +1 -0
  234. package/lib/cookie/urilities/CookieURLUtility.js +23 -0
  235. package/lib/cookie/urilities/CookieURLUtility.js.map +1 -0
  236. package/lib/css/CSS.d.ts +56 -0
  237. package/lib/css/CSS.d.ts.map +1 -0
  238. package/lib/css/CSS.js +61 -0
  239. package/lib/css/CSS.js.map +1 -0
  240. package/lib/css/CSSRule.d.ts +63 -0
  241. package/lib/css/CSSRule.d.ts.map +1 -0
  242. package/lib/css/CSSRule.js +61 -0
  243. package/lib/css/CSSRule.js.map +1 -0
  244. package/lib/css/CSSRuleTypeEnum.d.ts +18 -0
  245. package/lib/css/CSSRuleTypeEnum.d.ts.map +1 -0
  246. package/lib/css/CSSRuleTypeEnum.js +19 -0
  247. package/lib/css/CSSRuleTypeEnum.js.map +1 -0
  248. package/lib/css/CSSStyleSheet.d.ts +66 -0
  249. package/lib/css/CSSStyleSheet.d.ts.map +1 -0
  250. package/lib/css/CSSStyleSheet.js +102 -0
  251. package/lib/css/CSSStyleSheet.js.map +1 -0
  252. package/lib/css/CSSUnitValue.d.ts +15 -0
  253. package/lib/css/CSSUnitValue.d.ts.map +1 -0
  254. package/lib/css/CSSUnitValue.js +25 -0
  255. package/lib/css/CSSUnitValue.js.map +1 -0
  256. package/lib/css/CSSUnits.d.ts +3 -0
  257. package/lib/css/CSSUnits.d.ts.map +1 -0
  258. package/lib/css/CSSUnits.js +32 -0
  259. package/lib/css/CSSUnits.js.map +1 -0
  260. package/lib/css/MediaList.d.ts +59 -0
  261. package/lib/css/MediaList.d.ts.map +1 -0
  262. package/lib/css/MediaList.js +157 -0
  263. package/lib/css/MediaList.js.map +1 -0
  264. package/lib/css/declaration/CSSStyleDeclaration.d.ts +1273 -0
  265. package/lib/css/declaration/CSSStyleDeclaration.d.ts.map +1 -0
  266. package/lib/css/declaration/CSSStyleDeclaration.js +3742 -0
  267. package/lib/css/declaration/CSSStyleDeclaration.js.map +1 -0
  268. package/lib/css/declaration/computed-style/CSSStyleDeclarationComputedStyle.d.ts +59 -0
  269. package/lib/css/declaration/computed-style/CSSStyleDeclarationComputedStyle.d.ts.map +1 -0
  270. package/lib/css/declaration/computed-style/CSSStyleDeclarationComputedStyle.js +424 -0
  271. package/lib/css/declaration/computed-style/CSSStyleDeclarationComputedStyle.js.map +1 -0
  272. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementDefaultCSS.d.ts +135 -0
  273. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementDefaultCSS.d.ts.map +1 -0
  274. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementDefaultCSS.js +134 -0
  275. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementDefaultCSS.js.map +1 -0
  276. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementInheritedProperties.d.ts +41 -0
  277. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementInheritedProperties.d.ts.map +1 -0
  278. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementInheritedProperties.js +40 -0
  279. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementInheritedProperties.js.map +1 -0
  280. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementMeasurementProperties.d.ts +3 -0
  281. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementMeasurementProperties.d.ts.map +1 -0
  282. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementMeasurementProperties.js +42 -0
  283. package/lib/css/declaration/computed-style/config/CSSStyleDeclarationElementMeasurementProperties.js.map +1 -0
  284. package/lib/css/declaration/css-parser/CSSStyleDeclarationCSSParser.d.ts +22 -0
  285. package/lib/css/declaration/css-parser/CSSStyleDeclarationCSSParser.d.ts.map +1 -0
  286. package/lib/css/declaration/css-parser/CSSStyleDeclarationCSSParser.js +36 -0
  287. package/lib/css/declaration/css-parser/CSSStyleDeclarationCSSParser.js.map +1 -0
  288. package/lib/css/declaration/measurement-converter/CSSMeasurementConverter.d.ts +32 -0
  289. package/lib/css/declaration/measurement-converter/CSSMeasurementConverter.d.ts.map +1 -0
  290. package/lib/css/declaration/measurement-converter/CSSMeasurementConverter.js +67 -0
  291. package/lib/css/declaration/measurement-converter/CSSMeasurementConverter.js.map +1 -0
  292. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyGetParser.d.ts +177 -0
  293. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyGetParser.d.ts.map +1 -0
  294. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyGetParser.js +569 -0
  295. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyGetParser.js.map +1 -0
  296. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyManager.d.ts +66 -0
  297. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyManager.d.ts.map +1 -0
  298. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyManager.js +594 -0
  299. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyManager.js.map +1 -0
  300. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertySetParser.d.ts +910 -0
  301. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertySetParser.d.ts.map +1 -0
  302. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertySetParser.js +2502 -0
  303. package/lib/css/declaration/property-manager/CSSStyleDeclarationPropertySetParser.js.map +1 -0
  304. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueParser.d.ts +128 -0
  305. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueParser.d.ts.map +1 -0
  306. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueParser.js +429 -0
  307. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueParser.js.map +1 -0
  308. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueUtility.d.ts +20 -0
  309. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueUtility.d.ts.map +1 -0
  310. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueUtility.js +83 -0
  311. package/lib/css/declaration/property-manager/CSSStyleDeclarationValueUtility.js.map +1 -0
  312. package/lib/css/declaration/property-manager/ICSSStyleDeclarationPropertyValue.d.ts +5 -0
  313. package/lib/css/declaration/property-manager/ICSSStyleDeclarationPropertyValue.d.ts.map +1 -0
  314. package/lib/css/declaration/property-manager/ICSSStyleDeclarationPropertyValue.js +2 -0
  315. package/lib/css/declaration/property-manager/ICSSStyleDeclarationPropertyValue.js.map +1 -0
  316. package/lib/css/rules/CSSConditionRule.d.ts +17 -0
  317. package/lib/css/rules/CSSConditionRule.d.ts.map +1 -0
  318. package/lib/css/rules/CSSConditionRule.js +19 -0
  319. package/lib/css/rules/CSSConditionRule.js.map +1 -0
  320. package/lib/css/rules/CSSContainerRule.d.ts +21 -0
  321. package/lib/css/rules/CSSContainerRule.d.ts.map +1 -0
  322. package/lib/css/rules/CSSContainerRule.js +30 -0
  323. package/lib/css/rules/CSSContainerRule.js.map +1 -0
  324. package/lib/css/rules/CSSFontFaceRule.d.ts +28 -0
  325. package/lib/css/rules/CSSFontFaceRule.d.ts.map +1 -0
  326. package/lib/css/rules/CSSFontFaceRule.js +39 -0
  327. package/lib/css/rules/CSSFontFaceRule.js.map +1 -0
  328. package/lib/css/rules/CSSGroupingRule.d.ts +31 -0
  329. package/lib/css/rules/CSSGroupingRule.d.ts.map +1 -0
  330. package/lib/css/rules/CSSGroupingRule.js +62 -0
  331. package/lib/css/rules/CSSGroupingRule.js.map +1 -0
  332. package/lib/css/rules/CSSKeyframeRule.d.ts +33 -0
  333. package/lib/css/rules/CSSKeyframeRule.d.ts.map +1 -0
  334. package/lib/css/rules/CSSKeyframeRule.js +46 -0
  335. package/lib/css/rules/CSSKeyframeRule.js.map +1 -0
  336. package/lib/css/rules/CSSKeyframesRule.d.ts +58 -0
  337. package/lib/css/rules/CSSKeyframesRule.d.ts.map +1 -0
  338. package/lib/css/rules/CSSKeyframesRule.js +115 -0
  339. package/lib/css/rules/CSSKeyframesRule.js.map +1 -0
  340. package/lib/css/rules/CSSMediaRule.d.ts +33 -0
  341. package/lib/css/rules/CSSMediaRule.d.ts.map +1 -0
  342. package/lib/css/rules/CSSMediaRule.js +46 -0
  343. package/lib/css/rules/CSSMediaRule.js.map +1 -0
  344. package/lib/css/rules/CSSScopeRule.d.ts +34 -0
  345. package/lib/css/rules/CSSScopeRule.d.ts.map +1 -0
  346. package/lib/css/rules/CSSScopeRule.js +47 -0
  347. package/lib/css/rules/CSSScopeRule.js.map +1 -0
  348. package/lib/css/rules/CSSStyleRule.d.ts +43 -0
  349. package/lib/css/rules/CSSStyleRule.d.ts.map +1 -0
  350. package/lib/css/rules/CSSStyleRule.js +61 -0
  351. package/lib/css/rules/CSSStyleRule.js.map +1 -0
  352. package/lib/css/rules/CSSSupportsRule.d.ts +19 -0
  353. package/lib/css/rules/CSSSupportsRule.d.ts.map +1 -0
  354. package/lib/css/rules/CSSSupportsRule.js +28 -0
  355. package/lib/css/rules/CSSSupportsRule.js.map +1 -0
  356. package/lib/css/style-property-map/CSSKeywordValue.d.ts +27 -0
  357. package/lib/css/style-property-map/CSSKeywordValue.d.ts.map +1 -0
  358. package/lib/css/style-property-map/CSSKeywordValue.js +33 -0
  359. package/lib/css/style-property-map/CSSKeywordValue.js.map +1 -0
  360. package/lib/css/style-property-map/CSSStyleValue.d.ts +24 -0
  361. package/lib/css/style-property-map/CSSStyleValue.d.ts.map +1 -0
  362. package/lib/css/style-property-map/CSSStyleValue.js +33 -0
  363. package/lib/css/style-property-map/CSSStyleValue.js.map +1 -0
  364. package/lib/css/style-property-map/StylePropertyMap.d.ts +33 -0
  365. package/lib/css/style-property-map/StylePropertyMap.d.ts.map +1 -0
  366. package/lib/css/style-property-map/StylePropertyMap.js +42 -0
  367. package/lib/css/style-property-map/StylePropertyMap.js.map +1 -0
  368. package/lib/css/style-property-map/StylePropertyMapReadOnly.d.ts +71 -0
  369. package/lib/css/style-property-map/StylePropertyMapReadOnly.d.ts.map +1 -0
  370. package/lib/css/style-property-map/StylePropertyMapReadOnly.js +113 -0
  371. package/lib/css/style-property-map/StylePropertyMapReadOnly.js.map +1 -0
  372. package/lib/css/utilities/CSSEscaper.d.ts +16 -0
  373. package/lib/css/utilities/CSSEscaper.d.ts.map +1 -0
  374. package/lib/css/utilities/CSSEscaper.js +77 -0
  375. package/lib/css/utilities/CSSEscaper.js.map +1 -0
  376. package/lib/css/utilities/CSSParser.d.ts +30 -0
  377. package/lib/css/utilities/CSSParser.d.ts.map +1 -0
  378. package/lib/css/utilities/CSSParser.js +259 -0
  379. package/lib/css/utilities/CSSParser.js.map +1 -0
  380. package/lib/custom-element/CustomElementReactionStack.d.ts +27 -0
  381. package/lib/custom-element/CustomElementReactionStack.d.ts.map +1 -0
  382. package/lib/custom-element/CustomElementReactionStack.js +76 -0
  383. package/lib/custom-element/CustomElementReactionStack.js.map +1 -0
  384. package/lib/custom-element/CustomElementRegistry.d.ts +65 -0
  385. package/lib/custom-element/CustomElementRegistry.d.ts.map +1 -0
  386. package/lib/custom-element/CustomElementRegistry.js +149 -0
  387. package/lib/custom-element/CustomElementRegistry.js.map +1 -0
  388. package/lib/custom-element/CustomElementUtility.d.ts +14 -0
  389. package/lib/custom-element/CustomElementUtility.d.ts.map +1 -0
  390. package/lib/custom-element/CustomElementUtility.js +32 -0
  391. package/lib/custom-element/CustomElementUtility.js.map +1 -0
  392. package/lib/custom-element/ICustomElementDefinition.d.ts +12 -0
  393. package/lib/custom-element/ICustomElementDefinition.d.ts.map +1 -0
  394. package/lib/custom-element/ICustomElementDefinition.js +2 -0
  395. package/lib/custom-element/ICustomElementDefinition.js.map +1 -0
  396. package/lib/dom/DOMPoint.d.ts +57 -0
  397. package/lib/dom/DOMPoint.d.ts.map +1 -0
  398. package/lib/dom/DOMPoint.js +74 -0
  399. package/lib/dom/DOMPoint.js.map +1 -0
  400. package/lib/dom/DOMPointReadOnly.d.ts +60 -0
  401. package/lib/dom/DOMPointReadOnly.d.ts.map +1 -0
  402. package/lib/dom/DOMPointReadOnly.js +84 -0
  403. package/lib/dom/DOMPointReadOnly.js.map +1 -0
  404. package/lib/dom/DOMRect.d.ts +65 -0
  405. package/lib/dom/DOMRect.d.ts.map +1 -0
  406. package/lib/dom/DOMRect.js +83 -0
  407. package/lib/dom/DOMRect.js.map +1 -0
  408. package/lib/dom/DOMRectList.d.ts +21 -0
  409. package/lib/dom/DOMRectList.d.ts.map +1 -0
  410. package/lib/dom/DOMRectList.js +30 -0
  411. package/lib/dom/DOMRectList.js.map +1 -0
  412. package/lib/dom/DOMRectReadOnly.d.ts +84 -0
  413. package/lib/dom/DOMRectReadOnly.d.ts.map +1 -0
  414. package/lib/dom/DOMRectReadOnly.js +117 -0
  415. package/lib/dom/DOMRectReadOnly.js.map +1 -0
  416. package/lib/dom/DOMStringMap.d.ts +18 -0
  417. package/lib/dom/DOMStringMap.d.ts.map +1 -0
  418. package/lib/dom/DOMStringMap.js +74 -0
  419. package/lib/dom/DOMStringMap.js.map +1 -0
  420. package/lib/dom/DOMStringMapUtility.d.ts +23 -0
  421. package/lib/dom/DOMStringMapUtility.d.ts.map +1 -0
  422. package/lib/dom/DOMStringMapUtility.js +33 -0
  423. package/lib/dom/DOMStringMapUtility.js.map +1 -0
  424. package/lib/dom/DOMTokenList.d.ts +122 -0
  425. package/lib/dom/DOMTokenList.d.ts.map +1 -0
  426. package/lib/dom/DOMTokenList.js +301 -0
  427. package/lib/dom/DOMTokenList.js.map +1 -0
  428. package/lib/dom/IDOMPointInit.d.ts +7 -0
  429. package/lib/dom/IDOMPointInit.d.ts.map +1 -0
  430. package/lib/dom/IDOMPointInit.js +2 -0
  431. package/lib/dom/IDOMPointInit.js.map +1 -0
  432. package/lib/dom/IDOMRectInit.d.ts +7 -0
  433. package/lib/dom/IDOMRectInit.d.ts.map +1 -0
  434. package/lib/dom/IDOMRectInit.js +2 -0
  435. package/lib/dom/IDOMRectInit.js.map +1 -0
  436. package/lib/dom/dom-matrix/DOMMatrix.d.ts +296 -0
  437. package/lib/dom/dom-matrix/DOMMatrix.d.ts.map +1 -0
  438. package/lib/dom/dom-matrix/DOMMatrix.js +425 -0
  439. package/lib/dom/dom-matrix/DOMMatrix.js.map +1 -0
  440. package/lib/dom/dom-matrix/DOMMatrixReadOnly.d.ts +485 -0
  441. package/lib/dom/dom-matrix/DOMMatrixReadOnly.d.ts.map +1 -0
  442. package/lib/dom/dom-matrix/DOMMatrixReadOnly.js +1380 -0
  443. package/lib/dom/dom-matrix/DOMMatrixReadOnly.js.map +1 -0
  444. package/lib/dom/dom-matrix/IDOMMatrixCompatibleObject.d.ts +25 -0
  445. package/lib/dom/dom-matrix/IDOMMatrixCompatibleObject.d.ts.map +1 -0
  446. package/lib/dom/dom-matrix/IDOMMatrixCompatibleObject.js +2 -0
  447. package/lib/dom/dom-matrix/IDOMMatrixCompatibleObject.js.map +1 -0
  448. package/lib/dom/dom-matrix/IDOMMatrixJSON.d.ts +27 -0
  449. package/lib/dom/dom-matrix/IDOMMatrixJSON.d.ts.map +1 -0
  450. package/lib/dom/dom-matrix/IDOMMatrixJSON.js +2 -0
  451. package/lib/dom/dom-matrix/IDOMMatrixJSON.js.map +1 -0
  452. package/lib/dom/dom-matrix/TDOMMatrix2DArray.d.ts +3 -0
  453. package/lib/dom/dom-matrix/TDOMMatrix2DArray.d.ts.map +1 -0
  454. package/lib/dom/dom-matrix/TDOMMatrix2DArray.js +3 -0
  455. package/lib/dom/dom-matrix/TDOMMatrix2DArray.js.map +1 -0
  456. package/lib/dom/dom-matrix/TDOMMatrix3DArray.d.ts +20 -0
  457. package/lib/dom/dom-matrix/TDOMMatrix3DArray.d.ts.map +1 -0
  458. package/lib/dom/dom-matrix/TDOMMatrix3DArray.js +3 -0
  459. package/lib/dom/dom-matrix/TDOMMatrix3DArray.js.map +1 -0
  460. package/lib/dom/dom-matrix/TDOMMatrixInit.d.ts +3 -0
  461. package/lib/dom/dom-matrix/TDOMMatrixInit.d.ts.map +1 -0
  462. package/lib/dom/dom-matrix/TDOMMatrixInit.js +2 -0
  463. package/lib/dom/dom-matrix/TDOMMatrixInit.js.map +1 -0
  464. package/lib/dom-implementation/DOMImplementation.d.ts +37 -0
  465. package/lib/dom-implementation/DOMImplementation.d.ts.map +1 -0
  466. package/lib/dom-implementation/DOMImplementation.js +50 -0
  467. package/lib/dom-implementation/DOMImplementation.js.map +1 -0
  468. package/lib/dom-parser/DOMParser.d.ts +21 -0
  469. package/lib/dom-parser/DOMParser.d.ts.map +1 -0
  470. package/lib/dom-parser/DOMParser.js +38 -0
  471. package/lib/dom-parser/DOMParser.js.map +1 -0
  472. package/lib/event/DataTransfer.d.ts +51 -0
  473. package/lib/event/DataTransfer.d.ts.map +1 -0
  474. package/lib/event/DataTransfer.js +107 -0
  475. package/lib/event/DataTransfer.js.map +1 -0
  476. package/lib/event/DataTransferItem.d.ts +30 -0
  477. package/lib/event/DataTransferItem.d.ts.map +1 -0
  478. package/lib/event/DataTransferItem.js +43 -0
  479. package/lib/event/DataTransferItem.js.map +1 -0
  480. package/lib/event/DataTransferItemList.d.ts +25 -0
  481. package/lib/event/DataTransferItemList.d.ts.map +1 -0
  482. package/lib/event/DataTransferItemList.js +40 -0
  483. package/lib/event/DataTransferItemList.js.map +1 -0
  484. package/lib/event/Event.d.ts +125 -0
  485. package/lib/event/Event.d.ts.map +1 -0
  486. package/lib/event/Event.js +190 -0
  487. package/lib/event/Event.js.map +1 -0
  488. package/lib/event/EventPhaseEnum.d.ts +8 -0
  489. package/lib/event/EventPhaseEnum.d.ts.map +1 -0
  490. package/lib/event/EventPhaseEnum.js +9 -0
  491. package/lib/event/EventPhaseEnum.js.map +1 -0
  492. package/lib/event/EventTarget.d.ts +77 -0
  493. package/lib/event/EventTarget.d.ts.map +1 -0
  494. package/lib/event/EventTarget.js +302 -0
  495. package/lib/event/EventTarget.js.map +1 -0
  496. package/lib/event/IEventInit.d.ts +6 -0
  497. package/lib/event/IEventInit.d.ts.map +1 -0
  498. package/lib/event/IEventInit.js +2 -0
  499. package/lib/event/IEventInit.js.map +1 -0
  500. package/lib/event/IEventListenerOptions.d.ts +8 -0
  501. package/lib/event/IEventListenerOptions.d.ts.map +1 -0
  502. package/lib/event/IEventListenerOptions.js +2 -0
  503. package/lib/event/IEventListenerOptions.js.map +1 -0
  504. package/lib/event/ITouchInit.d.ts +16 -0
  505. package/lib/event/ITouchInit.d.ts.map +1 -0
  506. package/lib/event/ITouchInit.js +2 -0
  507. package/lib/event/ITouchInit.js.map +1 -0
  508. package/lib/event/IUIEventInit.d.ts +7 -0
  509. package/lib/event/IUIEventInit.d.ts.map +1 -0
  510. package/lib/event/IUIEventInit.js +2 -0
  511. package/lib/event/IUIEventInit.js.map +1 -0
  512. package/lib/event/MessagePort.d.ts +24 -0
  513. package/lib/event/MessagePort.d.ts.map +1 -0
  514. package/lib/event/MessagePort.js +30 -0
  515. package/lib/event/MessagePort.js.map +1 -0
  516. package/lib/event/TEventListener.d.ts +4 -0
  517. package/lib/event/TEventListener.d.ts.map +1 -0
  518. package/lib/event/TEventListener.js +2 -0
  519. package/lib/event/TEventListener.js.map +1 -0
  520. package/lib/event/TEventListenerFunction.d.ts +3 -0
  521. package/lib/event/TEventListenerFunction.d.ts.map +1 -0
  522. package/lib/event/TEventListenerFunction.js +2 -0
  523. package/lib/event/TEventListenerFunction.js.map +1 -0
  524. package/lib/event/TEventListenerObject.d.ts +5 -0
  525. package/lib/event/TEventListenerObject.d.ts.map +1 -0
  526. package/lib/event/TEventListenerObject.js +2 -0
  527. package/lib/event/TEventListenerObject.js.map +1 -0
  528. package/lib/event/Touch.d.ts +26 -0
  529. package/lib/event/Touch.d.ts.map +1 -0
  530. package/lib/event/Touch.js +37 -0
  531. package/lib/event/Touch.js.map +1 -0
  532. package/lib/event/UIEvent.d.ts +26 -0
  533. package/lib/event/UIEvent.d.ts.map +1 -0
  534. package/lib/event/UIEvent.js +28 -0
  535. package/lib/event/UIEvent.js.map +1 -0
  536. package/lib/event/events/AnimationEvent.d.ts +18 -0
  537. package/lib/event/events/AnimationEvent.d.ts.map +1 -0
  538. package/lib/event/events/AnimationEvent.js +22 -0
  539. package/lib/event/events/AnimationEvent.js.map +1 -0
  540. package/lib/event/events/ClipboardEvent.d.ts +17 -0
  541. package/lib/event/events/ClipboardEvent.d.ts.map +1 -0
  542. package/lib/event/events/ClipboardEvent.js +18 -0
  543. package/lib/event/events/ClipboardEvent.js.map +1 -0
  544. package/lib/event/events/CloseEvent.d.ts +18 -0
  545. package/lib/event/events/CloseEvent.d.ts.map +1 -0
  546. package/lib/event/events/CloseEvent.js +22 -0
  547. package/lib/event/events/CloseEvent.js.map +1 -0
  548. package/lib/event/events/CustomEvent.d.ts +33 -0
  549. package/lib/event/events/CustomEvent.d.ts.map +1 -0
  550. package/lib/event/events/CustomEvent.js +43 -0
  551. package/lib/event/events/CustomEvent.js.map +1 -0
  552. package/lib/event/events/ErrorEvent.d.ts +20 -0
  553. package/lib/event/events/ErrorEvent.d.ts.map +1 -0
  554. package/lib/event/events/ErrorEvent.js +26 -0
  555. package/lib/event/events/ErrorEvent.js.map +1 -0
  556. package/lib/event/events/FocusEvent.d.ts +17 -0
  557. package/lib/event/events/FocusEvent.d.ts.map +1 -0
  558. package/lib/event/events/FocusEvent.js +18 -0
  559. package/lib/event/events/FocusEvent.js.map +1 -0
  560. package/lib/event/events/HashChangeEvent.d.ts +19 -0
  561. package/lib/event/events/HashChangeEvent.d.ts.map +1 -0
  562. package/lib/event/events/HashChangeEvent.js +22 -0
  563. package/lib/event/events/HashChangeEvent.js.map +1 -0
  564. package/lib/event/events/IAnimationEventInit.d.ts +7 -0
  565. package/lib/event/events/IAnimationEventInit.d.ts.map +1 -0
  566. package/lib/event/events/IAnimationEventInit.js +2 -0
  567. package/lib/event/events/IAnimationEventInit.js.map +1 -0
  568. package/lib/event/events/IClipboardEventInit.d.ts +6 -0
  569. package/lib/event/events/IClipboardEventInit.d.ts.map +1 -0
  570. package/lib/event/events/IClipboardEventInit.js +2 -0
  571. package/lib/event/events/IClipboardEventInit.js.map +1 -0
  572. package/lib/event/events/ICloseEventInit.d.ts +7 -0
  573. package/lib/event/events/ICloseEventInit.d.ts.map +1 -0
  574. package/lib/event/events/ICloseEventInit.js +2 -0
  575. package/lib/event/events/ICloseEventInit.js.map +1 -0
  576. package/lib/event/events/ICustomEventInit.d.ts +5 -0
  577. package/lib/event/events/ICustomEventInit.d.ts.map +1 -0
  578. package/lib/event/events/ICustomEventInit.js +2 -0
  579. package/lib/event/events/ICustomEventInit.js.map +1 -0
  580. package/lib/event/events/IErrorEventInit.d.ts +9 -0
  581. package/lib/event/events/IErrorEventInit.d.ts.map +1 -0
  582. package/lib/event/events/IErrorEventInit.js +2 -0
  583. package/lib/event/events/IErrorEventInit.js.map +1 -0
  584. package/lib/event/events/IFocusEventInit.d.ts +6 -0
  585. package/lib/event/events/IFocusEventInit.d.ts.map +1 -0
  586. package/lib/event/events/IFocusEventInit.js +2 -0
  587. package/lib/event/events/IFocusEventInit.js.map +1 -0
  588. package/lib/event/events/IHashChangeEventInit.d.ts +6 -0
  589. package/lib/event/events/IHashChangeEventInit.d.ts.map +1 -0
  590. package/lib/event/events/IHashChangeEventInit.js +2 -0
  591. package/lib/event/events/IHashChangeEventInit.js.map +1 -0
  592. package/lib/event/events/IInputEventInit.d.ts +9 -0
  593. package/lib/event/events/IInputEventInit.d.ts.map +1 -0
  594. package/lib/event/events/IInputEventInit.js +2 -0
  595. package/lib/event/events/IInputEventInit.js.map +1 -0
  596. package/lib/event/events/IKeyboardEventInit.d.ts +21 -0
  597. package/lib/event/events/IKeyboardEventInit.d.ts.map +1 -0
  598. package/lib/event/events/IKeyboardEventInit.js +2 -0
  599. package/lib/event/events/IKeyboardEventInit.js.map +1 -0
  600. package/lib/event/events/IMediaQueryListEventInit.d.ts +6 -0
  601. package/lib/event/events/IMediaQueryListEventInit.d.ts.map +1 -0
  602. package/lib/event/events/IMediaQueryListEventInit.js +2 -0
  603. package/lib/event/events/IMediaQueryListEventInit.js.map +1 -0
  604. package/lib/event/events/IMediaQueryListInit.d.ts +6 -0
  605. package/lib/event/events/IMediaQueryListInit.d.ts.map +1 -0
  606. package/lib/event/events/IMediaQueryListInit.js +2 -0
  607. package/lib/event/events/IMediaQueryListInit.js.map +1 -0
  608. package/lib/event/events/IMessageEventInit.d.ts +11 -0
  609. package/lib/event/events/IMessageEventInit.d.ts.map +1 -0
  610. package/lib/event/events/IMessageEventInit.js +2 -0
  611. package/lib/event/events/IMessageEventInit.js.map +1 -0
  612. package/lib/event/events/IMouseEventInit.d.ts +21 -0
  613. package/lib/event/events/IMouseEventInit.d.ts.map +1 -0
  614. package/lib/event/events/IMouseEventInit.js +2 -0
  615. package/lib/event/events/IMouseEventInit.js.map +1 -0
  616. package/lib/event/events/IPointerEventInit.d.ts +19 -0
  617. package/lib/event/events/IPointerEventInit.d.ts.map +1 -0
  618. package/lib/event/events/IPointerEventInit.js +2 -0
  619. package/lib/event/events/IPointerEventInit.js.map +1 -0
  620. package/lib/event/events/IPopStateEventInit.d.ts +6 -0
  621. package/lib/event/events/IPopStateEventInit.d.ts.map +1 -0
  622. package/lib/event/events/IPopStateEventInit.js +2 -0
  623. package/lib/event/events/IPopStateEventInit.js.map +1 -0
  624. package/lib/event/events/IProgressEventInit.d.ts +7 -0
  625. package/lib/event/events/IProgressEventInit.d.ts.map +1 -0
  626. package/lib/event/events/IProgressEventInit.js +2 -0
  627. package/lib/event/events/IProgressEventInit.js.map +1 -0
  628. package/lib/event/events/IStorageEventInit.d.ts +10 -0
  629. package/lib/event/events/IStorageEventInit.d.ts.map +1 -0
  630. package/lib/event/events/IStorageEventInit.js +2 -0
  631. package/lib/event/events/IStorageEventInit.js.map +1 -0
  632. package/lib/event/events/ISubmitEventInit.d.ts +6 -0
  633. package/lib/event/events/ISubmitEventInit.d.ts.map +1 -0
  634. package/lib/event/events/ISubmitEventInit.js +2 -0
  635. package/lib/event/events/ISubmitEventInit.js.map +1 -0
  636. package/lib/event/events/ITouchEventInit.d.ts +12 -0
  637. package/lib/event/events/ITouchEventInit.d.ts.map +1 -0
  638. package/lib/event/events/ITouchEventInit.js +2 -0
  639. package/lib/event/events/ITouchEventInit.js.map +1 -0
  640. package/lib/event/events/IWheelEventInit.d.ts +8 -0
  641. package/lib/event/events/IWheelEventInit.d.ts.map +1 -0
  642. package/lib/event/events/IWheelEventInit.js +2 -0
  643. package/lib/event/events/IWheelEventInit.js.map +1 -0
  644. package/lib/event/events/InputEvent.d.ts +20 -0
  645. package/lib/event/events/InputEvent.d.ts.map +1 -0
  646. package/lib/event/events/InputEvent.js +24 -0
  647. package/lib/event/events/InputEvent.js.map +1 -0
  648. package/lib/event/events/KeyboardEvent.d.ts +43 -0
  649. package/lib/event/events/KeyboardEvent.d.ts.map +1 -0
  650. package/lib/event/events/KeyboardEvent.js +72 -0
  651. package/lib/event/events/KeyboardEvent.js.map +1 -0
  652. package/lib/event/events/MediaQueryListEvent.d.ts +17 -0
  653. package/lib/event/events/MediaQueryListEvent.d.ts.map +1 -0
  654. package/lib/event/events/MediaQueryListEvent.js +20 -0
  655. package/lib/event/events/MediaQueryListEvent.js.map +1 -0
  656. package/lib/event/events/MediaStreamTrackEvent.d.ts +17 -0
  657. package/lib/event/events/MediaStreamTrackEvent.d.ts.map +1 -0
  658. package/lib/event/events/MediaStreamTrackEvent.js +18 -0
  659. package/lib/event/events/MediaStreamTrackEvent.js.map +1 -0
  660. package/lib/event/events/MessageEvent.d.ts +24 -0
  661. package/lib/event/events/MessageEvent.d.ts.map +1 -0
  662. package/lib/event/events/MessageEvent.js +28 -0
  663. package/lib/event/events/MessageEvent.js.map +1 -0
  664. package/lib/event/events/MouseEvent.d.ts +32 -0
  665. package/lib/event/events/MouseEvent.d.ts.map +1 -0
  666. package/lib/event/events/MouseEvent.js +48 -0
  667. package/lib/event/events/MouseEvent.js.map +1 -0
  668. package/lib/event/events/PointerEvent.d.ts +31 -0
  669. package/lib/event/events/PointerEvent.d.ts.map +1 -0
  670. package/lib/event/events/PointerEvent.js +46 -0
  671. package/lib/event/events/PointerEvent.js.map +1 -0
  672. package/lib/event/events/PopStateEvent.d.ts +17 -0
  673. package/lib/event/events/PopStateEvent.d.ts.map +1 -0
  674. package/lib/event/events/PopStateEvent.js +20 -0
  675. package/lib/event/events/PopStateEvent.js.map +1 -0
  676. package/lib/event/events/ProgressEvent.d.ts +18 -0
  677. package/lib/event/events/ProgressEvent.d.ts.map +1 -0
  678. package/lib/event/events/ProgressEvent.js +22 -0
  679. package/lib/event/events/ProgressEvent.js.map +1 -0
  680. package/lib/event/events/StorageEvent.d.ts +21 -0
  681. package/lib/event/events/StorageEvent.d.ts.map +1 -0
  682. package/lib/event/events/StorageEvent.js +26 -0
  683. package/lib/event/events/StorageEvent.js.map +1 -0
  684. package/lib/event/events/SubmitEvent.d.ts +17 -0
  685. package/lib/event/events/SubmitEvent.d.ts.map +1 -0
  686. package/lib/event/events/SubmitEvent.js +18 -0
  687. package/lib/event/events/SubmitEvent.js.map +1 -0
  688. package/lib/event/events/TouchEvent.d.ts +23 -0
  689. package/lib/event/events/TouchEvent.d.ts.map +1 -0
  690. package/lib/event/events/TouchEvent.js +30 -0
  691. package/lib/event/events/TouchEvent.js.map +1 -0
  692. package/lib/event/events/WheelEvent.d.ts +22 -0
  693. package/lib/event/events/WheelEvent.d.ts.map +1 -0
  694. package/lib/event/events/WheelEvent.js +27 -0
  695. package/lib/event/events/WheelEvent.js.map +1 -0
  696. package/lib/exception/DOMException.d.ts +16 -0
  697. package/lib/exception/DOMException.d.ts.map +1 -0
  698. package/lib/exception/DOMException.js +20 -0
  699. package/lib/exception/DOMException.js.map +1 -0
  700. package/lib/exception/DOMExceptionNameEnum.d.ts +24 -0
  701. package/lib/exception/DOMExceptionNameEnum.d.ts.map +1 -0
  702. package/lib/exception/DOMExceptionNameEnum.js +25 -0
  703. package/lib/exception/DOMExceptionNameEnum.js.map +1 -0
  704. package/lib/fetch/AbortController.d.ts +19 -0
  705. package/lib/fetch/AbortController.d.ts.map +1 -0
  706. package/lib/fetch/AbortController.js +19 -0
  707. package/lib/fetch/AbortController.js.map +1 -0
  708. package/lib/fetch/AbortSignal.d.ts +86 -0
  709. package/lib/fetch/AbortSignal.d.ts.map +1 -0
  710. package/lib/fetch/AbortSignal.js +152 -0
  711. package/lib/fetch/AbortSignal.js.map +1 -0
  712. package/lib/fetch/Fetch.d.ts +138 -0
  713. package/lib/fetch/Fetch.d.ts.map +1 -0
  714. package/lib/fetch/Fetch.js +819 -0
  715. package/lib/fetch/Fetch.js.map +1 -0
  716. package/lib/fetch/Headers.d.ts +95 -0
  717. package/lib/fetch/Headers.d.ts.map +1 -0
  718. package/lib/fetch/Headers.js +157 -0
  719. package/lib/fetch/Headers.js.map +1 -0
  720. package/lib/fetch/Request.d.ts +163 -0
  721. package/lib/fetch/Request.d.ts.map +1 -0
  722. package/lib/fetch/Request.js +376 -0
  723. package/lib/fetch/Request.js.map +1 -0
  724. package/lib/fetch/ResourceFetch.d.ts +46 -0
  725. package/lib/fetch/ResourceFetch.d.ts.map +1 -0
  726. package/lib/fetch/ResourceFetch.js +139 -0
  727. package/lib/fetch/ResourceFetch.js.map +1 -0
  728. package/lib/fetch/Response.d.ts +118 -0
  729. package/lib/fetch/Response.d.ts.map +1 -0
  730. package/lib/fetch/Response.js +328 -0
  731. package/lib/fetch/Response.js.map +1 -0
  732. package/lib/fetch/SyncFetch.d.ts +91 -0
  733. package/lib/fetch/SyncFetch.d.ts.map +1 -0
  734. package/lib/fetch/SyncFetch.js +548 -0
  735. package/lib/fetch/SyncFetch.js.map +1 -0
  736. package/lib/fetch/cache/preflight/ICacheablePreflightRequest.d.ts +7 -0
  737. package/lib/fetch/cache/preflight/ICacheablePreflightRequest.d.ts.map +1 -0
  738. package/lib/fetch/cache/preflight/ICacheablePreflightRequest.js +2 -0
  739. package/lib/fetch/cache/preflight/ICacheablePreflightRequest.js.map +1 -0
  740. package/lib/fetch/cache/preflight/ICacheablePreflightResponse.d.ts +7 -0
  741. package/lib/fetch/cache/preflight/ICacheablePreflightResponse.d.ts.map +1 -0
  742. package/lib/fetch/cache/preflight/ICacheablePreflightResponse.js +2 -0
  743. package/lib/fetch/cache/preflight/ICacheablePreflightResponse.js.map +1 -0
  744. package/lib/fetch/cache/preflight/ICachedPreflightResponse.d.ts +6 -0
  745. package/lib/fetch/cache/preflight/ICachedPreflightResponse.d.ts.map +1 -0
  746. package/lib/fetch/cache/preflight/ICachedPreflightResponse.js +2 -0
  747. package/lib/fetch/cache/preflight/ICachedPreflightResponse.js.map +1 -0
  748. package/lib/fetch/cache/preflight/IPreflightResponseCache.d.ts +28 -0
  749. package/lib/fetch/cache/preflight/IPreflightResponseCache.d.ts.map +1 -0
  750. package/lib/fetch/cache/preflight/IPreflightResponseCache.js +2 -0
  751. package/lib/fetch/cache/preflight/IPreflightResponseCache.js.map +1 -0
  752. package/lib/fetch/cache/preflight/PreflightResponseCache.d.ts +32 -0
  753. package/lib/fetch/cache/preflight/PreflightResponseCache.d.ts.map +1 -0
  754. package/lib/fetch/cache/preflight/PreflightResponseCache.js +72 -0
  755. package/lib/fetch/cache/preflight/PreflightResponseCache.js.map +1 -0
  756. package/lib/fetch/cache/response/CachedResponseStateEnum.d.ts +6 -0
  757. package/lib/fetch/cache/response/CachedResponseStateEnum.d.ts.map +1 -0
  758. package/lib/fetch/cache/response/CachedResponseStateEnum.js +7 -0
  759. package/lib/fetch/cache/response/CachedResponseStateEnum.js.map +1 -0
  760. package/lib/fetch/cache/response/ICacheableRequest.d.ts +7 -0
  761. package/lib/fetch/cache/response/ICacheableRequest.d.ts.map +1 -0
  762. package/lib/fetch/cache/response/ICacheableRequest.js +2 -0
  763. package/lib/fetch/cache/response/ICacheableRequest.js.map +1 -0
  764. package/lib/fetch/cache/response/ICacheableResponse.d.ts +11 -0
  765. package/lib/fetch/cache/response/ICacheableResponse.d.ts.map +1 -0
  766. package/lib/fetch/cache/response/ICacheableResponse.js +2 -0
  767. package/lib/fetch/cache/response/ICacheableResponse.js.map +1 -0
  768. package/lib/fetch/cache/response/ICachedResponse.d.ts +41 -0
  769. package/lib/fetch/cache/response/ICachedResponse.d.ts.map +1 -0
  770. package/lib/fetch/cache/response/ICachedResponse.js +2 -0
  771. package/lib/fetch/cache/response/ICachedResponse.js.map +1 -0
  772. package/lib/fetch/cache/response/IResponseCache.d.ts +37 -0
  773. package/lib/fetch/cache/response/IResponseCache.d.ts.map +1 -0
  774. package/lib/fetch/cache/response/IResponseCache.js +2 -0
  775. package/lib/fetch/cache/response/IResponseCache.js.map +1 -0
  776. package/lib/fetch/cache/response/IResponseCacheFileSystem.d.ts +18 -0
  777. package/lib/fetch/cache/response/IResponseCacheFileSystem.d.ts.map +1 -0
  778. package/lib/fetch/cache/response/IResponseCacheFileSystem.js +2 -0
  779. package/lib/fetch/cache/response/IResponseCacheFileSystem.js.map +1 -0
  780. package/lib/fetch/cache/response/ResponseCache.d.ts +46 -0
  781. package/lib/fetch/cache/response/ResponseCache.d.ts.map +1 -0
  782. package/lib/fetch/cache/response/ResponseCache.js +223 -0
  783. package/lib/fetch/cache/response/ResponseCache.js.map +1 -0
  784. package/lib/fetch/cache/response/ResponseCacheFileSystem.d.ts +27 -0
  785. package/lib/fetch/cache/response/ResponseCacheFileSystem.d.ts.map +1 -0
  786. package/lib/fetch/cache/response/ResponseCacheFileSystem.js +140 -0
  787. package/lib/fetch/cache/response/ResponseCacheFileSystem.js.map +1 -0
  788. package/lib/fetch/certificate/FetchHTTPSCertificate.d.ts +6 -0
  789. package/lib/fetch/certificate/FetchHTTPSCertificate.d.ts.map +1 -0
  790. package/lib/fetch/certificate/FetchHTTPSCertificate.js +53 -0
  791. package/lib/fetch/certificate/FetchHTTPSCertificate.js.map +1 -0
  792. package/lib/fetch/data-uri/DataURIParser.d.ts +20 -0
  793. package/lib/fetch/data-uri/DataURIParser.d.ts.map +1 -0
  794. package/lib/fetch/data-uri/DataURIParser.js +57 -0
  795. package/lib/fetch/data-uri/DataURIParser.js.map +1 -0
  796. package/lib/fetch/multipart/MultipartFormDataParser.d.ts +53 -0
  797. package/lib/fetch/multipart/MultipartFormDataParser.d.ts.map +1 -0
  798. package/lib/fetch/multipart/MultipartFormDataParser.js +113 -0
  799. package/lib/fetch/multipart/MultipartFormDataParser.js.map +1 -0
  800. package/lib/fetch/multipart/MultipartReader.d.ts +52 -0
  801. package/lib/fetch/multipart/MultipartReader.d.ts.map +1 -0
  802. package/lib/fetch/multipart/MultipartReader.js +174 -0
  803. package/lib/fetch/multipart/MultipartReader.js.map +1 -0
  804. package/lib/fetch/preload/PreloadEntry.d.ts +26 -0
  805. package/lib/fetch/preload/PreloadEntry.d.ts.map +1 -0
  806. package/lib/fetch/preload/PreloadEntry.js +44 -0
  807. package/lib/fetch/preload/PreloadEntry.js.map +1 -0
  808. package/lib/fetch/preload/PreloadUtility.d.ts +26 -0
  809. package/lib/fetch/preload/PreloadUtility.d.ts.map +1 -0
  810. package/lib/fetch/preload/PreloadUtility.js +26 -0
  811. package/lib/fetch/preload/PreloadUtility.js.map +1 -0
  812. package/lib/fetch/types/IFetchInterceptor.d.ts +57 -0
  813. package/lib/fetch/types/IFetchInterceptor.d.ts.map +1 -0
  814. package/lib/fetch/types/IFetchInterceptor.js +2 -0
  815. package/lib/fetch/types/IFetchInterceptor.js.map +1 -0
  816. package/lib/fetch/types/IFetchRequestHeaders.d.ts +10 -0
  817. package/lib/fetch/types/IFetchRequestHeaders.d.ts.map +1 -0
  818. package/lib/fetch/types/IFetchRequestHeaders.js +2 -0
  819. package/lib/fetch/types/IFetchRequestHeaders.js.map +1 -0
  820. package/lib/fetch/types/IRequestInit.d.ts +23 -0
  821. package/lib/fetch/types/IRequestInit.d.ts.map +1 -0
  822. package/lib/fetch/types/IRequestInit.js +2 -0
  823. package/lib/fetch/types/IRequestInit.js.map +1 -0
  824. package/lib/fetch/types/IResourceFetchResponse.d.ts +5 -0
  825. package/lib/fetch/types/IResourceFetchResponse.d.ts.map +1 -0
  826. package/lib/fetch/types/IResourceFetchResponse.js +2 -0
  827. package/lib/fetch/types/IResourceFetchResponse.js.map +1 -0
  828. package/lib/fetch/types/IResponseInit.d.ts +10 -0
  829. package/lib/fetch/types/IResponseInit.d.ts.map +1 -0
  830. package/lib/fetch/types/IResponseInit.js +2 -0
  831. package/lib/fetch/types/IResponseInit.js.map +1 -0
  832. package/lib/fetch/types/ISyncResponse.d.ts +18 -0
  833. package/lib/fetch/types/ISyncResponse.d.ts.map +1 -0
  834. package/lib/fetch/types/ISyncResponse.js +2 -0
  835. package/lib/fetch/types/ISyncResponse.js.map +1 -0
  836. package/lib/fetch/types/IVirtualServer.d.ts +8 -0
  837. package/lib/fetch/types/IVirtualServer.d.ts.map +1 -0
  838. package/lib/fetch/types/IVirtualServer.js +2 -0
  839. package/lib/fetch/types/IVirtualServer.js.map +1 -0
  840. package/lib/fetch/types/THeadersInit.d.ts +5 -0
  841. package/lib/fetch/types/THeadersInit.d.ts.map +1 -0
  842. package/lib/fetch/types/THeadersInit.js +2 -0
  843. package/lib/fetch/types/THeadersInit.js.map +1 -0
  844. package/lib/fetch/types/TRequestBody.d.ts +6 -0
  845. package/lib/fetch/types/TRequestBody.d.ts.map +1 -0
  846. package/lib/fetch/types/TRequestBody.js +2 -0
  847. package/lib/fetch/types/TRequestBody.js.map +1 -0
  848. package/lib/fetch/types/TRequestCredentials.d.ts +2 -0
  849. package/lib/fetch/types/TRequestCredentials.d.ts.map +1 -0
  850. package/lib/fetch/types/TRequestCredentials.js +2 -0
  851. package/lib/fetch/types/TRequestCredentials.js.map +1 -0
  852. package/lib/fetch/types/TRequestInfo.d.ts +4 -0
  853. package/lib/fetch/types/TRequestInfo.d.ts.map +1 -0
  854. package/lib/fetch/types/TRequestInfo.js +2 -0
  855. package/lib/fetch/types/TRequestInfo.js.map +1 -0
  856. package/lib/fetch/types/TRequestMode.d.ts +2 -0
  857. package/lib/fetch/types/TRequestMode.d.ts.map +1 -0
  858. package/lib/fetch/types/TRequestMode.js +2 -0
  859. package/lib/fetch/types/TRequestMode.js.map +1 -0
  860. package/lib/fetch/types/TRequestRedirect.d.ts +2 -0
  861. package/lib/fetch/types/TRequestRedirect.d.ts.map +1 -0
  862. package/lib/fetch/types/TRequestRedirect.js +2 -0
  863. package/lib/fetch/types/TRequestRedirect.js.map +1 -0
  864. package/lib/fetch/types/TRequestReferrerPolicy.d.ts +2 -0
  865. package/lib/fetch/types/TRequestReferrerPolicy.d.ts.map +1 -0
  866. package/lib/fetch/types/TRequestReferrerPolicy.js +2 -0
  867. package/lib/fetch/types/TRequestReferrerPolicy.js.map +1 -0
  868. package/lib/fetch/types/TResponseBody.d.ts +6 -0
  869. package/lib/fetch/types/TResponseBody.d.ts.map +1 -0
  870. package/lib/fetch/types/TResponseBody.js +2 -0
  871. package/lib/fetch/types/TResponseBody.js.map +1 -0
  872. package/lib/fetch/utilities/FetchBodyUtility.d.ts +83 -0
  873. package/lib/fetch/utilities/FetchBodyUtility.d.ts.map +1 -0
  874. package/lib/fetch/utilities/FetchBodyUtility.js +249 -0
  875. package/lib/fetch/utilities/FetchBodyUtility.js.map +1 -0
  876. package/lib/fetch/utilities/FetchCORSUtility.d.ts +14 -0
  877. package/lib/fetch/utilities/FetchCORSUtility.d.ts.map +1 -0
  878. package/lib/fetch/utilities/FetchCORSUtility.js +23 -0
  879. package/lib/fetch/utilities/FetchCORSUtility.js.map +1 -0
  880. package/lib/fetch/utilities/FetchRequestHeaderUtility.d.ts +41 -0
  881. package/lib/fetch/utilities/FetchRequestHeaderUtility.d.ts.map +1 -0
  882. package/lib/fetch/utilities/FetchRequestHeaderUtility.js +111 -0
  883. package/lib/fetch/utilities/FetchRequestHeaderUtility.js.map +1 -0
  884. package/lib/fetch/utilities/FetchRequestReferrerUtility.d.ts +62 -0
  885. package/lib/fetch/utilities/FetchRequestReferrerUtility.d.ts.map +1 -0
  886. package/lib/fetch/utilities/FetchRequestReferrerUtility.js +207 -0
  887. package/lib/fetch/utilities/FetchRequestReferrerUtility.js.map +1 -0
  888. package/lib/fetch/utilities/FetchRequestValidationUtility.d.ts +53 -0
  889. package/lib/fetch/utilities/FetchRequestValidationUtility.d.ts.map +1 -0
  890. package/lib/fetch/utilities/FetchRequestValidationUtility.js +94 -0
  891. package/lib/fetch/utilities/FetchRequestValidationUtility.js.map +1 -0
  892. package/lib/fetch/utilities/FetchResponseHeaderUtility.d.ts +23 -0
  893. package/lib/fetch/utilities/FetchResponseHeaderUtility.d.ts.map +1 -0
  894. package/lib/fetch/utilities/FetchResponseHeaderUtility.js +42 -0
  895. package/lib/fetch/utilities/FetchResponseHeaderUtility.js.map +1 -0
  896. package/lib/fetch/utilities/FetchResponseRedirectUtility.d.ts +20 -0
  897. package/lib/fetch/utilities/FetchResponseRedirectUtility.d.ts.map +1 -0
  898. package/lib/fetch/utilities/FetchResponseRedirectUtility.js +26 -0
  899. package/lib/fetch/utilities/FetchResponseRedirectUtility.js.map +1 -0
  900. package/lib/fetch/utilities/SyncFetchScriptBuilder.d.ts +27 -0
  901. package/lib/fetch/utilities/SyncFetchScriptBuilder.d.ts.map +1 -0
  902. package/lib/fetch/utilities/SyncFetchScriptBuilder.js +58 -0
  903. package/lib/fetch/utilities/SyncFetchScriptBuilder.js.map +1 -0
  904. package/lib/fetch/utilities/VirtualServerUtility.d.ts +31 -0
  905. package/lib/fetch/utilities/VirtualServerUtility.d.ts.map +1 -0
  906. package/lib/fetch/utilities/VirtualServerUtility.js +91 -0
  907. package/lib/fetch/utilities/VirtualServerUtility.js.map +1 -0
  908. package/lib/file/Blob.d.ts +67 -0
  909. package/lib/file/Blob.d.ts.map +1 -0
  910. package/lib/file/Blob.js +148 -0
  911. package/lib/file/Blob.js.map +1 -0
  912. package/lib/file/File.d.ts +28 -0
  913. package/lib/file/File.d.ts.map +1 -0
  914. package/lib/file/File.js +33 -0
  915. package/lib/file/File.js.map +1 -0
  916. package/lib/file/FileReader.d.ts +57 -0
  917. package/lib/file/FileReader.d.ts.map +1 -0
  918. package/lib/file/FileReader.js +171 -0
  919. package/lib/file/FileReader.js.map +1 -0
  920. package/lib/file/FileReaderEventTypeEnum.d.ts +10 -0
  921. package/lib/file/FileReaderEventTypeEnum.d.ts.map +1 -0
  922. package/lib/file/FileReaderEventTypeEnum.js +11 -0
  923. package/lib/file/FileReaderEventTypeEnum.js.map +1 -0
  924. package/lib/file/FileReaderFormatEnum.d.ts +8 -0
  925. package/lib/file/FileReaderFormatEnum.d.ts.map +1 -0
  926. package/lib/file/FileReaderFormatEnum.js +9 -0
  927. package/lib/file/FileReaderFormatEnum.js.map +1 -0
  928. package/lib/file/FileReaderReadyStateEnum.d.ts +7 -0
  929. package/lib/file/FileReaderReadyStateEnum.d.ts.map +1 -0
  930. package/lib/file/FileReaderReadyStateEnum.js +8 -0
  931. package/lib/file/FileReaderReadyStateEnum.js.map +1 -0
  932. package/lib/form-data/FormData.d.ts +98 -0
  933. package/lib/form-data/FormData.d.ts.map +1 -0
  934. package/lib/form-data/FormData.js +249 -0
  935. package/lib/form-data/FormData.js.map +1 -0
  936. package/lib/history/History.d.ts +82 -0
  937. package/lib/history/History.d.ts.map +1 -0
  938. package/lib/history/History.js +175 -0
  939. package/lib/history/History.js.map +1 -0
  940. package/lib/history/HistoryItemList.d.ts +24 -0
  941. package/lib/history/HistoryItemList.d.ts.map +1 -0
  942. package/lib/history/HistoryItemList.js +63 -0
  943. package/lib/history/HistoryItemList.js.map +1 -0
  944. package/lib/history/HistoryScrollRestorationEnum.d.ts +6 -0
  945. package/lib/history/HistoryScrollRestorationEnum.d.ts.map +1 -0
  946. package/lib/history/HistoryScrollRestorationEnum.js +7 -0
  947. package/lib/history/HistoryScrollRestorationEnum.js.map +1 -0
  948. package/lib/history/IHistoryItem.d.ts +12 -0
  949. package/lib/history/IHistoryItem.d.ts.map +1 -0
  950. package/lib/history/IHistoryItem.js +2 -0
  951. package/lib/history/IHistoryItem.js.map +1 -0
  952. package/lib/html-parser/HTMLParser.d.ts +94 -0
  953. package/lib/html-parser/HTMLParser.d.ts.map +1 -0
  954. package/lib/html-parser/HTMLParser.js +741 -0
  955. package/lib/html-parser/HTMLParser.js.map +1 -0
  956. package/lib/html-serializer/HTMLSerializer.d.ts +38 -0
  957. package/lib/html-serializer/HTMLSerializer.d.ts.map +1 -0
  958. package/lib/html-serializer/HTMLSerializer.js +130 -0
  959. package/lib/html-serializer/HTMLSerializer.js.map +1 -0
  960. package/lib/index.d.ts +227 -0
  961. package/lib/index.d.ts.map +1 -0
  962. package/lib/index.js +197 -0
  963. package/lib/index.js.map +1 -0
  964. package/lib/intersection-observer/IIntersectionObserverInit.d.ts +16 -0
  965. package/lib/intersection-observer/IIntersectionObserverInit.d.ts.map +1 -0
  966. package/lib/intersection-observer/IIntersectionObserverInit.js +2 -0
  967. package/lib/intersection-observer/IIntersectionObserverInit.js.map +1 -0
  968. package/lib/intersection-observer/IntersectionObserver.d.ts +41 -0
  969. package/lib/intersection-observer/IntersectionObserver.d.ts.map +1 -0
  970. package/lib/intersection-observer/IntersectionObserver.js +53 -0
  971. package/lib/intersection-observer/IntersectionObserver.js.map +1 -0
  972. package/lib/intersection-observer/IntersectionObserverEntry.d.ts +23 -0
  973. package/lib/intersection-observer/IntersectionObserverEntry.d.ts.map +1 -0
  974. package/lib/intersection-observer/IntersectionObserverEntry.js +23 -0
  975. package/lib/intersection-observer/IntersectionObserverEntry.js.map +1 -0
  976. package/lib/javascript/IJavaScriptCompiledResult.d.ts +13 -0
  977. package/lib/javascript/IJavaScriptCompiledResult.d.ts.map +1 -0
  978. package/lib/javascript/IJavaScriptCompiledResult.js +2 -0
  979. package/lib/javascript/IJavaScriptCompiledResult.js.map +1 -0
  980. package/lib/javascript/JavaScriptCompiler.d.ts +41 -0
  981. package/lib/javascript/JavaScriptCompiler.d.ts.map +1 -0
  982. package/lib/javascript/JavaScriptCompiler.js +346 -0
  983. package/lib/javascript/JavaScriptCompiler.js.map +1 -0
  984. package/lib/location/Location.d.ts +148 -0
  985. package/lib/location/Location.d.ts.map +1 -0
  986. package/lib/location/Location.js +283 -0
  987. package/lib/location/Location.js.map +1 -0
  988. package/lib/match-media/IMediaQueryRange.d.ts +12 -0
  989. package/lib/match-media/IMediaQueryRange.d.ts.map +1 -0
  990. package/lib/match-media/IMediaQueryRange.js +2 -0
  991. package/lib/match-media/IMediaQueryRange.js.map +1 -0
  992. package/lib/match-media/IMediaQueryRule.d.ts +5 -0
  993. package/lib/match-media/IMediaQueryRule.d.ts.map +1 -0
  994. package/lib/match-media/IMediaQueryRule.js +2 -0
  995. package/lib/match-media/IMediaQueryRule.js.map +1 -0
  996. package/lib/match-media/MediaQueryItem.d.ts +77 -0
  997. package/lib/match-media/MediaQueryItem.d.ts.map +1 -0
  998. package/lib/match-media/MediaQueryItem.js +297 -0
  999. package/lib/match-media/MediaQueryItem.js.map +1 -0
  1000. package/lib/match-media/MediaQueryList.d.ts +62 -0
  1001. package/lib/match-media/MediaQueryList.d.ts.map +1 -0
  1002. package/lib/match-media/MediaQueryList.js +112 -0
  1003. package/lib/match-media/MediaQueryList.js.map +1 -0
  1004. package/lib/match-media/MediaQueryParser.d.ts +22 -0
  1005. package/lib/match-media/MediaQueryParser.d.ts.map +1 -0
  1006. package/lib/match-media/MediaQueryParser.js +106 -0
  1007. package/lib/match-media/MediaQueryParser.js.map +1 -0
  1008. package/lib/match-media/MediaQueryTypeEnum.d.ts +7 -0
  1009. package/lib/match-media/MediaQueryTypeEnum.d.ts.map +1 -0
  1010. package/lib/match-media/MediaQueryTypeEnum.js +8 -0
  1011. package/lib/match-media/MediaQueryTypeEnum.js.map +1 -0
  1012. package/lib/module/CSSModule.d.ts +32 -0
  1013. package/lib/module/CSSModule.d.ts.map +1 -0
  1014. package/lib/module/CSSModule.js +42 -0
  1015. package/lib/module/CSSModule.js.map +1 -0
  1016. package/lib/module/ECMAScriptModule.d.ts +36 -0
  1017. package/lib/module/ECMAScriptModule.d.ts.map +1 -0
  1018. package/lib/module/ECMAScriptModule.js +153 -0
  1019. package/lib/module/ECMAScriptModule.js.map +1 -0
  1020. package/lib/module/ECMAScriptModuleCompiler.d.ts +72 -0
  1021. package/lib/module/ECMAScriptModuleCompiler.d.ts.map +1 -0
  1022. package/lib/module/ECMAScriptModuleCompiler.js +854 -0
  1023. package/lib/module/ECMAScriptModuleCompiler.js.map +1 -0
  1024. package/lib/module/JSONModule.d.ts +31 -0
  1025. package/lib/module/JSONModule.d.ts.map +1 -0
  1026. package/lib/module/JSONModule.js +47 -0
  1027. package/lib/module/JSONModule.js.map +1 -0
  1028. package/lib/module/ModuleFactory.d.ts +49 -0
  1029. package/lib/module/ModuleFactory.d.ts.map +1 -0
  1030. package/lib/module/ModuleFactory.js +117 -0
  1031. package/lib/module/ModuleFactory.js.map +1 -0
  1032. package/lib/module/ModuleURLUtility.d.ts +38 -0
  1033. package/lib/module/ModuleURLUtility.d.ts.map +1 -0
  1034. package/lib/module/ModuleURLUtility.js +162 -0
  1035. package/lib/module/ModuleURLUtility.js.map +1 -0
  1036. package/lib/module/UnresolvedModule.d.ts +47 -0
  1037. package/lib/module/UnresolvedModule.d.ts.map +1 -0
  1038. package/lib/module/UnresolvedModule.js +66 -0
  1039. package/lib/module/UnresolvedModule.js.map +1 -0
  1040. package/lib/module/enums/ECMAScriptModuleEvaluateStateEnum.d.ts +7 -0
  1041. package/lib/module/enums/ECMAScriptModuleEvaluateStateEnum.d.ts.map +1 -0
  1042. package/lib/module/enums/ECMAScriptModuleEvaluateStateEnum.js +8 -0
  1043. package/lib/module/enums/ECMAScriptModuleEvaluateStateEnum.js.map +1 -0
  1044. package/lib/module/types/IECMAScriptModuleCachedResult.d.ts +9 -0
  1045. package/lib/module/types/IECMAScriptModuleCachedResult.d.ts.map +1 -0
  1046. package/lib/module/types/IECMAScriptModuleCachedResult.js +2 -0
  1047. package/lib/module/types/IECMAScriptModuleCachedResult.js.map +1 -0
  1048. package/lib/module/types/IECMAScriptModuleCompiledResult.d.ts +26 -0
  1049. package/lib/module/types/IECMAScriptModuleCompiledResult.d.ts.map +1 -0
  1050. package/lib/module/types/IECMAScriptModuleCompiledResult.js +2 -0
  1051. package/lib/module/types/IECMAScriptModuleCompiledResult.js.map +1 -0
  1052. package/lib/module/types/IECMAScriptModuleImport.d.ts +5 -0
  1053. package/lib/module/types/IECMAScriptModuleImport.d.ts.map +1 -0
  1054. package/lib/module/types/IECMAScriptModuleImport.js +2 -0
  1055. package/lib/module/types/IECMAScriptModuleImport.js.map +1 -0
  1056. package/lib/module/types/IECMAScriptModuleInit.d.ts +10 -0
  1057. package/lib/module/types/IECMAScriptModuleInit.d.ts.map +1 -0
  1058. package/lib/module/types/IECMAScriptModuleInit.js +2 -0
  1059. package/lib/module/types/IECMAScriptModuleInit.js.map +1 -0
  1060. package/lib/module/types/IModule.d.ts +21 -0
  1061. package/lib/module/types/IModule.d.ts.map +1 -0
  1062. package/lib/module/types/IModule.js +2 -0
  1063. package/lib/module/types/IModule.js.map +1 -0
  1064. package/lib/module/types/IModuleImportMap.d.ts +10 -0
  1065. package/lib/module/types/IModuleImportMap.d.ts.map +1 -0
  1066. package/lib/module/types/IModuleImportMap.js +2 -0
  1067. package/lib/module/types/IModuleImportMap.js.map +1 -0
  1068. package/lib/module/types/IModuleImportMapRule.d.ts +5 -0
  1069. package/lib/module/types/IModuleImportMapRule.d.ts.map +1 -0
  1070. package/lib/module/types/IModuleImportMapRule.js +2 -0
  1071. package/lib/module/types/IModuleImportMapRule.js.map +1 -0
  1072. package/lib/module/types/IModuleImportMapScope.d.ts +6 -0
  1073. package/lib/module/types/IModuleImportMapScope.d.ts.map +1 -0
  1074. package/lib/module/types/IModuleImportMapScope.js +2 -0
  1075. package/lib/module/types/IModuleImportMapScope.js.map +1 -0
  1076. package/lib/module/types/IModuleInit.d.ts +12 -0
  1077. package/lib/module/types/IModuleInit.d.ts.map +1 -0
  1078. package/lib/module/types/IModuleInit.js +2 -0
  1079. package/lib/module/types/IModuleInit.js.map +1 -0
  1080. package/lib/module/types/IResolveNodeModules.d.ts +9 -0
  1081. package/lib/module/types/IResolveNodeModules.d.ts.map +1 -0
  1082. package/lib/module/types/IResolveNodeModules.js +2 -0
  1083. package/lib/module/types/IResolveNodeModules.js.map +1 -0
  1084. package/lib/mutation-observer/IMutationListener.d.ts +7 -0
  1085. package/lib/mutation-observer/IMutationListener.d.ts.map +1 -0
  1086. package/lib/mutation-observer/IMutationListener.js +2 -0
  1087. package/lib/mutation-observer/IMutationListener.js.map +1 -0
  1088. package/lib/mutation-observer/IMutationObserverInit.d.ts +15 -0
  1089. package/lib/mutation-observer/IMutationObserverInit.d.ts.map +1 -0
  1090. package/lib/mutation-observer/IMutationObserverInit.js +2 -0
  1091. package/lib/mutation-observer/IMutationObserverInit.js.map +1 -0
  1092. package/lib/mutation-observer/MutationObserver.d.ts +42 -0
  1093. package/lib/mutation-observer/MutationObserver.d.ts.map +1 -0
  1094. package/lib/mutation-observer/MutationObserver.js +134 -0
  1095. package/lib/mutation-observer/MutationObserver.js.map +1 -0
  1096. package/lib/mutation-observer/MutationObserverListener.d.ts +47 -0
  1097. package/lib/mutation-observer/MutationObserverListener.d.ts.map +1 -0
  1098. package/lib/mutation-observer/MutationObserverListener.js +89 -0
  1099. package/lib/mutation-observer/MutationObserverListener.js.map +1 -0
  1100. package/lib/mutation-observer/MutationRecord.d.ts +44 -0
  1101. package/lib/mutation-observer/MutationRecord.d.ts.map +1 -0
  1102. package/lib/mutation-observer/MutationRecord.js +42 -0
  1103. package/lib/mutation-observer/MutationRecord.js.map +1 -0
  1104. package/lib/mutation-observer/MutationTypeEnum.d.ts +7 -0
  1105. package/lib/mutation-observer/MutationTypeEnum.d.ts.map +1 -0
  1106. package/lib/mutation-observer/MutationTypeEnum.js +8 -0
  1107. package/lib/mutation-observer/MutationTypeEnum.js.map +1 -0
  1108. package/lib/navigator/MimeType.d.ts +26 -0
  1109. package/lib/navigator/MimeType.d.ts.map +1 -0
  1110. package/lib/navigator/MimeType.js +32 -0
  1111. package/lib/navigator/MimeType.js.map +1 -0
  1112. package/lib/navigator/MimeTypeArray.d.ts +32 -0
  1113. package/lib/navigator/MimeTypeArray.d.ts.map +1 -0
  1114. package/lib/navigator/MimeTypeArray.js +43 -0
  1115. package/lib/navigator/MimeTypeArray.js.map +1 -0
  1116. package/lib/navigator/Navigator.d.ts +145 -0
  1117. package/lib/navigator/Navigator.d.ts.map +1 -0
  1118. package/lib/navigator/Navigator.js +213 -0
  1119. package/lib/navigator/Navigator.js.map +1 -0
  1120. package/lib/navigator/Plugin.d.ts +41 -0
  1121. package/lib/navigator/Plugin.d.ts.map +1 -0
  1122. package/lib/navigator/Plugin.js +55 -0
  1123. package/lib/navigator/Plugin.js.map +1 -0
  1124. package/lib/navigator/PluginArray.d.ts +39 -0
  1125. package/lib/navigator/PluginArray.d.ts.map +1 -0
  1126. package/lib/navigator/PluginArray.js +52 -0
  1127. package/lib/navigator/PluginArray.js.map +1 -0
  1128. package/lib/nodes/NodeFactory.d.ts +24 -0
  1129. package/lib/nodes/NodeFactory.d.ts.map +1 -0
  1130. package/lib/nodes/NodeFactory.js +30 -0
  1131. package/lib/nodes/NodeFactory.js.map +1 -0
  1132. package/lib/nodes/attr/Attr.d.ts +78 -0
  1133. package/lib/nodes/attr/Attr.d.ts.map +1 -0
  1134. package/lib/nodes/attr/Attr.js +103 -0
  1135. package/lib/nodes/attr/Attr.js.map +1 -0
  1136. package/lib/nodes/character-data/CharacterData.d.ts +137 -0
  1137. package/lib/nodes/character-data/CharacterData.d.ts.map +1 -0
  1138. package/lib/nodes/character-data/CharacterData.js +187 -0
  1139. package/lib/nodes/character-data/CharacterData.js.map +1 -0
  1140. package/lib/nodes/character-data/CharacterDataUtility.d.ts +47 -0
  1141. package/lib/nodes/character-data/CharacterDataUtility.d.ts.map +1 -0
  1142. package/lib/nodes/character-data/CharacterDataUtility.js +59 -0
  1143. package/lib/nodes/character-data/CharacterDataUtility.js.map +1 -0
  1144. package/lib/nodes/child-node/ChildNodeUtility.d.ts +35 -0
  1145. package/lib/nodes/child-node/ChildNodeUtility.d.ts.map +1 -0
  1146. package/lib/nodes/child-node/ChildNodeUtility.js +83 -0
  1147. package/lib/nodes/child-node/ChildNodeUtility.js.map +1 -0
  1148. package/lib/nodes/child-node/IChildNode.d.ts +26 -0
  1149. package/lib/nodes/child-node/IChildNode.d.ts.map +1 -0
  1150. package/lib/nodes/child-node/IChildNode.js +2 -0
  1151. package/lib/nodes/child-node/IChildNode.js.map +1 -0
  1152. package/lib/nodes/child-node/INonDocumentTypeChildNode.d.ts +7 -0
  1153. package/lib/nodes/child-node/INonDocumentTypeChildNode.d.ts.map +1 -0
  1154. package/lib/nodes/child-node/INonDocumentTypeChildNode.js +2 -0
  1155. package/lib/nodes/child-node/INonDocumentTypeChildNode.js.map +1 -0
  1156. package/lib/nodes/child-node/NonDocumentChildNodeUtility.d.ts +22 -0
  1157. package/lib/nodes/child-node/NonDocumentChildNodeUtility.d.ts.map +1 -0
  1158. package/lib/nodes/child-node/NonDocumentChildNodeUtility.js +34 -0
  1159. package/lib/nodes/child-node/NonDocumentChildNodeUtility.js.map +1 -0
  1160. package/lib/nodes/comment/Comment.d.ts +27 -0
  1161. package/lib/nodes/comment/Comment.d.ts.map +1 -0
  1162. package/lib/nodes/comment/Comment.js +32 -0
  1163. package/lib/nodes/comment/Comment.js.map +1 -0
  1164. package/lib/nodes/document/Document.d.ts +841 -0
  1165. package/lib/nodes/document/Document.d.ts.map +1 -0
  1166. package/lib/nodes/document/Document.js +1593 -0
  1167. package/lib/nodes/document/Document.js.map +1 -0
  1168. package/lib/nodes/document/DocumentReadyStateEnum.d.ts +7 -0
  1169. package/lib/nodes/document/DocumentReadyStateEnum.d.ts.map +1 -0
  1170. package/lib/nodes/document/DocumentReadyStateEnum.js +8 -0
  1171. package/lib/nodes/document/DocumentReadyStateEnum.js.map +1 -0
  1172. package/lib/nodes/document/DocumentReadyStateManager.d.ts +36 -0
  1173. package/lib/nodes/document/DocumentReadyStateManager.d.ts.map +1 -0
  1174. package/lib/nodes/document/DocumentReadyStateManager.js +46 -0
  1175. package/lib/nodes/document/DocumentReadyStateManager.js.map +1 -0
  1176. package/lib/nodes/document/VisibilityStateEnum.d.ts +7 -0
  1177. package/lib/nodes/document/VisibilityStateEnum.d.ts.map +1 -0
  1178. package/lib/nodes/document/VisibilityStateEnum.js +8 -0
  1179. package/lib/nodes/document/VisibilityStateEnum.js.map +1 -0
  1180. package/lib/nodes/document-fragment/DocumentFragment.d.ts +119 -0
  1181. package/lib/nodes/document-fragment/DocumentFragment.d.ts.map +1 -0
  1182. package/lib/nodes/document-fragment/DocumentFragment.js +130 -0
  1183. package/lib/nodes/document-fragment/DocumentFragment.js.map +1 -0
  1184. package/lib/nodes/document-type/DocumentType.d.ts +48 -0
  1185. package/lib/nodes/document-type/DocumentType.d.ts.map +1 -0
  1186. package/lib/nodes/document-type/DocumentType.js +63 -0
  1187. package/lib/nodes/document-type/DocumentType.js.map +1 -0
  1188. package/lib/nodes/element/Element.d.ts +726 -0
  1189. package/lib/nodes/element/Element.d.ts.map +1 -0
  1190. package/lib/nodes/element/Element.js +1286 -0
  1191. package/lib/nodes/element/Element.js.map +1 -0
  1192. package/lib/nodes/element/ElementEventAttributeUtility.d.ts +16 -0
  1193. package/lib/nodes/element/ElementEventAttributeUtility.d.ts.map +1 -0
  1194. package/lib/nodes/element/ElementEventAttributeUtility.js +70 -0
  1195. package/lib/nodes/element/ElementEventAttributeUtility.js.map +1 -0
  1196. package/lib/nodes/element/HTMLCollection.d.ts +65 -0
  1197. package/lib/nodes/element/HTMLCollection.d.ts.map +1 -0
  1198. package/lib/nodes/element/HTMLCollection.js +199 -0
  1199. package/lib/nodes/element/HTMLCollection.js.map +1 -0
  1200. package/lib/nodes/element/NamedNodeMap.d.ts +113 -0
  1201. package/lib/nodes/element/NamedNodeMap.d.ts.map +1 -0
  1202. package/lib/nodes/element/NamedNodeMap.js +208 -0
  1203. package/lib/nodes/element/NamedNodeMap.js.map +1 -0
  1204. package/lib/nodes/element/NamedNodeMapProxyFactory.d.ts +15 -0
  1205. package/lib/nodes/element/NamedNodeMapProxyFactory.d.ts.map +1 -0
  1206. package/lib/nodes/element/NamedNodeMapProxyFactory.js +116 -0
  1207. package/lib/nodes/element/NamedNodeMapProxyFactory.js.map +1 -0
  1208. package/lib/nodes/element/THTMLCollectionListener.d.ts +7 -0
  1209. package/lib/nodes/element/THTMLCollectionListener.d.ts.map +1 -0
  1210. package/lib/nodes/element/THTMLCollectionListener.js +2 -0
  1211. package/lib/nodes/element/THTMLCollectionListener.js.map +1 -0
  1212. package/lib/nodes/element/TNamedNodeMapListener.d.ts +3 -0
  1213. package/lib/nodes/element/TNamedNodeMapListener.d.ts.map +1 -0
  1214. package/lib/nodes/element/TNamedNodeMapListener.js +2 -0
  1215. package/lib/nodes/element/TNamedNodeMapListener.js.map +1 -0
  1216. package/lib/nodes/html-anchor-element/HTMLAnchorElement.d.ts +266 -0
  1217. package/lib/nodes/html-anchor-element/HTMLAnchorElement.d.ts.map +1 -0
  1218. package/lib/nodes/html-anchor-element/HTMLAnchorElement.js +381 -0
  1219. package/lib/nodes/html-anchor-element/HTMLAnchorElement.js.map +1 -0
  1220. package/lib/nodes/html-area-element/HTMLAreaElement.d.ts +265 -0
  1221. package/lib/nodes/html-area-element/HTMLAreaElement.d.ts.map +1 -0
  1222. package/lib/nodes/html-area-element/HTMLAreaElement.js +373 -0
  1223. package/lib/nodes/html-area-element/HTMLAreaElement.js.map +1 -0
  1224. package/lib/nodes/html-audio-element/Audio.d.ts +20 -0
  1225. package/lib/nodes/html-audio-element/Audio.d.ts.map +1 -0
  1226. package/lib/nodes/html-audio-element/Audio.js +26 -0
  1227. package/lib/nodes/html-audio-element/Audio.js.map +1 -0
  1228. package/lib/nodes/html-audio-element/HTMLAudioElement.d.ts +11 -0
  1229. package/lib/nodes/html-audio-element/HTMLAudioElement.d.ts.map +1 -0
  1230. package/lib/nodes/html-audio-element/HTMLAudioElement.js +11 -0
  1231. package/lib/nodes/html-audio-element/HTMLAudioElement.js.map +1 -0
  1232. package/lib/nodes/html-base-element/HTMLBaseElement.d.ts +40 -0
  1233. package/lib/nodes/html-base-element/HTMLBaseElement.d.ts.map +1 -0
  1234. package/lib/nodes/html-base-element/HTMLBaseElement.js +58 -0
  1235. package/lib/nodes/html-base-element/HTMLBaseElement.js.map +1 -0
  1236. package/lib/nodes/html-body-element/HTMLBodyElement.d.ts +46 -0
  1237. package/lib/nodes/html-body-element/HTMLBodyElement.d.ts.map +1 -0
  1238. package/lib/nodes/html-body-element/HTMLBodyElement.js +121 -0
  1239. package/lib/nodes/html-body-element/HTMLBodyElement.js.map +1 -0
  1240. package/lib/nodes/html-br-element/HTMLBRElement.d.ts +9 -0
  1241. package/lib/nodes/html-br-element/HTMLBRElement.d.ts.map +1 -0
  1242. package/lib/nodes/html-br-element/HTMLBRElement.js +9 -0
  1243. package/lib/nodes/html-br-element/HTMLBRElement.js.map +1 -0
  1244. package/lib/nodes/html-button-element/HTMLButtonElement.d.ts +206 -0
  1245. package/lib/nodes/html-button-element/HTMLButtonElement.d.ts.map +1 -0
  1246. package/lib/nodes/html-button-element/HTMLButtonElement.js +344 -0
  1247. package/lib/nodes/html-button-element/HTMLButtonElement.js.map +1 -0
  1248. package/lib/nodes/html-canvas-element/CanvasCaptureMediaStreamTrack.d.ts +35 -0
  1249. package/lib/nodes/html-canvas-element/CanvasCaptureMediaStreamTrack.d.ts.map +1 -0
  1250. package/lib/nodes/html-canvas-element/CanvasCaptureMediaStreamTrack.js +45 -0
  1251. package/lib/nodes/html-canvas-element/CanvasCaptureMediaStreamTrack.js.map +1 -0
  1252. package/lib/nodes/html-canvas-element/HTMLCanvasElement.d.ts +86 -0
  1253. package/lib/nodes/html-canvas-element/HTMLCanvasElement.d.ts.map +1 -0
  1254. package/lib/nodes/html-canvas-element/HTMLCanvasElement.js +141 -0
  1255. package/lib/nodes/html-canvas-element/HTMLCanvasElement.js.map +1 -0
  1256. package/lib/nodes/html-canvas-element/ImageBitmap.d.ts +21 -0
  1257. package/lib/nodes/html-canvas-element/ImageBitmap.d.ts.map +1 -0
  1258. package/lib/nodes/html-canvas-element/ImageBitmap.js +26 -0
  1259. package/lib/nodes/html-canvas-element/ImageBitmap.js.map +1 -0
  1260. package/lib/nodes/html-canvas-element/OffscreenCanvas.d.ts +47 -0
  1261. package/lib/nodes/html-canvas-element/OffscreenCanvas.d.ts.map +1 -0
  1262. package/lib/nodes/html-canvas-element/OffscreenCanvas.js +51 -0
  1263. package/lib/nodes/html-canvas-element/OffscreenCanvas.js.map +1 -0
  1264. package/lib/nodes/html-d-list-element/HTMLDListElement.d.ts +9 -0
  1265. package/lib/nodes/html-d-list-element/HTMLDListElement.d.ts.map +1 -0
  1266. package/lib/nodes/html-d-list-element/HTMLDListElement.js +9 -0
  1267. package/lib/nodes/html-d-list-element/HTMLDListElement.js.map +1 -0
  1268. package/lib/nodes/html-data-element/HTMLDataElement.d.ts +21 -0
  1269. package/lib/nodes/html-data-element/HTMLDataElement.d.ts.map +1 -0
  1270. package/lib/nodes/html-data-element/HTMLDataElement.js +25 -0
  1271. package/lib/nodes/html-data-element/HTMLDataElement.js.map +1 -0
  1272. package/lib/nodes/html-data-list-element/HTMLDataListElement.d.ts +19 -0
  1273. package/lib/nodes/html-data-list-element/HTMLDataListElement.d.ts.map +1 -0
  1274. package/lib/nodes/html-data-list-element/HTMLDataListElement.js +23 -0
  1275. package/lib/nodes/html-data-list-element/HTMLDataListElement.js.map +1 -0
  1276. package/lib/nodes/html-details-element/HTMLDetailsElement.d.ts +36 -0
  1277. package/lib/nodes/html-details-element/HTMLDetailsElement.d.ts.map +1 -0
  1278. package/lib/nodes/html-details-element/HTMLDetailsElement.js +93 -0
  1279. package/lib/nodes/html-details-element/HTMLDetailsElement.js.map +1 -0
  1280. package/lib/nodes/html-dialog-element/HTMLDialogElement.d.ts +54 -0
  1281. package/lib/nodes/html-dialog-element/HTMLDialogElement.d.ts.map +1 -0
  1282. package/lib/nodes/html-dialog-element/HTMLDialogElement.js +91 -0
  1283. package/lib/nodes/html-dialog-element/HTMLDialogElement.js.map +1 -0
  1284. package/lib/nodes/html-div-element/HTMLDivElement.d.ts +9 -0
  1285. package/lib/nodes/html-div-element/HTMLDivElement.d.ts.map +1 -0
  1286. package/lib/nodes/html-div-element/HTMLDivElement.js +9 -0
  1287. package/lib/nodes/html-div-element/HTMLDivElement.js.map +1 -0
  1288. package/lib/nodes/html-document/HTMLDocument.d.ts +21 -0
  1289. package/lib/nodes/html-document/HTMLDocument.d.ts.map +1 -0
  1290. package/lib/nodes/html-document/HTMLDocument.js +54 -0
  1291. package/lib/nodes/html-document/HTMLDocument.js.map +1 -0
  1292. package/lib/nodes/html-element/HTMLElement.d.ts +383 -0
  1293. package/lib/nodes/html-element/HTMLElement.d.ts.map +1 -0
  1294. package/lib/nodes/html-element/HTMLElement.js +938 -0
  1295. package/lib/nodes/html-element/HTMLElement.js.map +1 -0
  1296. package/lib/nodes/html-element/HTMLElementUtility.d.ts +27 -0
  1297. package/lib/nodes/html-element/HTMLElementUtility.d.ts.map +1 -0
  1298. package/lib/nodes/html-element/HTMLElementUtility.js +88 -0
  1299. package/lib/nodes/html-element/HTMLElementUtility.js.map +1 -0
  1300. package/lib/nodes/html-embed-element/HTMLEmbedElement.d.ts +57 -0
  1301. package/lib/nodes/html-embed-element/HTMLEmbedElement.d.ts.map +1 -0
  1302. package/lib/nodes/html-embed-element/HTMLEmbedElement.js +83 -0
  1303. package/lib/nodes/html-embed-element/HTMLEmbedElement.js.map +1 -0
  1304. package/lib/nodes/html-field-set-element/HTMLFieldSetElement.d.ts +99 -0
  1305. package/lib/nodes/html-field-set-element/HTMLFieldSetElement.d.ts.map +1 -0
  1306. package/lib/nodes/html-field-set-element/HTMLFieldSetElement.js +132 -0
  1307. package/lib/nodes/html-field-set-element/HTMLFieldSetElement.js.map +1 -0
  1308. package/lib/nodes/html-form-element/HTMLFormControlsCollection.d.ts +25 -0
  1309. package/lib/nodes/html-form-element/HTMLFormControlsCollection.d.ts.map +1 -0
  1310. package/lib/nodes/html-form-element/HTMLFormControlsCollection.js +26 -0
  1311. package/lib/nodes/html-form-element/HTMLFormControlsCollection.js.map +1 -0
  1312. package/lib/nodes/html-form-element/HTMLFormElement.d.ts +194 -0
  1313. package/lib/nodes/html-form-element/HTMLFormElement.d.ts.map +1 -0
  1314. package/lib/nodes/html-form-element/HTMLFormElement.js +565 -0
  1315. package/lib/nodes/html-form-element/HTMLFormElement.js.map +1 -0
  1316. package/lib/nodes/html-form-element/RadioNodeList.d.ts +16 -0
  1317. package/lib/nodes/html-form-element/RadioNodeList.d.ts.map +1 -0
  1318. package/lib/nodes/html-form-element/RadioNodeList.js +23 -0
  1319. package/lib/nodes/html-form-element/RadioNodeList.js.map +1 -0
  1320. package/lib/nodes/html-form-element/THTMLFormControlElement.d.ts +9 -0
  1321. package/lib/nodes/html-form-element/THTMLFormControlElement.d.ts.map +1 -0
  1322. package/lib/nodes/html-form-element/THTMLFormControlElement.js +2 -0
  1323. package/lib/nodes/html-form-element/THTMLFormControlElement.js.map +1 -0
  1324. package/lib/nodes/html-head-element/HTMLHeadElement.d.ts +9 -0
  1325. package/lib/nodes/html-head-element/HTMLHeadElement.d.ts.map +1 -0
  1326. package/lib/nodes/html-head-element/HTMLHeadElement.js +9 -0
  1327. package/lib/nodes/html-head-element/HTMLHeadElement.js.map +1 -0
  1328. package/lib/nodes/html-heading-element/HTMLHeadingElement.d.ts +9 -0
  1329. package/lib/nodes/html-heading-element/HTMLHeadingElement.d.ts.map +1 -0
  1330. package/lib/nodes/html-heading-element/HTMLHeadingElement.js +9 -0
  1331. package/lib/nodes/html-heading-element/HTMLHeadingElement.js.map +1 -0
  1332. package/lib/nodes/html-hr-element/HTMLHRElement.d.ts +9 -0
  1333. package/lib/nodes/html-hr-element/HTMLHRElement.d.ts.map +1 -0
  1334. package/lib/nodes/html-hr-element/HTMLHRElement.js +9 -0
  1335. package/lib/nodes/html-hr-element/HTMLHRElement.js.map +1 -0
  1336. package/lib/nodes/html-html-element/HTMLHtmlElement.d.ts +9 -0
  1337. package/lib/nodes/html-html-element/HTMLHtmlElement.d.ts.map +1 -0
  1338. package/lib/nodes/html-html-element/HTMLHtmlElement.js +9 -0
  1339. package/lib/nodes/html-html-element/HTMLHtmlElement.js.map +1 -0
  1340. package/lib/nodes/html-hyperlink-element/HTMLHyperlinkElementUtility.d.ts +142 -0
  1341. package/lib/nodes/html-hyperlink-element/HTMLHyperlinkElementUtility.d.ts.map +1 -0
  1342. package/lib/nodes/html-hyperlink-element/HTMLHyperlinkElementUtility.js +322 -0
  1343. package/lib/nodes/html-hyperlink-element/HTMLHyperlinkElementUtility.js.map +1 -0
  1344. package/lib/nodes/html-hyperlink-element/IHTMLHyperlinkElement.d.ts +20 -0
  1345. package/lib/nodes/html-hyperlink-element/IHTMLHyperlinkElement.d.ts.map +1 -0
  1346. package/lib/nodes/html-hyperlink-element/IHTMLHyperlinkElement.js +2 -0
  1347. package/lib/nodes/html-hyperlink-element/IHTMLHyperlinkElement.js.map +1 -0
  1348. package/lib/nodes/html-iframe-element/HTMLIFrameElement.d.ts +157 -0
  1349. package/lib/nodes/html-iframe-element/HTMLIFrameElement.d.ts.map +1 -0
  1350. package/lib/nodes/html-iframe-element/HTMLIFrameElement.js +370 -0
  1351. package/lib/nodes/html-iframe-element/HTMLIFrameElement.js.map +1 -0
  1352. package/lib/nodes/html-image-element/HTMLImageElement.d.ts +205 -0
  1353. package/lib/nodes/html-image-element/HTMLImageElement.d.ts.map +1 -0
  1354. package/lib/nodes/html-image-element/HTMLImageElement.js +287 -0
  1355. package/lib/nodes/html-image-element/HTMLImageElement.js.map +1 -0
  1356. package/lib/nodes/html-image-element/Image.d.ts +21 -0
  1357. package/lib/nodes/html-image-element/Image.d.ts.map +1 -0
  1358. package/lib/nodes/html-image-element/Image.js +30 -0
  1359. package/lib/nodes/html-image-element/Image.js.map +1 -0
  1360. package/lib/nodes/html-input-element/FileList.d.ts +26 -0
  1361. package/lib/nodes/html-input-element/FileList.d.ts.map +1 -0
  1362. package/lib/nodes/html-input-element/FileList.js +31 -0
  1363. package/lib/nodes/html-input-element/FileList.js.map +1 -0
  1364. package/lib/nodes/html-input-element/HTMLInputElement.d.ts +636 -0
  1365. package/lib/nodes/html-input-element/HTMLInputElement.d.ts.map +1 -0
  1366. package/lib/nodes/html-input-element/HTMLInputElement.js +1347 -0
  1367. package/lib/nodes/html-input-element/HTMLInputElement.js.map +1 -0
  1368. package/lib/nodes/html-input-element/HTMLInputElementDateUtility.d.ts +21 -0
  1369. package/lib/nodes/html-input-element/HTMLInputElementDateUtility.d.ts.map +1 -0
  1370. package/lib/nodes/html-input-element/HTMLInputElementDateUtility.js +48 -0
  1371. package/lib/nodes/html-input-element/HTMLInputElementDateUtility.js.map +1 -0
  1372. package/lib/nodes/html-input-element/HTMLInputElementSelectionDirectionEnum.d.ts +7 -0
  1373. package/lib/nodes/html-input-element/HTMLInputElementSelectionDirectionEnum.d.ts.map +1 -0
  1374. package/lib/nodes/html-input-element/HTMLInputElementSelectionDirectionEnum.js +8 -0
  1375. package/lib/nodes/html-input-element/HTMLInputElementSelectionDirectionEnum.js.map +1 -0
  1376. package/lib/nodes/html-input-element/HTMLInputElementSelectionModeEnum.d.ts +8 -0
  1377. package/lib/nodes/html-input-element/HTMLInputElementSelectionModeEnum.d.ts.map +1 -0
  1378. package/lib/nodes/html-input-element/HTMLInputElementSelectionModeEnum.js +9 -0
  1379. package/lib/nodes/html-input-element/HTMLInputElementSelectionModeEnum.js.map +1 -0
  1380. package/lib/nodes/html-input-element/HTMLInputElementValueSanitizer.d.ts +46 -0
  1381. package/lib/nodes/html-input-element/HTMLInputElementValueSanitizer.d.ts.map +1 -0
  1382. package/lib/nodes/html-input-element/HTMLInputElementValueSanitizer.js +206 -0
  1383. package/lib/nodes/html-input-element/HTMLInputElementValueSanitizer.js.map +1 -0
  1384. package/lib/nodes/html-input-element/HTMLInputElementValueStepping.d.ts +25 -0
  1385. package/lib/nodes/html-input-element/HTMLInputElementValueStepping.d.ts.map +1 -0
  1386. package/lib/nodes/html-input-element/HTMLInputElementValueStepping.js +76 -0
  1387. package/lib/nodes/html-input-element/HTMLInputElementValueStepping.js.map +1 -0
  1388. package/lib/nodes/html-label-element/HTMLLabelElement.d.ts +53 -0
  1389. package/lib/nodes/html-label-element/HTMLLabelElement.d.ts.map +1 -0
  1390. package/lib/nodes/html-label-element/HTMLLabelElement.js +94 -0
  1391. package/lib/nodes/html-label-element/HTMLLabelElement.js.map +1 -0
  1392. package/lib/nodes/html-label-element/HTMLLabelElementUtility.d.ts +16 -0
  1393. package/lib/nodes/html-label-element/HTMLLabelElementUtility.d.ts.map +1 -0
  1394. package/lib/nodes/html-label-element/HTMLLabelElementUtility.js +35 -0
  1395. package/lib/nodes/html-label-element/HTMLLabelElementUtility.js.map +1 -0
  1396. package/lib/nodes/html-legend-element/HTMLLegendElement.d.ts +16 -0
  1397. package/lib/nodes/html-legend-element/HTMLLegendElement.d.ts.map +1 -0
  1398. package/lib/nodes/html-legend-element/HTMLLegendElement.js +25 -0
  1399. package/lib/nodes/html-legend-element/HTMLLegendElement.js.map +1 -0
  1400. package/lib/nodes/html-li-element/HTMLLIElement.d.ts +21 -0
  1401. package/lib/nodes/html-li-element/HTMLLIElement.d.ts.map +1 -0
  1402. package/lib/nodes/html-li-element/HTMLLIElement.js +30 -0
  1403. package/lib/nodes/html-li-element/HTMLLIElement.js.map +1 -0
  1404. package/lib/nodes/html-link-element/HTMLLinkElement.d.ts +143 -0
  1405. package/lib/nodes/html-link-element/HTMLLinkElement.d.ts.map +1 -0
  1406. package/lib/nodes/html-link-element/HTMLLinkElement.js +411 -0
  1407. package/lib/nodes/html-link-element/HTMLLinkElement.js.map +1 -0
  1408. package/lib/nodes/html-map-element/HTMLMapElement.d.ts +31 -0
  1409. package/lib/nodes/html-map-element/HTMLMapElement.d.ts.map +1 -0
  1410. package/lib/nodes/html-map-element/HTMLMapElement.js +39 -0
  1411. package/lib/nodes/html-map-element/HTMLMapElement.js.map +1 -0
  1412. package/lib/nodes/html-media-element/HTMLMediaElement.d.ts +440 -0
  1413. package/lib/nodes/html-media-element/HTMLMediaElement.d.ts.map +1 -0
  1414. package/lib/nodes/html-media-element/HTMLMediaElement.js +766 -0
  1415. package/lib/nodes/html-media-element/HTMLMediaElement.js.map +1 -0
  1416. package/lib/nodes/html-media-element/IMediaTrackCapabilities.d.ts +22 -0
  1417. package/lib/nodes/html-media-element/IMediaTrackCapabilities.d.ts.map +1 -0
  1418. package/lib/nodes/html-media-element/IMediaTrackCapabilities.js +2 -0
  1419. package/lib/nodes/html-media-element/IMediaTrackCapabilities.js.map +1 -0
  1420. package/lib/nodes/html-media-element/IMediaTrackSettings.d.ts +6 -0
  1421. package/lib/nodes/html-media-element/IMediaTrackSettings.d.ts.map +1 -0
  1422. package/lib/nodes/html-media-element/IMediaTrackSettings.js +2 -0
  1423. package/lib/nodes/html-media-element/IMediaTrackSettings.js.map +1 -0
  1424. package/lib/nodes/html-media-element/MediaStream.d.ts +60 -0
  1425. package/lib/nodes/html-media-element/MediaStream.d.ts.map +1 -0
  1426. package/lib/nodes/html-media-element/MediaStream.js +100 -0
  1427. package/lib/nodes/html-media-element/MediaStream.js.map +1 -0
  1428. package/lib/nodes/html-media-element/MediaStreamTrack.d.ts +77 -0
  1429. package/lib/nodes/html-media-element/MediaStreamTrack.d.ts.map +1 -0
  1430. package/lib/nodes/html-media-element/MediaStreamTrack.js +150 -0
  1431. package/lib/nodes/html-media-element/MediaStreamTrack.js.map +1 -0
  1432. package/lib/nodes/html-media-element/RemotePlayback.d.ts +32 -0
  1433. package/lib/nodes/html-media-element/RemotePlayback.d.ts.map +1 -0
  1434. package/lib/nodes/html-media-element/RemotePlayback.js +42 -0
  1435. package/lib/nodes/html-media-element/RemotePlayback.js.map +1 -0
  1436. package/lib/nodes/html-media-element/TextTrack.d.ts +88 -0
  1437. package/lib/nodes/html-media-element/TextTrack.d.ts.map +1 -0
  1438. package/lib/nodes/html-media-element/TextTrack.js +134 -0
  1439. package/lib/nodes/html-media-element/TextTrack.js.map +1 -0
  1440. package/lib/nodes/html-media-element/TextTrackCue.d.ts +31 -0
  1441. package/lib/nodes/html-media-element/TextTrackCue.d.ts.map +1 -0
  1442. package/lib/nodes/html-media-element/TextTrackCue.js +42 -0
  1443. package/lib/nodes/html-media-element/TextTrackCue.js.map +1 -0
  1444. package/lib/nodes/html-media-element/TextTrackCueList.d.ts +19 -0
  1445. package/lib/nodes/html-media-element/TextTrackCueList.d.ts.map +1 -0
  1446. package/lib/nodes/html-media-element/TextTrackCueList.js +33 -0
  1447. package/lib/nodes/html-media-element/TextTrackCueList.js.map +1 -0
  1448. package/lib/nodes/html-media-element/TextTrackKindEnum.d.ts +9 -0
  1449. package/lib/nodes/html-media-element/TextTrackKindEnum.d.ts.map +1 -0
  1450. package/lib/nodes/html-media-element/TextTrackKindEnum.js +10 -0
  1451. package/lib/nodes/html-media-element/TextTrackKindEnum.js.map +1 -0
  1452. package/lib/nodes/html-media-element/TextTrackList.d.ts +60 -0
  1453. package/lib/nodes/html-media-element/TextTrackList.d.ts.map +1 -0
  1454. package/lib/nodes/html-media-element/TextTrackList.js +160 -0
  1455. package/lib/nodes/html-media-element/TextTrackList.js.map +1 -0
  1456. package/lib/nodes/html-media-element/TimeRanges.d.ts +50 -0
  1457. package/lib/nodes/html-media-element/TimeRanges.d.ts.map +1 -0
  1458. package/lib/nodes/html-media-element/TimeRanges.js +67 -0
  1459. package/lib/nodes/html-media-element/TimeRanges.js.map +1 -0
  1460. package/lib/nodes/html-media-element/VTTCue.d.ts +35 -0
  1461. package/lib/nodes/html-media-element/VTTCue.d.ts.map +1 -0
  1462. package/lib/nodes/html-media-element/VTTCue.js +64 -0
  1463. package/lib/nodes/html-media-element/VTTCue.js.map +1 -0
  1464. package/lib/nodes/html-media-element/VTTRegion.d.ts +16 -0
  1465. package/lib/nodes/html-media-element/VTTRegion.d.ts.map +1 -0
  1466. package/lib/nodes/html-media-element/VTTRegion.js +16 -0
  1467. package/lib/nodes/html-media-element/VTTRegion.js.map +1 -0
  1468. package/lib/nodes/html-menu-element/HTMLMenuElement.d.ts +9 -0
  1469. package/lib/nodes/html-menu-element/HTMLMenuElement.d.ts.map +1 -0
  1470. package/lib/nodes/html-menu-element/HTMLMenuElement.js +9 -0
  1471. package/lib/nodes/html-menu-element/HTMLMenuElement.js.map +1 -0
  1472. package/lib/nodes/html-meta-element/HTMLMetaElement.d.ts +58 -0
  1473. package/lib/nodes/html-meta-element/HTMLMetaElement.d.ts.map +1 -0
  1474. package/lib/nodes/html-meta-element/HTMLMetaElement.js +74 -0
  1475. package/lib/nodes/html-meta-element/HTMLMetaElement.js.map +1 -0
  1476. package/lib/nodes/html-meter-element/HTMLMeterElement.d.ts +89 -0
  1477. package/lib/nodes/html-meter-element/HTMLMeterElement.d.ts.map +1 -0
  1478. package/lib/nodes/html-meter-element/HTMLMeterElement.js +184 -0
  1479. package/lib/nodes/html-meter-element/HTMLMeterElement.js.map +1 -0
  1480. package/lib/nodes/html-mod-element/HTMLModElement.d.ts +33 -0
  1481. package/lib/nodes/html-mod-element/HTMLModElement.d.ts.map +1 -0
  1482. package/lib/nodes/html-mod-element/HTMLModElement.js +51 -0
  1483. package/lib/nodes/html-mod-element/HTMLModElement.js.map +1 -0
  1484. package/lib/nodes/html-o-list-element/HTMLOListElement.d.ts +45 -0
  1485. package/lib/nodes/html-o-list-element/HTMLOListElement.d.ts.map +1 -0
  1486. package/lib/nodes/html-o-list-element/HTMLOListElement.js +75 -0
  1487. package/lib/nodes/html-o-list-element/HTMLOListElement.js.map +1 -0
  1488. package/lib/nodes/html-object-element/HTMLObjectElement.d.ts +139 -0
  1489. package/lib/nodes/html-object-element/HTMLObjectElement.d.ts.map +1 -0
  1490. package/lib/nodes/html-object-element/HTMLObjectElement.js +199 -0
  1491. package/lib/nodes/html-object-element/HTMLObjectElement.js.map +1 -0
  1492. package/lib/nodes/html-opt-group-element/HTMLOptGroupElement.d.ts +34 -0
  1493. package/lib/nodes/html-opt-group-element/HTMLOptGroupElement.d.ts.map +1 -0
  1494. package/lib/nodes/html-opt-group-element/HTMLOptGroupElement.js +52 -0
  1495. package/lib/nodes/html-opt-group-element/HTMLOptGroupElement.js.map +1 -0
  1496. package/lib/nodes/html-option-element/HTMLOptionElement.d.ts +93 -0
  1497. package/lib/nodes/html-option-element/HTMLOptionElement.d.ts.map +1 -0
  1498. package/lib/nodes/html-option-element/HTMLOptionElement.js +157 -0
  1499. package/lib/nodes/html-option-element/HTMLOptionElement.js.map +1 -0
  1500. package/lib/nodes/html-output-element/HTMLOutputElement.d.ts +120 -0
  1501. package/lib/nodes/html-output-element/HTMLOutputElement.d.ts.map +1 -0
  1502. package/lib/nodes/html-output-element/HTMLOutputElement.js +159 -0
  1503. package/lib/nodes/html-output-element/HTMLOutputElement.js.map +1 -0
  1504. package/lib/nodes/html-paragraph-element/HTMLParagraphElement.d.ts +9 -0
  1505. package/lib/nodes/html-paragraph-element/HTMLParagraphElement.d.ts.map +1 -0
  1506. package/lib/nodes/html-paragraph-element/HTMLParagraphElement.js +9 -0
  1507. package/lib/nodes/html-paragraph-element/HTMLParagraphElement.js.map +1 -0
  1508. package/lib/nodes/html-param-element/HTMLParamElement.d.ts +9 -0
  1509. package/lib/nodes/html-param-element/HTMLParamElement.d.ts.map +1 -0
  1510. package/lib/nodes/html-param-element/HTMLParamElement.js +9 -0
  1511. package/lib/nodes/html-param-element/HTMLParamElement.js.map +1 -0
  1512. package/lib/nodes/html-picture-element/HTMLPictureElement.d.ts +9 -0
  1513. package/lib/nodes/html-picture-element/HTMLPictureElement.d.ts.map +1 -0
  1514. package/lib/nodes/html-picture-element/HTMLPictureElement.js +9 -0
  1515. package/lib/nodes/html-picture-element/HTMLPictureElement.js.map +1 -0
  1516. package/lib/nodes/html-pre-element/HTMLPreElement.d.ts +9 -0
  1517. package/lib/nodes/html-pre-element/HTMLPreElement.d.ts.map +1 -0
  1518. package/lib/nodes/html-pre-element/HTMLPreElement.js +9 -0
  1519. package/lib/nodes/html-pre-element/HTMLPreElement.js.map +1 -0
  1520. package/lib/nodes/html-progress-element/HTMLProgressElement.d.ts +47 -0
  1521. package/lib/nodes/html-progress-element/HTMLProgressElement.d.ts.map +1 -0
  1522. package/lib/nodes/html-progress-element/HTMLProgressElement.js +87 -0
  1523. package/lib/nodes/html-progress-element/HTMLProgressElement.js.map +1 -0
  1524. package/lib/nodes/html-quote-element/HTMLQuoteElement.d.ts +21 -0
  1525. package/lib/nodes/html-quote-element/HTMLQuoteElement.d.ts.map +1 -0
  1526. package/lib/nodes/html-quote-element/HTMLQuoteElement.js +35 -0
  1527. package/lib/nodes/html-quote-element/HTMLQuoteElement.js.map +1 -0
  1528. package/lib/nodes/html-script-element/HTMLScriptElement.d.ts +196 -0
  1529. package/lib/nodes/html-script-element/HTMLScriptElement.d.ts.map +1 -0
  1530. package/lib/nodes/html-script-element/HTMLScriptElement.js +618 -0
  1531. package/lib/nodes/html-script-element/HTMLScriptElement.js.map +1 -0
  1532. package/lib/nodes/html-select-element/HTMLOptionsCollection.d.ts +45 -0
  1533. package/lib/nodes/html-select-element/HTMLOptionsCollection.d.ts.map +1 -0
  1534. package/lib/nodes/html-select-element/HTMLOptionsCollection.js +54 -0
  1535. package/lib/nodes/html-select-element/HTMLOptionsCollection.js.map +1 -0
  1536. package/lib/nodes/html-select-element/HTMLSelectElement.d.ts +230 -0
  1537. package/lib/nodes/html-select-element/HTMLSelectElement.d.ts.map +1 -0
  1538. package/lib/nodes/html-select-element/HTMLSelectElement.js +640 -0
  1539. package/lib/nodes/html-select-element/HTMLSelectElement.js.map +1 -0
  1540. package/lib/nodes/html-slot-element/HTMLSlotElement.d.ts +71 -0
  1541. package/lib/nodes/html-slot-element/HTMLSlotElement.d.ts.map +1 -0
  1542. package/lib/nodes/html-slot-element/HTMLSlotElement.js +209 -0
  1543. package/lib/nodes/html-slot-element/HTMLSlotElement.js.map +1 -0
  1544. package/lib/nodes/html-source-element/HTMLSourceElement.d.ts +93 -0
  1545. package/lib/nodes/html-source-element/HTMLSourceElement.d.ts.map +1 -0
  1546. package/lib/nodes/html-source-element/HTMLSourceElement.js +135 -0
  1547. package/lib/nodes/html-source-element/HTMLSourceElement.js.map +1 -0
  1548. package/lib/nodes/html-span-element/HTMLSpanElement.d.ts +9 -0
  1549. package/lib/nodes/html-span-element/HTMLSpanElement.d.ts.map +1 -0
  1550. package/lib/nodes/html-span-element/HTMLSpanElement.js +9 -0
  1551. package/lib/nodes/html-span-element/HTMLSpanElement.js.map +1 -0
  1552. package/lib/nodes/html-style-element/HTMLStyleElement.d.ts +71 -0
  1553. package/lib/nodes/html-style-element/HTMLStyleElement.d.ts.map +1 -0
  1554. package/lib/nodes/html-style-element/HTMLStyleElement.js +101 -0
  1555. package/lib/nodes/html-style-element/HTMLStyleElement.js.map +1 -0
  1556. package/lib/nodes/html-table-caption-element/HTMLTableCaptionElement.d.ts +9 -0
  1557. package/lib/nodes/html-table-caption-element/HTMLTableCaptionElement.d.ts.map +1 -0
  1558. package/lib/nodes/html-table-caption-element/HTMLTableCaptionElement.js +9 -0
  1559. package/lib/nodes/html-table-caption-element/HTMLTableCaptionElement.js.map +1 -0
  1560. package/lib/nodes/html-table-cell-element/HTMLTableCellElement.d.ts +75 -0
  1561. package/lib/nodes/html-table-cell-element/HTMLTableCellElement.d.ts.map +1 -0
  1562. package/lib/nodes/html-table-cell-element/HTMLTableCellElement.js +112 -0
  1563. package/lib/nodes/html-table-cell-element/HTMLTableCellElement.js.map +1 -0
  1564. package/lib/nodes/html-table-col-element/HTMLTableColElement.d.ts +9 -0
  1565. package/lib/nodes/html-table-col-element/HTMLTableColElement.d.ts.map +1 -0
  1566. package/lib/nodes/html-table-col-element/HTMLTableColElement.js +9 -0
  1567. package/lib/nodes/html-table-col-element/HTMLTableColElement.js.map +1 -0
  1568. package/lib/nodes/html-table-element/HTMLTableElement.d.ts +111 -0
  1569. package/lib/nodes/html-table-element/HTMLTableElement.d.ts.map +1 -0
  1570. package/lib/nodes/html-table-element/HTMLTableElement.js +272 -0
  1571. package/lib/nodes/html-table-element/HTMLTableElement.js.map +1 -0
  1572. package/lib/nodes/html-table-row-element/HTMLTableRowElement.d.ts +42 -0
  1573. package/lib/nodes/html-table-row-element/HTMLTableRowElement.d.ts.map +1 -0
  1574. package/lib/nodes/html-table-row-element/HTMLTableRowElement.js +105 -0
  1575. package/lib/nodes/html-table-row-element/HTMLTableRowElement.js.map +1 -0
  1576. package/lib/nodes/html-table-section-element/HTMLTableSectionElement.d.ts +23 -0
  1577. package/lib/nodes/html-table-section-element/HTMLTableSectionElement.d.ts.map +1 -0
  1578. package/lib/nodes/html-table-section-element/HTMLTableSectionElement.js +62 -0
  1579. package/lib/nodes/html-table-section-element/HTMLTableSectionElement.js.map +1 -0
  1580. package/lib/nodes/html-template-element/HTMLTemplateElement.d.ts +72 -0
  1581. package/lib/nodes/html-template-element/HTMLTemplateElement.d.ts.map +1 -0
  1582. package/lib/nodes/html-template-element/HTMLTemplateElement.js +111 -0
  1583. package/lib/nodes/html-template-element/HTMLTemplateElement.js.map +1 -0
  1584. package/lib/nodes/html-text-area-element/HTMLTextAreaElement.d.ts +319 -0
  1585. package/lib/nodes/html-text-area-element/HTMLTextAreaElement.d.ts.map +1 -0
  1586. package/lib/nodes/html-text-area-element/HTMLTextAreaElement.js +552 -0
  1587. package/lib/nodes/html-text-area-element/HTMLTextAreaElement.js.map +1 -0
  1588. package/lib/nodes/html-time-element/HTMLTimeElement.d.ts +22 -0
  1589. package/lib/nodes/html-time-element/HTMLTimeElement.d.ts.map +1 -0
  1590. package/lib/nodes/html-time-element/HTMLTimeElement.js +26 -0
  1591. package/lib/nodes/html-time-element/HTMLTimeElement.js.map +1 -0
  1592. package/lib/nodes/html-title-element/HTMLTitleElement.d.ts +29 -0
  1593. package/lib/nodes/html-title-element/HTMLTitleElement.d.ts.map +1 -0
  1594. package/lib/nodes/html-title-element/HTMLTitleElement.js +45 -0
  1595. package/lib/nodes/html-title-element/HTMLTitleElement.js.map +1 -0
  1596. package/lib/nodes/html-track-element/HTMLTrackElement.d.ts +85 -0
  1597. package/lib/nodes/html-track-element/HTMLTrackElement.d.ts.map +1 -0
  1598. package/lib/nodes/html-track-element/HTMLTrackElement.js +147 -0
  1599. package/lib/nodes/html-track-element/HTMLTrackElement.js.map +1 -0
  1600. package/lib/nodes/html-u-list-element/HTMLUListElement.d.ts +9 -0
  1601. package/lib/nodes/html-u-list-element/HTMLUListElement.d.ts.map +1 -0
  1602. package/lib/nodes/html-u-list-element/HTMLUListElement.js +9 -0
  1603. package/lib/nodes/html-u-list-element/HTMLUListElement.js.map +1 -0
  1604. package/lib/nodes/html-unknown-element/HTMLUnknownElement.d.ts +10 -0
  1605. package/lib/nodes/html-unknown-element/HTMLUnknownElement.d.ts.map +1 -0
  1606. package/lib/nodes/html-unknown-element/HTMLUnknownElement.js +10 -0
  1607. package/lib/nodes/html-unknown-element/HTMLUnknownElement.js.map +1 -0
  1608. package/lib/nodes/html-video-element/HTMLVideoElement.d.ts +11 -0
  1609. package/lib/nodes/html-video-element/HTMLVideoElement.d.ts.map +1 -0
  1610. package/lib/nodes/html-video-element/HTMLVideoElement.js +11 -0
  1611. package/lib/nodes/html-video-element/HTMLVideoElement.js.map +1 -0
  1612. package/lib/nodes/node/ICachedComputedStyleResult.d.ts +6 -0
  1613. package/lib/nodes/node/ICachedComputedStyleResult.d.ts.map +1 -0
  1614. package/lib/nodes/node/ICachedComputedStyleResult.js +2 -0
  1615. package/lib/nodes/node/ICachedComputedStyleResult.js.map +1 -0
  1616. package/lib/nodes/node/ICachedElementByIdResult.d.ts +6 -0
  1617. package/lib/nodes/node/ICachedElementByIdResult.d.ts.map +1 -0
  1618. package/lib/nodes/node/ICachedElementByIdResult.js +2 -0
  1619. package/lib/nodes/node/ICachedElementByIdResult.js.map +1 -0
  1620. package/lib/nodes/node/ICachedElementByTagNameResult.d.ts +6 -0
  1621. package/lib/nodes/node/ICachedElementByTagNameResult.d.ts.map +1 -0
  1622. package/lib/nodes/node/ICachedElementByTagNameResult.js +2 -0
  1623. package/lib/nodes/node/ICachedElementByTagNameResult.js.map +1 -0
  1624. package/lib/nodes/node/ICachedElementsByTagNameResult.d.ts +6 -0
  1625. package/lib/nodes/node/ICachedElementsByTagNameResult.d.ts.map +1 -0
  1626. package/lib/nodes/node/ICachedElementsByTagNameResult.js +2 -0
  1627. package/lib/nodes/node/ICachedElementsByTagNameResult.js.map +1 -0
  1628. package/lib/nodes/node/ICachedMatchesResult.d.ts +8 -0
  1629. package/lib/nodes/node/ICachedMatchesResult.d.ts.map +1 -0
  1630. package/lib/nodes/node/ICachedMatchesResult.js +2 -0
  1631. package/lib/nodes/node/ICachedMatchesResult.js.map +1 -0
  1632. package/lib/nodes/node/ICachedQuerySelectorAllResult.d.ts +7 -0
  1633. package/lib/nodes/node/ICachedQuerySelectorAllResult.d.ts.map +1 -0
  1634. package/lib/nodes/node/ICachedQuerySelectorAllResult.js +2 -0
  1635. package/lib/nodes/node/ICachedQuerySelectorAllResult.js.map +1 -0
  1636. package/lib/nodes/node/ICachedQuerySelectorResult.d.ts +8 -0
  1637. package/lib/nodes/node/ICachedQuerySelectorResult.d.ts.map +1 -0
  1638. package/lib/nodes/node/ICachedQuerySelectorResult.js +2 -0
  1639. package/lib/nodes/node/ICachedQuerySelectorResult.js.map +1 -0
  1640. package/lib/nodes/node/ICachedResult.d.ts +4 -0
  1641. package/lib/nodes/node/ICachedResult.d.ts.map +1 -0
  1642. package/lib/nodes/node/ICachedResult.js +2 -0
  1643. package/lib/nodes/node/ICachedResult.js.map +1 -0
  1644. package/lib/nodes/node/ICachedStyleResult.d.ts +6 -0
  1645. package/lib/nodes/node/ICachedStyleResult.d.ts.map +1 -0
  1646. package/lib/nodes/node/ICachedStyleResult.js +2 -0
  1647. package/lib/nodes/node/ICachedStyleResult.js.map +1 -0
  1648. package/lib/nodes/node/Node.d.ts +372 -0
  1649. package/lib/nodes/node/Node.d.ts.map +1 -0
  1650. package/lib/nodes/node/Node.js +1084 -0
  1651. package/lib/nodes/node/Node.js.map +1 -0
  1652. package/lib/nodes/node/NodeDocumentPositionEnum.d.ts +10 -0
  1653. package/lib/nodes/node/NodeDocumentPositionEnum.d.ts.map +1 -0
  1654. package/lib/nodes/node/NodeDocumentPositionEnum.js +11 -0
  1655. package/lib/nodes/node/NodeDocumentPositionEnum.js.map +1 -0
  1656. package/lib/nodes/node/NodeList.d.ts +82 -0
  1657. package/lib/nodes/node/NodeList.d.ts.map +1 -0
  1658. package/lib/nodes/node/NodeList.js +192 -0
  1659. package/lib/nodes/node/NodeList.js.map +1 -0
  1660. package/lib/nodes/node/NodeTypeEnum.d.ts +13 -0
  1661. package/lib/nodes/node/NodeTypeEnum.d.ts.map +1 -0
  1662. package/lib/nodes/node/NodeTypeEnum.js +14 -0
  1663. package/lib/nodes/node/NodeTypeEnum.js.map +1 -0
  1664. package/lib/nodes/node/NodeUtility.d.ts +85 -0
  1665. package/lib/nodes/node/NodeUtility.d.ts.map +1 -0
  1666. package/lib/nodes/node/NodeUtility.js +253 -0
  1667. package/lib/nodes/node/NodeUtility.js.map +1 -0
  1668. package/lib/nodes/node/TNodeListListener.d.ts +2 -0
  1669. package/lib/nodes/node/TNodeListListener.d.ts.map +1 -0
  1670. package/lib/nodes/node/TNodeListListener.js +2 -0
  1671. package/lib/nodes/node/TNodeListListener.js.map +1 -0
  1672. package/lib/nodes/parent-node/IParentNode.d.ts +82 -0
  1673. package/lib/nodes/parent-node/IParentNode.d.ts.map +1 -0
  1674. package/lib/nodes/parent-node/IParentNode.js +2 -0
  1675. package/lib/nodes/parent-node/IParentNode.js.map +1 -0
  1676. package/lib/nodes/parent-node/ParentNodeUtility.d.ts +74 -0
  1677. package/lib/nodes/parent-node/ParentNodeUtility.d.ts.map +1 -0
  1678. package/lib/nodes/parent-node/ParentNodeUtility.js +233 -0
  1679. package/lib/nodes/parent-node/ParentNodeUtility.js.map +1 -0
  1680. package/lib/nodes/processing-instruction/ProcessingInstruction.d.ts +19 -0
  1681. package/lib/nodes/processing-instruction/ProcessingInstruction.d.ts.map +1 -0
  1682. package/lib/nodes/processing-instruction/ProcessingInstruction.js +21 -0
  1683. package/lib/nodes/processing-instruction/ProcessingInstruction.js.map +1 -0
  1684. package/lib/nodes/shadow-root/ShadowRoot.d.ts +130 -0
  1685. package/lib/nodes/shadow-root/ShadowRoot.d.ts.map +1 -0
  1686. package/lib/nodes/shadow-root/ShadowRoot.js +207 -0
  1687. package/lib/nodes/shadow-root/ShadowRoot.js.map +1 -0
  1688. package/lib/nodes/svg-animate-element/SVGAnimateElement.d.ts +9 -0
  1689. package/lib/nodes/svg-animate-element/SVGAnimateElement.d.ts.map +1 -0
  1690. package/lib/nodes/svg-animate-element/SVGAnimateElement.js +9 -0
  1691. package/lib/nodes/svg-animate-element/SVGAnimateElement.js.map +1 -0
  1692. package/lib/nodes/svg-animate-motion-element/SVGAnimateMotionElement.d.ts +9 -0
  1693. package/lib/nodes/svg-animate-motion-element/SVGAnimateMotionElement.d.ts.map +1 -0
  1694. package/lib/nodes/svg-animate-motion-element/SVGAnimateMotionElement.js +9 -0
  1695. package/lib/nodes/svg-animate-motion-element/SVGAnimateMotionElement.js.map +1 -0
  1696. package/lib/nodes/svg-animate-transform-element/SVGAnimateTransformElement.d.ts +9 -0
  1697. package/lib/nodes/svg-animate-transform-element/SVGAnimateTransformElement.d.ts.map +1 -0
  1698. package/lib/nodes/svg-animate-transform-element/SVGAnimateTransformElement.js +9 -0
  1699. package/lib/nodes/svg-animate-transform-element/SVGAnimateTransformElement.js.map +1 -0
  1700. package/lib/nodes/svg-animation-element/SVGAnimationElement.d.ts +38 -0
  1701. package/lib/nodes/svg-animation-element/SVGAnimationElement.d.ts.map +1 -0
  1702. package/lib/nodes/svg-animation-element/SVGAnimationElement.js +73 -0
  1703. package/lib/nodes/svg-animation-element/SVGAnimationElement.js.map +1 -0
  1704. package/lib/nodes/svg-circle-element/SVGCircleElement.d.ts +32 -0
  1705. package/lib/nodes/svg-circle-element/SVGCircleElement.d.ts.map +1 -0
  1706. package/lib/nodes/svg-circle-element/SVGCircleElement.js +57 -0
  1707. package/lib/nodes/svg-circle-element/SVGCircleElement.js.map +1 -0
  1708. package/lib/nodes/svg-clip-path-element/SVGClipPathElement.d.ts +18 -0
  1709. package/lib/nodes/svg-clip-path-element/SVGClipPathElement.d.ts.map +1 -0
  1710. package/lib/nodes/svg-clip-path-element/SVGClipPathElement.js +29 -0
  1711. package/lib/nodes/svg-clip-path-element/SVGClipPathElement.js.map +1 -0
  1712. package/lib/nodes/svg-component-transfer-function-element/SVGComponentTransferFunctionElement.d.ts +68 -0
  1713. package/lib/nodes/svg-component-transfer-function-element/SVGComponentTransferFunctionElement.d.ts.map +1 -0
  1714. package/lib/nodes/svg-component-transfer-function-element/SVGComponentTransferFunctionElement.js +131 -0
  1715. package/lib/nodes/svg-component-transfer-function-element/SVGComponentTransferFunctionElement.js.map +1 -0
  1716. package/lib/nodes/svg-defs-element/SVGDefsElement.d.ts +9 -0
  1717. package/lib/nodes/svg-defs-element/SVGDefsElement.d.ts.map +1 -0
  1718. package/lib/nodes/svg-defs-element/SVGDefsElement.js +9 -0
  1719. package/lib/nodes/svg-defs-element/SVGDefsElement.js.map +1 -0
  1720. package/lib/nodes/svg-desc-element/SVGDescElement.d.ts +9 -0
  1721. package/lib/nodes/svg-desc-element/SVGDescElement.d.ts.map +1 -0
  1722. package/lib/nodes/svg-desc-element/SVGDescElement.js +9 -0
  1723. package/lib/nodes/svg-desc-element/SVGDescElement.js.map +1 -0
  1724. package/lib/nodes/svg-element/SVGElement.d.ts +239 -0
  1725. package/lib/nodes/svg-element/SVGElement.d.ts.map +1 -0
  1726. package/lib/nodes/svg-element/SVGElement.js +632 -0
  1727. package/lib/nodes/svg-element/SVGElement.js.map +1 -0
  1728. package/lib/nodes/svg-ellipse-element/SVGEllipseElement.d.ts +39 -0
  1729. package/lib/nodes/svg-ellipse-element/SVGEllipseElement.d.ts.map +1 -0
  1730. package/lib/nodes/svg-ellipse-element/SVGEllipseElement.js +72 -0
  1731. package/lib/nodes/svg-ellipse-element/SVGEllipseElement.js.map +1 -0
  1732. package/lib/nodes/svg-fe-blend-element/SVGFEBlendElement.d.ts +79 -0
  1733. package/lib/nodes/svg-fe-blend-element/SVGFEBlendElement.d.ts.map +1 -0
  1734. package/lib/nodes/svg-fe-blend-element/SVGFEBlendElement.js +156 -0
  1735. package/lib/nodes/svg-fe-blend-element/SVGFEBlendElement.js.map +1 -0
  1736. package/lib/nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.d.ts +82 -0
  1737. package/lib/nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.d.ts.map +1 -0
  1738. package/lib/nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.js +158 -0
  1739. package/lib/nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.js.map +1 -0
  1740. package/lib/nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.d.ts +54 -0
  1741. package/lib/nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.d.ts.map +1 -0
  1742. package/lib/nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.js +103 -0
  1743. package/lib/nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.js.map +1 -0
  1744. package/lib/nodes/svg-fe-composite-element/SVGFECompositeElement.d.ts +77 -0
  1745. package/lib/nodes/svg-fe-composite-element/SVGFECompositeElement.d.ts.map +1 -0
  1746. package/lib/nodes/svg-fe-composite-element/SVGFECompositeElement.js +145 -0
  1747. package/lib/nodes/svg-fe-composite-element/SVGFECompositeElement.js.map +1 -0
  1748. package/lib/nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.d.ts +140 -0
  1749. package/lib/nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.d.ts.map +1 -0
  1750. package/lib/nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.js +280 -0
  1751. package/lib/nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.js.map +1 -0
  1752. package/lib/nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.d.ts +83 -0
  1753. package/lib/nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.d.ts.map +1 -0
  1754. package/lib/nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.js +164 -0
  1755. package/lib/nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.js.map +1 -0
  1756. package/lib/nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.d.ts +89 -0
  1757. package/lib/nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.d.ts.map +1 -0
  1758. package/lib/nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.js +175 -0
  1759. package/lib/nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.js.map +1 -0
  1760. package/lib/nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.d.ts +25 -0
  1761. package/lib/nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.d.ts.map +1 -0
  1762. package/lib/nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.js +42 -0
  1763. package/lib/nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.js.map +1 -0
  1764. package/lib/nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.d.ts +90 -0
  1765. package/lib/nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.d.ts.map +1 -0
  1766. package/lib/nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.js +176 -0
  1767. package/lib/nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.js.map +1 -0
  1768. package/lib/nodes/svg-fe-flood-element/SVGFEFloodElement.d.ts +47 -0
  1769. package/lib/nodes/svg-fe-flood-element/SVGFEFloodElement.d.ts.map +1 -0
  1770. package/lib/nodes/svg-fe-flood-element/SVGFEFloodElement.js +88 -0
  1771. package/lib/nodes/svg-fe-flood-element/SVGFEFloodElement.js.map +1 -0
  1772. package/lib/nodes/svg-fe-func-a-element/SVGFEFuncAElement.d.ts +9 -0
  1773. package/lib/nodes/svg-fe-func-a-element/SVGFEFuncAElement.d.ts.map +1 -0
  1774. package/lib/nodes/svg-fe-func-a-element/SVGFEFuncAElement.js +9 -0
  1775. package/lib/nodes/svg-fe-func-a-element/SVGFEFuncAElement.js.map +1 -0
  1776. package/lib/nodes/svg-fe-func-b-element/SVGFEFuncBElement.d.ts +9 -0
  1777. package/lib/nodes/svg-fe-func-b-element/SVGFEFuncBElement.d.ts.map +1 -0
  1778. package/lib/nodes/svg-fe-func-b-element/SVGFEFuncBElement.js +9 -0
  1779. package/lib/nodes/svg-fe-func-b-element/SVGFEFuncBElement.js.map +1 -0
  1780. package/lib/nodes/svg-fe-func-g-element/SVGFEFuncGElement.d.ts +9 -0
  1781. package/lib/nodes/svg-fe-func-g-element/SVGFEFuncGElement.d.ts.map +1 -0
  1782. package/lib/nodes/svg-fe-func-g-element/SVGFEFuncGElement.js +9 -0
  1783. package/lib/nodes/svg-fe-func-g-element/SVGFEFuncGElement.js.map +1 -0
  1784. package/lib/nodes/svg-fe-func-r-element/SVGFEFuncRElement.d.ts +9 -0
  1785. package/lib/nodes/svg-fe-func-r-element/SVGFEFuncRElement.d.ts.map +1 -0
  1786. package/lib/nodes/svg-fe-func-r-element/SVGFEFuncRElement.js +9 -0
  1787. package/lib/nodes/svg-fe-func-r-element/SVGFEFuncRElement.js.map +1 -0
  1788. package/lib/nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.d.ts +88 -0
  1789. package/lib/nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.d.ts.map +1 -0
  1790. package/lib/nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.js +167 -0
  1791. package/lib/nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.js.map +1 -0
  1792. package/lib/nodes/svg-fe-image-element/SVGFEImageElement.d.ts +75 -0
  1793. package/lib/nodes/svg-fe-image-element/SVGFEImageElement.d.ts.map +1 -0
  1794. package/lib/nodes/svg-fe-image-element/SVGFEImageElement.js +136 -0
  1795. package/lib/nodes/svg-fe-image-element/SVGFEImageElement.js.map +1 -0
  1796. package/lib/nodes/svg-fe-merge-element/SVGFEMergeElement.d.ts +47 -0
  1797. package/lib/nodes/svg-fe-merge-element/SVGFEMergeElement.d.ts.map +1 -0
  1798. package/lib/nodes/svg-fe-merge-element/SVGFEMergeElement.js +88 -0
  1799. package/lib/nodes/svg-fe-merge-element/SVGFEMergeElement.js.map +1 -0
  1800. package/lib/nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.d.ts +18 -0
  1801. package/lib/nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.d.ts.map +1 -0
  1802. package/lib/nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.js +27 -0
  1803. package/lib/nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.js.map +1 -0
  1804. package/lib/nodes/svg-fe-morphology-element/SVGFEMorphologyElement.d.ts +80 -0
  1805. package/lib/nodes/svg-fe-morphology-element/SVGFEMorphologyElement.d.ts.map +1 -0
  1806. package/lib/nodes/svg-fe-morphology-element/SVGFEMorphologyElement.js +156 -0
  1807. package/lib/nodes/svg-fe-morphology-element/SVGFEMorphologyElement.js.map +1 -0
  1808. package/lib/nodes/svg-fe-offset-element/SVGFEOffsetElement.d.ts +69 -0
  1809. package/lib/nodes/svg-fe-offset-element/SVGFEOffsetElement.d.ts.map +1 -0
  1810. package/lib/nodes/svg-fe-offset-element/SVGFEOffsetElement.js +134 -0
  1811. package/lib/nodes/svg-fe-offset-element/SVGFEOffsetElement.js.map +1 -0
  1812. package/lib/nodes/svg-fe-point-light-element/SVGFEPointLightElement.d.ts +32 -0
  1813. package/lib/nodes/svg-fe-point-light-element/SVGFEPointLightElement.d.ts.map +1 -0
  1814. package/lib/nodes/svg-fe-point-light-element/SVGFEPointLightElement.js +57 -0
  1815. package/lib/nodes/svg-fe-point-light-element/SVGFEPointLightElement.js.map +1 -0
  1816. package/lib/nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.d.ts +90 -0
  1817. package/lib/nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.d.ts.map +1 -0
  1818. package/lib/nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.js +182 -0
  1819. package/lib/nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.js.map +1 -0
  1820. package/lib/nodes/svg-fe-spot-light-element/SVGFESpotLightElement.d.ts +67 -0
  1821. package/lib/nodes/svg-fe-spot-light-element/SVGFESpotLightElement.d.ts.map +1 -0
  1822. package/lib/nodes/svg-fe-spot-light-element/SVGFESpotLightElement.js +133 -0
  1823. package/lib/nodes/svg-fe-spot-light-element/SVGFESpotLightElement.js.map +1 -0
  1824. package/lib/nodes/svg-fe-tile-element/SVGFETileElement.d.ts +54 -0
  1825. package/lib/nodes/svg-fe-tile-element/SVGFETileElement.d.ts.map +1 -0
  1826. package/lib/nodes/svg-fe-tile-element/SVGFETileElement.js +103 -0
  1827. package/lib/nodes/svg-fe-tile-element/SVGFETileElement.js.map +1 -0
  1828. package/lib/nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.d.ts +98 -0
  1829. package/lib/nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.d.ts.map +1 -0
  1830. package/lib/nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.js +192 -0
  1831. package/lib/nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.js.map +1 -0
  1832. package/lib/nodes/svg-filter-element/SVGFilterElement.d.ts +62 -0
  1833. package/lib/nodes/svg-filter-element/SVGFilterElement.d.ts.map +1 -0
  1834. package/lib/nodes/svg-filter-element/SVGFilterElement.js +123 -0
  1835. package/lib/nodes/svg-filter-element/SVGFilterElement.js.map +1 -0
  1836. package/lib/nodes/svg-foreign-object-element/SVGForeignObjectElement.d.ts +39 -0
  1837. package/lib/nodes/svg-foreign-object-element/SVGForeignObjectElement.d.ts.map +1 -0
  1838. package/lib/nodes/svg-foreign-object-element/SVGForeignObjectElement.js +72 -0
  1839. package/lib/nodes/svg-foreign-object-element/SVGForeignObjectElement.js.map +1 -0
  1840. package/lib/nodes/svg-g-element/SVGGElement.d.ts +9 -0
  1841. package/lib/nodes/svg-g-element/SVGGElement.d.ts.map +1 -0
  1842. package/lib/nodes/svg-g-element/SVGGElement.js +9 -0
  1843. package/lib/nodes/svg-g-element/SVGGElement.js.map +1 -0
  1844. package/lib/nodes/svg-geometry-element/SVGGeometryElement.d.ts +54 -0
  1845. package/lib/nodes/svg-geometry-element/SVGGeometryElement.d.ts.map +1 -0
  1846. package/lib/nodes/svg-geometry-element/SVGGeometryElement.js +81 -0
  1847. package/lib/nodes/svg-geometry-element/SVGGeometryElement.js.map +1 -0
  1848. package/lib/nodes/svg-gradient-element/SVGGradientElement.d.ts +45 -0
  1849. package/lib/nodes/svg-gradient-element/SVGGradientElement.d.ts.map +1 -0
  1850. package/lib/nodes/svg-gradient-element/SVGGradientElement.js +83 -0
  1851. package/lib/nodes/svg-gradient-element/SVGGradientElement.js.map +1 -0
  1852. package/lib/nodes/svg-graphics-element/SVGGraphicsElement.d.ts +60 -0
  1853. package/lib/nodes/svg-graphics-element/SVGGraphicsElement.d.ts.map +1 -0
  1854. package/lib/nodes/svg-graphics-element/SVGGraphicsElement.js +106 -0
  1855. package/lib/nodes/svg-graphics-element/SVGGraphicsElement.js.map +1 -0
  1856. package/lib/nodes/svg-image-element/SVGImageElement.d.ts +85 -0
  1857. package/lib/nodes/svg-image-element/SVGImageElement.d.ts.map +1 -0
  1858. package/lib/nodes/svg-image-element/SVGImageElement.js +153 -0
  1859. package/lib/nodes/svg-image-element/SVGImageElement.js.map +1 -0
  1860. package/lib/nodes/svg-line-element/SVGLineElement.d.ts +39 -0
  1861. package/lib/nodes/svg-line-element/SVGLineElement.d.ts.map +1 -0
  1862. package/lib/nodes/svg-line-element/SVGLineElement.js +72 -0
  1863. package/lib/nodes/svg-line-element/SVGLineElement.js.map +1 -0
  1864. package/lib/nodes/svg-linear-gradient-element/SVGLinearGradientElement.d.ts +39 -0
  1865. package/lib/nodes/svg-linear-gradient-element/SVGLinearGradientElement.d.ts.map +1 -0
  1866. package/lib/nodes/svg-linear-gradient-element/SVGLinearGradientElement.js +72 -0
  1867. package/lib/nodes/svg-linear-gradient-element/SVGLinearGradientElement.js.map +1 -0
  1868. package/lib/nodes/svg-m-path-element/SVGMPathElement.d.ts +18 -0
  1869. package/lib/nodes/svg-m-path-element/SVGMPathElement.d.ts.map +1 -0
  1870. package/lib/nodes/svg-m-path-element/SVGMPathElement.js +27 -0
  1871. package/lib/nodes/svg-m-path-element/SVGMPathElement.js.map +1 -0
  1872. package/lib/nodes/svg-marker-element/SVGMarkerElement.d.ts +98 -0
  1873. package/lib/nodes/svg-marker-element/SVGMarkerElement.d.ts.map +1 -0
  1874. package/lib/nodes/svg-marker-element/SVGMarkerElement.js +180 -0
  1875. package/lib/nodes/svg-marker-element/SVGMarkerElement.js.map +1 -0
  1876. package/lib/nodes/svg-mask-element/SVGMaskElement.d.ts +54 -0
  1877. package/lib/nodes/svg-mask-element/SVGMaskElement.d.ts.map +1 -0
  1878. package/lib/nodes/svg-mask-element/SVGMaskElement.js +107 -0
  1879. package/lib/nodes/svg-mask-element/SVGMaskElement.js.map +1 -0
  1880. package/lib/nodes/svg-metadata-element/SVGMetadataElement.d.ts +9 -0
  1881. package/lib/nodes/svg-metadata-element/SVGMetadataElement.d.ts.map +1 -0
  1882. package/lib/nodes/svg-metadata-element/SVGMetadataElement.js +9 -0
  1883. package/lib/nodes/svg-metadata-element/SVGMetadataElement.js.map +1 -0
  1884. package/lib/nodes/svg-path-element/SVGPathElement.d.ts +9 -0
  1885. package/lib/nodes/svg-path-element/SVGPathElement.d.ts.map +1 -0
  1886. package/lib/nodes/svg-path-element/SVGPathElement.js +9 -0
  1887. package/lib/nodes/svg-path-element/SVGPathElement.js.map +1 -0
  1888. package/lib/nodes/svg-pattern-element/SVGPatternElement.d.ts +70 -0
  1889. package/lib/nodes/svg-pattern-element/SVGPatternElement.d.ts.map +1 -0
  1890. package/lib/nodes/svg-pattern-element/SVGPatternElement.js +139 -0
  1891. package/lib/nodes/svg-pattern-element/SVGPatternElement.js.map +1 -0
  1892. package/lib/nodes/svg-polygon-element/SVGPolygonElement.d.ts +25 -0
  1893. package/lib/nodes/svg-polygon-element/SVGPolygonElement.d.ts.map +1 -0
  1894. package/lib/nodes/svg-polygon-element/SVGPolygonElement.js +43 -0
  1895. package/lib/nodes/svg-polygon-element/SVGPolygonElement.js.map +1 -0
  1896. package/lib/nodes/svg-polyline-element/SVGPolylineElement.d.ts +25 -0
  1897. package/lib/nodes/svg-polyline-element/SVGPolylineElement.d.ts.map +1 -0
  1898. package/lib/nodes/svg-polyline-element/SVGPolylineElement.js +43 -0
  1899. package/lib/nodes/svg-polyline-element/SVGPolylineElement.js.map +1 -0
  1900. package/lib/nodes/svg-radial-gradient-element/SVGRadialGradientElement.d.ts +46 -0
  1901. package/lib/nodes/svg-radial-gradient-element/SVGRadialGradientElement.d.ts.map +1 -0
  1902. package/lib/nodes/svg-radial-gradient-element/SVGRadialGradientElement.js +87 -0
  1903. package/lib/nodes/svg-radial-gradient-element/SVGRadialGradientElement.js.map +1 -0
  1904. package/lib/nodes/svg-rect-element/SVGRectElement.d.ts +53 -0
  1905. package/lib/nodes/svg-rect-element/SVGRectElement.d.ts.map +1 -0
  1906. package/lib/nodes/svg-rect-element/SVGRectElement.js +102 -0
  1907. package/lib/nodes/svg-rect-element/SVGRectElement.js.map +1 -0
  1908. package/lib/nodes/svg-script-element/SVGScriptElement.d.ts +30 -0
  1909. package/lib/nodes/svg-script-element/SVGScriptElement.d.ts.map +1 -0
  1910. package/lib/nodes/svg-script-element/SVGScriptElement.js +43 -0
  1911. package/lib/nodes/svg-script-element/SVGScriptElement.js.map +1 -0
  1912. package/lib/nodes/svg-set-element/SVGSetElement.d.ts +9 -0
  1913. package/lib/nodes/svg-set-element/SVGSetElement.d.ts.map +1 -0
  1914. package/lib/nodes/svg-set-element/SVGSetElement.js +9 -0
  1915. package/lib/nodes/svg-set-element/SVGSetElement.js.map +1 -0
  1916. package/lib/nodes/svg-stop-element/SVGStopElement.d.ts +18 -0
  1917. package/lib/nodes/svg-stop-element/SVGStopElement.d.ts.map +1 -0
  1918. package/lib/nodes/svg-stop-element/SVGStopElement.js +27 -0
  1919. package/lib/nodes/svg-stop-element/SVGStopElement.js.map +1 -0
  1920. package/lib/nodes/svg-style-element/SVGStyleElement.d.ts +82 -0
  1921. package/lib/nodes/svg-style-element/SVGStyleElement.d.ts.map +1 -0
  1922. package/lib/nodes/svg-style-element/SVGStyleElement.js +117 -0
  1923. package/lib/nodes/svg-style-element/SVGStyleElement.js.map +1 -0
  1924. package/lib/nodes/svg-svg-element/SVGSVGElement.d.ts +291 -0
  1925. package/lib/nodes/svg-svg-element/SVGSVGElement.d.ts.map +1 -0
  1926. package/lib/nodes/svg-svg-element/SVGSVGElement.js +440 -0
  1927. package/lib/nodes/svg-svg-element/SVGSVGElement.js.map +1 -0
  1928. package/lib/nodes/svg-switch-element/SVGSwitchElement.d.ts +9 -0
  1929. package/lib/nodes/svg-switch-element/SVGSwitchElement.d.ts.map +1 -0
  1930. package/lib/nodes/svg-switch-element/SVGSwitchElement.js +9 -0
  1931. package/lib/nodes/svg-switch-element/SVGSwitchElement.js.map +1 -0
  1932. package/lib/nodes/svg-symbol-element/SVGSymbolElement.d.ts +9 -0
  1933. package/lib/nodes/svg-symbol-element/SVGSymbolElement.d.ts.map +1 -0
  1934. package/lib/nodes/svg-symbol-element/SVGSymbolElement.js +9 -0
  1935. package/lib/nodes/svg-symbol-element/SVGSymbolElement.js.map +1 -0
  1936. package/lib/nodes/svg-t-span-element/SVGTSpanElement.d.ts +9 -0
  1937. package/lib/nodes/svg-t-span-element/SVGTSpanElement.d.ts.map +1 -0
  1938. package/lib/nodes/svg-t-span-element/SVGTSpanElement.js +9 -0
  1939. package/lib/nodes/svg-t-span-element/SVGTSpanElement.js.map +1 -0
  1940. package/lib/nodes/svg-text-content-element/SVGTextContentElement.d.ts +80 -0
  1941. package/lib/nodes/svg-text-content-element/SVGTextContentElement.d.ts.map +1 -0
  1942. package/lib/nodes/svg-text-content-element/SVGTextContentElement.js +124 -0
  1943. package/lib/nodes/svg-text-content-element/SVGTextContentElement.js.map +1 -0
  1944. package/lib/nodes/svg-text-element/SVGTextElement.d.ts +9 -0
  1945. package/lib/nodes/svg-text-element/SVGTextElement.d.ts.map +1 -0
  1946. package/lib/nodes/svg-text-element/SVGTextElement.js +9 -0
  1947. package/lib/nodes/svg-text-element/SVGTextElement.js.map +1 -0
  1948. package/lib/nodes/svg-text-path-element/SVGTextPathElement.d.ts +47 -0
  1949. package/lib/nodes/svg-text-path-element/SVGTextPathElement.d.ts.map +1 -0
  1950. package/lib/nodes/svg-text-path-element/SVGTextPathElement.js +85 -0
  1951. package/lib/nodes/svg-text-path-element/SVGTextPathElement.js.map +1 -0
  1952. package/lib/nodes/svg-text-positioning-element/SVGTextPositioningElement.d.ts +47 -0
  1953. package/lib/nodes/svg-text-positioning-element/SVGTextPositioningElement.d.ts.map +1 -0
  1954. package/lib/nodes/svg-text-positioning-element/SVGTextPositioningElement.js +88 -0
  1955. package/lib/nodes/svg-text-positioning-element/SVGTextPositioningElement.js.map +1 -0
  1956. package/lib/nodes/svg-title-element/SVGTitleElement.d.ts +9 -0
  1957. package/lib/nodes/svg-title-element/SVGTitleElement.d.ts.map +1 -0
  1958. package/lib/nodes/svg-title-element/SVGTitleElement.js +9 -0
  1959. package/lib/nodes/svg-title-element/SVGTitleElement.js.map +1 -0
  1960. package/lib/nodes/svg-use-element/SVGUseElement.d.ts +47 -0
  1961. package/lib/nodes/svg-use-element/SVGUseElement.d.ts.map +1 -0
  1962. package/lib/nodes/svg-use-element/SVGUseElement.js +88 -0
  1963. package/lib/nodes/svg-use-element/SVGUseElement.js.map +1 -0
  1964. package/lib/nodes/svg-view-element/SVGViewElement.d.ts +9 -0
  1965. package/lib/nodes/svg-view-element/SVGViewElement.d.ts.map +1 -0
  1966. package/lib/nodes/svg-view-element/SVGViewElement.js +9 -0
  1967. package/lib/nodes/svg-view-element/SVGViewElement.js.map +1 -0
  1968. package/lib/nodes/text/Text.d.ts +62 -0
  1969. package/lib/nodes/text/Text.d.ts.map +1 -0
  1970. package/lib/nodes/text/Text.js +119 -0
  1971. package/lib/nodes/text/Text.js.map +1 -0
  1972. package/lib/nodes/xml-document/XMLDocument.d.ts +9 -0
  1973. package/lib/nodes/xml-document/XMLDocument.d.ts.map +1 -0
  1974. package/lib/nodes/xml-document/XMLDocument.js +10 -0
  1975. package/lib/nodes/xml-document/XMLDocument.js.map +1 -0
  1976. package/lib/permissions/PermissionNameEnum.d.ts +32 -0
  1977. package/lib/permissions/PermissionNameEnum.d.ts.map +1 -0
  1978. package/lib/permissions/PermissionNameEnum.js +33 -0
  1979. package/lib/permissions/PermissionNameEnum.js.map +1 -0
  1980. package/lib/permissions/PermissionStatus.d.ts +19 -0
  1981. package/lib/permissions/PermissionStatus.d.ts.map +1 -0
  1982. package/lib/permissions/PermissionStatus.js +21 -0
  1983. package/lib/permissions/PermissionStatus.js.map +1 -0
  1984. package/lib/permissions/Permissions.d.ts +32 -0
  1985. package/lib/permissions/Permissions.d.ts.map +1 -0
  1986. package/lib/permissions/Permissions.js +43 -0
  1987. package/lib/permissions/Permissions.js.map +1 -0
  1988. package/lib/query-selector/ISelectorAttribute.d.ts +8 -0
  1989. package/lib/query-selector/ISelectorAttribute.d.ts.map +1 -0
  1990. package/lib/query-selector/ISelectorAttribute.js +2 -0
  1991. package/lib/query-selector/ISelectorAttribute.js.map +1 -0
  1992. package/lib/query-selector/ISelectorMatch.d.ts +4 -0
  1993. package/lib/query-selector/ISelectorMatch.d.ts.map +1 -0
  1994. package/lib/query-selector/ISelectorMatch.js +2 -0
  1995. package/lib/query-selector/ISelectorMatch.js.map +1 -0
  1996. package/lib/query-selector/ISelectorPseudo.d.ts +8 -0
  1997. package/lib/query-selector/ISelectorPseudo.d.ts.map +1 -0
  1998. package/lib/query-selector/ISelectorPseudo.js +2 -0
  1999. package/lib/query-selector/ISelectorPseudo.js.map +1 -0
  2000. package/lib/query-selector/QuerySelector.d.ts +111 -0
  2001. package/lib/query-selector/QuerySelector.d.ts.map +1 -0
  2002. package/lib/query-selector/QuerySelector.js +426 -0
  2003. package/lib/query-selector/QuerySelector.js.map +1 -0
  2004. package/lib/query-selector/SelectorCombinatorEnum.d.ts +9 -0
  2005. package/lib/query-selector/SelectorCombinatorEnum.d.ts.map +1 -0
  2006. package/lib/query-selector/SelectorCombinatorEnum.js +10 -0
  2007. package/lib/query-selector/SelectorCombinatorEnum.js.map +1 -0
  2008. package/lib/query-selector/SelectorItem.d.ts +97 -0
  2009. package/lib/query-selector/SelectorItem.d.ts.map +1 -0
  2010. package/lib/query-selector/SelectorItem.js +435 -0
  2011. package/lib/query-selector/SelectorItem.js.map +1 -0
  2012. package/lib/query-selector/SelectorParser.d.ts +93 -0
  2013. package/lib/query-selector/SelectorParser.d.ts.map +1 -0
  2014. package/lib/query-selector/SelectorParser.js +594 -0
  2015. package/lib/query-selector/SelectorParser.js.map +1 -0
  2016. package/lib/range/IRangeBoundaryPoint.d.ts +9 -0
  2017. package/lib/range/IRangeBoundaryPoint.d.ts.map +1 -0
  2018. package/lib/range/IRangeBoundaryPoint.js +2 -0
  2019. package/lib/range/IRangeBoundaryPoint.js.map +1 -0
  2020. package/lib/range/Range.d.ts +254 -0
  2021. package/lib/range/Range.d.ts.map +1 -0
  2022. package/lib/range/Range.js +834 -0
  2023. package/lib/range/Range.js.map +1 -0
  2024. package/lib/range/RangeHowEnum.d.ts +8 -0
  2025. package/lib/range/RangeHowEnum.d.ts.map +1 -0
  2026. package/lib/range/RangeHowEnum.js +9 -0
  2027. package/lib/range/RangeHowEnum.js.map +1 -0
  2028. package/lib/range/RangeUtility.d.ts +47 -0
  2029. package/lib/range/RangeUtility.d.ts.map +1 -0
  2030. package/lib/range/RangeUtility.js +88 -0
  2031. package/lib/range/RangeUtility.js.map +1 -0
  2032. package/lib/resize-observer/ResizeObserver.d.ts +26 -0
  2033. package/lib/resize-observer/ResizeObserver.d.ts.map +1 -0
  2034. package/lib/resize-observer/ResizeObserver.js +32 -0
  2035. package/lib/resize-observer/ResizeObserver.js.map +1 -0
  2036. package/lib/screen/Screen.d.ts +17 -0
  2037. package/lib/screen/Screen.d.ts.map +1 -0
  2038. package/lib/screen/Screen.js +17 -0
  2039. package/lib/screen/Screen.js.map +1 -0
  2040. package/lib/screen/ScreenDetailed.d.ts +17 -0
  2041. package/lib/screen/ScreenDetailed.d.ts.map +1 -0
  2042. package/lib/screen/ScreenDetailed.js +17 -0
  2043. package/lib/screen/ScreenDetailed.js.map +1 -0
  2044. package/lib/screen/ScreenDetails.d.ts +19 -0
  2045. package/lib/screen/ScreenDetails.d.ts.map +1 -0
  2046. package/lib/screen/ScreenDetails.js +24 -0
  2047. package/lib/screen/ScreenDetails.js.map +1 -0
  2048. package/lib/selection/Selection.d.ts +210 -0
  2049. package/lib/selection/Selection.d.ts.map +1 -0
  2050. package/lib/selection/Selection.js +446 -0
  2051. package/lib/selection/Selection.js.map +1 -0
  2052. package/lib/selection/SelectionDirectionEnum.d.ts +7 -0
  2053. package/lib/selection/SelectionDirectionEnum.d.ts.map +1 -0
  2054. package/lib/selection/SelectionDirectionEnum.js +8 -0
  2055. package/lib/selection/SelectionDirectionEnum.js.map +1 -0
  2056. package/lib/storage/Storage.d.ts +53 -0
  2057. package/lib/storage/Storage.d.ts.map +1 -0
  2058. package/lib/storage/Storage.js +132 -0
  2059. package/lib/storage/Storage.js.map +1 -0
  2060. package/lib/svg/SVGAngle.d.ts +77 -0
  2061. package/lib/svg/SVGAngle.d.ts.map +1 -0
  2062. package/lib/svg/SVGAngle.js +251 -0
  2063. package/lib/svg/SVGAngle.js.map +1 -0
  2064. package/lib/svg/SVGAngleTypeEnum.d.ts +9 -0
  2065. package/lib/svg/SVGAngleTypeEnum.d.ts.map +1 -0
  2066. package/lib/svg/SVGAngleTypeEnum.js +10 -0
  2067. package/lib/svg/SVGAngleTypeEnum.js.map +1 -0
  2068. package/lib/svg/SVGAnimatedAngle.d.ts +53 -0
  2069. package/lib/svg/SVGAnimatedAngle.d.ts.map +1 -0
  2070. package/lib/svg/SVGAnimatedAngle.js +77 -0
  2071. package/lib/svg/SVGAnimatedAngle.js.map +1 -0
  2072. package/lib/svg/SVGAnimatedBoolean.d.ts +50 -0
  2073. package/lib/svg/SVGAnimatedBoolean.d.ts.map +1 -0
  2074. package/lib/svg/SVGAnimatedBoolean.js +63 -0
  2075. package/lib/svg/SVGAnimatedBoolean.js.map +1 -0
  2076. package/lib/svg/SVGAnimatedEnumeration.d.ts +56 -0
  2077. package/lib/svg/SVGAnimatedEnumeration.d.ts.map +1 -0
  2078. package/lib/svg/SVGAnimatedEnumeration.js +94 -0
  2079. package/lib/svg/SVGAnimatedEnumeration.js.map +1 -0
  2080. package/lib/svg/SVGAnimatedInteger.d.ts +50 -0
  2081. package/lib/svg/SVGAnimatedInteger.d.ts.map +1 -0
  2082. package/lib/svg/SVGAnimatedInteger.js +74 -0
  2083. package/lib/svg/SVGAnimatedInteger.js.map +1 -0
  2084. package/lib/svg/SVGAnimatedLength.d.ts +53 -0
  2085. package/lib/svg/SVGAnimatedLength.d.ts.map +1 -0
  2086. package/lib/svg/SVGAnimatedLength.js +77 -0
  2087. package/lib/svg/SVGAnimatedLength.js.map +1 -0
  2088. package/lib/svg/SVGAnimatedLengthList.d.ts +53 -0
  2089. package/lib/svg/SVGAnimatedLengthList.d.ts.map +1 -0
  2090. package/lib/svg/SVGAnimatedLengthList.js +78 -0
  2091. package/lib/svg/SVGAnimatedLengthList.js.map +1 -0
  2092. package/lib/svg/SVGAnimatedNumber.d.ts +53 -0
  2093. package/lib/svg/SVGAnimatedNumber.d.ts.map +1 -0
  2094. package/lib/svg/SVGAnimatedNumber.js +77 -0
  2095. package/lib/svg/SVGAnimatedNumber.js.map +1 -0
  2096. package/lib/svg/SVGAnimatedNumberList.d.ts +53 -0
  2097. package/lib/svg/SVGAnimatedNumberList.d.ts.map +1 -0
  2098. package/lib/svg/SVGAnimatedNumberList.js +78 -0
  2099. package/lib/svg/SVGAnimatedNumberList.js.map +1 -0
  2100. package/lib/svg/SVGAnimatedPreserveAspectRatio.d.ts +53 -0
  2101. package/lib/svg/SVGAnimatedPreserveAspectRatio.d.ts.map +1 -0
  2102. package/lib/svg/SVGAnimatedPreserveAspectRatio.js +77 -0
  2103. package/lib/svg/SVGAnimatedPreserveAspectRatio.js.map +1 -0
  2104. package/lib/svg/SVGAnimatedRect.d.ts +53 -0
  2105. package/lib/svg/SVGAnimatedRect.d.ts.map +1 -0
  2106. package/lib/svg/SVGAnimatedRect.js +77 -0
  2107. package/lib/svg/SVGAnimatedRect.js.map +1 -0
  2108. package/lib/svg/SVGAnimatedString.d.ts +50 -0
  2109. package/lib/svg/SVGAnimatedString.d.ts.map +1 -0
  2110. package/lib/svg/SVGAnimatedString.js +66 -0
  2111. package/lib/svg/SVGAnimatedString.js.map +1 -0
  2112. package/lib/svg/SVGAnimatedTransformList.d.ts +53 -0
  2113. package/lib/svg/SVGAnimatedTransformList.d.ts.map +1 -0
  2114. package/lib/svg/SVGAnimatedTransformList.js +78 -0
  2115. package/lib/svg/SVGAnimatedTransformList.js.map +1 -0
  2116. package/lib/svg/SVGLength.d.ts +84 -0
  2117. package/lib/svg/SVGLength.d.ts.map +1 -0
  2118. package/lib/svg/SVGLength.js +309 -0
  2119. package/lib/svg/SVGLength.js.map +1 -0
  2120. package/lib/svg/SVGLengthList.d.ts +102 -0
  2121. package/lib/svg/SVGLengthList.d.ts.map +1 -0
  2122. package/lib/svg/SVGLengthList.js +381 -0
  2123. package/lib/svg/SVGLengthList.js.map +1 -0
  2124. package/lib/svg/SVGLengthTypeEnum.d.ts +15 -0
  2125. package/lib/svg/SVGLengthTypeEnum.d.ts.map +1 -0
  2126. package/lib/svg/SVGLengthTypeEnum.js +16 -0
  2127. package/lib/svg/SVGLengthTypeEnum.js.map +1 -0
  2128. package/lib/svg/SVGMatrix.d.ts +163 -0
  2129. package/lib/svg/SVGMatrix.d.ts.map +1 -0
  2130. package/lib/svg/SVGMatrix.js +362 -0
  2131. package/lib/svg/SVGMatrix.js.map +1 -0
  2132. package/lib/svg/SVGNumber.d.ts +42 -0
  2133. package/lib/svg/SVGNumber.d.ts.map +1 -0
  2134. package/lib/svg/SVGNumber.js +65 -0
  2135. package/lib/svg/SVGNumber.js.map +1 -0
  2136. package/lib/svg/SVGNumberList.d.ts +102 -0
  2137. package/lib/svg/SVGNumberList.d.ts.map +1 -0
  2138. package/lib/svg/SVGNumberList.js +400 -0
  2139. package/lib/svg/SVGNumberList.js.map +1 -0
  2140. package/lib/svg/SVGPoint.d.ts +54 -0
  2141. package/lib/svg/SVGPoint.d.ts.map +1 -0
  2142. package/lib/svg/SVGPoint.js +89 -0
  2143. package/lib/svg/SVGPoint.js.map +1 -0
  2144. package/lib/svg/SVGPointList.d.ts +102 -0
  2145. package/lib/svg/SVGPointList.d.ts.map +1 -0
  2146. package/lib/svg/SVGPointList.js +402 -0
  2147. package/lib/svg/SVGPointList.js.map +1 -0
  2148. package/lib/svg/SVGPreserveAspectRatio.d.ts +70 -0
  2149. package/lib/svg/SVGPreserveAspectRatio.d.ts.map +1 -0
  2150. package/lib/svg/SVGPreserveAspectRatio.js +129 -0
  2151. package/lib/svg/SVGPreserveAspectRatio.js.map +1 -0
  2152. package/lib/svg/SVGPreserveAspectRatioAlignEnum.d.ts +15 -0
  2153. package/lib/svg/SVGPreserveAspectRatioAlignEnum.d.ts.map +1 -0
  2154. package/lib/svg/SVGPreserveAspectRatioAlignEnum.js +16 -0
  2155. package/lib/svg/SVGPreserveAspectRatioAlignEnum.js.map +1 -0
  2156. package/lib/svg/SVGPreserveAspectRatioMeetOrSliceEnum.d.ts +7 -0
  2157. package/lib/svg/SVGPreserveAspectRatioMeetOrSliceEnum.d.ts.map +1 -0
  2158. package/lib/svg/SVGPreserveAspectRatioMeetOrSliceEnum.js +8 -0
  2159. package/lib/svg/SVGPreserveAspectRatioMeetOrSliceEnum.js.map +1 -0
  2160. package/lib/svg/SVGRect.d.ts +78 -0
  2161. package/lib/svg/SVGRect.d.ts.map +1 -0
  2162. package/lib/svg/SVGRect.js +156 -0
  2163. package/lib/svg/SVGRect.js.map +1 -0
  2164. package/lib/svg/SVGStringList.d.ts +101 -0
  2165. package/lib/svg/SVGStringList.d.ts.map +1 -0
  2166. package/lib/svg/SVGStringList.js +326 -0
  2167. package/lib/svg/SVGStringList.js.map +1 -0
  2168. package/lib/svg/SVGTransform.d.ts +98 -0
  2169. package/lib/svg/SVGTransform.d.ts.map +1 -0
  2170. package/lib/svg/SVGTransform.js +278 -0
  2171. package/lib/svg/SVGTransform.js.map +1 -0
  2172. package/lib/svg/SVGTransformList.d.ts +102 -0
  2173. package/lib/svg/SVGTransformList.d.ts.map +1 -0
  2174. package/lib/svg/SVGTransformList.js +405 -0
  2175. package/lib/svg/SVGTransformList.js.map +1 -0
  2176. package/lib/svg/SVGTransformTypeEnum.d.ts +11 -0
  2177. package/lib/svg/SVGTransformTypeEnum.d.ts.map +1 -0
  2178. package/lib/svg/SVGTransformTypeEnum.js +12 -0
  2179. package/lib/svg/SVGTransformTypeEnum.js.map +1 -0
  2180. package/lib/svg/SVGUnitTypes.d.ts +20 -0
  2181. package/lib/svg/SVGUnitTypes.d.ts.map +1 -0
  2182. package/lib/svg/SVGUnitTypes.js +25 -0
  2183. package/lib/svg/SVGUnitTypes.js.map +1 -0
  2184. package/lib/tree-walker/NodeFilter.d.ts +20 -0
  2185. package/lib/tree-walker/NodeFilter.d.ts.map +1 -0
  2186. package/lib/tree-walker/NodeFilter.js +19 -0
  2187. package/lib/tree-walker/NodeFilter.js.map +1 -0
  2188. package/lib/tree-walker/NodeFilterMask.d.ts +16 -0
  2189. package/lib/tree-walker/NodeFilterMask.d.ts.map +1 -0
  2190. package/lib/tree-walker/NodeFilterMask.js +28 -0
  2191. package/lib/tree-walker/NodeFilterMask.js.map +1 -0
  2192. package/lib/tree-walker/NodeIterator.d.ts +50 -0
  2193. package/lib/tree-walker/NodeIterator.d.ts.map +1 -0
  2194. package/lib/tree-walker/NodeIterator.js +77 -0
  2195. package/lib/tree-walker/NodeIterator.js.map +1 -0
  2196. package/lib/tree-walker/TNodeFilter.d.ts +5 -0
  2197. package/lib/tree-walker/TNodeFilter.d.ts.map +1 -0
  2198. package/lib/tree-walker/TNodeFilter.js +2 -0
  2199. package/lib/tree-walker/TNodeFilter.js.map +1 -0
  2200. package/lib/tree-walker/TreeWalker.d.ts +88 -0
  2201. package/lib/tree-walker/TreeWalker.d.ts.map +1 -0
  2202. package/lib/tree-walker/TreeWalker.js +282 -0
  2203. package/lib/tree-walker/TreeWalker.js.map +1 -0
  2204. package/lib/url/URL.d.ts +26 -0
  2205. package/lib/url/URL.d.ts.map +1 -0
  2206. package/lib/url/URL.js +41 -0
  2207. package/lib/url/URL.js.map +1 -0
  2208. package/lib/utilities/AttributeUtility.d.ts +18 -0
  2209. package/lib/utilities/AttributeUtility.d.ts.map +1 -0
  2210. package/lib/utilities/AttributeUtility.js +29 -0
  2211. package/lib/utilities/AttributeUtility.js.map +1 -0
  2212. package/lib/utilities/ClassMethodBinder.d.ts +28 -0
  2213. package/lib/utilities/ClassMethodBinder.d.ts.map +1 -0
  2214. package/lib/utilities/ClassMethodBinder.js +66 -0
  2215. package/lib/utilities/ClassMethodBinder.js.map +1 -0
  2216. package/lib/utilities/StringUtility.d.ts +22 -0
  2217. package/lib/utilities/StringUtility.d.ts.map +1 -0
  2218. package/lib/utilities/StringUtility.js +42 -0
  2219. package/lib/utilities/StringUtility.js.map +1 -0
  2220. package/lib/utilities/XMLEncodeUtility.d.ts +76 -0
  2221. package/lib/utilities/XMLEncodeUtility.d.ts.map +1 -0
  2222. package/lib/utilities/XMLEncodeUtility.js +147 -0
  2223. package/lib/utilities/XMLEncodeUtility.js.map +1 -0
  2224. package/lib/validity-state/ValidityState.d.ts +90 -0
  2225. package/lib/validity-state/ValidityState.d.ts.map +1 -0
  2226. package/lib/validity-state/ValidityState.js +174 -0
  2227. package/lib/validity-state/ValidityState.js.map +1 -0
  2228. package/lib/version.d.ts +5 -0
  2229. package/lib/version.d.ts.map +1 -0
  2230. package/lib/version.js +1 -0
  2231. package/lib/version.js.map +1 -0
  2232. package/lib/web-socket/WebSocket.d.ts +78 -0
  2233. package/lib/web-socket/WebSocket.d.ts.map +1 -0
  2234. package/lib/web-socket/WebSocket.js +341 -0
  2235. package/lib/web-socket/WebSocket.js.map +1 -0
  2236. package/lib/web-socket/WebSocketReadyStateEnum.d.ts +8 -0
  2237. package/lib/web-socket/WebSocketReadyStateEnum.d.ts.map +1 -0
  2238. package/lib/web-socket/WebSocketReadyStateEnum.js +9 -0
  2239. package/lib/web-socket/WebSocketReadyStateEnum.js.map +1 -0
  2240. package/lib/window/BrowserWindow.d.ts +1147 -0
  2241. package/lib/window/BrowserWindow.d.ts.map +1 -0
  2242. package/lib/window/BrowserWindow.js +1664 -0
  2243. package/lib/window/BrowserWindow.js.map +1 -0
  2244. package/lib/window/CrossOriginBrowserWindow.d.ts +85 -0
  2245. package/lib/window/CrossOriginBrowserWindow.d.ts.map +1 -0
  2246. package/lib/window/CrossOriginBrowserWindow.js +120 -0
  2247. package/lib/window/CrossOriginBrowserWindow.js.map +1 -0
  2248. package/lib/window/DetachedWindowAPI.d.ts +94 -0
  2249. package/lib/window/DetachedWindowAPI.d.ts.map +1 -0
  2250. package/lib/window/DetachedWindowAPI.js +116 -0
  2251. package/lib/window/DetachedWindowAPI.js.map +1 -0
  2252. package/lib/window/GlobalWindow.d.ts +79 -0
  2253. package/lib/window/GlobalWindow.d.ts.map +1 -0
  2254. package/lib/window/GlobalWindow.js +85 -0
  2255. package/lib/window/GlobalWindow.js.map +1 -0
  2256. package/lib/window/INodeJSGlobal.d.ts +68 -0
  2257. package/lib/window/INodeJSGlobal.d.ts.map +1 -0
  2258. package/lib/window/INodeJSGlobal.js +2 -0
  2259. package/lib/window/INodeJSGlobal.js.map +1 -0
  2260. package/lib/window/IOptionalTimerLoopsLimit.d.ts +5 -0
  2261. package/lib/window/IOptionalTimerLoopsLimit.d.ts.map +1 -0
  2262. package/lib/window/IOptionalTimerLoopsLimit.js +2 -0
  2263. package/lib/window/IOptionalTimerLoopsLimit.js.map +1 -0
  2264. package/lib/window/IScrollToOptions.d.ts +6 -0
  2265. package/lib/window/IScrollToOptions.d.ts.map +1 -0
  2266. package/lib/window/IScrollToOptions.js +2 -0
  2267. package/lib/window/IScrollToOptions.js.map +1 -0
  2268. package/lib/window/ITimerLoopsLimit.d.ts +5 -0
  2269. package/lib/window/ITimerLoopsLimit.d.ts.map +1 -0
  2270. package/lib/window/ITimerLoopsLimit.js +2 -0
  2271. package/lib/window/ITimerLoopsLimit.js.map +1 -0
  2272. package/lib/window/VMGlobalPropertyScript.d.ts +4 -0
  2273. package/lib/window/VMGlobalPropertyScript.d.ts.map +1 -0
  2274. package/lib/window/VMGlobalPropertyScript.js +59 -0
  2275. package/lib/window/VMGlobalPropertyScript.js.map +1 -0
  2276. package/lib/window/Window.d.ts +36 -0
  2277. package/lib/window/Window.d.ts.map +1 -0
  2278. package/lib/window/Window.js +49 -0
  2279. package/lib/window/Window.js.map +1 -0
  2280. package/lib/window/WindowBrowserContext.d.ts +75 -0
  2281. package/lib/window/WindowBrowserContext.d.ts.map +1 -0
  2282. package/lib/window/WindowBrowserContext.js +94 -0
  2283. package/lib/window/WindowBrowserContext.js.map +1 -0
  2284. package/lib/window/WindowContextClassExtender.d.ts +15 -0
  2285. package/lib/window/WindowContextClassExtender.d.ts.map +1 -0
  2286. package/lib/window/WindowContextClassExtender.js +237 -0
  2287. package/lib/window/WindowContextClassExtender.js.map +1 -0
  2288. package/lib/window/WindowPageOpenUtility.d.ts +30 -0
  2289. package/lib/window/WindowPageOpenUtility.d.ts.map +1 -0
  2290. package/lib/window/WindowPageOpenUtility.js +153 -0
  2291. package/lib/window/WindowPageOpenUtility.js.map +1 -0
  2292. package/lib/xml-http-request/XMLHttpRequest.d.ts +138 -0
  2293. package/lib/xml-http-request/XMLHttpRequest.d.ts.map +1 -0
  2294. package/lib/xml-http-request/XMLHttpRequest.js +464 -0
  2295. package/lib/xml-http-request/XMLHttpRequest.js.map +1 -0
  2296. package/lib/xml-http-request/XMLHttpRequestEventTarget.d.ts +25 -0
  2297. package/lib/xml-http-request/XMLHttpRequestEventTarget.d.ts.map +1 -0
  2298. package/lib/xml-http-request/XMLHttpRequestEventTarget.js +53 -0
  2299. package/lib/xml-http-request/XMLHttpRequestEventTarget.js.map +1 -0
  2300. package/lib/xml-http-request/XMLHttpRequestReadyStateEnum.d.ts +9 -0
  2301. package/lib/xml-http-request/XMLHttpRequestReadyStateEnum.d.ts.map +1 -0
  2302. package/lib/xml-http-request/XMLHttpRequestReadyStateEnum.js +10 -0
  2303. package/lib/xml-http-request/XMLHttpRequestReadyStateEnum.js.map +1 -0
  2304. package/lib/xml-http-request/XMLHttpRequestResponseDataParser.d.ts +26 -0
  2305. package/lib/xml-http-request/XMLHttpRequestResponseDataParser.d.ts.map +1 -0
  2306. package/lib/xml-http-request/XMLHttpRequestResponseDataParser.js +62 -0
  2307. package/lib/xml-http-request/XMLHttpRequestResponseDataParser.js.map +1 -0
  2308. package/lib/xml-http-request/XMLHttpRequestUpload.d.ts +7 -0
  2309. package/lib/xml-http-request/XMLHttpRequestUpload.d.ts.map +1 -0
  2310. package/lib/xml-http-request/XMLHttpRequestUpload.js +7 -0
  2311. package/lib/xml-http-request/XMLHttpRequestUpload.js.map +1 -0
  2312. package/lib/xml-http-request/XMLHttpResponseTypeEnum.d.ts +9 -0
  2313. package/lib/xml-http-request/XMLHttpResponseTypeEnum.d.ts.map +1 -0
  2314. package/lib/xml-http-request/XMLHttpResponseTypeEnum.js +10 -0
  2315. package/lib/xml-http-request/XMLHttpResponseTypeEnum.js.map +1 -0
  2316. package/lib/xml-parser/XMLParser.d.ts +100 -0
  2317. package/lib/xml-parser/XMLParser.d.ts.map +1 -0
  2318. package/lib/xml-parser/XMLParser.js +618 -0
  2319. package/lib/xml-parser/XMLParser.js.map +1 -0
  2320. package/lib/xml-serializer/XMLSerializer.d.ts +17 -0
  2321. package/lib/xml-serializer/XMLSerializer.d.ts.map +1 -0
  2322. package/lib/xml-serializer/XMLSerializer.js +193 -0
  2323. package/lib/xml-serializer/XMLSerializer.js.map +1 -0
  2324. package/package.json +86 -0
  2325. package/src/PropertySymbol.ts +415 -0
  2326. package/src/async-task-manager/AsyncTaskManager.ts +340 -0
  2327. package/src/async-task-manager/AsyncTaskManagerDebugError.ts +14 -0
  2328. package/src/base64/Base64.ts +97 -0
  2329. package/src/browser/Browser.ts +122 -0
  2330. package/src/browser/BrowserContext.ts +100 -0
  2331. package/src/browser/BrowserFrame.ts +232 -0
  2332. package/src/browser/BrowserPage.ts +204 -0
  2333. package/src/browser/BrowserSettingsFactory.ts +95 -0
  2334. package/src/browser/DefaultBrowserSettings.ts +65 -0
  2335. package/src/browser/detached-browser/DetachedBrowser.ts +128 -0
  2336. package/src/browser/detached-browser/DetachedBrowserContext.ts +103 -0
  2337. package/src/browser/detached-browser/DetachedBrowserFrame.ts +250 -0
  2338. package/src/browser/detached-browser/DetachedBrowserPage.ts +217 -0
  2339. package/src/browser/enums/BrowserErrorCaptureEnum.ts +10 -0
  2340. package/src/browser/enums/BrowserNavigationCrossOriginPolicyEnum.ts +10 -0
  2341. package/src/browser/types/IBrowser.ts +50 -0
  2342. package/src/browser/types/IBrowserContext.ts +44 -0
  2343. package/src/browser/types/IBrowserFrame.ts +112 -0
  2344. package/src/browser/types/IBrowserPage.ts +109 -0
  2345. package/src/browser/types/IBrowserPageViewport.ts +5 -0
  2346. package/src/browser/types/IBrowserSettings.ts +185 -0
  2347. package/src/browser/types/IGoToOptions.ts +17 -0
  2348. package/src/browser/types/IOptionalBrowserPageViewport.ts +5 -0
  2349. package/src/browser/types/IOptionalBrowserSettings.ts +181 -0
  2350. package/src/browser/types/IReloadOptions.ts +27 -0
  2351. package/src/browser/utilities/BrowserExceptionObserver.ts +123 -0
  2352. package/src/browser/utilities/BrowserFrameFactory.ts +106 -0
  2353. package/src/browser/utilities/BrowserFrameNavigator.ts +574 -0
  2354. package/src/browser/utilities/BrowserFrameScriptEvaluator.ts +71 -0
  2355. package/src/browser/utilities/BrowserFrameURL.ts +30 -0
  2356. package/src/browser/utilities/BrowserFrameValidator.ts +84 -0
  2357. package/src/browser/utilities/BrowserPageUtility.ts +56 -0
  2358. package/src/clipboard/Clipboard.ts +108 -0
  2359. package/src/clipboard/ClipboardItem.ts +57 -0
  2360. package/src/config/HTMLElementConfig.ts +536 -0
  2361. package/src/config/HTMLElementConfigContentModelEnum.ts +12 -0
  2362. package/src/config/IHTMLElementTagNameMap.ts +181 -0
  2363. package/src/config/ISVGElementTagNameMap.ts +127 -0
  2364. package/src/config/NamespaceURI.ts +8 -0
  2365. package/src/config/SVGElementConfig.ts +70 -0
  2366. package/src/console/IVirtualConsoleLogEntry.ts +10 -0
  2367. package/src/console/IVirtualConsoleLogGroup.ts +6 -0
  2368. package/src/console/IVirtualConsolePrinter.ts +58 -0
  2369. package/src/console/VirtualConsole.ts +368 -0
  2370. package/src/console/VirtualConsolePrinter.ts +148 -0
  2371. package/src/console/enums/VirtualConsoleLogLevelEnum.ts +12 -0
  2372. package/src/console/enums/VirtualConsoleLogTypeEnum.ts +29 -0
  2373. package/src/console/utilities/VirtualConsoleLogEntryStringifier.ts +100 -0
  2374. package/src/cookie/CookieContainer.ts +81 -0
  2375. package/src/cookie/DefaultCookie.ts +17 -0
  2376. package/src/cookie/ICookie.ts +14 -0
  2377. package/src/cookie/ICookieContainer.ts +32 -0
  2378. package/src/cookie/IOptionalCookie.ts +16 -0
  2379. package/src/cookie/enums/CookieSameSiteEnum.ts +6 -0
  2380. package/src/cookie/urilities/CookieExpireUtility.ts +16 -0
  2381. package/src/cookie/urilities/CookieStringUtility.ts +119 -0
  2382. package/src/cookie/urilities/CookieURLUtility.ts +27 -0
  2383. package/src/css/CSS.ts +63 -0
  2384. package/src/css/CSSRule.ts +84 -0
  2385. package/src/css/CSSRuleTypeEnum.ts +18 -0
  2386. package/src/css/CSSStyleSheet.ts +141 -0
  2387. package/src/css/CSSUnitValue.ts +26 -0
  2388. package/src/css/CSSUnits.ts +31 -0
  2389. package/src/css/MediaList.ts +177 -0
  2390. package/src/css/declaration/CSSStyleDeclaration.ts +4974 -0
  2391. package/src/css/declaration/computed-style/CSSStyleDeclarationComputedStyle.ts +522 -0
  2392. package/src/css/declaration/computed-style/config/CSSStyleDeclarationElementDefaultCSS.ts +133 -0
  2393. package/src/css/declaration/computed-style/config/CSSStyleDeclarationElementInheritedProperties.ts +39 -0
  2394. package/src/css/declaration/computed-style/config/CSSStyleDeclarationElementMeasurementProperties.ts +41 -0
  2395. package/src/css/declaration/css-parser/CSSStyleDeclarationCSSParser.ts +44 -0
  2396. package/src/css/declaration/measurement-converter/CSSMeasurementConverter.ts +79 -0
  2397. package/src/css/declaration/property-manager/CSSStyleDeclarationPropertyGetParser.ts +794 -0
  2398. package/src/css/declaration/property-manager/CSSStyleDeclarationPropertyManager.ts +628 -0
  2399. package/src/css/declaration/property-manager/CSSStyleDeclarationPropertySetParser.ts +3319 -0
  2400. package/src/css/declaration/property-manager/CSSStyleDeclarationValueParser.ts +460 -0
  2401. package/src/css/declaration/property-manager/CSSStyleDeclarationValueUtility.ts +90 -0
  2402. package/src/css/declaration/property-manager/ICSSStyleDeclarationPropertyValue.ts +4 -0
  2403. package/src/css/rules/CSSConditionRule.ts +20 -0
  2404. package/src/css/rules/CSSContainerRule.ts +34 -0
  2405. package/src/css/rules/CSSFontFaceRule.ts +45 -0
  2406. package/src/css/rules/CSSGroupingRule.ts +84 -0
  2407. package/src/css/rules/CSSKeyframeRule.ts +53 -0
  2408. package/src/css/rules/CSSKeyframesRule.ts +147 -0
  2409. package/src/css/rules/CSSMediaRule.ts +50 -0
  2410. package/src/css/rules/CSSScopeRule.ts +53 -0
  2411. package/src/css/rules/CSSStyleRule.ts +73 -0
  2412. package/src/css/rules/CSSSupportsRule.ts +30 -0
  2413. package/src/css/style-property-map/CSSKeywordValue.ts +35 -0
  2414. package/src/css/style-property-map/CSSStyleValue.ts +37 -0
  2415. package/src/css/style-property-map/StylePropertyMap.ts +45 -0
  2416. package/src/css/style-property-map/StylePropertyMapReadOnly.ts +128 -0
  2417. package/src/css/utilities/CSSEscaper.ts +87 -0
  2418. package/src/css/utilities/CSSParser.ts +311 -0
  2419. package/src/custom-element/CustomElementReactionStack.ts +87 -0
  2420. package/src/custom-element/CustomElementRegistry.ts +186 -0
  2421. package/src/custom-element/CustomElementUtility.ts +34 -0
  2422. package/src/custom-element/ICustomElementDefinition.ts +16 -0
  2423. package/src/dom/DOMPoint.ts +81 -0
  2424. package/src/dom/DOMPointReadOnly.ts +97 -0
  2425. package/src/dom/DOMRect.ts +92 -0
  2426. package/src/dom/DOMRectList.ts +34 -0
  2427. package/src/dom/DOMRectReadOnly.ts +129 -0
  2428. package/src/dom/DOMStringMap.ts +93 -0
  2429. package/src/dom/DOMStringMapUtility.ts +33 -0
  2430. package/src/dom/DOMTokenList.ts +363 -0
  2431. package/src/dom/IDOMPointInit.ts +6 -0
  2432. package/src/dom/IDOMRectInit.ts +6 -0
  2433. package/src/dom/dom-matrix/DOMMatrix.ts +491 -0
  2434. package/src/dom/dom-matrix/DOMMatrixReadOnly.ts +1598 -0
  2435. package/src/dom/dom-matrix/IDOMMatrixCompatibleObject.ts +24 -0
  2436. package/src/dom/dom-matrix/IDOMMatrixJSON.ts +26 -0
  2437. package/src/dom/dom-matrix/TDOMMatrix2DArray.ts +3 -0
  2438. package/src/dom/dom-matrix/TDOMMatrix3DArray.ts +20 -0
  2439. package/src/dom/dom-matrix/TDOMMatrixInit.ts +8 -0
  2440. package/src/dom-implementation/DOMImplementation.ts +65 -0
  2441. package/src/dom-parser/DOMParser.ts +47 -0
  2442. package/src/event/DataTransfer.ts +128 -0
  2443. package/src/event/DataTransferItem.ts +47 -0
  2444. package/src/event/DataTransferItemList.ts +44 -0
  2445. package/src/event/Event.ts +222 -0
  2446. package/src/event/EventPhaseEnum.ts +7 -0
  2447. package/src/event/EventTarget.ts +374 -0
  2448. package/src/event/IEventInit.ts +5 -0
  2449. package/src/event/IEventListenerOptions.ts +10 -0
  2450. package/src/event/ITouchInit.ts +16 -0
  2451. package/src/event/IUIEventInit.ts +7 -0
  2452. package/src/event/MessagePort.ts +32 -0
  2453. package/src/event/TEventListener.ts +4 -0
  2454. package/src/event/TEventListenerFunction.ts +3 -0
  2455. package/src/event/TEventListenerObject.ts +5 -0
  2456. package/src/event/Touch.ts +40 -0
  2457. package/src/event/UIEvent.ts +32 -0
  2458. package/src/event/events/AnimationEvent.ts +25 -0
  2459. package/src/event/events/ClipboardEvent.ts +22 -0
  2460. package/src/event/events/CloseEvent.ts +25 -0
  2461. package/src/event/events/CustomEvent.ts +53 -0
  2462. package/src/event/events/ErrorEvent.ts +29 -0
  2463. package/src/event/events/FocusEvent.ts +22 -0
  2464. package/src/event/events/HashChangeEvent.ts +25 -0
  2465. package/src/event/events/IAnimationEventInit.ts +7 -0
  2466. package/src/event/events/IClipboardEventInit.ts +6 -0
  2467. package/src/event/events/ICloseEventInit.ts +7 -0
  2468. package/src/event/events/ICustomEventInit.ts +5 -0
  2469. package/src/event/events/IErrorEventInit.ts +8 -0
  2470. package/src/event/events/IFocusEventInit.ts +6 -0
  2471. package/src/event/events/IHashChangeEventInit.ts +6 -0
  2472. package/src/event/events/IInputEventInit.ts +9 -0
  2473. package/src/event/events/IKeyboardEventInit.ts +23 -0
  2474. package/src/event/events/IMediaQueryListEventInit.ts +6 -0
  2475. package/src/event/events/IMediaQueryListInit.ts +6 -0
  2476. package/src/event/events/IMessageEventInit.ts +11 -0
  2477. package/src/event/events/IMouseEventInit.ts +21 -0
  2478. package/src/event/events/IPointerEventInit.ts +19 -0
  2479. package/src/event/events/IPopStateEventInit.ts +6 -0
  2480. package/src/event/events/IProgressEventInit.ts +7 -0
  2481. package/src/event/events/IStorageEventInit.ts +10 -0
  2482. package/src/event/events/ISubmitEventInit.ts +6 -0
  2483. package/src/event/events/ITouchEventInit.ts +12 -0
  2484. package/src/event/events/IWheelEventInit.ts +8 -0
  2485. package/src/event/events/InputEvent.ts +28 -0
  2486. package/src/event/events/KeyboardEvent.ts +80 -0
  2487. package/src/event/events/MediaQueryListEvent.ts +23 -0
  2488. package/src/event/events/MediaStreamTrackEvent.ts +22 -0
  2489. package/src/event/events/MessageEvent.ts +33 -0
  2490. package/src/event/events/MouseEvent.ts +52 -0
  2491. package/src/event/events/PointerEvent.ts +51 -0
  2492. package/src/event/events/PopStateEvent.ts +23 -0
  2493. package/src/event/events/ProgressEvent.ts +25 -0
  2494. package/src/event/events/StorageEvent.ts +30 -0
  2495. package/src/event/events/SubmitEvent.ts +22 -0
  2496. package/src/event/events/TouchEvent.ts +34 -0
  2497. package/src/event/events/WheelEvent.ts +30 -0
  2498. package/src/exception/DOMException.ts +21 -0
  2499. package/src/exception/DOMExceptionNameEnum.ts +23 -0
  2500. package/src/fetch/AbortController.ts +25 -0
  2501. package/src/fetch/AbortSignal.ts +182 -0
  2502. package/src/fetch/Fetch.ts +1072 -0
  2503. package/src/fetch/Headers.ts +177 -0
  2504. package/src/fetch/Request.ts +491 -0
  2505. package/src/fetch/ResourceFetch.ts +190 -0
  2506. package/src/fetch/Response.ts +429 -0
  2507. package/src/fetch/SyncFetch.ts +717 -0
  2508. package/src/fetch/cache/preflight/ICacheablePreflightRequest.ts +7 -0
  2509. package/src/fetch/cache/preflight/ICacheablePreflightResponse.ts +7 -0
  2510. package/src/fetch/cache/preflight/ICachedPreflightResponse.ts +5 -0
  2511. package/src/fetch/cache/preflight/IPreflightResponseCache.ts +33 -0
  2512. package/src/fetch/cache/preflight/PreflightResponseCache.ts +94 -0
  2513. package/src/fetch/cache/response/CachedResponseStateEnum.ts +5 -0
  2514. package/src/fetch/cache/response/ICacheableRequest.ts +7 -0
  2515. package/src/fetch/cache/response/ICacheableResponse.ts +11 -0
  2516. package/src/fetch/cache/response/ICachedResponse.ts +40 -0
  2517. package/src/fetch/cache/response/IResponseCache.ts +37 -0
  2518. package/src/fetch/cache/response/IResponseCacheFileSystem.ts +18 -0
  2519. package/src/fetch/cache/response/ResponseCache.ts +248 -0
  2520. package/src/fetch/cache/response/ResponseCacheFileSystem.ts +175 -0
  2521. package/src/fetch/certificate/FetchHTTPSCertificate.ts +52 -0
  2522. package/src/fetch/data-uri/DataURIParser.ts +66 -0
  2523. package/src/fetch/multipart/MultipartFormDataParser.ts +170 -0
  2524. package/src/fetch/multipart/MultipartReader.ts +216 -0
  2525. package/src/fetch/preload/PreloadEntry.ts +50 -0
  2526. package/src/fetch/preload/PreloadUtility.ts +33 -0
  2527. package/src/fetch/types/IFetchInterceptor.ts +60 -0
  2528. package/src/fetch/types/IFetchRequestHeaders.ts +9 -0
  2529. package/src/fetch/types/IRequestInit.ts +23 -0
  2530. package/src/fetch/types/IResourceFetchResponse.ts +4 -0
  2531. package/src/fetch/types/IResponseInit.ts +10 -0
  2532. package/src/fetch/types/ISyncResponse.ts +18 -0
  2533. package/src/fetch/types/IVirtualServer.ts +7 -0
  2534. package/src/fetch/types/THeadersInit.ts +3 -0
  2535. package/src/fetch/types/TRequestBody.ts +14 -0
  2536. package/src/fetch/types/TRequestCredentials.ts +1 -0
  2537. package/src/fetch/types/TRequestInfo.ts +4 -0
  2538. package/src/fetch/types/TRequestMode.ts +1 -0
  2539. package/src/fetch/types/TRequestRedirect.ts +1 -0
  2540. package/src/fetch/types/TRequestReferrerPolicy.ts +10 -0
  2541. package/src/fetch/types/TResponseBody.ts +14 -0
  2542. package/src/fetch/utilities/FetchBodyUtility.ts +290 -0
  2543. package/src/fetch/utilities/FetchCORSUtility.ts +27 -0
  2544. package/src/fetch/utilities/FetchRequestHeaderUtility.ts +141 -0
  2545. package/src/fetch/utilities/FetchRequestReferrerUtility.ts +259 -0
  2546. package/src/fetch/utilities/FetchRequestValidationUtility.ts +128 -0
  2547. package/src/fetch/utilities/FetchResponseHeaderUtility.ts +48 -0
  2548. package/src/fetch/utilities/FetchResponseRedirectUtility.ts +27 -0
  2549. package/src/fetch/utilities/SyncFetchScriptBuilder.ts +77 -0
  2550. package/src/fetch/utilities/VirtualServerUtility.ts +114 -0
  2551. package/src/file/Blob.ts +163 -0
  2552. package/src/file/File.ts +43 -0
  2553. package/src/file/FileReader.ts +211 -0
  2554. package/src/file/FileReaderEventTypeEnum.ts +9 -0
  2555. package/src/file/FileReaderFormatEnum.ts +7 -0
  2556. package/src/file/FileReaderReadyStateEnum.ts +6 -0
  2557. package/src/form-data/FormData.ts +291 -0
  2558. package/src/history/History.ts +220 -0
  2559. package/src/history/HistoryItemList.ts +72 -0
  2560. package/src/history/HistoryScrollRestorationEnum.ts +5 -0
  2561. package/src/history/IHistoryItem.ts +12 -0
  2562. package/src/html-parser/HTMLParser.ts +919 -0
  2563. package/src/html-serializer/HTMLSerializer.ts +172 -0
  2564. package/src/index.ts +455 -0
  2565. package/src/intersection-observer/IIntersectionObserverInit.ts +16 -0
  2566. package/src/intersection-observer/IntersectionObserver.ts +64 -0
  2567. package/src/intersection-observer/IntersectionObserverEntry.ts +26 -0
  2568. package/src/javascript/IJavaScriptCompiledResult.ts +9 -0
  2569. package/src/javascript/JavaScriptCompiler.ts +381 -0
  2570. package/src/location/Location.ts +319 -0
  2571. package/src/match-media/IMediaQueryRange.ts +5 -0
  2572. package/src/match-media/IMediaQueryRule.ts +4 -0
  2573. package/src/match-media/MediaQueryItem.ts +354 -0
  2574. package/src/match-media/MediaQueryList.ts +133 -0
  2575. package/src/match-media/MediaQueryParser.ts +113 -0
  2576. package/src/match-media/MediaQueryTypeEnum.ts +7 -0
  2577. package/src/module/CSSModule.ts +53 -0
  2578. package/src/module/ECMAScriptModule.ts +194 -0
  2579. package/src/module/ECMAScriptModuleCompiler.ts +956 -0
  2580. package/src/module/JSONModule.ts +58 -0
  2581. package/src/module/ModuleFactory.ts +148 -0
  2582. package/src/module/ModuleURLUtility.ts +199 -0
  2583. package/src/module/UnresolvedModule.ts +81 -0
  2584. package/src/module/enums/ECMAScriptModuleEvaluateStateEnum.ts +7 -0
  2585. package/src/module/types/IECMAScriptModuleCachedResult.ts +9 -0
  2586. package/src/module/types/IECMAScriptModuleCompiledResult.ts +19 -0
  2587. package/src/module/types/IECMAScriptModuleImport.ts +4 -0
  2588. package/src/module/types/IECMAScriptModuleInit.ts +10 -0
  2589. package/src/module/types/IModule.ts +20 -0
  2590. package/src/module/types/IModuleImportMap.ts +10 -0
  2591. package/src/module/types/IModuleImportMapRule.ts +4 -0
  2592. package/src/module/types/IModuleImportMapScope.ts +6 -0
  2593. package/src/module/types/IModuleInit.ts +12 -0
  2594. package/src/module/types/IResolveNodeModules.ts +8 -0
  2595. package/src/mutation-observer/IMutationListener.ts +7 -0
  2596. package/src/mutation-observer/IMutationObserverInit.ts +14 -0
  2597. package/src/mutation-observer/MutationObserver.ts +175 -0
  2598. package/src/mutation-observer/MutationObserverListener.ts +112 -0
  2599. package/src/mutation-observer/MutationRecord.ts +55 -0
  2600. package/src/mutation-observer/MutationTypeEnum.ts +7 -0
  2601. package/src/navigator/MimeType.ts +35 -0
  2602. package/src/navigator/MimeTypeArray.ts +48 -0
  2603. package/src/navigator/Navigator.ts +247 -0
  2604. package/src/navigator/Plugin.ts +61 -0
  2605. package/src/navigator/PluginArray.ts +58 -0
  2606. package/src/nodes/NodeFactory.ts +38 -0
  2607. package/src/nodes/attr/Attr.ts +119 -0
  2608. package/src/nodes/character-data/CharacterData.ts +218 -0
  2609. package/src/nodes/character-data/CharacterDataUtility.ts +68 -0
  2610. package/src/nodes/child-node/ChildNodeUtility.ts +100 -0
  2611. package/src/nodes/child-node/IChildNode.ts +29 -0
  2612. package/src/nodes/child-node/INonDocumentTypeChildNode.ts +7 -0
  2613. package/src/nodes/child-node/NonDocumentChildNodeUtility.ts +37 -0
  2614. package/src/nodes/comment/Comment.ts +36 -0
  2615. package/src/nodes/document/Document.ts +2237 -0
  2616. package/src/nodes/document/DocumentReadyStateEnum.ts +6 -0
  2617. package/src/nodes/document/DocumentReadyStateManager.ts +52 -0
  2618. package/src/nodes/document/VisibilityStateEnum.ts +6 -0
  2619. package/src/nodes/document-fragment/DocumentFragment.ts +208 -0
  2620. package/src/nodes/document-type/DocumentType.ts +70 -0
  2621. package/src/nodes/element/Element.ts +1722 -0
  2622. package/src/nodes/element/ElementEventAttributeUtility.ts +96 -0
  2623. package/src/nodes/element/HTMLCollection.ts +228 -0
  2624. package/src/nodes/element/NamedNodeMap.ts +274 -0
  2625. package/src/nodes/element/NamedNodeMapProxyFactory.ts +127 -0
  2626. package/src/nodes/element/THTMLCollectionListener.ts +6 -0
  2627. package/src/nodes/element/TNamedNodeMapListener.ts +3 -0
  2628. package/src/nodes/html-anchor-element/HTMLAnchorElement.ts +439 -0
  2629. package/src/nodes/html-area-element/HTMLAreaElement.ts +426 -0
  2630. package/src/nodes/html-audio-element/Audio.ts +28 -0
  2631. package/src/nodes/html-audio-element/HTMLAudioElement.ts +10 -0
  2632. package/src/nodes/html-base-element/HTMLBaseElement.ts +64 -0
  2633. package/src/nodes/html-body-element/HTMLBodyElement.ts +161 -0
  2634. package/src/nodes/html-br-element/HTMLBRElement.ts +7 -0
  2635. package/src/nodes/html-button-element/HTMLButtonElement.ts +390 -0
  2636. package/src/nodes/html-canvas-element/CanvasCaptureMediaStreamTrack.ts +51 -0
  2637. package/src/nodes/html-canvas-element/HTMLCanvasElement.ts +175 -0
  2638. package/src/nodes/html-canvas-element/ImageBitmap.ts +27 -0
  2639. package/src/nodes/html-canvas-element/OffscreenCanvas.ts +58 -0
  2640. package/src/nodes/html-d-list-element/HTMLDListElement.ts +7 -0
  2641. package/src/nodes/html-data-element/HTMLDataElement.ts +25 -0
  2642. package/src/nodes/html-data-list-element/HTMLDataListElement.ts +28 -0
  2643. package/src/nodes/html-details-element/HTMLDetailsElement.ts +112 -0
  2644. package/src/nodes/html-dialog-element/HTMLDialogElement.ts +104 -0
  2645. package/src/nodes/html-div-element/HTMLDivElement.ts +7 -0
  2646. package/src/nodes/html-document/HTMLDocument.ts +82 -0
  2647. package/src/nodes/html-element/HTMLElement.ts +1171 -0
  2648. package/src/nodes/html-element/HTMLElementUtility.ts +119 -0
  2649. package/src/nodes/html-embed-element/HTMLEmbedElement.ts +90 -0
  2650. package/src/nodes/html-field-set-element/HTMLFieldSetElement.ts +165 -0
  2651. package/src/nodes/html-form-element/HTMLFormControlsCollection.ts +35 -0
  2652. package/src/nodes/html-form-element/HTMLFormElement.ts +675 -0
  2653. package/src/nodes/html-form-element/RadioNodeList.ts +25 -0
  2654. package/src/nodes/html-form-element/THTMLFormControlElement.ts +16 -0
  2655. package/src/nodes/html-head-element/HTMLHeadElement.ts +7 -0
  2656. package/src/nodes/html-heading-element/HTMLHeadingElement.ts +7 -0
  2657. package/src/nodes/html-hr-element/HTMLHRElement.ts +7 -0
  2658. package/src/nodes/html-html-element/HTMLHtmlElement.ts +7 -0
  2659. package/src/nodes/html-hyperlink-element/HTMLHyperlinkElementUtility.ts +329 -0
  2660. package/src/nodes/html-hyperlink-element/IHTMLHyperlinkElement.ts +19 -0
  2661. package/src/nodes/html-iframe-element/HTMLIFrameElement.ts +460 -0
  2662. package/src/nodes/html-image-element/HTMLImageElement.ts +319 -0
  2663. package/src/nodes/html-image-element/Image.ts +33 -0
  2664. package/src/nodes/html-input-element/FileList.ts +34 -0
  2665. package/src/nodes/html-input-element/HTMLInputElement.ts +1543 -0
  2666. package/src/nodes/html-input-element/HTMLInputElementDateUtility.ts +50 -0
  2667. package/src/nodes/html-input-element/HTMLInputElementSelectionDirectionEnum.ts +6 -0
  2668. package/src/nodes/html-input-element/HTMLInputElementSelectionModeEnum.ts +7 -0
  2669. package/src/nodes/html-input-element/HTMLInputElementValueSanitizer.ts +211 -0
  2670. package/src/nodes/html-input-element/HTMLInputElementValueStepping.ts +92 -0
  2671. package/src/nodes/html-label-element/HTMLLabelElement.ts +128 -0
  2672. package/src/nodes/html-label-element/HTMLLabelElementUtility.ts +45 -0
  2673. package/src/nodes/html-legend-element/HTMLLegendElement.ts +27 -0
  2674. package/src/nodes/html-li-element/HTMLLIElement.ts +31 -0
  2675. package/src/nodes/html-link-element/HTMLLinkElement.ts +498 -0
  2676. package/src/nodes/html-map-element/HTMLMapElement.ts +47 -0
  2677. package/src/nodes/html-media-element/HTMLMediaElement.ts +906 -0
  2678. package/src/nodes/html-media-element/IMediaTrackCapabilities.ts +21 -0
  2679. package/src/nodes/html-media-element/IMediaTrackSettings.ts +5 -0
  2680. package/src/nodes/html-media-element/MediaStream.ts +114 -0
  2681. package/src/nodes/html-media-element/MediaStreamTrack.ts +182 -0
  2682. package/src/nodes/html-media-element/RemotePlayback.ts +47 -0
  2683. package/src/nodes/html-media-element/TextTrack.ts +156 -0
  2684. package/src/nodes/html-media-element/TextTrackCue.ts +51 -0
  2685. package/src/nodes/html-media-element/TextTrackCueList.ts +37 -0
  2686. package/src/nodes/html-media-element/TextTrackKindEnum.ts +9 -0
  2687. package/src/nodes/html-media-element/TextTrackList.ts +182 -0
  2688. package/src/nodes/html-media-element/TimeRanges.ts +73 -0
  2689. package/src/nodes/html-media-element/VTTCue.ts +80 -0
  2690. package/src/nodes/html-media-element/VTTRegion.ts +15 -0
  2691. package/src/nodes/html-menu-element/HTMLMenuElement.ts +7 -0
  2692. package/src/nodes/html-meta-element/HTMLMetaElement.ts +80 -0
  2693. package/src/nodes/html-meter-element/HTMLMeterElement.ts +216 -0
  2694. package/src/nodes/html-mod-element/HTMLModElement.ts +54 -0
  2695. package/src/nodes/html-o-list-element/HTMLOListElement.ts +83 -0
  2696. package/src/nodes/html-object-element/HTMLObjectElement.ts +223 -0
  2697. package/src/nodes/html-opt-group-element/HTMLOptGroupElement.ts +53 -0
  2698. package/src/nodes/html-option-element/HTMLOptionElement.ts +192 -0
  2699. package/src/nodes/html-output-element/HTMLOutputElement.ts +179 -0
  2700. package/src/nodes/html-paragraph-element/HTMLParagraphElement.ts +7 -0
  2701. package/src/nodes/html-param-element/HTMLParamElement.ts +7 -0
  2702. package/src/nodes/html-picture-element/HTMLPictureElement.ts +7 -0
  2703. package/src/nodes/html-pre-element/HTMLPreElement.ts +7 -0
  2704. package/src/nodes/html-progress-element/HTMLProgressElement.ts +100 -0
  2705. package/src/nodes/html-quote-element/HTMLQuoteElement.ts +36 -0
  2706. package/src/nodes/html-script-element/HTMLScriptElement.ts +735 -0
  2707. package/src/nodes/html-select-element/HTMLOptionsCollection.ts +69 -0
  2708. package/src/nodes/html-select-element/HTMLSelectElement.ts +774 -0
  2709. package/src/nodes/html-slot-element/HTMLSlotElement.ts +249 -0
  2710. package/src/nodes/html-source-element/HTMLSourceElement.ts +148 -0
  2711. package/src/nodes/html-span-element/HTMLSpanElement.ts +7 -0
  2712. package/src/nodes/html-style-element/HTMLStyleElement.ts +114 -0
  2713. package/src/nodes/html-table-caption-element/HTMLTableCaptionElement.ts +7 -0
  2714. package/src/nodes/html-table-cell-element/HTMLTableCellElement.ts +125 -0
  2715. package/src/nodes/html-table-col-element/HTMLTableColElement.ts +7 -0
  2716. package/src/nodes/html-table-element/HTMLTableElement.ts +343 -0
  2717. package/src/nodes/html-table-row-element/HTMLTableRowElement.ts +149 -0
  2718. package/src/nodes/html-table-section-element/HTMLTableSectionElement.ts +88 -0
  2719. package/src/nodes/html-template-element/HTMLTemplateElement.ts +154 -0
  2720. package/src/nodes/html-text-area-element/HTMLTextAreaElement.ts +633 -0
  2721. package/src/nodes/html-time-element/HTMLTimeElement.ts +27 -0
  2722. package/src/nodes/html-title-element/HTMLTitleElement.ts +48 -0
  2723. package/src/nodes/html-track-element/HTMLTrackElement.ts +164 -0
  2724. package/src/nodes/html-u-list-element/HTMLUListElement.ts +7 -0
  2725. package/src/nodes/html-unknown-element/HTMLUnknownElement.ts +9 -0
  2726. package/src/nodes/html-video-element/HTMLVideoElement.ts +10 -0
  2727. package/src/nodes/node/ICachedComputedStyleResult.ts +6 -0
  2728. package/src/nodes/node/ICachedElementByIdResult.ts +6 -0
  2729. package/src/nodes/node/ICachedElementByTagNameResult.ts +6 -0
  2730. package/src/nodes/node/ICachedElementsByTagNameResult.ts +6 -0
  2731. package/src/nodes/node/ICachedMatchesResult.ts +6 -0
  2732. package/src/nodes/node/ICachedQuerySelectorAllResult.ts +7 -0
  2733. package/src/nodes/node/ICachedQuerySelectorResult.ts +6 -0
  2734. package/src/nodes/node/ICachedResult.ts +3 -0
  2735. package/src/nodes/node/ICachedStyleResult.ts +6 -0
  2736. package/src/nodes/node/Node.ts +1343 -0
  2737. package/src/nodes/node/NodeDocumentPositionEnum.ts +10 -0
  2738. package/src/nodes/node/NodeList.ts +224 -0
  2739. package/src/nodes/node/NodeTypeEnum.ts +13 -0
  2740. package/src/nodes/node/NodeUtility.ts +330 -0
  2741. package/src/nodes/node/TNodeListListener.ts +1 -0
  2742. package/src/nodes/parent-node/IParentNode.ts +109 -0
  2743. package/src/nodes/parent-node/ParentNodeUtility.ts +334 -0
  2744. package/src/nodes/processing-instruction/ProcessingInstruction.ts +22 -0
  2745. package/src/nodes/shadow-root/ShadowRoot.ts +251 -0
  2746. package/src/nodes/svg-animate-element/SVGAnimateElement.ts +8 -0
  2747. package/src/nodes/svg-animate-motion-element/SVGAnimateMotionElement.ts +8 -0
  2748. package/src/nodes/svg-animate-transform-element/SVGAnimateTransformElement.ts +8 -0
  2749. package/src/nodes/svg-animation-element/SVGAnimationElement.ts +94 -0
  2750. package/src/nodes/svg-circle-element/SVGCircleElement.ts +72 -0
  2751. package/src/nodes/svg-clip-path-element/SVGClipPathElement.ts +34 -0
  2752. package/src/nodes/svg-component-transfer-function-element/SVGComponentTransferFunctionElement.ts +167 -0
  2753. package/src/nodes/svg-defs-element/SVGDefsElement.ts +8 -0
  2754. package/src/nodes/svg-desc-element/SVGDescElement.ts +8 -0
  2755. package/src/nodes/svg-element/SVGElement.ts +828 -0
  2756. package/src/nodes/svg-ellipse-element/SVGEllipseElement.ts +92 -0
  2757. package/src/nodes/svg-fe-blend-element/SVGFEBlendElement.ts +192 -0
  2758. package/src/nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.ts +204 -0
  2759. package/src/nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.ts +133 -0
  2760. package/src/nodes/svg-fe-composite-element/SVGFECompositeElement.ts +186 -0
  2761. package/src/nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.ts +366 -0
  2762. package/src/nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.ts +214 -0
  2763. package/src/nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.ts +226 -0
  2764. package/src/nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.ts +52 -0
  2765. package/src/nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.ts +227 -0
  2766. package/src/nodes/svg-fe-flood-element/SVGFEFloodElement.ts +113 -0
  2767. package/src/nodes/svg-fe-func-a-element/SVGFEFuncAElement.ts +8 -0
  2768. package/src/nodes/svg-fe-func-b-element/SVGFEFuncBElement.ts +8 -0
  2769. package/src/nodes/svg-fe-func-g-element/SVGFEFuncGElement.ts +8 -0
  2770. package/src/nodes/svg-fe-func-r-element/SVGFEFuncRElement.ts +8 -0
  2771. package/src/nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.ts +214 -0
  2772. package/src/nodes/svg-fe-image-element/SVGFEImageElement.ts +173 -0
  2773. package/src/nodes/svg-fe-merge-element/SVGFEMergeElement.ts +113 -0
  2774. package/src/nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.ts +32 -0
  2775. package/src/nodes/svg-fe-morphology-element/SVGFEMorphologyElement.ts +202 -0
  2776. package/src/nodes/svg-fe-offset-element/SVGFEOffsetElement.ts +174 -0
  2777. package/src/nodes/svg-fe-point-light-element/SVGFEPointLightElement.ts +72 -0
  2778. package/src/nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.ts +237 -0
  2779. package/src/nodes/svg-fe-spot-light-element/SVGFESpotLightElement.ts +173 -0
  2780. package/src/nodes/svg-fe-tile-element/SVGFETileElement.ts +133 -0
  2781. package/src/nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.ts +249 -0
  2782. package/src/nodes/svg-filter-element/SVGFilterElement.ts +158 -0
  2783. package/src/nodes/svg-foreign-object-element/SVGForeignObjectElement.ts +92 -0
  2784. package/src/nodes/svg-g-element/SVGGElement.ts +8 -0
  2785. package/src/nodes/svg-geometry-element/SVGGeometryElement.ts +94 -0
  2786. package/src/nodes/svg-gradient-element/SVGGradientElement.ts +104 -0
  2787. package/src/nodes/svg-graphics-element/SVGGraphicsElement.ts +134 -0
  2788. package/src/nodes/svg-image-element/SVGImageElement.ts +188 -0
  2789. package/src/nodes/svg-line-element/SVGLineElement.ts +92 -0
  2790. package/src/nodes/svg-linear-gradient-element/SVGLinearGradientElement.ts +92 -0
  2791. package/src/nodes/svg-m-path-element/SVGMPathElement.ts +32 -0
  2792. package/src/nodes/svg-marker-element/SVGMarkerElement.ts +230 -0
  2793. package/src/nodes/svg-mask-element/SVGMaskElement.ts +137 -0
  2794. package/src/nodes/svg-metadata-element/SVGMetadataElement.ts +8 -0
  2795. package/src/nodes/svg-path-element/SVGPathElement.ts +8 -0
  2796. package/src/nodes/svg-pattern-element/SVGPatternElement.ts +179 -0
  2797. package/src/nodes/svg-polygon-element/SVGPolygonElement.ts +53 -0
  2798. package/src/nodes/svg-polyline-element/SVGPolylineElement.ts +53 -0
  2799. package/src/nodes/svg-radial-gradient-element/SVGRadialGradientElement.ts +112 -0
  2800. package/src/nodes/svg-rect-element/SVGRectElement.ts +132 -0
  2801. package/src/nodes/svg-script-element/SVGScriptElement.ts +50 -0
  2802. package/src/nodes/svg-set-element/SVGSetElement.ts +8 -0
  2803. package/src/nodes/svg-stop-element/SVGStopElement.ts +32 -0
  2804. package/src/nodes/svg-style-element/SVGStyleElement.ts +132 -0
  2805. package/src/nodes/svg-svg-element/SVGSVGElement.ts +601 -0
  2806. package/src/nodes/svg-switch-element/SVGSwitchElement.ts +8 -0
  2807. package/src/nodes/svg-symbol-element/SVGSymbolElement.ts +8 -0
  2808. package/src/nodes/svg-t-span-element/SVGTSpanElement.ts +8 -0
  2809. package/src/nodes/svg-text-content-element/SVGTextContentElement.ts +143 -0
  2810. package/src/nodes/svg-text-element/SVGTextElement.ts +8 -0
  2811. package/src/nodes/svg-text-path-element/SVGTextPathElement.ts +106 -0
  2812. package/src/nodes/svg-text-positioning-element/SVGTextPositioningElement.ts +113 -0
  2813. package/src/nodes/svg-title-element/SVGTitleElement.ts +8 -0
  2814. package/src/nodes/svg-use-element/SVGUseElement.ts +113 -0
  2815. package/src/nodes/svg-view-element/SVGViewElement.ts +8 -0
  2816. package/src/nodes/text/Text.ts +154 -0
  2817. package/src/nodes/xml-document/XMLDocument.ts +10 -0
  2818. package/src/permissions/PermissionNameEnum.ts +32 -0
  2819. package/src/permissions/PermissionStatus.ts +23 -0
  2820. package/src/permissions/Permissions.ts +59 -0
  2821. package/src/query-selector/ISelectorAttribute.ts +7 -0
  2822. package/src/query-selector/ISelectorMatch.ts +3 -0
  2823. package/src/query-selector/ISelectorPseudo.ts +8 -0
  2824. package/src/query-selector/QuerySelector.ts +719 -0
  2825. package/src/query-selector/SelectorCombinatorEnum.ts +9 -0
  2826. package/src/query-selector/SelectorItem.ts +507 -0
  2827. package/src/query-selector/SelectorParser.ts +666 -0
  2828. package/src/range/IRangeBoundaryPoint.ts +9 -0
  2829. package/src/range/Range.ts +1161 -0
  2830. package/src/range/RangeHowEnum.ts +8 -0
  2831. package/src/range/RangeUtility.ts +118 -0
  2832. package/src/resize-observer/ResizeObserver.ts +33 -0
  2833. package/src/screen/Screen.ts +19 -0
  2834. package/src/screen/ScreenDetailed.ts +17 -0
  2835. package/src/screen/ScreenDetails.ts +27 -0
  2836. package/src/selection/Selection.ts +556 -0
  2837. package/src/selection/SelectionDirectionEnum.ts +7 -0
  2838. package/src/storage/Storage.ts +149 -0
  2839. package/src/svg/SVGAngle.ts +310 -0
  2840. package/src/svg/SVGAngleTypeEnum.ts +9 -0
  2841. package/src/svg/SVGAnimatedAngle.ts +100 -0
  2842. package/src/svg/SVGAnimatedBoolean.ts +80 -0
  2843. package/src/svg/SVGAnimatedEnumeration.ts +119 -0
  2844. package/src/svg/SVGAnimatedInteger.ts +97 -0
  2845. package/src/svg/SVGAnimatedLength.ts +100 -0
  2846. package/src/svg/SVGAnimatedLengthList.ts +101 -0
  2847. package/src/svg/SVGAnimatedNumber.ts +101 -0
  2848. package/src/svg/SVGAnimatedNumberList.ts +101 -0
  2849. package/src/svg/SVGAnimatedPreserveAspectRatio.ts +100 -0
  2850. package/src/svg/SVGAnimatedRect.ts +100 -0
  2851. package/src/svg/SVGAnimatedString.ts +83 -0
  2852. package/src/svg/SVGAnimatedTransformList.ts +101 -0
  2853. package/src/svg/SVGLength.ts +375 -0
  2854. package/src/svg/SVGLengthList.ts +489 -0
  2855. package/src/svg/SVGLengthTypeEnum.ts +15 -0
  2856. package/src/svg/SVGMatrix.ts +428 -0
  2857. package/src/svg/SVGNumber.ts +83 -0
  2858. package/src/svg/SVGNumberList.ts +522 -0
  2859. package/src/svg/SVGPoint.ts +114 -0
  2860. package/src/svg/SVGPointList.ts +526 -0
  2861. package/src/svg/SVGPreserveAspectRatio.ts +176 -0
  2862. package/src/svg/SVGPreserveAspectRatioAlignEnum.ts +15 -0
  2863. package/src/svg/SVGPreserveAspectRatioMeetOrSliceEnum.ts +7 -0
  2864. package/src/svg/SVGRect.ts +200 -0
  2865. package/src/svg/SVGStringList.ts +422 -0
  2866. package/src/svg/SVGTransform.ts +369 -0
  2867. package/src/svg/SVGTransformList.ts +531 -0
  2868. package/src/svg/SVGTransformTypeEnum.ts +11 -0
  2869. package/src/svg/SVGUnitTypes.ts +26 -0
  2870. package/src/tree-walker/NodeFilter.ts +18 -0
  2871. package/src/tree-walker/NodeFilterMask.ts +28 -0
  2872. package/src/tree-walker/NodeIterator.ts +85 -0
  2873. package/src/tree-walker/TNodeFilter.ts +3 -0
  2874. package/src/tree-walker/TreeWalker.ts +339 -0
  2875. package/src/url/URL.ts +45 -0
  2876. package/src/utilities/AttributeUtility.ts +43 -0
  2877. package/src/utilities/ClassMethodBinder.ts +71 -0
  2878. package/src/utilities/StringUtility.ts +47 -0
  2879. package/src/utilities/XMLEncodeUtility.ts +161 -0
  2880. package/src/validity-state/ValidityState.ts +234 -0
  2881. package/src/version.ts +1 -0
  2882. package/src/web-socket/WebSocket.ts +408 -0
  2883. package/src/web-socket/WebSocketReadyStateEnum.ts +8 -0
  2884. package/src/window/BrowserWindow.ts +1993 -0
  2885. package/src/window/CrossOriginBrowserWindow.ts +152 -0
  2886. package/src/window/DetachedWindowAPI.ts +133 -0
  2887. package/src/window/GlobalWindow.ts +90 -0
  2888. package/src/window/INodeJSGlobal.ts +76 -0
  2889. package/src/window/IOptionalTimerLoopsLimit.ts +4 -0
  2890. package/src/window/IScrollToOptions.ts +5 -0
  2891. package/src/window/ITimerLoopsLimit.ts +4 -0
  2892. package/src/window/VMGlobalPropertyScript.ts +59 -0
  2893. package/src/window/Window.ts +66 -0
  2894. package/src/window/WindowBrowserContext.ts +117 -0
  2895. package/src/window/WindowContextClassExtender.ts +240 -0
  2896. package/src/window/WindowPageOpenUtility.ts +200 -0
  2897. package/src/xml-http-request/XMLHttpRequest.ts +577 -0
  2898. package/src/xml-http-request/XMLHttpRequestEventTarget.ts +88 -0
  2899. package/src/xml-http-request/XMLHttpRequestReadyStateEnum.ts +9 -0
  2900. package/src/xml-http-request/XMLHttpRequestResponseDataParser.ts +70 -0
  2901. package/src/xml-http-request/XMLHttpRequestUpload.ts +6 -0
  2902. package/src/xml-http-request/XMLHttpResponseTypeEnum.ts +9 -0
  2903. package/src/xml-parser/XMLParser.ts +744 -0
  2904. package/src/xml-serializer/XMLSerializer.ts +280 -0
@@ -0,0 +1,2502 @@
1
+ import CSSStyleDeclarationValueParser from './CSSStyleDeclarationValueParser.js';
2
+ import CSSStyleDeclarationValueUtility from './CSSStyleDeclarationValueUtility.js';
3
+ const RECT_REGEXP = /^rect\((.*)\)$/i;
4
+ const SPLIT_COMMA_SEPARATED_WITH_PARANTHESES_REGEXP = /,(?=(?:(?:(?!\))[\s\S])*\()|[^\(\)]*$)/; // Split on commas that are outside of parentheses
5
+ const SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP = /\s+(?=(?:(?:(?!\))[\s\S])*\()|[^\(\)]*$)/; // Split on spaces that are outside of parentheses
6
+ const WHITE_SPACE_GLOBAL_REGEXP = /\s+/gm;
7
+ const BORDER_STYLE = [
8
+ 'none',
9
+ 'hidden',
10
+ 'dotted',
11
+ 'dashed',
12
+ 'solid',
13
+ 'double',
14
+ 'groove',
15
+ 'ridge',
16
+ 'inset',
17
+ 'outset'
18
+ ];
19
+ const BORDER_WIDTH = ['thin', 'medium', 'thick'];
20
+ const BORDER_COLLAPSE = ['separate', 'collapse'];
21
+ const BACKGROUND_REPEAT = ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'];
22
+ const BACKGROUND_ORIGIN = ['border-box', 'padding-box', 'content-box'];
23
+ const BACKGROUND_CLIP = ['border-box', 'padding-box', 'content-box'];
24
+ const BACKGROUND_ATTACHMENT = ['scroll', 'fixed'];
25
+ const FLEX_BASIS = ['auto', 'fill', 'content'];
26
+ const CLEAR = ['none', 'left', 'right', 'both'];
27
+ const FLOAT = ['none', 'left', 'right', 'inline-start', 'inline-end'];
28
+ const SYSTEM_FONT = ['caption', 'icon', 'menu', 'message-box', 'small-caption', 'status-bar'];
29
+ const FONT_WEIGHT = ['normal', 'bold', 'bolder', 'lighter'];
30
+ const FONT_STYLE = ['normal', 'italic', 'oblique'];
31
+ const FONT_SIZE = [
32
+ 'xx-small',
33
+ 'x-small',
34
+ 'small',
35
+ 'medium',
36
+ 'large',
37
+ 'x-large',
38
+ 'xx-large',
39
+ 'xxx-large',
40
+ 'smaller',
41
+ 'larger'
42
+ ];
43
+ const FONT_STRETCH = [
44
+ 'ultra-condensed',
45
+ 'extra-condensed',
46
+ 'condensed',
47
+ 'semi-condensed',
48
+ 'normal',
49
+ 'semi-expanded',
50
+ 'expanded',
51
+ 'extra-expanded',
52
+ 'ultra-expanded'
53
+ ];
54
+ const DISPLAY = [
55
+ /* Legacy values */
56
+ 'block',
57
+ 'inline',
58
+ 'inline-block',
59
+ 'flex',
60
+ 'inline-flex',
61
+ 'grid',
62
+ 'inline-grid',
63
+ 'flow-root',
64
+ /* Box generation */
65
+ 'none',
66
+ 'contents',
67
+ /* Two-value syntax */
68
+ 'block flow',
69
+ 'inline flow',
70
+ 'inline flow-root',
71
+ 'block flex',
72
+ 'inline flex',
73
+ 'block grid',
74
+ 'inline grid',
75
+ 'block flow-root',
76
+ /* Other values */
77
+ 'table',
78
+ 'table-row',
79
+ 'list-item'
80
+ ];
81
+ const BORDER_IMAGE_REPEAT = ['stretch', 'repeat', 'round', 'space'];
82
+ const TEXT_TRANSFORM = [
83
+ 'capitalize',
84
+ 'uppercase',
85
+ 'lowercase',
86
+ 'none',
87
+ 'full-width',
88
+ 'full-size-kana'
89
+ ];
90
+ const VISIBILITY = ['visible', 'hidden', 'collapse'];
91
+ /**
92
+ * Computed style property parser.
93
+ */
94
+ export default class CSSStyleDeclarationPropertySetParser {
95
+ /**
96
+ * Returns border collapse.
97
+ *
98
+ * @param value Value.
99
+ * @param important Important.
100
+ * @returns Property values
101
+ */
102
+ static getBorderCollapse(value, important) {
103
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
104
+ if (variable) {
105
+ return { 'border-collapse': { value: variable, important } };
106
+ }
107
+ const lowerValue = value.toLowerCase();
108
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
109
+ BORDER_COLLAPSE.includes(lowerValue)) {
110
+ return { 'border-collapse': { value: lowerValue, important } };
111
+ }
112
+ return null;
113
+ }
114
+ /**
115
+ * Returns display.
116
+ *
117
+ * @param value Value.
118
+ * @param important Important.
119
+ * @returns Property values
120
+ */
121
+ static getDisplay(value, important) {
122
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
123
+ if (variable) {
124
+ return { display: { value: variable, important } };
125
+ }
126
+ const lowerValue = value.toLowerCase();
127
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || DISPLAY.includes(lowerValue)) {
128
+ return { display: { value: lowerValue, important } };
129
+ }
130
+ return null;
131
+ }
132
+ /**
133
+ * Returns direction.
134
+ *
135
+ * @param value Value.
136
+ * @param important Important.
137
+ * @returns Property values
138
+ */
139
+ static getDirection(value, important) {
140
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
141
+ if (variable) {
142
+ return { direction: { value: variable, important } };
143
+ }
144
+ const lowerValue = value.toLowerCase();
145
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
146
+ lowerValue === 'ltr' ||
147
+ lowerValue === 'rtl') {
148
+ return { direction: { value: lowerValue, important } };
149
+ }
150
+ return null;
151
+ }
152
+ /**
153
+ * Returns letter spacing.
154
+ *
155
+ * @param value Value.
156
+ * @param important Important.
157
+ * @returns Property values
158
+ */
159
+ static getLetterSpacing(value, important) {
160
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
161
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
162
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
163
+ return parsedValue ? { 'letter-spacing': { value: parsedValue, important } } : null;
164
+ }
165
+ /**
166
+ * Returns word spacing.
167
+ *
168
+ * @param value Value.
169
+ * @param important Important.
170
+ * @returns Property values
171
+ */
172
+ static getWordSpacing(value, important) {
173
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
174
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
175
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
176
+ return parsedValue ? { 'word-spacing': { value: parsedValue, important } } : null;
177
+ }
178
+ /**
179
+ * Returns text indent.
180
+ *
181
+ * @param value Value.
182
+ * @param important Important.
183
+ * @returns Property values
184
+ */
185
+ static getTextIndent(value, important) {
186
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
187
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
188
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
189
+ return parsedValue ? { 'text-indent': { value: parsedValue, important } } : null;
190
+ }
191
+ /**
192
+ * Returns width.
193
+ *
194
+ * @param value Value.
195
+ * @param important Important.
196
+ * @returns Property values
197
+ */
198
+ static getWidth(value, important) {
199
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
200
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
201
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
202
+ return parsedValue ? { width: { value: parsedValue, important } } : null;
203
+ }
204
+ /**
205
+ * Returns height.
206
+ *
207
+ * @param value Value.
208
+ * @param important Important.
209
+ * @returns Property values
210
+ */
211
+ static getHeight(value, important) {
212
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
213
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
214
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
215
+ return parsedValue ? { height: { value: parsedValue, important } } : null;
216
+ }
217
+ /**
218
+ * Returns top.
219
+ *
220
+ * @param value Value.
221
+ * @param important Important.
222
+ * @returns Property values
223
+ */
224
+ static getTop(value, important) {
225
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
226
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
227
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
228
+ return parsedValue ? { top: { value: parsedValue, important } } : null;
229
+ }
230
+ /**
231
+ * Returns top.
232
+ *
233
+ * @param value Value.
234
+ * @param important Important.
235
+ * @returns Property values
236
+ */
237
+ static getRight(value, important) {
238
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
239
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
240
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
241
+ return parsedValue ? { right: { value: parsedValue, important } } : null;
242
+ }
243
+ /**
244
+ * Returns top.
245
+ *
246
+ * @param value Value.
247
+ * @param important Important.
248
+ * @returns Property values
249
+ */
250
+ static getBottom(value, important) {
251
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
252
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
253
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
254
+ return parsedValue ? { bottom: { value: parsedValue, important } } : null;
255
+ }
256
+ /**
257
+ * Returns top.
258
+ *
259
+ * @param value Value.
260
+ * @param important Important.
261
+ * @returns Property values
262
+ */
263
+ static getLeft(value, important) {
264
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
265
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
266
+ CSSStyleDeclarationValueParser.getContentMeasurement(value);
267
+ return parsedValue ? { left: { value: parsedValue, important } } : null;
268
+ }
269
+ /**
270
+ * Returns clear.
271
+ *
272
+ * @param value Value.
273
+ * @param important Important.
274
+ * @returns Property values
275
+ */
276
+ static getClear(value, important) {
277
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
278
+ if (variable) {
279
+ return { clear: { value: variable, important } };
280
+ }
281
+ const lowerValue = value.toLowerCase();
282
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || CLEAR.includes(lowerValue)) {
283
+ return { clear: { value: lowerValue, important } };
284
+ }
285
+ return null;
286
+ }
287
+ /**
288
+ * Returns clip
289
+ *
290
+ * Based on:
291
+ * https://github.com/jsdom/cssstyle/blob/master/lib/properties/clip.js
292
+ *
293
+ * @param value Value.
294
+ * @param important Important.
295
+ * @returns Property values
296
+ */
297
+ static getClip(value, important) {
298
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
299
+ if (variable) {
300
+ return { clip: { value: variable, important } };
301
+ }
302
+ const lowerValue = value.toLowerCase();
303
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || lowerValue === 'auto') {
304
+ return { clip: { value: lowerValue, important } };
305
+ }
306
+ const matches = lowerValue.match(RECT_REGEXP);
307
+ if (!matches) {
308
+ return null;
309
+ }
310
+ const parts = matches[1].split(/\s*,\s*/);
311
+ if (parts.length !== 4) {
312
+ return null;
313
+ }
314
+ for (const part of parts) {
315
+ if (!CSSStyleDeclarationValueParser.getMeasurement(part)) {
316
+ return null;
317
+ }
318
+ }
319
+ return { clip: { value, important } };
320
+ }
321
+ /**
322
+ * Returns float.
323
+ *
324
+ * @param value Value.
325
+ * @param important Important.
326
+ * @returns Property values
327
+ */
328
+ static getFloat(value, important) {
329
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
330
+ if (variable) {
331
+ return { float: { value: variable, important } };
332
+ }
333
+ const lowerValue = value.toLowerCase();
334
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || FLOAT.includes(lowerValue)) {
335
+ return { float: { value: lowerValue, important } };
336
+ }
337
+ return null;
338
+ }
339
+ /**
340
+ * Returns float.
341
+ *
342
+ * @param value Value.
343
+ * @param important Important.
344
+ * @returns Property values
345
+ */
346
+ static getCSSFloat(value, important) {
347
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
348
+ if (variable) {
349
+ return { 'css-float': { value: variable, important } };
350
+ }
351
+ const float = this.getFloat(value, important);
352
+ return float ? { 'css-float': float['float'] } : null;
353
+ }
354
+ /**
355
+ * Returns outline.
356
+ *
357
+ * @param value Value.
358
+ * @param important Important.
359
+ * @returns Property values.
360
+ */
361
+ static getOutline(value, important) {
362
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
363
+ if (variable) {
364
+ return { outline: { value: variable, important } };
365
+ }
366
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
367
+ if (globalValue) {
368
+ return {
369
+ ...this.getOutlineColor(globalValue, important),
370
+ ...this.getOutlineStyle(globalValue, important),
371
+ ...this.getOutlineWidth(globalValue, important)
372
+ };
373
+ }
374
+ const properties = {
375
+ ...this.getOutlineColor('initial', important),
376
+ ...this.getOutlineStyle('initial', important),
377
+ ...this.getOutlineWidth('initial', important)
378
+ };
379
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
380
+ for (const part of parts) {
381
+ const width = this.getOutlineWidth(part, important);
382
+ const style = this.getOutlineStyle(part, important);
383
+ const color = this.getOutlineColor(part, important);
384
+ if (width === null && style === null && color === null) {
385
+ return null;
386
+ }
387
+ Object.assign(properties, width, style, color);
388
+ }
389
+ return properties;
390
+ }
391
+ /**
392
+ * Returns outline color.
393
+ *
394
+ * @param value Value.
395
+ * @param important Important.
396
+ * @returns Property values
397
+ */
398
+ static getOutlineColor(value, important) {
399
+ const color = CSSStyleDeclarationValueParser.getVariable(value) ||
400
+ CSSStyleDeclarationValueParser.getGlobal(value) ||
401
+ CSSStyleDeclarationValueParser.getColor(value);
402
+ return color
403
+ ? {
404
+ 'outline-color': { value: color, important }
405
+ }
406
+ : null;
407
+ }
408
+ /**
409
+ * Returns outline offset.
410
+ *
411
+ * @param value Value.
412
+ * @param important Important.
413
+ * @returns Property values
414
+ */
415
+ static getOutlineOffset(value, important) {
416
+ const parsedValue = CSSStyleDeclarationValueParser.getVariable(value) ||
417
+ CSSStyleDeclarationValueParser.getLength(value);
418
+ return parsedValue ? { 'outline-offset': { value: parsedValue, important } } : null;
419
+ }
420
+ /**
421
+ * Returns outline style.
422
+ *
423
+ * @param value Value.
424
+ * @param important Important.
425
+ * @returns Property values
426
+ */
427
+ static getOutlineStyle(value, important) {
428
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
429
+ if (variable) {
430
+ return { 'outline-style': { value: variable, important } };
431
+ }
432
+ const lowerValue = value.toLowerCase();
433
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || BORDER_STYLE.includes(lowerValue)) {
434
+ return {
435
+ 'outline-style': { value: lowerValue, important }
436
+ };
437
+ }
438
+ return null;
439
+ }
440
+ /**
441
+ * Returns outline width.
442
+ *
443
+ * @param value Value.
444
+ * @param important Important.
445
+ * @returns Property values
446
+ */
447
+ static getOutlineWidth(value, important) {
448
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
449
+ if (variable) {
450
+ return { 'outline-width': { value: variable, important } };
451
+ }
452
+ const lowerValue = value.toLowerCase();
453
+ const parsedValue = BORDER_WIDTH.includes(lowerValue) || CSSStyleDeclarationValueParser.getGlobal(lowerValue)
454
+ ? lowerValue
455
+ : CSSStyleDeclarationValueParser.getLength(value);
456
+ if (parsedValue) {
457
+ return {
458
+ 'outline-width': { value: parsedValue, important }
459
+ };
460
+ }
461
+ return null;
462
+ }
463
+ /**
464
+ * Returns border.
465
+ *
466
+ * @param value Value.
467
+ * @param important Important.
468
+ * @returns Property values.
469
+ */
470
+ static getBorder(value, important) {
471
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
472
+ if (variable) {
473
+ return { border: { value: variable, important } };
474
+ }
475
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
476
+ if (globalValue) {
477
+ return {
478
+ ...this.getBorderWidth(globalValue, important),
479
+ ...this.getBorderStyle(globalValue, important),
480
+ ...this.getBorderColor(globalValue, important),
481
+ ...this.getBorderImage(globalValue, important)
482
+ };
483
+ }
484
+ const properties = {
485
+ ...this.getBorderWidth('initial', important),
486
+ ...this.getBorderStyle('initial', important),
487
+ ...this.getBorderColor('initial', important),
488
+ ...this.getBorderImage('initial', important)
489
+ };
490
+ const parts = value
491
+ .replace(/\s*,\s*/g, ',')
492
+ .split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
493
+ for (const part of parts) {
494
+ const width = this.getBorderWidth(part, important);
495
+ const style = this.getBorderStyle(part, important);
496
+ const color = this.getBorderColor(part, important);
497
+ if (width === null && style === null && color === null) {
498
+ return null;
499
+ }
500
+ Object.assign(properties, width, style, color);
501
+ }
502
+ return properties;
503
+ }
504
+ /**
505
+ * Returns border width.
506
+ *
507
+ * @param value Value.
508
+ * @param important Important.
509
+ * @returns Property values
510
+ */
511
+ static getBorderWidth(value, important) {
512
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
513
+ if (variable) {
514
+ return { 'border-width': { value: variable, important } };
515
+ }
516
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
517
+ if (globalValue) {
518
+ return {
519
+ ...this.getBorderTopWidth(globalValue, important),
520
+ ...this.getBorderRightWidth(globalValue, important),
521
+ ...this.getBorderBottomWidth(globalValue, important),
522
+ ...this.getBorderLeftWidth(globalValue, important)
523
+ };
524
+ }
525
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
526
+ const top = this.getBorderTopWidth(parts[0], important);
527
+ const right = this.getBorderRightWidth(parts[1] || parts[0], important);
528
+ const bottom = this.getBorderBottomWidth(parts[2] || parts[0], important);
529
+ const left = this.getBorderLeftWidth(parts[3] || parts[1] || parts[0], important);
530
+ if (!top || !right || !bottom || !left) {
531
+ return null;
532
+ }
533
+ return {
534
+ ...top,
535
+ ...right,
536
+ ...bottom,
537
+ ...left
538
+ };
539
+ }
540
+ /**
541
+ * Returns border style.
542
+ *
543
+ * @param value Value.
544
+ * @param important Important.
545
+ * @returns Property values
546
+ */
547
+ static getBorderStyle(value, important) {
548
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
549
+ if (variable) {
550
+ return { 'border-style': { value: variable, important } };
551
+ }
552
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
553
+ if (globalValue) {
554
+ return {
555
+ ...this.getBorderTopStyle(globalValue, important),
556
+ ...this.getBorderRightStyle(globalValue, important),
557
+ ...this.getBorderBottomStyle(globalValue, important),
558
+ ...this.getBorderLeftStyle(globalValue, important)
559
+ };
560
+ }
561
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
562
+ const top = this.getBorderTopStyle(parts[0], important);
563
+ const right = this.getBorderRightStyle(parts[1] || parts[0], important);
564
+ const bottom = this.getBorderBottomStyle(parts[2] || parts[0], important);
565
+ const left = this.getBorderLeftStyle(parts[3] || parts[1] || parts[0], important);
566
+ if (!top || !right || !bottom || !left) {
567
+ return null;
568
+ }
569
+ return {
570
+ ...top,
571
+ ...right,
572
+ ...bottom,
573
+ ...left
574
+ };
575
+ }
576
+ /**
577
+ * Returns border color.
578
+ *
579
+ * @param value Value.
580
+ * @param important Important.
581
+ * @returns Property values
582
+ */
583
+ static getBorderColor(value, important) {
584
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
585
+ if (variable) {
586
+ return { 'border-color': { value: variable, important } };
587
+ }
588
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
589
+ if (globalValue) {
590
+ return {
591
+ ...this.getBorderTopColor(globalValue, important),
592
+ ...this.getBorderRightColor(globalValue, important),
593
+ ...this.getBorderBottomColor(globalValue, important),
594
+ ...this.getBorderLeftColor(globalValue, important)
595
+ };
596
+ }
597
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
598
+ const top = this.getBorderTopColor(parts[0], important);
599
+ const right = this.getBorderRightColor(parts[1] || parts[0], important);
600
+ const bottom = this.getBorderBottomColor(parts[2] || parts[0], important);
601
+ const left = this.getBorderLeftColor(parts[3] || parts[1] || parts[0], important);
602
+ if (!top || !right || !bottom || !left) {
603
+ return null;
604
+ }
605
+ return {
606
+ ...top,
607
+ ...right,
608
+ ...bottom,
609
+ ...left
610
+ };
611
+ }
612
+ /**
613
+ * Returns border image.
614
+ *
615
+ * @param value Value.
616
+ * @param important Important.
617
+ * @returns Property values
618
+ */
619
+ static getBorderImage(value, important) {
620
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
621
+ if (variable) {
622
+ return { 'border-image': { value: variable, important } };
623
+ }
624
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
625
+ if (globalValue) {
626
+ return {
627
+ ...this.getBorderImageSource(globalValue, important),
628
+ ...this.getBorderImageSlice(globalValue, important),
629
+ ...this.getBorderImageWidth(globalValue, important),
630
+ ...this.getBorderImageOutset(globalValue, important),
631
+ ...this.getBorderImageRepeat(globalValue, important)
632
+ };
633
+ }
634
+ let parsedValue = value.replace(/\s\/\s/g, '/');
635
+ const sourceMatch = parsedValue.match(/\s*([a-zA-Z-]+\([^)]*\))\s*/);
636
+ if (sourceMatch) {
637
+ parsedValue = parsedValue.replace(sourceMatch[0], '');
638
+ }
639
+ const parts = parsedValue.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
640
+ if (sourceMatch) {
641
+ parts.push(sourceMatch[1]);
642
+ }
643
+ const properties = {
644
+ ...this.getBorderImageSource('none', important),
645
+ ...this.getBorderImageSlice('100%', important),
646
+ ...this.getBorderImageWidth('1', important),
647
+ ...this.getBorderImageOutset('0', important),
648
+ ...this.getBorderImageRepeat('stretch', important)
649
+ };
650
+ for (let i = 0, max = parts.length; i < max; i++) {
651
+ const part = parts[i];
652
+ const previousPart = i > 0 ? parts[i - 1] : '';
653
+ if (!part.startsWith('url') && part.includes('/')) {
654
+ const [slice, width, outset] = part.split('/');
655
+ const borderImageSlice = this.getBorderImageSlice(`${previousPart} ${slice}`, important) ||
656
+ this.getBorderImageSlice(slice, important);
657
+ const borderImageWidth = this.getBorderImageWidth(width, important);
658
+ const borderImageOutset = outset && this.getBorderImageOutset(outset, important);
659
+ if (!borderImageSlice || !borderImageWidth || borderImageOutset === null) {
660
+ return null;
661
+ }
662
+ Object.assign(properties, borderImageSlice, borderImageWidth, borderImageOutset);
663
+ }
664
+ else {
665
+ const slice = this.getBorderImageSlice(`${previousPart} ${part}`, important) ||
666
+ this.getBorderImageSlice(part, important);
667
+ const source = this.getBorderImageSource(part, important);
668
+ const repeat = this.getBorderImageRepeat(part, important);
669
+ if (!slice && !source && !repeat) {
670
+ return null;
671
+ }
672
+ Object.assign(properties, slice, source, repeat);
673
+ }
674
+ }
675
+ return properties;
676
+ }
677
+ /**
678
+ * Returns border source.
679
+ *
680
+ * @param value Value.
681
+ * @param important Important.
682
+ * @returns Property values
683
+ */
684
+ static getBorderImageSource(value, important) {
685
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
686
+ if (variable) {
687
+ return { 'border-image-source': { value: variable, important } };
688
+ }
689
+ const lowerValue = value.toLowerCase();
690
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || lowerValue === 'none') {
691
+ return {
692
+ 'border-image-source': {
693
+ important,
694
+ value: lowerValue
695
+ }
696
+ };
697
+ }
698
+ const parsedValue = CSSStyleDeclarationValueParser.getURL(value) ||
699
+ CSSStyleDeclarationValueParser.getGradient(value);
700
+ if (!parsedValue) {
701
+ return null;
702
+ }
703
+ return {
704
+ 'border-image-source': {
705
+ important,
706
+ value: parsedValue
707
+ }
708
+ };
709
+ }
710
+ /**
711
+ * Returns border slice.
712
+ *
713
+ * @param value Value.
714
+ * @param important Important.
715
+ * @returns Property values
716
+ */
717
+ static getBorderImageSlice(value, important) {
718
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
719
+ if (variable) {
720
+ return { 'border-image-slice': { value: variable, important } };
721
+ }
722
+ const lowerValue = value.toLowerCase();
723
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
724
+ return {
725
+ 'border-image-slice': {
726
+ important,
727
+ value: lowerValue
728
+ }
729
+ };
730
+ }
731
+ if (lowerValue !== lowerValue.trim()) {
732
+ return null;
733
+ }
734
+ const regexp = /(fill)|(calc\([^^)]+\))|([0-9]+%)|([0-9]+)/g;
735
+ const values = [];
736
+ let match;
737
+ while ((match = regexp.exec(lowerValue))) {
738
+ const previousCharacter = lowerValue[match.index - 1];
739
+ const nextCharacter = lowerValue[match.index + match[0].length];
740
+ if ((previousCharacter && previousCharacter !== ' ') ||
741
+ (nextCharacter && nextCharacter !== ' ')) {
742
+ return null;
743
+ }
744
+ const fill = match[1] && 'fill';
745
+ const calc = match[2] && CSSStyleDeclarationValueParser.getCalc(match[2]);
746
+ const percentage = match[3] && CSSStyleDeclarationValueParser.getPercentage(match[3]);
747
+ const integer = match[4] && CSSStyleDeclarationValueParser.getInteger(match[4]);
748
+ if (!fill && !calc && !percentage && !integer) {
749
+ return null;
750
+ }
751
+ values.push(fill || calc || percentage || integer);
752
+ }
753
+ if (!values.length || values.length > 4) {
754
+ return null;
755
+ }
756
+ return {
757
+ 'border-image-slice': {
758
+ important,
759
+ value: values.join(' ')
760
+ }
761
+ };
762
+ }
763
+ /**
764
+ * Returns border width.
765
+ *
766
+ * @param value Value.
767
+ * @param important Important.
768
+ * @returns Property values
769
+ */
770
+ static getBorderImageWidth(value, important) {
771
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
772
+ if (variable) {
773
+ return { 'border-image-width': { value: variable, important } };
774
+ }
775
+ const lowerValue = value.toLowerCase();
776
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
777
+ return {
778
+ 'border-image-width': {
779
+ important,
780
+ value: lowerValue
781
+ }
782
+ };
783
+ }
784
+ const parts = lowerValue.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
785
+ if (parts.length > 4) {
786
+ return null;
787
+ }
788
+ for (const part of parts) {
789
+ if (!CSSStyleDeclarationValueParser.getInteger(part) &&
790
+ !CSSStyleDeclarationValueParser.getAutoMeasurement(part)) {
791
+ return null;
792
+ }
793
+ }
794
+ return {
795
+ 'border-image-width': {
796
+ important,
797
+ value
798
+ }
799
+ };
800
+ }
801
+ /**
802
+ * Returns border outset.
803
+ *
804
+ * @param value Value.
805
+ * @param important Important.
806
+ * @returns Property values
807
+ */
808
+ static getBorderImageOutset(value, important) {
809
+ if (value === '0') {
810
+ return {
811
+ 'border-image-outset': {
812
+ important,
813
+ value
814
+ }
815
+ };
816
+ }
817
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
818
+ if (variable) {
819
+ return { 'border-image-outset': { value: variable, important } };
820
+ }
821
+ const lowerValue = value.toLowerCase();
822
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
823
+ return {
824
+ 'border-image-outset': {
825
+ important,
826
+ value: lowerValue
827
+ }
828
+ };
829
+ }
830
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
831
+ if (parts.length > 4) {
832
+ return null;
833
+ }
834
+ const newParts = [];
835
+ for (const part of parts) {
836
+ const parsedValue = CSSStyleDeclarationValueParser.getLength(part) ||
837
+ CSSStyleDeclarationValueParser.getFloat(part);
838
+ if (!parsedValue) {
839
+ return null;
840
+ }
841
+ newParts.push(parsedValue === '0px' ? '0' : parsedValue);
842
+ }
843
+ return {
844
+ 'border-image-outset': {
845
+ important,
846
+ value: newParts.join(' ')
847
+ }
848
+ };
849
+ }
850
+ /**
851
+ * Returns border repeat.
852
+ *
853
+ * @param value Value.
854
+ * @param important Important.
855
+ * @returns Property values
856
+ */
857
+ static getBorderImageRepeat(value, important) {
858
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
859
+ if (variable) {
860
+ return { 'border-image-repeat': { value: variable, important } };
861
+ }
862
+ const lowerValue = value.toLowerCase();
863
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
864
+ return {
865
+ 'border-image-repeat': {
866
+ important,
867
+ value: lowerValue
868
+ }
869
+ };
870
+ }
871
+ const parts = lowerValue.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
872
+ if (parts.length > 2) {
873
+ return null;
874
+ }
875
+ for (const part of parts) {
876
+ if (!BORDER_IMAGE_REPEAT.includes(part)) {
877
+ return null;
878
+ }
879
+ }
880
+ return {
881
+ 'border-image-repeat': {
882
+ important,
883
+ value
884
+ }
885
+ };
886
+ }
887
+ /**
888
+ * Returns border width.
889
+ *
890
+ * @param value Value.
891
+ * @param important Important.
892
+ * @returns Property values
893
+ */
894
+ static getBorderTopWidth(value, important) {
895
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
896
+ if (variable) {
897
+ return { 'border-top-width': { value: variable, important } };
898
+ }
899
+ const lowerValue = value.toLowerCase();
900
+ const parsedValue = BORDER_WIDTH.includes(lowerValue) || CSSStyleDeclarationValueParser.getGlobal(lowerValue)
901
+ ? lowerValue
902
+ : CSSStyleDeclarationValueParser.getLength(value);
903
+ if (parsedValue) {
904
+ return {
905
+ 'border-top-width': { value: parsedValue, important }
906
+ };
907
+ }
908
+ return null;
909
+ }
910
+ /**
911
+ * Returns border width.
912
+ *
913
+ * @param value Value.
914
+ * @param important Important.
915
+ * @returns Property values
916
+ */
917
+ static getBorderRightWidth(value, important) {
918
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
919
+ if (variable) {
920
+ return { 'border-right-width': { value: variable, important } };
921
+ }
922
+ const lowerValue = value.toLowerCase();
923
+ const parsedValue = BORDER_WIDTH.includes(lowerValue) || CSSStyleDeclarationValueParser.getGlobal(lowerValue)
924
+ ? lowerValue
925
+ : CSSStyleDeclarationValueParser.getLength(value);
926
+ if (parsedValue) {
927
+ return {
928
+ 'border-right-width': { value: parsedValue, important }
929
+ };
930
+ }
931
+ return null;
932
+ }
933
+ /**
934
+ * Returns border width.
935
+ *
936
+ * @param value Value.
937
+ * @param important Important.
938
+ * @returns Property values
939
+ */
940
+ static getBorderBottomWidth(value, important) {
941
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
942
+ if (variable) {
943
+ return { 'border-bottom-width': { value: variable, important } };
944
+ }
945
+ const lowerValue = value.toLowerCase();
946
+ const parsedValue = BORDER_WIDTH.includes(lowerValue) || CSSStyleDeclarationValueParser.getGlobal(lowerValue)
947
+ ? lowerValue
948
+ : CSSStyleDeclarationValueParser.getLength(value);
949
+ if (parsedValue) {
950
+ return {
951
+ 'border-bottom-width': { value: parsedValue, important }
952
+ };
953
+ }
954
+ return null;
955
+ }
956
+ /**
957
+ * Returns border width.
958
+ *
959
+ * @param value Value.
960
+ * @param important Important.
961
+ * @returns Property values
962
+ */
963
+ static getBorderLeftWidth(value, important) {
964
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
965
+ if (variable) {
966
+ return { 'border-left-width': { value: variable, important } };
967
+ }
968
+ const lowerValue = value.toLowerCase();
969
+ const parsedValue = BORDER_WIDTH.includes(lowerValue) || CSSStyleDeclarationValueParser.getGlobal(lowerValue)
970
+ ? lowerValue
971
+ : CSSStyleDeclarationValueParser.getLength(value);
972
+ if (parsedValue) {
973
+ return {
974
+ 'border-left-width': { value: parsedValue, important }
975
+ };
976
+ }
977
+ return null;
978
+ }
979
+ /**
980
+ * Returns border style.
981
+ *
982
+ * @param value Value.
983
+ * @param important Important.
984
+ * @returns Property values
985
+ */
986
+ static getBorderTopStyle(value, important) {
987
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
988
+ if (variable) {
989
+ return { 'border-top-style': { value: variable, important } };
990
+ }
991
+ const lowerValue = value.toLowerCase();
992
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || BORDER_STYLE.includes(lowerValue)) {
993
+ return {
994
+ 'border-top-style': { value: lowerValue, important }
995
+ };
996
+ }
997
+ return null;
998
+ }
999
+ /**
1000
+ * Returns border style.
1001
+ *
1002
+ * @param value Value.
1003
+ * @param important Important.
1004
+ * @returns Property values
1005
+ */
1006
+ static getBorderRightStyle(value, important) {
1007
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1008
+ if (variable) {
1009
+ return { 'border-right-style': { value: variable, important } };
1010
+ }
1011
+ const lowerValue = value.toLowerCase();
1012
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || BORDER_STYLE.includes(lowerValue)) {
1013
+ return {
1014
+ 'border-right-style': { value: lowerValue, important }
1015
+ };
1016
+ }
1017
+ return null;
1018
+ }
1019
+ /**
1020
+ * Returns border style.
1021
+ *
1022
+ * @param value Value.
1023
+ * @param important Important.
1024
+ * @returns Property values
1025
+ */
1026
+ static getBorderBottomStyle(value, important) {
1027
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1028
+ if (variable) {
1029
+ return { 'border-bottom-style': { value: variable, important } };
1030
+ }
1031
+ const lowerValue = value.toLowerCase();
1032
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || BORDER_STYLE.includes(lowerValue)) {
1033
+ return {
1034
+ 'border-bottom-style': { value: lowerValue, important }
1035
+ };
1036
+ }
1037
+ return null;
1038
+ }
1039
+ /**
1040
+ * Returns border style.
1041
+ *
1042
+ * @param value Value.
1043
+ * @param important Important.
1044
+ * @returns Property values
1045
+ */
1046
+ static getBorderLeftStyle(value, important) {
1047
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1048
+ if (variable) {
1049
+ return { 'border-left-style': { value: variable, important } };
1050
+ }
1051
+ const lowerValue = value.toLowerCase();
1052
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || BORDER_STYLE.includes(lowerValue)) {
1053
+ return {
1054
+ 'border-left-style': { value: lowerValue, important }
1055
+ };
1056
+ }
1057
+ return null;
1058
+ }
1059
+ /**
1060
+ * Returns border color.
1061
+ *
1062
+ * @param value Value.
1063
+ * @param important Important.
1064
+ * @returns Property values
1065
+ */
1066
+ static getBorderTopColor(value, important) {
1067
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1068
+ if (variable) {
1069
+ return { 'border-top-color': { value: variable, important } };
1070
+ }
1071
+ const color = CSSStyleDeclarationValueParser.getGlobal(value) ||
1072
+ CSSStyleDeclarationValueParser.getColor(value);
1073
+ return color
1074
+ ? {
1075
+ 'border-top-color': { value: color, important }
1076
+ }
1077
+ : null;
1078
+ }
1079
+ /**
1080
+ * Returns border color.
1081
+ *
1082
+ * @param value Value.
1083
+ * @param important Important.
1084
+ * @returns Property values
1085
+ */
1086
+ static getBorderRightColor(value, important) {
1087
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1088
+ if (variable) {
1089
+ return { 'border-right-color': { value: variable, important } };
1090
+ }
1091
+ const color = CSSStyleDeclarationValueParser.getGlobal(value) ||
1092
+ CSSStyleDeclarationValueParser.getColor(value);
1093
+ return color
1094
+ ? {
1095
+ 'border-right-color': { value: color, important }
1096
+ }
1097
+ : null;
1098
+ }
1099
+ /**
1100
+ * Returns border color.
1101
+ *
1102
+ * @param value Value.
1103
+ * @param important Important.
1104
+ * @returns Property values
1105
+ */
1106
+ static getBorderBottomColor(value, important) {
1107
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1108
+ if (variable) {
1109
+ return { 'border-bottom-color': { value: variable, important } };
1110
+ }
1111
+ const color = CSSStyleDeclarationValueParser.getGlobal(value) ||
1112
+ CSSStyleDeclarationValueParser.getColor(value);
1113
+ return color
1114
+ ? {
1115
+ 'border-bottom-color': { value: color, important }
1116
+ }
1117
+ : null;
1118
+ }
1119
+ /**
1120
+ * Returns border color.
1121
+ *
1122
+ * @param value Value.
1123
+ * @param important Important.
1124
+ * @returns Property values
1125
+ */
1126
+ static getBorderLeftColor(value, important) {
1127
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1128
+ if (variable) {
1129
+ return { 'border-left-color': { value: variable, important } };
1130
+ }
1131
+ const color = CSSStyleDeclarationValueParser.getGlobal(value) ||
1132
+ CSSStyleDeclarationValueParser.getColor(value);
1133
+ return color
1134
+ ? {
1135
+ 'border-left-color': { value: color, important }
1136
+ }
1137
+ : null;
1138
+ }
1139
+ /**
1140
+ * Returns border radius.
1141
+ *
1142
+ * @param value Value.
1143
+ * @param important Important.
1144
+ * @returns Property values.
1145
+ */
1146
+ static getBorderRadius(value, important) {
1147
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1148
+ if (variable) {
1149
+ return { 'border-radius': { value: variable, important } };
1150
+ }
1151
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1152
+ if (globalValue) {
1153
+ return {
1154
+ ...this.getBorderTopLeftRadius(globalValue, important),
1155
+ ...this.getBorderTopRightRadius(globalValue, important),
1156
+ ...this.getBorderBottomRightRadius(globalValue, important),
1157
+ ...this.getBorderBottomLeftRadius(globalValue, important)
1158
+ };
1159
+ }
1160
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1161
+ const topLeft = this.getBorderTopLeftRadius(parts[0], important);
1162
+ const topRight = this.getBorderTopRightRadius(parts[1] || parts[0], important);
1163
+ const bottomRight = this.getBorderBottomRightRadius(parts[2] || parts[0], important);
1164
+ const bottomLeft = this.getBorderBottomLeftRadius(parts[3] || parts[1] || parts[0], important);
1165
+ if (!topLeft || !topRight || !bottomRight || !bottomLeft) {
1166
+ return null;
1167
+ }
1168
+ return {
1169
+ ...topLeft,
1170
+ ...topRight,
1171
+ ...bottomRight,
1172
+ ...bottomLeft
1173
+ };
1174
+ }
1175
+ /**
1176
+ * Returns border radius.
1177
+ *
1178
+ * @param value Value.
1179
+ * @param important Important.
1180
+ * @returns Property values.
1181
+ */
1182
+ static getBorderTopLeftRadius(value, important) {
1183
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1184
+ if (variable) {
1185
+ return { 'border-top-left-radius': { value: variable, important } };
1186
+ }
1187
+ const radius = CSSStyleDeclarationValueParser.getGlobal(value) ||
1188
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1189
+ return radius ? { 'border-top-left-radius': { important, value: radius } } : null;
1190
+ }
1191
+ /**
1192
+ * Returns border radius.
1193
+ *
1194
+ * @param value Value.
1195
+ * @param important Important.
1196
+ * @returns Property values.
1197
+ */
1198
+ static getBorderTopRightRadius(value, important) {
1199
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1200
+ if (variable) {
1201
+ return { 'border-top-right-radius': { value: variable, important } };
1202
+ }
1203
+ const radius = CSSStyleDeclarationValueParser.getGlobal(value) ||
1204
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1205
+ return radius ? { 'border-top-right-radius': { important, value: radius } } : null;
1206
+ }
1207
+ /**
1208
+ * Returns border radius.
1209
+ *
1210
+ * @param value Value.
1211
+ * @param important Important.
1212
+ * @returns Property values.
1213
+ */
1214
+ static getBorderBottomRightRadius(value, important) {
1215
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1216
+ if (variable) {
1217
+ return { 'border-bottom-right-radius': { value: variable, important } };
1218
+ }
1219
+ const radius = CSSStyleDeclarationValueParser.getGlobal(value) ||
1220
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1221
+ return radius ? { 'border-bottom-right-radius': { important, value: radius } } : null;
1222
+ }
1223
+ /**
1224
+ * Returns border radius.
1225
+ *
1226
+ * @param value Value.
1227
+ * @param important Important.
1228
+ * @returns Property values.
1229
+ */
1230
+ static getBorderBottomLeftRadius(value, important) {
1231
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1232
+ if (variable) {
1233
+ return { 'border-bottom-left-radius': { value: variable, important } };
1234
+ }
1235
+ const radius = CSSStyleDeclarationValueParser.getGlobal(value) ||
1236
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1237
+ return radius ? { 'border-bottom-left-radius': { important, value: radius } } : null;
1238
+ }
1239
+ /**
1240
+ * Returns border top, right, bottom or left.
1241
+ *
1242
+ * @param value Value.
1243
+ * @param important Important.
1244
+ * @returns Property values.
1245
+ */
1246
+ static getBorderTop(value, important) {
1247
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1248
+ if (variable) {
1249
+ return { 'border-top': { value: variable, important } };
1250
+ }
1251
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1252
+ if (globalValue) {
1253
+ return {
1254
+ ...this.getBorderTopWidth(globalValue, important),
1255
+ ...this.getBorderTopStyle(globalValue, important),
1256
+ ...this.getBorderTopColor(globalValue, important)
1257
+ };
1258
+ }
1259
+ const properties = {
1260
+ ...this.getBorderTopWidth('initial', important),
1261
+ ...this.getBorderTopStyle('initial', important),
1262
+ ...this.getBorderTopColor('initial', important)
1263
+ };
1264
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1265
+ for (const part of parts) {
1266
+ const width = this.getBorderTopWidth(part, important);
1267
+ const style = this.getBorderTopStyle(part, important);
1268
+ const color = this.getBorderTopColor(part, important);
1269
+ if (width === null && style === null && color === null) {
1270
+ return null;
1271
+ }
1272
+ Object.assign(properties, width, style, color);
1273
+ }
1274
+ return properties;
1275
+ }
1276
+ /**
1277
+ * Returns border top, right, bottom or left.
1278
+ *
1279
+ * @param value Value.
1280
+ * @param important Important.
1281
+ * @returns Property values.
1282
+ */
1283
+ static getBorderRight(value, important) {
1284
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1285
+ if (variable) {
1286
+ return { 'border-right': { value: variable, important } };
1287
+ }
1288
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1289
+ if (globalValue) {
1290
+ return {
1291
+ ...this.getBorderRightWidth(globalValue, important),
1292
+ ...this.getBorderRightStyle(globalValue, important),
1293
+ ...this.getBorderRightColor(globalValue, important)
1294
+ };
1295
+ }
1296
+ const properties = {
1297
+ ...this.getBorderRightWidth('initial', important),
1298
+ ...this.getBorderRightStyle('initial', important),
1299
+ ...this.getBorderRightColor('initial', important)
1300
+ };
1301
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1302
+ for (const part of parts) {
1303
+ const width = this.getBorderRightWidth(part, important);
1304
+ const style = this.getBorderRightStyle(part, important);
1305
+ const color = this.getBorderRightColor(part, important);
1306
+ if (width === null && style === null && color === null) {
1307
+ return null;
1308
+ }
1309
+ Object.assign(properties, width, style, color);
1310
+ }
1311
+ return properties;
1312
+ }
1313
+ /**
1314
+ * Returns border top, right, bottom or left.
1315
+ *
1316
+ * @param value Value.
1317
+ * @param important Important.
1318
+ * @returns Property values.
1319
+ */
1320
+ static getBorderBottom(value, important) {
1321
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1322
+ if (variable) {
1323
+ return { 'border-bottom': { value: variable, important } };
1324
+ }
1325
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1326
+ if (globalValue) {
1327
+ return {
1328
+ ...this.getBorderBottomWidth(globalValue, important),
1329
+ ...this.getBorderBottomStyle(globalValue, important),
1330
+ ...this.getBorderBottomColor(globalValue, important)
1331
+ };
1332
+ }
1333
+ const properties = {
1334
+ ...this.getBorderBottomWidth('initial', important),
1335
+ ...this.getBorderBottomStyle('initial', important),
1336
+ ...this.getBorderBottomColor('initial', important)
1337
+ };
1338
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1339
+ for (const part of parts) {
1340
+ const width = this.getBorderBottomWidth(part, important);
1341
+ const style = this.getBorderBottomStyle(part, important);
1342
+ const color = this.getBorderBottomColor(part, important);
1343
+ if (width === null && style === null && color === null) {
1344
+ return null;
1345
+ }
1346
+ Object.assign(properties, width, style, color);
1347
+ }
1348
+ return properties;
1349
+ }
1350
+ /**
1351
+ * Returns border top, right, bottom or left.
1352
+ *
1353
+ * @param value Value.
1354
+ * @param important Important.
1355
+ * @returns Property values.
1356
+ */
1357
+ static getBorderLeft(value, important) {
1358
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1359
+ if (variable) {
1360
+ return { 'border-left': { value: variable, important } };
1361
+ }
1362
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1363
+ if (globalValue) {
1364
+ return {
1365
+ ...this.getBorderLeftWidth(globalValue, important),
1366
+ ...this.getBorderLeftStyle(globalValue, important),
1367
+ ...this.getBorderLeftColor(globalValue, important)
1368
+ };
1369
+ }
1370
+ const properties = {
1371
+ ...this.getBorderLeftWidth('initial', important),
1372
+ ...this.getBorderLeftStyle('initial', important),
1373
+ ...this.getBorderLeftColor('initial', important)
1374
+ };
1375
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1376
+ for (const part of parts) {
1377
+ const width = this.getBorderLeftWidth(part, important);
1378
+ const style = this.getBorderLeftStyle(part, important);
1379
+ const color = this.getBorderLeftColor(part, important);
1380
+ if (width === null && style === null && color === null) {
1381
+ return null;
1382
+ }
1383
+ Object.assign(properties, width, style, color);
1384
+ }
1385
+ return properties;
1386
+ }
1387
+ /**
1388
+ * Returns padding.
1389
+ *
1390
+ * @param value Value.
1391
+ * @param important Important.
1392
+ */
1393
+ static getPadding(value, important) {
1394
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1395
+ if (variable) {
1396
+ return { padding: { value: variable, important } };
1397
+ }
1398
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1399
+ if (globalValue) {
1400
+ return {
1401
+ ...this.getPaddingTop(globalValue, important),
1402
+ ...this.getPaddingRight(globalValue, important),
1403
+ ...this.getPaddingBottom(globalValue, important),
1404
+ ...this.getPaddingLeft(globalValue, important)
1405
+ };
1406
+ }
1407
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1408
+ const top = this.getPaddingTop(parts[0], important);
1409
+ const right = this.getPaddingRight(parts[1] || parts[0], important);
1410
+ const bottom = this.getPaddingBottom(parts[2] || parts[0], important);
1411
+ const left = this.getPaddingLeft(parts[3] || parts[1] || parts[0], important);
1412
+ if (!top || !right || !bottom || !left) {
1413
+ return null;
1414
+ }
1415
+ return {
1416
+ ...top,
1417
+ ...right,
1418
+ ...bottom,
1419
+ ...left
1420
+ };
1421
+ }
1422
+ /**
1423
+ * Returns padding top.
1424
+ *
1425
+ * @param value Value.
1426
+ * @param important Important.
1427
+ * @returns Property values.
1428
+ */
1429
+ static getPaddingTop(value, important) {
1430
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1431
+ if (variable) {
1432
+ return { 'padding-top': { value: variable, important } };
1433
+ }
1434
+ const padding = CSSStyleDeclarationValueParser.getGlobal(value) ||
1435
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1436
+ return padding ? { 'padding-top': { value: padding, important } } : null;
1437
+ }
1438
+ /**
1439
+ * Returns padding right.
1440
+ *
1441
+ * @param value Value.
1442
+ * @param important Important.
1443
+ * @returns Property values.
1444
+ */
1445
+ static getPaddingRight(value, important) {
1446
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1447
+ if (variable) {
1448
+ return { 'padding-right': { value: variable, important } };
1449
+ }
1450
+ const padding = CSSStyleDeclarationValueParser.getGlobal(value) ||
1451
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1452
+ return padding ? { 'padding-right': { value: padding, important } } : null;
1453
+ }
1454
+ /**
1455
+ * Returns padding bottom.
1456
+ *
1457
+ * @param value Value.
1458
+ * @param important Important.
1459
+ * @returns Property values.
1460
+ */
1461
+ static getPaddingBottom(value, important) {
1462
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1463
+ if (variable) {
1464
+ return { 'padding-bottom': { value: variable, important } };
1465
+ }
1466
+ const padding = CSSStyleDeclarationValueParser.getGlobal(value) ||
1467
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1468
+ return padding ? { 'padding-bottom': { value: padding, important } } : null;
1469
+ }
1470
+ /**
1471
+ * Returns padding left.
1472
+ *
1473
+ * @param value Value.
1474
+ * @param important Important.
1475
+ * @returns Property values.
1476
+ */
1477
+ static getPaddingLeft(value, important) {
1478
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1479
+ if (variable) {
1480
+ return { 'padding-left': { value: variable, important } };
1481
+ }
1482
+ const padding = CSSStyleDeclarationValueParser.getGlobal(value) ||
1483
+ CSSStyleDeclarationValueParser.getMeasurement(value);
1484
+ return padding ? { 'padding-left': { value: padding, important } } : null;
1485
+ }
1486
+ /**
1487
+ * Returns margin.
1488
+ *
1489
+ * @param value Value.
1490
+ * @param important Important.
1491
+ * @returns Property values.
1492
+ */
1493
+ static getMargin(value, important) {
1494
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1495
+ if (variable) {
1496
+ return { margin: { value: variable, important } };
1497
+ }
1498
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1499
+ if (globalValue) {
1500
+ return {
1501
+ ...this.getMarginTop(globalValue, important),
1502
+ ...this.getMarginRight(globalValue, important),
1503
+ ...this.getMarginBottom(globalValue, important),
1504
+ ...this.getMarginLeft(globalValue, important)
1505
+ };
1506
+ }
1507
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1508
+ const top = this.getMarginTop(parts[0], important);
1509
+ const right = this.getMarginRight(parts[1] || parts[0], important);
1510
+ const bottom = this.getMarginBottom(parts[2] || parts[0], important);
1511
+ const left = this.getMarginLeft(parts[3] || parts[1] || parts[0], important);
1512
+ if (!top || !right || !bottom || !left) {
1513
+ return null;
1514
+ }
1515
+ return {
1516
+ ...top,
1517
+ ...right,
1518
+ ...bottom,
1519
+ ...left
1520
+ };
1521
+ }
1522
+ /**
1523
+ * Returns margin top.
1524
+ *
1525
+ * @param value Value.
1526
+ * @param important Important.
1527
+ * @returns Property values.
1528
+ */
1529
+ static getMarginTop(value, important) {
1530
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1531
+ if (variable) {
1532
+ return { 'margin-top': { value: variable, important } };
1533
+ }
1534
+ const margin = CSSStyleDeclarationValueParser.getGlobal(value) ||
1535
+ CSSStyleDeclarationValueParser.getAutoMeasurement(value);
1536
+ return margin ? { 'margin-top': { value: margin, important } } : null;
1537
+ }
1538
+ /**
1539
+ * Returns margin right.
1540
+ *
1541
+ * @param value Value.
1542
+ * @param important Important.
1543
+ * @returns Property values.
1544
+ */
1545
+ static getMarginRight(value, important) {
1546
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1547
+ if (variable) {
1548
+ return { 'margin-right': { value: variable, important } };
1549
+ }
1550
+ const margin = CSSStyleDeclarationValueParser.getGlobal(value) ||
1551
+ CSSStyleDeclarationValueParser.getAutoMeasurement(value);
1552
+ return margin ? { 'margin-right': { value: margin, important } } : null;
1553
+ }
1554
+ /**
1555
+ * Returns margin right.
1556
+ *
1557
+ * @param value Value.
1558
+ * @param important Important.
1559
+ * @returns Property values.
1560
+ */
1561
+ static getMarginBottom(value, important) {
1562
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1563
+ if (variable) {
1564
+ return { 'margin-bottom': { value: variable, important } };
1565
+ }
1566
+ const margin = CSSStyleDeclarationValueParser.getGlobal(value) ||
1567
+ CSSStyleDeclarationValueParser.getAutoMeasurement(value);
1568
+ return margin ? { 'margin-bottom': { value: margin, important } } : null;
1569
+ }
1570
+ /**
1571
+ * Returns margin left.
1572
+ *
1573
+ * @param value Value.
1574
+ * @param important Important.
1575
+ * @returns Property values.
1576
+ */
1577
+ static getMarginLeft(value, important) {
1578
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1579
+ if (variable) {
1580
+ return { 'margin-left': { value: variable, important } };
1581
+ }
1582
+ const margin = CSSStyleDeclarationValueParser.getGlobal(value) ||
1583
+ CSSStyleDeclarationValueParser.getAutoMeasurement(value);
1584
+ return margin ? { 'margin-left': { value: margin, important } } : null;
1585
+ }
1586
+ /**
1587
+ * Returns flex.
1588
+ *
1589
+ * @param value Value.
1590
+ * @param important Important.
1591
+ * @returns Property values.
1592
+ */
1593
+ static getFlex(value, important) {
1594
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1595
+ if (variable) {
1596
+ return { flex: { value: variable, important } };
1597
+ }
1598
+ const lowerValue = value.trim().toLowerCase();
1599
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1600
+ if (globalValue) {
1601
+ return {
1602
+ ...this.getFlexGrow(globalValue, important),
1603
+ ...this.getFlexShrink(globalValue, important),
1604
+ ...this.getFlexBasis(globalValue, important)
1605
+ };
1606
+ }
1607
+ switch (lowerValue) {
1608
+ case 'none':
1609
+ return {
1610
+ ...this.getFlexGrow('0', important),
1611
+ ...this.getFlexShrink('0', important),
1612
+ ...this.getFlexBasis('auto', important)
1613
+ };
1614
+ case 'auto':
1615
+ return {
1616
+ ...this.getFlexGrow('1', important),
1617
+ ...this.getFlexShrink('1', important),
1618
+ ...this.getFlexBasis('auto', important)
1619
+ };
1620
+ }
1621
+ const measurement = CSSStyleDeclarationValueParser.getContentMeasurement(lowerValue);
1622
+ if (measurement) {
1623
+ return {
1624
+ ...this.getFlexGrow('1', important),
1625
+ ...this.getFlexShrink('1', important),
1626
+ ...this.getFlexBasis(measurement, important)
1627
+ };
1628
+ }
1629
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1630
+ const flexGrow = this.getFlexGrow(parts[0], important);
1631
+ const flexShrink = this.getFlexShrink(parts[1] || '1', important);
1632
+ const flexBasis = this.getFlexBasis(parts[2] || '0%', important);
1633
+ if (!flexGrow || !flexShrink || !flexBasis) {
1634
+ return null;
1635
+ }
1636
+ return {
1637
+ ...flexGrow,
1638
+ ...flexShrink,
1639
+ ...flexBasis
1640
+ };
1641
+ }
1642
+ /**
1643
+ * Returns flex basis.
1644
+ *
1645
+ * @param value Value.
1646
+ * @param important Important.
1647
+ * @returns Property values
1648
+ */
1649
+ static getFlexBasis(value, important) {
1650
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1651
+ if (variable) {
1652
+ return { 'flex-basis': { value: variable, important } };
1653
+ }
1654
+ const lowerValue = value.toLowerCase();
1655
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || FLEX_BASIS.includes(lowerValue)) {
1656
+ return { 'flex-basis': { value: lowerValue, important } };
1657
+ }
1658
+ const measurement = CSSStyleDeclarationValueParser.getContentMeasurement(lowerValue);
1659
+ return measurement ? { 'flex-basis': { value: measurement, important } } : null;
1660
+ }
1661
+ /**
1662
+ * Returns flex shrink.
1663
+ *
1664
+ * @param value Value.
1665
+ * @param important Important.
1666
+ * @returns Property values
1667
+ */
1668
+ static getFlexShrink(value, important) {
1669
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1670
+ if (variable) {
1671
+ return { 'flex-shrink': { value: variable, important } };
1672
+ }
1673
+ const parsedValue = CSSStyleDeclarationValueParser.getGlobal(value) ||
1674
+ CSSStyleDeclarationValueParser.getFloat(value);
1675
+ return parsedValue ? { 'flex-shrink': { value: parsedValue, important } } : null;
1676
+ }
1677
+ /**
1678
+ * Returns flex grow.
1679
+ *
1680
+ * @param value Value.
1681
+ * @param important Important.
1682
+ * @returns Property values
1683
+ */
1684
+ static getFlexGrow(value, important) {
1685
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1686
+ if (variable) {
1687
+ return { 'flex-grow': { value: variable, important } };
1688
+ }
1689
+ const parsedValue = CSSStyleDeclarationValueParser.getGlobal(value) ||
1690
+ CSSStyleDeclarationValueParser.getFloat(value);
1691
+ return parsedValue ? { 'flex-grow': { value: parsedValue, important } } : null;
1692
+ }
1693
+ /**
1694
+ * Returns background.
1695
+ *
1696
+ * @param name Name.
1697
+ * @param value Value.
1698
+ * @param important Important.
1699
+ * @returns Property values.
1700
+ */
1701
+ static getBackground(value, important) {
1702
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1703
+ if (variable) {
1704
+ return { background: { value: variable, important } };
1705
+ }
1706
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1707
+ if (globalValue) {
1708
+ return {
1709
+ ...this.getBackgroundImage(globalValue, important),
1710
+ ...this.getBackgroundPosition(globalValue, important),
1711
+ ...this.getBackgroundSize(globalValue, important),
1712
+ ...this.getBackgroundRepeat(globalValue, important),
1713
+ ...this.getBackgroundAttachment(globalValue, important),
1714
+ ...this.getBackgroundOrigin(globalValue, important),
1715
+ ...this.getBackgroundClip(globalValue, important),
1716
+ ...this.getBackgroundColor(globalValue, important)
1717
+ };
1718
+ }
1719
+ const properties = {
1720
+ ...this.getBackgroundImage('initial', important),
1721
+ ...this.getBackgroundPosition('initial', important),
1722
+ ...this.getBackgroundSize('initial', important),
1723
+ ...this.getBackgroundRepeat('initial', important),
1724
+ ...this.getBackgroundAttachment('initial', important),
1725
+ ...this.getBackgroundOrigin('initial', important),
1726
+ ...this.getBackgroundClip('initial', important),
1727
+ ...this.getBackgroundColor('initial', important)
1728
+ };
1729
+ const parts = CSSStyleDeclarationValueUtility.splitBySpace(value.replace(/\s+\/\s+/g, '/'));
1730
+ const backgroundPositions = [];
1731
+ for (const part of parts) {
1732
+ if (!part.startsWith('url') && part.includes('/')) {
1733
+ const [position, size] = part.split('/');
1734
+ const backgroundPositionX = this.getBackgroundPositionX(position, important);
1735
+ const backgroundPositionY = this.getBackgroundPositionY(position, important);
1736
+ const backgroundSize = this.getBackgroundSize(size, important);
1737
+ if ((!backgroundPositionX && !backgroundPositionY) || !backgroundSize) {
1738
+ return null;
1739
+ }
1740
+ if (backgroundPositionY) {
1741
+ backgroundPositions.push(backgroundPositionY['background-position-y'].value);
1742
+ }
1743
+ else if (backgroundPositionX) {
1744
+ backgroundPositions.push(backgroundPositionX['background-position-x'].value);
1745
+ }
1746
+ Object.assign(properties, backgroundSize);
1747
+ }
1748
+ else {
1749
+ const backgroundImage = this.getBackgroundImage(part, important);
1750
+ const backgroundRepeat = this.getBackgroundRepeat(part, important);
1751
+ const backgroundAttachment = this.getBackgroundAttachment(part, important);
1752
+ const backgroundPositionX = this.getBackgroundPositionX(part, important);
1753
+ const backgroundPositionY = this.getBackgroundPositionY(part, important);
1754
+ const backgroundColor = this.getBackgroundColor(part, important);
1755
+ const backgroundOrigin = this.getBackgroundOrigin(part, important);
1756
+ const backgroundClip = this.getBackgroundClip(part, important);
1757
+ if (!backgroundImage &&
1758
+ !backgroundRepeat &&
1759
+ !backgroundAttachment &&
1760
+ !backgroundPositionX &&
1761
+ !backgroundPositionY &&
1762
+ !backgroundColor &&
1763
+ !backgroundOrigin &&
1764
+ !backgroundClip) {
1765
+ return null;
1766
+ }
1767
+ if (backgroundPositionX) {
1768
+ backgroundPositions.push(backgroundPositionX['background-position-x'].value);
1769
+ }
1770
+ else if (backgroundPositionY) {
1771
+ backgroundPositions.push(backgroundPositionY['background-position-y'].value);
1772
+ }
1773
+ Object.assign(properties, backgroundImage, backgroundRepeat, backgroundAttachment, backgroundColor, backgroundOrigin, backgroundClip);
1774
+ }
1775
+ }
1776
+ if (backgroundPositions.length) {
1777
+ Object.assign(properties, this.getBackgroundPosition(backgroundPositions.join(' '), important));
1778
+ }
1779
+ return properties;
1780
+ }
1781
+ /**
1782
+ * Returns background size.
1783
+ *
1784
+ * @param value Value.
1785
+ * @param important Important.
1786
+ * @returns Property values
1787
+ */
1788
+ static getBackgroundSize(value, important) {
1789
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1790
+ if (variable) {
1791
+ return { 'background-size': { value: variable, important } };
1792
+ }
1793
+ const lowerValue = value.toLowerCase();
1794
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
1795
+ return { 'background-size': { value: lowerValue, important } };
1796
+ }
1797
+ const imageParts = lowerValue.split(SPLIT_COMMA_SEPARATED_WITH_PARANTHESES_REGEXP);
1798
+ const parsed = [];
1799
+ for (const imagePart of imageParts) {
1800
+ const parts = imagePart.trim().split(' ');
1801
+ if (parts.length !== 1 && parts.length !== 2) {
1802
+ return null;
1803
+ }
1804
+ if (parts.length === 1) {
1805
+ if (parts[0] !== 'cover' &&
1806
+ parts[0] !== 'contain' &&
1807
+ !CSSStyleDeclarationValueParser.getAutoMeasurement(parts[0])) {
1808
+ return null;
1809
+ }
1810
+ parsed.push(parts[0]);
1811
+ }
1812
+ else {
1813
+ if (!CSSStyleDeclarationValueParser.getAutoMeasurement(parts[0]) ||
1814
+ !CSSStyleDeclarationValueParser.getAutoMeasurement(parts[1])) {
1815
+ return null;
1816
+ }
1817
+ parsed.push(`${parts[0]} ${parts[1]}`);
1818
+ }
1819
+ }
1820
+ if (parsed.length === 1) {
1821
+ return { 'background-size': { value: parsed.join(', '), important } };
1822
+ }
1823
+ return null;
1824
+ }
1825
+ /**
1826
+ * Returns background origin.
1827
+ *
1828
+ * @param value Value.
1829
+ * @param important Important.
1830
+ * @returns Property values
1831
+ */
1832
+ static getBackgroundOrigin(value, important) {
1833
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1834
+ if (variable) {
1835
+ return { 'background-origin': { value: variable, important } };
1836
+ }
1837
+ const lowerValue = value.toLowerCase();
1838
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
1839
+ BACKGROUND_ORIGIN.includes(lowerValue)) {
1840
+ return { 'background-origin': { value: lowerValue, important } };
1841
+ }
1842
+ return null;
1843
+ }
1844
+ /**
1845
+ * Returns background clip.
1846
+ *
1847
+ * @param value Value.
1848
+ * @param important Important.
1849
+ * @returns Property values
1850
+ */
1851
+ static getBackgroundClip(value, important) {
1852
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1853
+ if (variable) {
1854
+ return { 'background-clip': { value: variable, important } };
1855
+ }
1856
+ const lowerValue = value.toLowerCase();
1857
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
1858
+ BACKGROUND_CLIP.includes(lowerValue)) {
1859
+ return { 'background-clip': { value: lowerValue, important } };
1860
+ }
1861
+ return null;
1862
+ }
1863
+ /**
1864
+ * Returns background repeat.
1865
+ *
1866
+ * @param value Value.
1867
+ * @param important Important.
1868
+ * @returns Property values
1869
+ */
1870
+ static getBackgroundRepeat(value, important) {
1871
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1872
+ if (variable) {
1873
+ return { 'background-repeat': { value: variable, important } };
1874
+ }
1875
+ const lowerValue = value.toLowerCase();
1876
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
1877
+ BACKGROUND_REPEAT.includes(lowerValue)) {
1878
+ return { 'background-repeat': { value: lowerValue, important } };
1879
+ }
1880
+ return null;
1881
+ }
1882
+ /**
1883
+ * Returns background attachment.
1884
+ *
1885
+ * @param value Value.
1886
+ * @param important Important.
1887
+ * @returns Property values
1888
+ */
1889
+ static getBackgroundAttachment(value, important) {
1890
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1891
+ if (variable) {
1892
+ return { 'background-attachment': { value: variable, important } };
1893
+ }
1894
+ const lowerValue = value.toLowerCase();
1895
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
1896
+ BACKGROUND_ATTACHMENT.includes(lowerValue)) {
1897
+ return { 'background-attachment': { value: lowerValue, important } };
1898
+ }
1899
+ return null;
1900
+ }
1901
+ /**
1902
+ * Returns background position.
1903
+ *
1904
+ * @param value Value.
1905
+ * @param important Important.
1906
+ * @returns Property values
1907
+ */
1908
+ static getBackgroundPosition(value, important) {
1909
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
1910
+ if (variable) {
1911
+ return { 'background-position': { value: variable, important } };
1912
+ }
1913
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
1914
+ if (globalValue) {
1915
+ return {
1916
+ ...this.getBackgroundPositionX(globalValue, important),
1917
+ ...this.getBackgroundPositionY(globalValue, important)
1918
+ };
1919
+ }
1920
+ const imageParts = value.split(SPLIT_COMMA_SEPARATED_WITH_PARANTHESES_REGEXP);
1921
+ let x = '';
1922
+ let y = '';
1923
+ for (const imagePart of imageParts) {
1924
+ const parts = imagePart.trim().split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
1925
+ if (x) {
1926
+ x += ',';
1927
+ y += ',';
1928
+ }
1929
+ switch (parts.length) {
1930
+ case 1:
1931
+ if (parts[0] === 'top' || parts[0] === 'bottom') {
1932
+ x += 'center';
1933
+ y += parts[0];
1934
+ }
1935
+ else if (parts[0] === 'left' || parts[0] === 'right') {
1936
+ x += parts[0];
1937
+ y += 'center';
1938
+ }
1939
+ else if (parts[0] === 'center') {
1940
+ x += 'center';
1941
+ y += 'center';
1942
+ }
1943
+ break;
1944
+ case 2:
1945
+ x += parts[0] === 'top' || parts[0] === 'bottom' ? parts[1] : parts[0];
1946
+ y += parts[0] === 'top' || parts[0] === 'bottom' ? parts[0] : parts[1];
1947
+ break;
1948
+ case 3:
1949
+ if (parts[0] === 'top' ||
1950
+ parts[0] === 'bottom' ||
1951
+ parts[1] === 'left' ||
1952
+ parts[1] === 'right' ||
1953
+ parts[2] === 'left' ||
1954
+ parts[2] === 'right') {
1955
+ if (CSSStyleDeclarationValueParser.getMeasurement(parts[1])) {
1956
+ x += parts[2];
1957
+ y += `${parts[0]} ${parts[1]}`;
1958
+ }
1959
+ else {
1960
+ x += `${parts[1]} ${parts[2]}`;
1961
+ y += parts[0];
1962
+ }
1963
+ }
1964
+ else {
1965
+ if (CSSStyleDeclarationValueParser.getMeasurement(parts[1])) {
1966
+ x += `${parts[0]} ${parts[1]}`;
1967
+ y += parts[2];
1968
+ }
1969
+ else {
1970
+ x += parts[0];
1971
+ y += `${parts[1]} ${parts[2]}`;
1972
+ }
1973
+ }
1974
+ break;
1975
+ case 4:
1976
+ x +=
1977
+ parts[0] === 'top' ||
1978
+ parts[0] === 'bottom' ||
1979
+ parts[1] === 'top' ||
1980
+ parts[1] === 'bottom'
1981
+ ? `${parts[2]} ${parts[3]}`
1982
+ : `${parts[0]} ${parts[1]}`;
1983
+ y +=
1984
+ parts[0] === 'top' ||
1985
+ parts[0] === 'bottom' ||
1986
+ parts[1] === 'top' ||
1987
+ parts[1] === 'bottom'
1988
+ ? `${parts[0]} ${parts[1]}`
1989
+ : `${parts[2]} ${parts[3]}`;
1990
+ break;
1991
+ default:
1992
+ return null;
1993
+ }
1994
+ }
1995
+ const xValue = this.getBackgroundPositionX(x, important);
1996
+ const yValue = this.getBackgroundPositionY(y, important);
1997
+ if (xValue && yValue) {
1998
+ return {
1999
+ ...xValue,
2000
+ ...yValue
2001
+ };
2002
+ }
2003
+ return null;
2004
+ }
2005
+ /**
2006
+ * Returns background position.
2007
+ *
2008
+ * @param value Value.
2009
+ * @param important Important.
2010
+ * @returns Property values
2011
+ */
2012
+ static getBackgroundPositionX(value, important) {
2013
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2014
+ if (variable) {
2015
+ return { 'background-position-x': { value: variable, important } };
2016
+ }
2017
+ const lowerValue = value.toLowerCase();
2018
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
2019
+ return { 'background-position-x': { value: lowerValue, important } };
2020
+ }
2021
+ const imageParts = lowerValue.split(SPLIT_COMMA_SEPARATED_WITH_PARANTHESES_REGEXP);
2022
+ let parsedValue = '';
2023
+ for (const imagePart of imageParts) {
2024
+ const parts = imagePart.trim().split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
2025
+ if (parsedValue) {
2026
+ parsedValue += ',';
2027
+ }
2028
+ for (const part of parts) {
2029
+ const measurement = CSSStyleDeclarationValueParser.getMeasurement(part);
2030
+ if (!measurement && part !== 'left' && part !== 'right' && part !== 'center') {
2031
+ return null;
2032
+ }
2033
+ if (parsedValue) {
2034
+ parsedValue += ' ';
2035
+ }
2036
+ parsedValue += measurement || part;
2037
+ }
2038
+ }
2039
+ return { 'background-position-x': { value: parsedValue, important } };
2040
+ }
2041
+ /**
2042
+ * Returns background position.
2043
+ *
2044
+ * @param value Value.
2045
+ * @param important Important.
2046
+ * @returns Property values
2047
+ */
2048
+ static getBackgroundPositionY(value, important) {
2049
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2050
+ if (variable) {
2051
+ return { 'background-position-y': { value: variable, important } };
2052
+ }
2053
+ const lowerValue = value.toLowerCase();
2054
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
2055
+ return { 'background-position-y': { value: lowerValue, important } };
2056
+ }
2057
+ const imageParts = lowerValue.split(SPLIT_COMMA_SEPARATED_WITH_PARANTHESES_REGEXP);
2058
+ let parsedValue = '';
2059
+ for (const imagePart of imageParts) {
2060
+ const parts = imagePart.trim().split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
2061
+ if (parsedValue) {
2062
+ parsedValue += ',';
2063
+ }
2064
+ for (const part of parts) {
2065
+ const measurement = CSSStyleDeclarationValueParser.getMeasurement(part);
2066
+ if (!measurement && part !== 'top' && part !== 'bottom' && part !== 'center') {
2067
+ return null;
2068
+ }
2069
+ if (parsedValue) {
2070
+ parsedValue += ' ';
2071
+ }
2072
+ parsedValue += measurement || part;
2073
+ }
2074
+ }
2075
+ return { 'background-position-y': { value: parsedValue, important } };
2076
+ }
2077
+ /**
2078
+ * Returns background color.
2079
+ *
2080
+ * @param value Value.
2081
+ * @param important Important.
2082
+ * @returns Property value.
2083
+ */
2084
+ static getBackgroundColor(value, important) {
2085
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2086
+ if (variable) {
2087
+ return { 'background-color': { value: variable, important } };
2088
+ }
2089
+ const color = CSSStyleDeclarationValueParser.getGlobal(value) ||
2090
+ CSSStyleDeclarationValueParser.getColor(value);
2091
+ return color
2092
+ ? {
2093
+ ['background-color']: { important, value: color }
2094
+ }
2095
+ : null;
2096
+ }
2097
+ /**
2098
+ * Returns background image.
2099
+ *
2100
+ * @param value Value.
2101
+ * @param important Important.
2102
+ * @returns Property value.
2103
+ */
2104
+ static getBackgroundImage(value, important) {
2105
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2106
+ if (variable) {
2107
+ return { 'background-image': { value: variable, important } };
2108
+ }
2109
+ const lowerValue = value.toLowerCase();
2110
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || lowerValue === 'none') {
2111
+ return { 'background-image': { value: lowerValue, important } };
2112
+ }
2113
+ const parts = CSSStyleDeclarationValueUtility.splitByComma(value);
2114
+ const parsed = [];
2115
+ for (const part of parts) {
2116
+ const parsedValue = CSSStyleDeclarationValueParser.getURL(part.trim()) ||
2117
+ CSSStyleDeclarationValueParser.getGradient(part.trim());
2118
+ if (!parsedValue) {
2119
+ return null;
2120
+ }
2121
+ parsed.push(parsedValue);
2122
+ }
2123
+ if (parsed.length) {
2124
+ return { 'background-image': { value: parsed.join(', '), important } };
2125
+ }
2126
+ return null;
2127
+ }
2128
+ /**
2129
+ * Returns color.
2130
+ *
2131
+ * @param value Value.
2132
+ * @param important Important.
2133
+ * @returns Property value.
2134
+ */
2135
+ static getColor(value, important) {
2136
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2137
+ if (variable) {
2138
+ return { color: { value: variable, important } };
2139
+ }
2140
+ const color = CSSStyleDeclarationValueParser.getGlobal(value) ||
2141
+ CSSStyleDeclarationValueParser.getColor(value);
2142
+ return color ? { color: { important, value: color } } : null;
2143
+ }
2144
+ /**
2145
+ * Returns color.
2146
+ *
2147
+ * @param value Value.
2148
+ * @param important Important.
2149
+ * @returns Property value.
2150
+ */
2151
+ static getFloodColor(value, important) {
2152
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2153
+ if (variable) {
2154
+ return { 'flood-color': { value: variable, important } };
2155
+ }
2156
+ const color = CSSStyleDeclarationValueParser.getGlobal(value) ||
2157
+ CSSStyleDeclarationValueParser.getColor(value);
2158
+ return color ? { 'flood-color': { important, value: color } } : null;
2159
+ }
2160
+ /**
2161
+ * Returns font.
2162
+ *
2163
+ * @param value Value.
2164
+ * @param important Important.
2165
+ * @returns Property values
2166
+ */
2167
+ static getFont(value, important) {
2168
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2169
+ if (variable) {
2170
+ return { font: { value: variable, important } };
2171
+ }
2172
+ const lowerValue = value.toLowerCase();
2173
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
2174
+ return {
2175
+ ...this.getFontStyle(lowerValue, important),
2176
+ ...this.getFontVariant(lowerValue, important),
2177
+ ...this.getFontWeight(lowerValue, important),
2178
+ ...this.getFontStretch(lowerValue, important),
2179
+ ...this.getFontSize(lowerValue, important),
2180
+ ...this.getLineHeight(lowerValue, important),
2181
+ ...this.getFontFamily(lowerValue, important)
2182
+ };
2183
+ }
2184
+ if (SYSTEM_FONT.includes(lowerValue)) {
2185
+ return { font: { value: lowerValue, important } };
2186
+ }
2187
+ const properties = {
2188
+ ...this.getFontStyle('normal', important),
2189
+ ...this.getFontVariant('normal', important),
2190
+ ...this.getFontWeight('normal', important),
2191
+ ...this.getFontStretch('normal', important),
2192
+ ...this.getLineHeight('normal', important)
2193
+ };
2194
+ const parts = value
2195
+ .replace(/\s*\/\s*/g, '/')
2196
+ .split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
2197
+ for (let i = 0, max = parts.length; i < max; i++) {
2198
+ const part = parts[i];
2199
+ if (part.includes('/')) {
2200
+ const [size, height] = part.split('/');
2201
+ const fontSize = this.getFontSize(size, important);
2202
+ const lineHeight = this.getLineHeight(height, important);
2203
+ if (!fontSize || !lineHeight) {
2204
+ return null;
2205
+ }
2206
+ Object.assign(properties, fontSize, lineHeight);
2207
+ }
2208
+ else {
2209
+ const fontStyle = this.getFontStyle(part, important);
2210
+ const fontVariant = this.getFontVariant(part, important);
2211
+ const fontWeight = this.getFontWeight(part, important);
2212
+ const fontSize = this.getFontSize(part, important);
2213
+ const fontStretch = this.getFontStretch(part, important);
2214
+ if (fontStyle) {
2215
+ Object.assign(properties, fontStyle);
2216
+ }
2217
+ else if (fontVariant) {
2218
+ Object.assign(properties, fontVariant);
2219
+ }
2220
+ else if (fontWeight) {
2221
+ Object.assign(properties, fontWeight);
2222
+ }
2223
+ else if (fontSize) {
2224
+ Object.assign(properties, fontSize);
2225
+ }
2226
+ else if (fontStretch) {
2227
+ Object.assign(properties, fontStretch);
2228
+ }
2229
+ else {
2230
+ const fontFamilyValue = parts.slice(i).join(' ');
2231
+ const fontFamily = this.getFontFamily(fontFamilyValue, important);
2232
+ if (!fontFamily) {
2233
+ return null;
2234
+ }
2235
+ Object.assign(properties, fontFamily);
2236
+ break;
2237
+ }
2238
+ }
2239
+ }
2240
+ return properties;
2241
+ }
2242
+ /**
2243
+ * Returns font style.
2244
+ *
2245
+ * @param value Value.
2246
+ * @param important Important.
2247
+ * @returns Property values
2248
+ */
2249
+ static getFontStyle(value, important) {
2250
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2251
+ if (variable) {
2252
+ return { 'font-style': { value: variable, important } };
2253
+ }
2254
+ const lowerValue = value.toLowerCase();
2255
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || FONT_STYLE.includes(lowerValue)) {
2256
+ return { 'font-style': { value: lowerValue, important } };
2257
+ }
2258
+ const parts = value.split(SPLIT_SPACE_SEPARATED_WITH_PARANTHESES_REGEXP);
2259
+ if (parts.length === 2 && parts[0] === 'oblique') {
2260
+ const degree = CSSStyleDeclarationValueParser.getDegree(parts[1]);
2261
+ return degree ? { 'font-style': { value: lowerValue, important } } : null;
2262
+ }
2263
+ return null;
2264
+ }
2265
+ /**
2266
+ * Returns font variant.
2267
+ *
2268
+ * @param value Value.
2269
+ * @param important Important.
2270
+ * @returns Property values
2271
+ */
2272
+ static getFontVariant(value, important) {
2273
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2274
+ if (variable) {
2275
+ return { 'font-variant': { value: variable, important } };
2276
+ }
2277
+ const lowerValue = value.toLowerCase();
2278
+ return CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
2279
+ lowerValue === 'normal' ||
2280
+ lowerValue === 'small-caps'
2281
+ ? { 'font-variant': { value: lowerValue, important } }
2282
+ : null;
2283
+ }
2284
+ /**
2285
+ * Returns font strech.
2286
+ *
2287
+ * @param value Value.
2288
+ * @param important Important.
2289
+ * @returns Property values
2290
+ */
2291
+ static getFontStretch(value, important) {
2292
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2293
+ if (variable) {
2294
+ return { 'font-stretch': { value: variable, important } };
2295
+ }
2296
+ const lowerValue = value.toLowerCase();
2297
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || FONT_STRETCH.includes(lowerValue)) {
2298
+ return { 'font-stretch': { value: lowerValue, important } };
2299
+ }
2300
+ const percentage = CSSStyleDeclarationValueParser.getPercentage(value);
2301
+ return percentage ? { 'font-stretch': { value: percentage, important } } : null;
2302
+ }
2303
+ /**
2304
+ * Returns font weight.
2305
+ *
2306
+ * @param value Value.
2307
+ * @param important Important.
2308
+ * @returns Property values
2309
+ */
2310
+ static getFontWeight(value, important) {
2311
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2312
+ if (variable) {
2313
+ return { 'font-weight': { value: variable, important } };
2314
+ }
2315
+ const lowerValue = value.toLowerCase();
2316
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || FONT_WEIGHT.includes(lowerValue)) {
2317
+ return { 'font-weight': { value: lowerValue, important } };
2318
+ }
2319
+ const integer = CSSStyleDeclarationValueParser.getInteger(value);
2320
+ return integer ? { 'font-weight': { value: integer, important } } : null;
2321
+ }
2322
+ /**
2323
+ * Returns font size.
2324
+ *
2325
+ * @param value Value.
2326
+ * @param important Important.
2327
+ * @returns Property values
2328
+ */
2329
+ static getFontSize(value, important) {
2330
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2331
+ if (variable) {
2332
+ return { 'font-size': { value: variable, important } };
2333
+ }
2334
+ const lowerValue = value.toLowerCase();
2335
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || FONT_SIZE.includes(lowerValue)) {
2336
+ return { 'font-size': { value: lowerValue, important } };
2337
+ }
2338
+ const measurement = CSSStyleDeclarationValueParser.getMeasurement(value);
2339
+ return measurement ? { 'font-size': { value: measurement, important } } : null;
2340
+ }
2341
+ /**
2342
+ * Returns line height.
2343
+ *
2344
+ * @param value Value.
2345
+ * @param important Important.
2346
+ * @returns Property values
2347
+ */
2348
+ static getLineHeight(value, important) {
2349
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2350
+ if (variable) {
2351
+ return { 'line-height': { value: variable, important } };
2352
+ }
2353
+ const lowerValue = value.toLowerCase();
2354
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue) || lowerValue === 'normal') {
2355
+ return { 'line-height': { value: lowerValue, important } };
2356
+ }
2357
+ const lineHeight = CSSStyleDeclarationValueParser.getFloat(value) ||
2358
+ CSSStyleDeclarationValueParser.getMeasurement(value);
2359
+ return lineHeight ? { 'line-height': { value: lineHeight, important } } : null;
2360
+ }
2361
+ /**
2362
+ * Returns font family.
2363
+ *
2364
+ * @param value Value.
2365
+ * @param important Important.
2366
+ * @returns Property values
2367
+ */
2368
+ static getFontFamily(value, important) {
2369
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2370
+ if (variable) {
2371
+ return { 'font-family': { value: variable, important } };
2372
+ }
2373
+ const globalValue = CSSStyleDeclarationValueParser.getGlobal(value);
2374
+ if (globalValue) {
2375
+ return { 'font-family': { value: globalValue, important } };
2376
+ }
2377
+ const parts = value.split(',');
2378
+ let parsedValue = '';
2379
+ let endWithApostroph = false;
2380
+ for (let i = 0, max = parts.length; i < max; i++) {
2381
+ let trimmedPart = parts[i].trim().replace(/'/g, '"');
2382
+ if (!trimmedPart) {
2383
+ return null;
2384
+ }
2385
+ if (trimmedPart.includes(' ')) {
2386
+ const apostrophCount = (trimmedPart.match(/"/g) || []).length;
2387
+ if ((trimmedPart[0] !== '"' || i !== 0) && apostrophCount !== 2 && apostrophCount !== 0) {
2388
+ return null;
2389
+ }
2390
+ if (trimmedPart[0] === '"' && trimmedPart[trimmedPart.length - 1] !== '"') {
2391
+ endWithApostroph = true;
2392
+ }
2393
+ else if (trimmedPart[0] !== '"' && trimmedPart[trimmedPart.length - 1] !== '"') {
2394
+ trimmedPart = `"${trimmedPart}"`;
2395
+ }
2396
+ }
2397
+ else {
2398
+ trimmedPart = trimmedPart.replace(/"/g, '');
2399
+ }
2400
+ if (i > 0) {
2401
+ parsedValue += ', ';
2402
+ }
2403
+ parsedValue += trimmedPart;
2404
+ }
2405
+ if (endWithApostroph) {
2406
+ parsedValue += '"';
2407
+ }
2408
+ if (!parsedValue) {
2409
+ return null;
2410
+ }
2411
+ return {
2412
+ 'font-family': {
2413
+ important,
2414
+ value: parsedValue
2415
+ }
2416
+ };
2417
+ }
2418
+ /**
2419
+ * Returns font family.
2420
+ *
2421
+ * @param value Value.
2422
+ * @param important Important.
2423
+ * @returns Property values
2424
+ */
2425
+ static getTextTransform(value, important) {
2426
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2427
+ if (variable) {
2428
+ return { 'text-transform': { value: variable, important } };
2429
+ }
2430
+ const lowerValue = value.toLowerCase();
2431
+ const parsedValue = CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
2432
+ (TEXT_TRANSFORM.includes(lowerValue) && lowerValue);
2433
+ if (parsedValue) {
2434
+ return {
2435
+ 'text-transform': { value: parsedValue, important }
2436
+ };
2437
+ }
2438
+ return null;
2439
+ }
2440
+ /**
2441
+ * Returns visibility.
2442
+ *
2443
+ * @param value Value.
2444
+ * @param important Important.
2445
+ * @returns Property
2446
+ */
2447
+ static getVisibility(value, important) {
2448
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2449
+ if (variable) {
2450
+ return { visibility: { value: variable, important } };
2451
+ }
2452
+ const lowerValue = value.toLowerCase();
2453
+ const parsedValue = CSSStyleDeclarationValueParser.getGlobal(lowerValue) ||
2454
+ (VISIBILITY.includes(lowerValue) && lowerValue);
2455
+ if (parsedValue) {
2456
+ return {
2457
+ visibility: { value: parsedValue, important }
2458
+ };
2459
+ }
2460
+ return null;
2461
+ }
2462
+ /**
2463
+ * Returns aspect ratio.
2464
+ *
2465
+ * @param value Value.
2466
+ * @param important Important.
2467
+ * @returns Property
2468
+ */
2469
+ static getAspectRatio(value, important) {
2470
+ const variable = CSSStyleDeclarationValueParser.getVariable(value);
2471
+ if (variable) {
2472
+ return { 'aspect-ratio': { value: variable, important } };
2473
+ }
2474
+ const lowerValue = value.toLowerCase();
2475
+ if (CSSStyleDeclarationValueParser.getGlobal(lowerValue)) {
2476
+ return { 'aspect-ratio': { value: lowerValue, important } };
2477
+ }
2478
+ let parsedValue = value;
2479
+ const hasAuto = parsedValue.includes('auto');
2480
+ if (hasAuto) {
2481
+ parsedValue = parsedValue.replace('auto', '');
2482
+ }
2483
+ parsedValue = parsedValue.replace(WHITE_SPACE_GLOBAL_REGEXP, '');
2484
+ if (!parsedValue) {
2485
+ return { 'aspect-ratio': { value: 'auto', important } };
2486
+ }
2487
+ const aspectRatio = parsedValue.split('/');
2488
+ if (aspectRatio.length > 3) {
2489
+ return null;
2490
+ }
2491
+ const width = Number(aspectRatio[0]);
2492
+ const height = aspectRatio[1] ? Number(aspectRatio[1]) : 1;
2493
+ if (isNaN(width) || isNaN(height)) {
2494
+ return null;
2495
+ }
2496
+ if (hasAuto) {
2497
+ return { 'aspect-ratio': { value: `auto ${width} / ${height}`, important } };
2498
+ }
2499
+ return { 'aspect-ratio': { value: `${width} / ${height}`, important } };
2500
+ }
2501
+ }
2502
+ //# sourceMappingURL=CSSStyleDeclarationPropertySetParser.js.map