@rescript/webapi 0.1.0-experimental-61b1074 → 0.1.0-experimental-0781ac8

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 (480) hide show
  1. package/README.md +10 -5
  2. package/package.json +6 -4
  3. package/rescript.json +591 -4
  4. package/src/Base/ArrayBufferTypedArrayOrDataView.res +4 -0
  5. package/src/Base/BaseCSSFontLoading.res +25 -0
  6. package/src/{EncryptedMediaExtensionsAPI.res → Base/BaseEncryptedMediaExtensions.res} +12 -18
  7. package/src/Base/BaseEvent.res +6 -0
  8. package/src/Base/BaseFile.res +37 -0
  9. package/src/{FileAndDirectoryEntriesAPI.res → Base/BaseFileAndDirectoryEntries.res} +5 -22
  10. package/src/{DOMAPI.res → Base/DOM.res} +225 -2237
  11. package/src/{CSSFontLoadingAPI.res → CSSFontLoading/CssFontLoadingTypes.res} +4 -15
  12. package/src/CSSFontLoading/FontFace.res +62 -0
  13. package/src/CSSFontLoading/FontFaceSet.res +38 -0
  14. package/src/Canvas/Canvas.res +179 -0
  15. package/src/{CanvasAPI → Canvas}/CanvasGradient.res +2 -3
  16. package/src/{CanvasAPI → Canvas}/CanvasPattern.res +3 -3
  17. package/src/{DOMAPI → Canvas}/CanvasRenderingContext2D.res +178 -140
  18. package/src/{CanvasAPI.res → Canvas/CanvasTypes.res} +9 -11
  19. package/src/Canvas/FillStyle.res +25 -0
  20. package/src/{DOMAPI → Canvas}/HTMLCanvasElement.res +21 -23
  21. package/src/{CanvasAPI → Canvas}/ImageBitmap.res +1 -3
  22. package/src/{CanvasAPI → Canvas}/ImageBitmapRenderingContext.res +4 -4
  23. package/src/{CanvasAPI → Canvas}/OffscreenCanvas.res +19 -19
  24. package/src/{CanvasAPI → Canvas}/Path2D.res +63 -19
  25. package/src/Canvas/VideoFrame.res +223 -0
  26. package/src/{ChannelMessagingAPI.res → ChannelMessaging/ChannelMessagingTypes.res} +2 -4
  27. package/src/{ChannelMessagingAPI → ChannelMessaging}/MessagePort.res +8 -10
  28. package/src/Clipboard/Clipboard.res +29 -0
  29. package/src/{ClipboardAPI → Clipboard}/ClipboardItem.res +5 -6
  30. package/src/{ClipboardAPI.res → Clipboard/ClipboardTypes.res} +5 -7
  31. package/src/{CredentialManagementAPI.res → CredentialManagement/CredentialManagementTypes.res} +10 -13
  32. package/src/CredentialManagement/CredentialsContainer.res +33 -0
  33. package/src/{DOMAPI → DOM}/Animation.res +13 -13
  34. package/src/{DOMAPI → DOM}/AnimationEffect.res +7 -5
  35. package/src/{DOMAPI → DOM}/CSSRuleList.res +1 -3
  36. package/src/{DOMAPI → DOM}/CSSStyleDeclaration.res +6 -7
  37. package/src/DOM/CSSStyleSheet.res +30 -0
  38. package/src/{DOMAPI → DOM}/CSSStyleValue.res +3 -4
  39. package/src/DOM/CaretPosition.res +2 -0
  40. package/src/{DOMAPI → DOM}/CharacterData.res +5 -7
  41. package/src/DOM/Comment.res +7 -0
  42. package/src/{DOMAPI → DOM}/CustomElementRegistry.res +10 -9
  43. package/src/DOM/DOMException.res +7 -0
  44. package/src/{DOMAPI → DOM}/DOMImplementation.res +6 -8
  45. package/src/DOM/DOMMatrix.res +228 -0
  46. package/src/DOM/DOMMatrixReadOnly.res +147 -0
  47. package/src/DOM/DOMPoint.res +31 -0
  48. package/src/{DOMAPI → DOM}/DOMPointReadOnly.res +7 -7
  49. package/src/{DOMAPI → DOM}/DOMRect.res +6 -7
  50. package/src/DOM/DOMRectList.res +2 -0
  51. package/src/DOM/DOMRectReadOnly.res +19 -0
  52. package/src/{Prelude → DOM}/DOMStringList.res +3 -3
  53. package/src/{DOMAPI → DOM}/DOMTokenList.res +7 -9
  54. package/src/{DOMAPI → DOM}/Document.res +94 -80
  55. package/src/{DOMAPI → DOM}/DocumentFragment.res +10 -11
  56. package/src/DOM/DocumentTimeline.res +8 -0
  57. package/src/{Global.res → DOM/DomGlobal.res} +62 -285
  58. package/src/{DOMAPI/HTMLMediaElement.res → DOM/DomHTMLMediaElement.res} +6 -16
  59. package/src/DOM/DomTypes.res +2105 -0
  60. package/src/{DOMAPI → DOM}/Element.res +53 -44
  61. package/src/{DOMAPI → DOM}/ElementInternals.res +6 -8
  62. package/src/{DOMAPI → DOM}/FileList.res +2 -5
  63. package/src/DOM/HTMLAnchorElement.res +1 -0
  64. package/src/DOM/HTMLAreaElement.res +1 -0
  65. package/src/DOM/HTMLAudioElement.res +1 -0
  66. package/src/DOM/HTMLBRElement.res +1 -0
  67. package/src/DOM/HTMLBaseElement.res +1 -0
  68. package/src/DOM/HTMLBodyElement.res +1 -0
  69. package/src/{DOMAPI → DOM}/HTMLButtonElement.res +4 -6
  70. package/src/{DOMAPI → DOM}/HTMLCollection.res +2 -4
  71. package/src/DOM/HTMLDListElement.res +1 -0
  72. package/src/DOM/HTMLDataElement.res +1 -0
  73. package/src/DOM/HTMLDataListElement.res +1 -0
  74. package/src/{DOMAPI → DOM}/HTMLDialogElement.res +4 -6
  75. package/src/DOM/HTMLDivElement.res +1 -0
  76. package/src/{DOMAPI → DOM}/HTMLElement.res +5 -5
  77. package/src/DOM/HTMLEmbedElement.res +4 -0
  78. package/src/{DOMAPI → DOM}/HTMLFieldSetElement.res +4 -6
  79. package/src/DOM/HTMLFormControlsCollection.res +16 -0
  80. package/src/{DOMAPI → DOM}/HTMLFormElement.res +7 -7
  81. package/src/DOM/HTMLFrameSetElement.res +1 -0
  82. package/src/DOM/HTMLHRElement.res +1 -0
  83. package/src/DOM/HTMLHeadElement.res +1 -0
  84. package/src/DOM/HTMLHeadingElement.res +1 -0
  85. package/src/DOM/HTMLHtmlElement.res +1 -0
  86. package/src/DOM/HTMLIFrameElement.res +4 -0
  87. package/src/DOM/HTMLImageElement.res +7 -0
  88. package/src/{DOMAPI → DOM}/HTMLInputElement.res +12 -14
  89. package/src/DOM/HTMLLIElement.res +1 -0
  90. package/src/DOM/HTMLLabelElement.res +1 -0
  91. package/src/DOM/HTMLLegendElement.res +1 -0
  92. package/src/DOM/HTMLLinkElement.res +1 -0
  93. package/src/DOM/HTMLMapElement.res +1 -0
  94. package/src/DOM/HTMLMenuElement.res +1 -0
  95. package/src/DOM/HTMLMetaElement.res +1 -0
  96. package/src/DOM/HTMLMeterElement.res +1 -0
  97. package/src/DOM/HTMLModElement.res +1 -0
  98. package/src/DOM/HTMLOListElement.res +1 -0
  99. package/src/{DOMAPI → DOM}/HTMLObjectElement.res +5 -7
  100. package/src/DOM/HTMLOptGroupElement.res +1 -0
  101. package/src/DOM/HTMLOptionElement.res +1 -0
  102. package/src/{DOMAPI → DOM}/HTMLOptionsCollection.res +4 -5
  103. package/src/{DOMAPI → DOM}/HTMLOutputElement.res +4 -6
  104. package/src/DOM/HTMLParagraphElement.res +1 -0
  105. package/src/DOM/HTMLPictureElement.res +1 -0
  106. package/src/DOM/HTMLPreElement.res +1 -0
  107. package/src/DOM/HTMLProgressElement.res +1 -0
  108. package/src/DOM/HTMLQuoteElement.res +1 -0
  109. package/src/{DOMAPI → DOM}/HTMLScriptElement.res +1 -3
  110. package/src/{DOMAPI → DOM}/HTMLSelectElement.res +10 -12
  111. package/src/DOM/HTMLSlotElement.res +31 -0
  112. package/src/DOM/HTMLSourceElement.res +1 -0
  113. package/src/DOM/HTMLSpanElement.res +1 -0
  114. package/src/DOM/HTMLStyleElement.res +1 -0
  115. package/src/DOM/HTMLTableCaptionElement.res +1 -0
  116. package/src/DOM/HTMLTableCellElement.res +1 -0
  117. package/src/{DOMAPI → DOM}/HTMLTableElement.res +12 -12
  118. package/src/{DOMAPI → DOM}/HTMLTableRowElement.res +6 -5
  119. package/src/{DOMAPI → DOM}/HTMLTableSectionElement.res +6 -5
  120. package/src/DOM/HTMLTemplateElement.res +1 -0
  121. package/src/{DOMAPI → DOM}/HTMLTextAreaElement.res +9 -11
  122. package/src/DOM/HTMLTimeElement.res +1 -0
  123. package/src/DOM/HTMLTitleElement.res +1 -0
  124. package/src/DOM/HTMLTrackElement.res +1 -0
  125. package/src/DOM/HTMLUListElement.res +1 -0
  126. package/src/DOM/HTMLVideoElement.res +32 -0
  127. package/src/{DOMAPI → DOM}/IdleDeadline.res +1 -3
  128. package/src/{DOMAPI → DOM}/ImageData.res +4 -5
  129. package/src/{DOMAPI → DOM}/Location.res +3 -5
  130. package/src/{DOMAPI → DOM}/MediaList.res +3 -5
  131. package/src/DOM/MediaQueryList.res +1 -0
  132. package/src/{DOMAPI → DOM}/NamedNodeMap.res +15 -11
  133. package/src/DOM/Navigator.res +166 -0
  134. package/src/{DOMAPI → DOM}/Node.res +10 -11
  135. package/src/DOM/NodeFilter.res +2 -0
  136. package/src/{DOMAPI → DOM}/NodeIterator.res +2 -4
  137. package/src/{DOMAPI → DOM}/NodeList.res +1 -3
  138. package/src/{DOMAPI → DOM}/Range.res +27 -27
  139. package/src/DOM/SVGGraphicsElement.res +18 -0
  140. package/src/{DOMAPI → DOM}/SVGLength.res +2 -4
  141. package/src/DOM/ScreenOrientation.res +7 -0
  142. package/src/{DOMAPI → DOM}/Selection.res +22 -20
  143. package/src/DOM/ShadowRoot.res +19 -0
  144. package/src/DOM/StylePropertyMap.res +57 -0
  145. package/src/{DOMAPI → DOM}/StylePropertyMapReadOnly.res +3 -4
  146. package/src/{DOMAPI → DOM}/StyleSheetList.res +1 -3
  147. package/src/{DOMAPI → DOM}/Text.res +3 -5
  148. package/src/DOM/TextTrackList.res +7 -0
  149. package/src/{DOMAPI → DOM}/TimeRanges.res +2 -4
  150. package/src/{DOMAPI → DOM}/TreeWalker.res +7 -9
  151. package/src/{DOMAPI → DOM}/VideoColorSpace.res +3 -4
  152. package/src/DOM/Window.res +557 -0
  153. package/src/{DOMAPI → DOM}/XPathExpression.res +4 -6
  154. package/src/{DOMAPI → DOM}/XPathResult.res +2 -4
  155. package/src/EncryptedMediaExtensions/EncryptedMediaExtensionsHTMLMediaElement.res +15 -0
  156. package/src/EncryptedMediaExtensions/EncryptedMediaExtensionsTypes.res +43 -0
  157. package/src/{EncryptedMediaExtensionsAPI → EncryptedMediaExtensions}/MediaKeySession.res +10 -10
  158. package/src/{EncryptedMediaExtensionsAPI → EncryptedMediaExtensions}/MediaKeyStatusMap.res +2 -4
  159. package/src/EncryptedMediaExtensions/MediaKeySystemAccess.res +14 -0
  160. package/src/EncryptedMediaExtensions/MediaKeys.res +35 -0
  161. package/src/{EventAPI → Event}/AbortController.res +2 -4
  162. package/src/{EventAPI → Event}/AbortSignal.res +5 -7
  163. package/src/{EventAPI → Event}/Event.res +5 -6
  164. package/src/{EventAPI → Event}/EventTarget.res +14 -16
  165. package/src/{EventAPI.res → Event/EventTypes.res} +10 -10
  166. package/src/{EventAPI → Event}/ExtendableEvent.res +2 -4
  167. package/src/{FetchAPI → Fetch}/BodyInit.res +10 -12
  168. package/src/Fetch/Fetch.res +12 -0
  169. package/src/{FetchAPI.res → Fetch/FetchTypes.res} +19 -21
  170. package/src/{FetchAPI → Fetch}/FormData.res +16 -15
  171. package/src/Fetch/FormDataEntryValue.res +2 -0
  172. package/src/{FetchAPI → Fetch}/Headers.res +10 -12
  173. package/src/{FetchAPI → Fetch}/HeadersInit.res +4 -4
  174. package/src/{FetchAPI → Fetch}/Request.res +16 -11
  175. package/src/{FetchAPI → Fetch}/Response.res +27 -23
  176. package/src/{FileAPI → File}/Blob.res +9 -7
  177. package/src/{FileAPI → File}/File.res +5 -5
  178. package/src/File/FileSystemDirectoryHandle.res +49 -0
  179. package/src/File/FileSystemFileHandle.res +25 -0
  180. package/src/File/FileSystemHandle.res +6 -0
  181. package/src/File/FileSystemWritableFileStream.res +65 -0
  182. package/src/{FileAPI.res → File/FileTypes.res} +22 -23
  183. package/src/File/ReadableStream.res +79 -0
  184. package/src/File/WritableStream.res +27 -0
  185. package/src/{FileAPI → File}/WritableStreamDefaultController.res +1 -3
  186. package/src/FileAndDirectoryEntries/FileAndDirectoryEntriesTypes.res +35 -0
  187. package/src/FileAndDirectoryEntries/FileSystemDirectoryEntry.res +42 -0
  188. package/src/FileAndDirectoryEntries/FileSystemDirectoryReader.res +9 -0
  189. package/src/FileAndDirectoryEntries/FileSystemEntry.res +9 -0
  190. package/src/Gamepad/GamepadHapticActuator.res +16 -0
  191. package/src/{GamepadAPI.res → Gamepad/GamepadTypes.res} +4 -4
  192. package/src/Geolocation/Geolocation.res +31 -0
  193. package/src/{GeolocationAPI → Geolocation}/GeolocationCoordinates.res +1 -3
  194. package/src/{GeolocationAPI → Geolocation}/GeolocationPosition.res +1 -3
  195. package/src/{GeolocationAPI.res → Geolocation/GeolocationTypes.res} +5 -5
  196. package/src/{HistoryAPI → History}/History.res +13 -8
  197. package/src/{HistoryAPI.res → History/HistoryTypes.res} +3 -2
  198. package/src/{IndexedDBAPI → IndexedDB}/IDBDatabase.res +14 -16
  199. package/src/{IndexedDBAPI → IndexedDB}/IDBFactory.res +10 -6
  200. package/src/{IndexedDBAPI → IndexedDB}/IDBIndex.res +22 -17
  201. package/src/{IndexedDBAPI → IndexedDB}/IDBObjectStore.res +44 -33
  202. package/src/{IndexedDBAPI → IndexedDB}/IDBTransaction.res +5 -6
  203. package/src/{IndexedDBAPI.res → IndexedDB/IndexedDbTypes.res} +16 -17
  204. package/src/IntersectionObserver/IntersectionObserver.res +39 -0
  205. package/src/IntersectionObserver/IntersectionObserverRoot.res +21 -0
  206. package/src/{IntersectionObserverAPI.res → IntersectionObserver/IntersectionObserverTypes.res} +7 -9
  207. package/src/MediaCapabilities/MediaCapabilities.res +19 -0
  208. package/src/{MediaCapabilitiesAPI.res → MediaCapabilities/MediaCapabilitiesTypes.res} +3 -3
  209. package/src/{MediaCaptureAndStreamsAPI.res → MediaCaptureAndStreams/MediaCaptureAndStreamsTypes.res} +7 -8
  210. package/src/MediaCaptureAndStreams/MediaDeviceInfo.res +9 -0
  211. package/src/MediaCaptureAndStreams/MediaDevices.res +40 -0
  212. package/src/MediaCaptureAndStreams/MediaStream.res +89 -0
  213. package/src/MediaCaptureAndStreams/MediaStreamTrack.res +51 -0
  214. package/src/MediaSession/MediaMetadata.res +10 -0
  215. package/src/MediaSession/MediaSession.res +25 -0
  216. package/src/{MediaSessionAPI.res → MediaSession/MediaSessionTypes.res} +4 -2
  217. package/src/MutationObserver/MutationObserver.res +31 -0
  218. package/src/{MutationObserverAPI.res → MutationObserver/MutationObserverTypes.res} +3 -5
  219. package/src/Notification/Notification.res +46 -0
  220. package/src/{NotificationAPI.res → Notification/NotificationTypes.res} +5 -7
  221. package/src/Performance/Performance.res +101 -0
  222. package/src/{PerformanceAPI → Performance}/PerformanceEntry.res +1 -3
  223. package/src/Performance/PerformanceMark.res +16 -0
  224. package/src/{PerformanceAPI.res → Performance/PerformanceTypes.res} +9 -12
  225. package/src/Permissions/Permissions.res +10 -0
  226. package/src/{PermissionsAPI.res → Permissions/PermissionsTypes.res} +4 -6
  227. package/src/PictureInPicture/PictureInPicture.res +7 -0
  228. package/src/{PictureInPictureAPI.res → PictureInPicture/PictureInPictureTypes.res} +1 -3
  229. package/src/Push/ApplicationServerKey.res +2 -0
  230. package/src/Push/PushEvent.res +3 -0
  231. package/src/Push/PushManager.res +24 -0
  232. package/src/{PushAPI → Push}/PushMessageData.res +3 -3
  233. package/src/{PushAPI → Push}/PushSubscription.res +4 -5
  234. package/src/{PushAPI.res → Push/PushTypes.res} +6 -8
  235. package/src/RemotePlayback/RemotePlayback.res +25 -0
  236. package/src/{RemotePlaybackAPI.res → RemotePlayback/RemotePlaybackTypes.res} +4 -6
  237. package/src/ResizeObserver/ResizeObserver.res +30 -0
  238. package/src/{ResizeObserverAPI.res → ResizeObserver/ResizeObserverTypes.res} +5 -7
  239. package/src/{ScreenWakeLockAPI.res → ScreenWakeLock/ScreenWakeLockTypes.res} +3 -5
  240. package/src/ScreenWakeLock/WakeLock.res +8 -0
  241. package/src/ScreenWakeLock/WakeLockSentinel.res +7 -0
  242. package/src/ServiceWorker/Cache.res +117 -0
  243. package/src/{ServiceWorkerAPI → ServiceWorker}/Clients.res +14 -7
  244. package/src/{ServiceWorkerAPI → ServiceWorker}/NavigationPreloadManager.res +7 -6
  245. package/src/ServiceWorker/ServiceWorker.res +38 -0
  246. package/src/ServiceWorker/ServiceWorkerContainer.res +34 -0
  247. package/src/{ServiceWorkerAPI → ServiceWorker}/ServiceWorkerRegistration.res +8 -11
  248. package/src/ServiceWorker/ServiceWorkerScope.res +12 -0
  249. package/src/{ServiceWorkerAPI.res → ServiceWorker/ServiceWorkerTypes.res} +18 -23
  250. package/src/{StorageAPI → Storage}/StorageManager.res +5 -7
  251. package/src/{StorageAPI.res → Storage/StorageTypes.res} +1 -1
  252. package/src/UIEvents/CompositionEvent.res +10 -0
  253. package/src/{UIEventsAPI → UIEvents}/DataTransfer.res +10 -8
  254. package/src/{UIEventsAPI → UIEvents}/DataTransferItem.res +5 -8
  255. package/src/{UIEventsAPI → UIEvents}/DataTransferItemList.res +11 -7
  256. package/src/UIEvents/FocusEvent.res +10 -0
  257. package/src/UIEvents/InputEvent.res +16 -0
  258. package/src/UIEvents/KeyboardEvent.res +16 -0
  259. package/src/{UIEventsAPI → UIEvents}/MouseEvent.res +6 -5
  260. package/src/UIEvents/PointerEvent.res +24 -0
  261. package/src/{UIEventsAPI → UIEvents}/Touch.res +1 -3
  262. package/src/UIEvents/TouchEvent.res +10 -0
  263. package/src/{UIEventsAPI → UIEvents}/TouchList.res +1 -3
  264. package/src/UIEvents/UIEvent.res +20 -0
  265. package/src/{UIEventsAPI.res → UIEvents/UiEventsTypes.res} +28 -30
  266. package/src/UIEvents/WheelEvent.res +10 -0
  267. package/src/{URLAPI → URL}/URL.res +6 -5
  268. package/src/{URLAPI → URL}/URLSearchParams.res +20 -17
  269. package/src/{URLAPI.res → URL/UrlTypes.res} +5 -4
  270. package/src/{ViewTransitionsAPI → ViewTransitions}/ViewTransition.res +1 -3
  271. package/src/{ViewTransitionsAPI.res → ViewTransitions/ViewTransitionsTypes.res} +1 -1
  272. package/src/VisualViewport/VisualViewport.res +5 -0
  273. package/src/{VisualViewportAPI.res → VisualViewport/VisualViewportTypes.res} +2 -4
  274. package/src/WebAudio/AnalyserNode.res +38 -0
  275. package/src/{WebAudioAPI → WebAudio}/AudioBuffer.res +4 -6
  276. package/src/{WebAudioAPI → WebAudio}/AudioBufferSourceNode.res +5 -7
  277. package/src/WebAudio/AudioContext.res +59 -0
  278. package/src/WebAudio/AudioDestinationNode.res +1 -0
  279. package/src/{WebAudioAPI → WebAudio}/AudioNode.res +21 -12
  280. package/src/{WebAudioAPI → WebAudio}/AudioParam.res +23 -14
  281. package/src/WebAudio/AudioProcessingEvent.res +10 -0
  282. package/src/{WebAudioAPI → WebAudio}/AudioScheduledSourceNode.res +2 -4
  283. package/src/WebAudio/AudioWorkletNode.res +11 -0
  284. package/src/{WebAudioAPI → WebAudio}/BaseAudioContext.res +26 -25
  285. package/src/{WebAudioAPI → WebAudio}/BiquadFilterNode.res +6 -6
  286. package/src/WebAudio/ChannelMergerNode.res +10 -0
  287. package/src/WebAudio/ChannelSplitterNode.res +10 -0
  288. package/src/WebAudio/ConstantSourceNode.res +10 -0
  289. package/src/WebAudio/ConvolverNode.res +10 -0
  290. package/src/WebAudio/DelayNode.res +10 -0
  291. package/src/WebAudio/DynamicsCompressorNode.res +10 -0
  292. package/src/WebAudio/GainNode.res +10 -0
  293. package/src/{WebAudioAPI → WebAudio}/IIRFilterNode.res +6 -6
  294. package/src/WebAudio/MediaElementAudioSourceNode.res +10 -0
  295. package/src/WebAudio/MediaStreamAudioDestinationNode.res +10 -0
  296. package/src/WebAudio/MediaStreamAudioSourceNode.res +10 -0
  297. package/src/WebAudio/OfflineAudioCompletionEvent.res +10 -0
  298. package/src/WebAudio/OfflineAudioContext.res +58 -0
  299. package/src/WebAudio/OscillatorNode.res +17 -0
  300. package/src/WebAudio/PannerNode.res +10 -0
  301. package/src/WebAudio/PeriodicWave.res +8 -0
  302. package/src/WebAudio/StereoPannerNode.res +10 -0
  303. package/src/WebAudio/WaveShaperNode.res +10 -0
  304. package/src/{WebAudioAPI.res → WebAudio/WebAudioTypes.res} +55 -42
  305. package/src/{WebAudioAPI → WebAudio}/Worklet.res +5 -4
  306. package/src/{WebCryptoAPI → WebCrypto}/Crypto.res +2 -4
  307. package/src/WebCrypto/SubtleCrypto.res +173 -0
  308. package/src/{WebCryptoAPI.res → WebCrypto/WebCryptoTypes.res} +3 -5
  309. package/src/WebLocks/LockManager.res +26 -0
  310. package/src/{WebLocksAPI.res → WebLocks/WebLocksTypes.res} +2 -4
  311. package/src/WebMIDI/WebMIDI.res +7 -0
  312. package/src/{WebMIDIAPI.res → WebMIDI/WebMidiTypes.res} +1 -3
  313. package/src/WebSockets/CloseEvent.res +10 -0
  314. package/src/{WebSocketsAPI → WebSockets}/MessageEvent.res +14 -9
  315. package/src/WebSockets/WebSocket.res +71 -0
  316. package/src/{WebSocketsAPI.res → WebSockets/WebSocketsTypes.res} +12 -15
  317. package/src/{WebSpeechAPI → WebSpeech}/SpeechSynthesis.res +8 -8
  318. package/src/WebSpeech/SpeechSynthesisUtterance.res +8 -0
  319. package/src/{WebSpeechAPI.res → WebSpeech/WebSpeechTypes.res} +4 -5
  320. package/src/{WebStorageAPI → WebStorage}/Storage.res +8 -10
  321. package/src/WebStorage/StorageEvent.res +10 -0
  322. package/src/{WebStorageAPI.res → WebStorage/WebStorageTypes.res} +9 -11
  323. package/src/{WebVTTAPI → WebVTT}/TextTrack.res +3 -5
  324. package/src/{WebVTTAPI → WebVTT}/TextTrackCueList.res +2 -3
  325. package/src/{WebVTTAPI.res → WebVTT/WebVttTypes.res} +5 -5
  326. package/src/WebWorkers/CacheStorage.res +43 -0
  327. package/src/{WebWorkersAPI → WebWorkers}/SharedWorker.res +13 -12
  328. package/src/{WebWorkersAPI/SharedWorkerGlobalScope.res → WebWorkers/SharedWorkerScope.res} +6 -4
  329. package/src/{WebWorkersAPI.res → WebWorkers/WebWorkersTypes.res} +7 -10
  330. package/src/{WebWorkersAPI/WorkerGlobalScope.res → WebWorkers/Worker.res} +8 -8
  331. package/src/CSSFontLoadingAPI/FontFace.res +0 -34
  332. package/src/CSSFontLoadingAPI/FontFaceSet.res +0 -33
  333. package/src/CanvasAPI/FillStyle.res +0 -24
  334. package/src/ClipboardAPI/Clipboard.res +0 -27
  335. package/src/CredentialManagementAPI/CredentialsContainer.res +0 -29
  336. package/src/DOMAPI/CSSStyleSheet.res +0 -32
  337. package/src/DOMAPI/CaretPosition.res +0 -4
  338. package/src/DOMAPI/Comment.res +0 -9
  339. package/src/DOMAPI/DOMMatrix.res +0 -169
  340. package/src/DOMAPI/DOMMatrixReadOnly.res +0 -103
  341. package/src/DOMAPI/DOMPoint.res +0 -29
  342. package/src/DOMAPI/DOMRectList.res +0 -4
  343. package/src/DOMAPI/DOMRectReadOnly.res +0 -17
  344. package/src/DOMAPI/DocumentTimeline.res +0 -9
  345. package/src/DOMAPI/HTMLAnchorElement.res +0 -3
  346. package/src/DOMAPI/HTMLAreaElement.res +0 -3
  347. package/src/DOMAPI/HTMLAudioElement.res +0 -3
  348. package/src/DOMAPI/HTMLBRElement.res +0 -3
  349. package/src/DOMAPI/HTMLBaseElement.res +0 -3
  350. package/src/DOMAPI/HTMLBodyElement.res +0 -3
  351. package/src/DOMAPI/HTMLDListElement.res +0 -3
  352. package/src/DOMAPI/HTMLDataElement.res +0 -3
  353. package/src/DOMAPI/HTMLDataListElement.res +0 -3
  354. package/src/DOMAPI/HTMLDivElement.res +0 -3
  355. package/src/DOMAPI/HTMLEmbedElement.res +0 -6
  356. package/src/DOMAPI/HTMLFormControlsCollection.res +0 -16
  357. package/src/DOMAPI/HTMLFrameSetElement.res +0 -3
  358. package/src/DOMAPI/HTMLHRElement.res +0 -3
  359. package/src/DOMAPI/HTMLHeadElement.res +0 -3
  360. package/src/DOMAPI/HTMLHeadingElement.res +0 -3
  361. package/src/DOMAPI/HTMLHtmlElement.res +0 -3
  362. package/src/DOMAPI/HTMLIFrameElement.res +0 -6
  363. package/src/DOMAPI/HTMLImageElement.res +0 -9
  364. package/src/DOMAPI/HTMLLIElement.res +0 -3
  365. package/src/DOMAPI/HTMLLabelElement.res +0 -3
  366. package/src/DOMAPI/HTMLLegendElement.res +0 -3
  367. package/src/DOMAPI/HTMLLinkElement.res +0 -3
  368. package/src/DOMAPI/HTMLMapElement.res +0 -3
  369. package/src/DOMAPI/HTMLMenuElement.res +0 -3
  370. package/src/DOMAPI/HTMLMetaElement.res +0 -3
  371. package/src/DOMAPI/HTMLMeterElement.res +0 -3
  372. package/src/DOMAPI/HTMLModElement.res +0 -3
  373. package/src/DOMAPI/HTMLOListElement.res +0 -3
  374. package/src/DOMAPI/HTMLOptGroupElement.res +0 -3
  375. package/src/DOMAPI/HTMLOptionElement.res +0 -3
  376. package/src/DOMAPI/HTMLParagraphElement.res +0 -3
  377. package/src/DOMAPI/HTMLPictureElement.res +0 -3
  378. package/src/DOMAPI/HTMLPreElement.res +0 -3
  379. package/src/DOMAPI/HTMLProgressElement.res +0 -3
  380. package/src/DOMAPI/HTMLQuoteElement.res +0 -3
  381. package/src/DOMAPI/HTMLSlotElement.res +0 -29
  382. package/src/DOMAPI/HTMLSourceElement.res +0 -3
  383. package/src/DOMAPI/HTMLSpanElement.res +0 -3
  384. package/src/DOMAPI/HTMLStyleElement.res +0 -3
  385. package/src/DOMAPI/HTMLTableCaptionElement.res +0 -3
  386. package/src/DOMAPI/HTMLTableCellElement.res +0 -3
  387. package/src/DOMAPI/HTMLTemplateElement.res +0 -3
  388. package/src/DOMAPI/HTMLTimeElement.res +0 -3
  389. package/src/DOMAPI/HTMLTitleElement.res +0 -3
  390. package/src/DOMAPI/HTMLTrackElement.res +0 -3
  391. package/src/DOMAPI/HTMLUListElement.res +0 -3
  392. package/src/DOMAPI/HTMLVideoElement.res +0 -31
  393. package/src/DOMAPI/MediaQueryList.res +0 -3
  394. package/src/DOMAPI/Navigator.res +0 -115
  395. package/src/DOMAPI/NodeFilter.res +0 -4
  396. package/src/DOMAPI/SVGGraphicsElement.res +0 -17
  397. package/src/DOMAPI/ScreenOrientation.res +0 -9
  398. package/src/DOMAPI/ShadowRoot.res +0 -21
  399. package/src/DOMAPI/StylePropertyMap.res +0 -50
  400. package/src/DOMAPI/TextTrackList.res +0 -10
  401. package/src/DOMAPI/VideoFrame.res +0 -111
  402. package/src/DOMAPI/Window.res +0 -517
  403. package/src/EncryptedMediaExtensionsAPI/MediaKeySystemAccess.res +0 -13
  404. package/src/EncryptedMediaExtensionsAPI/MediaKeys.res +0 -27
  405. package/src/FetchAPI/FormDataEntryValue.res +0 -22
  406. package/src/FileAPI/FileSystemDirectoryHandle.res +0 -45
  407. package/src/FileAPI/FileSystemFileHandle.res +0 -23
  408. package/src/FileAPI/FileSystemHandle.res +0 -7
  409. package/src/FileAPI/FileSystemWritableFileStream.res +0 -62
  410. package/src/FileAPI/ReadableStream.res +0 -60
  411. package/src/FileAPI/WritableStream.res +0 -28
  412. package/src/FileAndDirectoryEntriesAPI/FileSystemDirectoryEntry.res +0 -42
  413. package/src/FileAndDirectoryEntriesAPI/FileSystemDirectoryReader.res +0 -11
  414. package/src/FileAndDirectoryEntriesAPI/FileSystemEntry.res +0 -11
  415. package/src/GamepadAPI/GamepadHapticActuator.res +0 -17
  416. package/src/GeolocationAPI/Geolocation.res +0 -29
  417. package/src/IntersectionObserverAPI/IntersectionObserver.res +0 -35
  418. package/src/IntersectionObserverAPI/IntersectionObserverRoot.res +0 -22
  419. package/src/MediaCapabilitiesAPI/MediaCapabilities.res +0 -19
  420. package/src/MediaCaptureAndStreamsAPI/MediaDeviceInfo.res +0 -7
  421. package/src/MediaCaptureAndStreamsAPI/MediaDevices.res +0 -34
  422. package/src/MediaCaptureAndStreamsAPI/MediaStream.res +0 -63
  423. package/src/MediaCaptureAndStreamsAPI/MediaStreamTrack.res +0 -42
  424. package/src/MediaSessionAPI/MediaMetadata.res +0 -7
  425. package/src/MediaSessionAPI/MediaSession.res +0 -17
  426. package/src/MutationObserverAPI/MutationObserver.res +0 -27
  427. package/src/NotificationAPI/Notification.res +0 -29
  428. package/src/PerformanceAPI/Performance.res +0 -90
  429. package/src/PerformanceAPI/PerformanceMark.res +0 -15
  430. package/src/PermissionsAPI/Permissions.res +0 -7
  431. package/src/Prelude/DOMException.res +0 -7
  432. package/src/Prelude.res +0 -37
  433. package/src/PushAPI/ApplicationServerKey.res +0 -4
  434. package/src/PushAPI/PushEvent.res +0 -3
  435. package/src/PushAPI/PushManager.res +0 -25
  436. package/src/RemotePlaybackAPI/RemotePlayback.res +0 -23
  437. package/src/ResizeObserverAPI/ResizeObserver.res +0 -27
  438. package/src/ScreenWakeLockAPI/WakeLock.res +0 -7
  439. package/src/ScreenWakeLockAPI/WakeLockSentinel.res +0 -9
  440. package/src/ServiceWorkerAPI/Cache.res +0 -100
  441. package/src/ServiceWorkerAPI/ServiceWorker.res +0 -21
  442. package/src/ServiceWorkerAPI/ServiceWorkerContainer.res +0 -35
  443. package/src/ServiceWorkerAPI/ServiceWorkerGlobalScope.res +0 -10
  444. package/src/UIEventsAPI/CompositionEvent.res +0 -10
  445. package/src/UIEventsAPI/FocusEvent.res +0 -9
  446. package/src/UIEventsAPI/InputEvent.res +0 -16
  447. package/src/UIEventsAPI/KeyboardEvent.res +0 -16
  448. package/src/UIEventsAPI/PointerEvent.res +0 -21
  449. package/src/UIEventsAPI/TouchEvent.res +0 -9
  450. package/src/UIEventsAPI/UIEvent.res +0 -19
  451. package/src/UIEventsAPI/WheelEvent.res +0 -9
  452. package/src/WebAudioAPI/AnalyserNode.res +0 -34
  453. package/src/WebAudioAPI/AudioContext.res +0 -56
  454. package/src/WebAudioAPI/AudioDestinationNode.res +0 -3
  455. package/src/WebAudioAPI/AudioProcessingEvent.res +0 -10
  456. package/src/WebAudioAPI/AudioWorkletNode.res +0 -13
  457. package/src/WebAudioAPI/ChannelMergerNode.res +0 -10
  458. package/src/WebAudioAPI/ChannelSplitterNode.res +0 -12
  459. package/src/WebAudioAPI/ConstantSourceNode.res +0 -12
  460. package/src/WebAudioAPI/ConvolverNode.res +0 -10
  461. package/src/WebAudioAPI/DelayNode.res +0 -9
  462. package/src/WebAudioAPI/DynamicsCompressorNode.res +0 -12
  463. package/src/WebAudioAPI/GainNode.res +0 -9
  464. package/src/WebAudioAPI/MediaElementAudioSourceNode.res +0 -12
  465. package/src/WebAudioAPI/MediaStreamAudioDestinationNode.res +0 -12
  466. package/src/WebAudioAPI/MediaStreamAudioSourceNode.res +0 -12
  467. package/src/WebAudioAPI/OfflineAudioCompletionEvent.res +0 -12
  468. package/src/WebAudioAPI/OfflineAudioContext.res +0 -34
  469. package/src/WebAudioAPI/OscillatorNode.res +0 -16
  470. package/src/WebAudioAPI/PannerNode.res +0 -9
  471. package/src/WebAudioAPI/PeriodicWave.res +0 -8
  472. package/src/WebAudioAPI/StereoPannerNode.res +0 -10
  473. package/src/WebAudioAPI/WaveShaperNode.res +0 -10
  474. package/src/WebCryptoAPI/SubtleCrypto.res +0 -173
  475. package/src/WebLocksAPI/LockManager.res +0 -25
  476. package/src/WebSocketsAPI/CloseEvent.res +0 -9
  477. package/src/WebSocketsAPI/WebSocket.res +0 -51
  478. package/src/WebSpeechAPI/SpeechSynthesisUtterance.res +0 -9
  479. package/src/WebStorageAPI/StorageEvent.res +0 -9
  480. package/src/WebWorkersAPI/CacheStorage.res +0 -46
@@ -1,13 +1,12 @@
1
- open DOMAPI
2
-
3
1
  /**
4
2
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CSSStyleValue/parse_static)
5
3
  */
6
4
  @scope("CSSStyleValue")
7
- external parse: (~property: string, ~cssText: string) => cssStyleValue = "parse"
5
+ external parse: (~property: string, ~cssText: string) => DomTypes.cssStyleValue = "parse"
8
6
 
9
7
  /**
10
8
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CSSStyleValue/parseAll_static)
11
9
  */
12
10
  @scope("CSSStyleValue")
13
- external parseAll: (~property: string, ~cssText: string) => array<cssStyleValue> = "parseAll"
11
+ external parseAll: (~property: string, ~cssText: string) => array<DomTypes.cssStyleValue> =
12
+ "parseAll"
@@ -0,0 +1,2 @@
1
+ @send
2
+ external getClientRect: DomTypes.caretPosition => DomTypes.domRect = "getClientRect"
@@ -1,5 +1,3 @@
1
- open DOMAPI
2
-
3
1
  module Impl = (
4
2
  T: {
5
3
  type t
@@ -7,7 +5,7 @@ module Impl = (
7
5
  ) => {
8
6
  include Node.Impl({type t = T.t})
9
7
 
10
- external asCharacterData: T.t => characterData = "%identity"
8
+ external asCharacterData: T.t => DomTypes.characterData = "%identity"
11
9
 
12
10
  /**
13
11
  Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.
@@ -16,7 +14,7 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
16
14
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CharacterData/after)
17
15
  */
18
16
  @send
19
- external after: (T.t, node) => unit = "after"
17
+ external after: (T.t, DomTypes.node) => unit = "after"
20
18
 
21
19
  /**
22
20
  Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.
@@ -40,7 +38,7 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
40
38
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CharacterData/before)
41
39
  */
42
40
  @send
43
- external before: (T.t, node) => unit = "before"
41
+ external before: (T.t, DomTypes.node) => unit = "before"
44
42
 
45
43
  /**
46
44
  Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.
@@ -83,7 +81,7 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
83
81
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CharacterData/replaceWith)
84
82
  */
85
83
  @send
86
- external replaceWith: (T.t, node) => unit = "replaceWith"
84
+ external replaceWith: (T.t, DomTypes.node) => unit = "replaceWith"
87
85
 
88
86
  /**
89
87
  Replaces node with nodes, while replacing strings in nodes with equivalent Text nodes.
@@ -101,4 +99,4 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
101
99
  external substringData: (T.t, ~offset: int, ~count: int) => string = "substringData"
102
100
  }
103
101
 
104
- include Impl({type t = characterData})
102
+ include Impl({type t = DomTypes.characterData})
@@ -0,0 +1,7 @@
1
+ include CharacterData.Impl({type t = DomTypes.comment})
2
+
3
+ /**
4
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/Comment)
5
+ */
6
+ @new
7
+ external make: (~data: string=?) => DomTypes.comment = "Comment"
@@ -1,31 +1,32 @@
1
- open DOMAPI
2
-
3
1
  /**
4
2
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/define)
5
3
  */
6
4
  @send
7
5
  external define: (
8
- customElementRegistry,
6
+ DomTypes.customElementRegistry,
9
7
  ~name: string,
10
- ~constructor: customElementConstructor,
11
- ~options: elementDefinitionOptions=?,
8
+ ~constructor: DomTypes.htmlElement,
9
+ ~options: DomTypes.elementDefinitionOptions=?,
12
10
  ) => unit = "define"
13
11
 
14
12
  /**
15
13
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
16
14
  */
17
15
  @send
18
- external getName: (customElementRegistry, customElementConstructor) => string = "getName"
16
+ external getName: (DomTypes.customElementRegistry, DomTypes.customElementConstructor) => string =
17
+ "getName"
19
18
 
20
19
  /**
21
20
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/whenDefined)
22
21
  */
23
22
  @send
24
- external whenDefined: (customElementRegistry, string) => promise<customElementConstructor> =
25
- "whenDefined"
23
+ external whenDefined: (
24
+ DomTypes.customElementRegistry,
25
+ string,
26
+ ) => promise<DomTypes.customElementConstructor> = "whenDefined"
26
27
 
27
28
  /**
28
29
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/upgrade)
29
30
  */
30
31
  @send
31
- external upgrade: (customElementRegistry, node) => unit = "upgrade"
32
+ external upgrade: (DomTypes.customElementRegistry, DomTypes.node) => unit = "upgrade"
@@ -0,0 +1,7 @@
1
+ type t = DOM.domException
2
+
3
+ /**
4
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMException)
5
+ */
6
+ @new
7
+ external make: (~message: string=?, ~name: string=?) => t = "DOMException"
@@ -1,30 +1,28 @@
1
- open DOMAPI
2
-
3
1
  /**
4
2
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
5
3
  */
6
4
  @send
7
5
  external createDocumentType: (
8
- domImplementation,
6
+ DomTypes.domImplementation,
9
7
  ~qualifiedName: string,
10
8
  ~publicId: string,
11
9
  ~systemId: string,
12
- ) => documentType = "createDocumentType"
10
+ ) => DomTypes.documentType = "createDocumentType"
13
11
 
14
12
  /**
15
13
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)
16
14
  */
17
15
  @send
18
16
  external createDocument: (
19
- domImplementation,
17
+ DomTypes.domImplementation,
20
18
  ~namespace: string,
21
19
  ~qualifiedName: string,
22
- ~doctype: documentType=?,
23
- ) => xmlDocument = "createDocument"
20
+ ~doctype: DomTypes.documentType=?,
21
+ ) => DomTypes.xmlDocument = "createDocument"
24
22
 
25
23
  /**
26
24
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createHTMLDocument)
27
25
  */
28
26
  @send
29
- external createHTMLDocument: (domImplementation, ~title: string=?) => document =
27
+ external createHTMLDocument: (DomTypes.domImplementation, ~title: string=?) => DomTypes.document =
30
28
  "createHTMLDocument"
@@ -0,0 +1,228 @@
1
+ /**
2
+ `make()`
3
+
4
+ Creates a new identity `DOMMatrix`.
5
+
6
+ ```res
7
+ let matrix = DOMMatrix.make()
8
+ ```
9
+
10
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrix)
11
+ */
12
+ @new
13
+ external make: unit => DomTypes.domMatrix = "DOMMatrix"
14
+
15
+ /**
16
+ `fromString(string)`
17
+
18
+ Creates a new `DOMMatrix` from a transform string.
19
+
20
+ ```res
21
+ let matrix = DOMMatrix.fromString("matrix(1, 0, 0, 1, 0, 0)")
22
+ ```
23
+
24
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrix)
25
+ */
26
+ @new
27
+ external fromString: string => DomTypes.domMatrix = "DOMMatrix"
28
+
29
+ /**
30
+ `fromArray(array<float>)`
31
+
32
+ Creates a new `DOMMatrix` from an array of matrix component values.
33
+
34
+ ```res
35
+ let matrix = DOMMatrix.fromArray([1., 0., 0., 1., 0., 0.])
36
+ ```
37
+
38
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrix)
39
+ */
40
+ @new
41
+ external fromArray: array<float> => DomTypes.domMatrix = "DOMMatrix"
42
+
43
+ external asDOMMatrixReadOnly: DomTypes.domMatrix => DomTypes.domMatrixReadOnly = "%identity"
44
+ @scope("DOMMatrix")
45
+ external fromMatrix: (~other: DomTypes.domMatrixInit=?) => DomTypes.domMatrixReadOnly = "fromMatrix"
46
+
47
+ @scope("DOMMatrix")
48
+ external fromFloat32Array: array<float> => DomTypes.domMatrixReadOnly = "fromFloat32Array"
49
+
50
+ @scope("DOMMatrix")
51
+ external fromFloat64Array: Float64Array.t => DomTypes.domMatrixReadOnly = "fromFloat64Array"
52
+
53
+ /**
54
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate)
55
+ */
56
+ @send
57
+ external translate: (
58
+ DomTypes.domMatrix,
59
+ ~tx: float=?,
60
+ ~ty: float=?,
61
+ ~tz: float=?,
62
+ ) => DomTypes.domMatrix = "translate"
63
+
64
+ /**
65
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)
66
+ */
67
+ @send
68
+ external scale: (
69
+ DomTypes.domMatrix,
70
+ ~scaleX: float=?,
71
+ ~scaleY: float=?,
72
+ ~scaleZ: float=?,
73
+ ~originX: float=?,
74
+ ~originY: float=?,
75
+ ~originZ: float=?,
76
+ ) => DomTypes.domMatrix = "scale"
77
+
78
+ @send
79
+ external scale3d: (
80
+ DomTypes.domMatrix,
81
+ ~scale: float=?,
82
+ ~originX: float=?,
83
+ ~originY: float=?,
84
+ ~originZ: float=?,
85
+ ) => DomTypes.domMatrix = "scale3d"
86
+
87
+ @send
88
+ external rotate: (
89
+ DomTypes.domMatrix,
90
+ ~rotX: float=?,
91
+ ~rotY: float=?,
92
+ ~rotZ: float=?,
93
+ ) => DomTypes.domMatrix = "rotate"
94
+
95
+ @send
96
+ external rotateFromVector: (DomTypes.domMatrix, ~x: float=?, ~y: float=?) => DomTypes.domMatrix =
97
+ "rotateFromVector"
98
+
99
+ @send
100
+ external rotateAxisAngle: (
101
+ DomTypes.domMatrix,
102
+ ~x: float=?,
103
+ ~y: float=?,
104
+ ~z: float=?,
105
+ ~angle: float=?,
106
+ ) => DomTypes.domMatrix = "rotateAxisAngle"
107
+
108
+ @send
109
+ external skewX: (DomTypes.domMatrix, ~sx: float=?) => DomTypes.domMatrix = "skewX"
110
+
111
+ @send
112
+ external skewY: (DomTypes.domMatrix, ~sy: float=?) => DomTypes.domMatrix = "skewY"
113
+
114
+ @send
115
+ external multiply: (DomTypes.domMatrix, ~other: DomTypes.domMatrixInit=?) => DomTypes.domMatrix =
116
+ "multiply"
117
+
118
+ /**
119
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX)
120
+ */
121
+ @send
122
+ external flipX: DomTypes.domMatrix => DomTypes.domMatrix = "flipX"
123
+
124
+ @send
125
+ external flipY: DomTypes.domMatrix => DomTypes.domMatrix = "flipY"
126
+
127
+ @send
128
+ external inverse: DomTypes.domMatrix => DomTypes.domMatrix = "inverse"
129
+
130
+ @send
131
+ external transformPoint: (
132
+ DomTypes.domMatrix,
133
+ ~point: DomTypes.domPointInit=?,
134
+ ) => DomTypes.domPoint = "transformPoint"
135
+
136
+ @send
137
+ external toFloat32Array: DomTypes.domMatrix => array<float> = "toFloat32Array"
138
+
139
+ @send
140
+ external toFloat64Array: DomTypes.domMatrix => Float64Array.t = "toFloat64Array"
141
+
142
+ @send
143
+ external toJSON: DomTypes.domMatrix => Dict.t<string> = "toJSON"
144
+
145
+ @scope("DOMMatrix")
146
+ external fromMatrixD: (~other: DomTypes.domMatrixInit=?) => DomTypes.domMatrix = "fromMatrix"
147
+
148
+ @scope("DOMMatrix")
149
+ external fromFloat32ArrayD: array<float> => DomTypes.domMatrix = "fromFloat32Array"
150
+
151
+ @scope("DOMMatrix")
152
+ external fromFloat64ArrayD: Float64Array.t => DomTypes.domMatrix = "fromFloat64Array"
153
+
154
+ @send
155
+ external multiplySelf: (
156
+ DomTypes.domMatrix,
157
+ ~other: DomTypes.domMatrixInit=?,
158
+ ) => DomTypes.domMatrix = "multiplySelf"
159
+
160
+ @send
161
+ external preMultiplySelf: (
162
+ DomTypes.domMatrix,
163
+ ~other: DomTypes.domMatrixInit=?,
164
+ ) => DomTypes.domMatrix = "preMultiplySelf"
165
+
166
+ @send
167
+ external translateSelf: (
168
+ DomTypes.domMatrix,
169
+ ~tx: float=?,
170
+ ~ty: float=?,
171
+ ~tz: float=?,
172
+ ) => DomTypes.domMatrix = "translateSelf"
173
+
174
+ @send
175
+ external scaleSelf: (
176
+ DomTypes.domMatrix,
177
+ ~scaleX: float=?,
178
+ ~scaleY: float=?,
179
+ ~scaleZ: float=?,
180
+ ~originX: float=?,
181
+ ~originY: float=?,
182
+ ~originZ: float=?,
183
+ ) => DomTypes.domMatrix = "scaleSelf"
184
+
185
+ @send
186
+ external scale3dSelf: (
187
+ DomTypes.domMatrix,
188
+ ~scale: float=?,
189
+ ~originX: float=?,
190
+ ~originY: float=?,
191
+ ~originZ: float=?,
192
+ ) => DomTypes.domMatrix = "scale3dSelf"
193
+
194
+ @send
195
+ external rotateSelf: (
196
+ DomTypes.domMatrix,
197
+ ~rotX: float=?,
198
+ ~rotY: float=?,
199
+ ~rotZ: float=?,
200
+ ) => DomTypes.domMatrix = "rotateSelf"
201
+
202
+ @send
203
+ external rotateFromVectorSelf: (
204
+ DomTypes.domMatrix,
205
+ ~x: float=?,
206
+ ~y: float=?,
207
+ ) => DomTypes.domMatrix = "rotateFromVectorSelf"
208
+
209
+ @send
210
+ external rotateAxisAngleSelf: (
211
+ DomTypes.domMatrix,
212
+ ~x: float=?,
213
+ ~y: float=?,
214
+ ~z: float=?,
215
+ ~angle: float=?,
216
+ ) => DomTypes.domMatrix = "rotateAxisAngleSelf"
217
+
218
+ @send
219
+ external skewXSelf: (DomTypes.domMatrix, ~sx: float=?) => DomTypes.domMatrix = "skewXSelf"
220
+
221
+ @send
222
+ external skewYSelf: (DomTypes.domMatrix, ~sy: float=?) => DomTypes.domMatrix = "skewYSelf"
223
+
224
+ @send
225
+ external invertSelf: DomTypes.domMatrix => DomTypes.domMatrix = "invertSelf"
226
+
227
+ @send
228
+ external setMatrixValue: (DomTypes.domMatrix, string) => DomTypes.domMatrix = "setMatrixValue"
@@ -0,0 +1,147 @@
1
+ /**
2
+ `make()`
3
+
4
+ Creates a new identity `DOMMatrixReadOnly`.
5
+
6
+ ```res
7
+ let matrix = DOMMatrixReadOnly.make()
8
+ ```
9
+
10
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly)
11
+ */
12
+ @new
13
+ external make: unit => DomTypes.domMatrixReadOnly = "DOMMatrixReadOnly"
14
+
15
+ /**
16
+ `fromString(string)`
17
+
18
+ Creates a new `DOMMatrixReadOnly` from a transform string.
19
+
20
+ ```res
21
+ let matrix = DOMMatrixReadOnly.fromString("matrix(1, 0, 0, 1, 0, 0)")
22
+ ```
23
+
24
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly)
25
+ */
26
+ @new
27
+ external fromString: string => DomTypes.domMatrixReadOnly = "DOMMatrixReadOnly"
28
+
29
+ /**
30
+ `fromArray(array<float>)`
31
+
32
+ Creates a new `DOMMatrixReadOnly` from an array of matrix component values.
33
+
34
+ ```res
35
+ let matrix = DOMMatrixReadOnly.fromArray([1., 0., 0., 1., 0., 0.])
36
+ ```
37
+
38
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly)
39
+ */
40
+ @new
41
+ external fromArray: array<float> => DomTypes.domMatrixReadOnly = "DOMMatrixReadOnly"
42
+
43
+ @scope("DOMMatrixReadOnly")
44
+ external fromMatrix: (~other: DomTypes.domMatrixInit=?) => DomTypes.domMatrixReadOnly = "fromMatrix"
45
+
46
+ @scope("DOMMatrixReadOnly")
47
+ external fromFloat32Array: array<float> => DomTypes.domMatrixReadOnly = "fromFloat32Array"
48
+
49
+ @scope("DOMMatrixReadOnly")
50
+ external fromFloat64Array: Float64Array.t => DomTypes.domMatrixReadOnly = "fromFloat64Array"
51
+
52
+ /**
53
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate)
54
+ */
55
+ @send
56
+ external translate: (
57
+ DomTypes.domMatrixReadOnly,
58
+ ~tx: float=?,
59
+ ~ty: float=?,
60
+ ~tz: float=?,
61
+ ) => DomTypes.domMatrix = "translate"
62
+
63
+ /**
64
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)
65
+ */
66
+ @send
67
+ external scale: (
68
+ DomTypes.domMatrixReadOnly,
69
+ ~scaleX: float=?,
70
+ ~scaleY: float=?,
71
+ ~scaleZ: float=?,
72
+ ~originX: float=?,
73
+ ~originY: float=?,
74
+ ~originZ: float=?,
75
+ ) => DomTypes.domMatrix = "scale"
76
+
77
+ @send
78
+ external scale3d: (
79
+ DomTypes.domMatrixReadOnly,
80
+ ~scale: float=?,
81
+ ~originX: float=?,
82
+ ~originY: float=?,
83
+ ~originZ: float=?,
84
+ ) => DomTypes.domMatrix = "scale3d"
85
+
86
+ @send
87
+ external rotate: (
88
+ DomTypes.domMatrixReadOnly,
89
+ ~rotX: float=?,
90
+ ~rotY: float=?,
91
+ ~rotZ: float=?,
92
+ ) => DomTypes.domMatrix = "rotate"
93
+
94
+ @send
95
+ external rotateFromVector: (
96
+ DomTypes.domMatrixReadOnly,
97
+ ~x: float=?,
98
+ ~y: float=?,
99
+ ) => DomTypes.domMatrix = "rotateFromVector"
100
+
101
+ @send
102
+ external rotateAxisAngle: (
103
+ DomTypes.domMatrixReadOnly,
104
+ ~x: float=?,
105
+ ~y: float=?,
106
+ ~z: float=?,
107
+ ~angle: float=?,
108
+ ) => DomTypes.domMatrix = "rotateAxisAngle"
109
+
110
+ @send
111
+ external skewX: (DomTypes.domMatrixReadOnly, ~sx: float=?) => DomTypes.domMatrix = "skewX"
112
+
113
+ @send
114
+ external skewY: (DomTypes.domMatrixReadOnly, ~sy: float=?) => DomTypes.domMatrix = "skewY"
115
+
116
+ @send
117
+ external multiply: (
118
+ DomTypes.domMatrixReadOnly,
119
+ ~other: DomTypes.domMatrixInit=?,
120
+ ) => DomTypes.domMatrix = "multiply"
121
+
122
+ /**
123
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX)
124
+ */
125
+ @send
126
+ external flipX: DomTypes.domMatrixReadOnly => DomTypes.domMatrix = "flipX"
127
+
128
+ @send
129
+ external flipY: DomTypes.domMatrixReadOnly => DomTypes.domMatrix = "flipY"
130
+
131
+ @send
132
+ external inverse: DomTypes.domMatrixReadOnly => DomTypes.domMatrix = "inverse"
133
+
134
+ @send
135
+ external transformPoint: (
136
+ DomTypes.domMatrixReadOnly,
137
+ ~point: DomTypes.domPointInit=?,
138
+ ) => DomTypes.domPoint = "transformPoint"
139
+
140
+ @send
141
+ external toFloat32Array: DomTypes.domMatrixReadOnly => array<float> = "toFloat32Array"
142
+
143
+ @send
144
+ external toFloat64Array: DomTypes.domMatrixReadOnly => Float64Array.t = "toFloat64Array"
145
+
146
+ @send
147
+ external toJSON: DomTypes.domMatrixReadOnly => Dict.t<string> = "toJSON"
@@ -0,0 +1,31 @@
1
+ /**
2
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMPoint)
3
+ */
4
+ @new
5
+ external make: (~x: float=?, ~y: float=?, ~z: float=?, ~w: float=?) => DomTypes.domPoint =
6
+ "DOMPoint"
7
+
8
+ external asDOMPointReadOnly: DomTypes.domPoint => DomTypes.domPointReadOnly = "%identity"
9
+ /**
10
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/fromPoint_static)
11
+ */
12
+ @scope("DOMPoint")
13
+ external fromPoint: (~other: DomTypes.domPointInit=?) => DomTypes.domPointReadOnly = "fromPoint"
14
+
15
+ @send
16
+ external matrixTransform: (
17
+ DomTypes.domPoint,
18
+ ~matrix: DomTypes.domMatrixInit=?,
19
+ ) => DomTypes.domPoint = "matrixTransform"
20
+
21
+ /**
22
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)
23
+ */
24
+ @send
25
+ external toJSON: DomTypes.domPoint => Dict.t<string> = "toJSON"
26
+
27
+ /**
28
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMPoint/fromPoint_static)
29
+ */
30
+ @scope("DOMPoint")
31
+ external fromPointD: (~other: DomTypes.domPointInit=?) => DomTypes.domPoint = "fromPoint"
@@ -1,24 +1,24 @@
1
- open DOMAPI
2
-
3
1
  /**
4
2
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly)
5
3
  */
6
4
  @new
7
- external make: (~x: float=?, ~y: float=?, ~z: float=?, ~w: float=?) => domPointReadOnly =
5
+ external make: (~x: float=?, ~y: float=?, ~z: float=?, ~w: float=?) => DomTypes.domPointReadOnly =
8
6
  "DOMPointReadOnly"
9
7
 
10
8
  /**
11
9
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/fromPoint_static)
12
10
  */
13
11
  @scope("DOMPointReadOnly")
14
- external fromPoint: (~other: domPointInit=?) => domPointReadOnly = "fromPoint"
12
+ external fromPoint: (~other: DomTypes.domPointInit=?) => DomTypes.domPointReadOnly = "fromPoint"
15
13
 
16
14
  @send
17
- external matrixTransform: (domPointReadOnly, ~matrix: domMatrixInit=?) => domPoint =
18
- "matrixTransform"
15
+ external matrixTransform: (
16
+ DomTypes.domPointReadOnly,
17
+ ~matrix: DomTypes.domMatrixInit=?,
18
+ ) => DomTypes.domPoint = "matrixTransform"
19
19
 
20
20
  /**
21
21
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)
22
22
  */
23
23
  @send
24
- external toJSON: domPointReadOnly => Dict.t<string> = "toJSON"
24
+ external toJSON: DomTypes.domPointReadOnly => Dict.t<string> = "toJSON"
@@ -1,23 +1,22 @@
1
- open DOMAPI
2
-
3
1
  /**
4
2
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMRect)
5
3
  */
6
4
  @new
7
- external make: (~x: float=?, ~y: float=?, ~width: float=?, ~height: float=?) => domRect = "DOMRect"
5
+ external make: (~x: float=?, ~y: float=?, ~width: float=?, ~height: float=?) => DomTypes.domRect =
6
+ "DOMRect"
8
7
 
9
- external asDOMRectReadOnly: domRect => domRectReadOnly = "%identity"
8
+ external asDOMRectReadOnly: DomTypes.domRect => DomTypes.domRectReadOnly = "%identity"
10
9
  /**
11
10
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)
12
11
  */
13
12
  @scope("DOMRect")
14
- external fromRect: (~other: domRectInit=?) => domRectReadOnly = "fromRect"
13
+ external fromRect: (~other: DomTypes.domRectInit=?) => DomTypes.domRectReadOnly = "fromRect"
15
14
 
16
15
  @send
17
- external toJSON: domRect => Dict.t<string> = "toJSON"
16
+ external toJSON: DomTypes.domRect => Dict.t<string> = "toJSON"
18
17
 
19
18
  /**
20
19
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static)
21
20
  */
22
21
  @scope("DOMRect")
23
- external fromRectD: (~other: domRectInit=?) => domRect = "fromRect"
22
+ external fromRectD: (~other: DomTypes.domRectInit=?) => DomTypes.domRect = "fromRect"
@@ -0,0 +1,2 @@
1
+ @send
2
+ external item: (DomTypes.domRectList, int) => DomTypes.domRect = "item"
@@ -0,0 +1,19 @@
1
+ /**
2
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly)
3
+ */
4
+ @new
5
+ external make: (
6
+ ~x: float=?,
7
+ ~y: float=?,
8
+ ~width: float=?,
9
+ ~height: float=?,
10
+ ) => DomTypes.domRectReadOnly = "DOMRectReadOnly"
11
+
12
+ /**
13
+ [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)
14
+ */
15
+ @scope("DOMRectReadOnly")
16
+ external fromRect: (~other: DomTypes.domRectInit=?) => DomTypes.domRectReadOnly = "fromRect"
17
+
18
+ @send
19
+ external toJSON: DomTypes.domRectReadOnly => Dict.t<string> = "toJSON"
@@ -1,15 +1,15 @@
1
- open Prelude
1
+ type t = DOM.domStringList
2
2
 
3
3
  /**
4
4
  Returns the string with index index from strings.
5
5
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMStringList/item)
6
6
  */
7
7
  @send
8
- external item: (domStringList, int) => string = "item"
8
+ external item: (t, int) => string = "item"
9
9
 
10
10
  /**
11
11
  Returns true if strings contains string, and false otherwise.
12
12
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMStringList/contains)
13
13
  */
14
14
  @send
15
- external contains: (domStringList, string) => bool = "contains"
15
+ external contains: (t, string) => bool = "contains"