Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proof of concept querySelector helpers #13

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescrip
Install the package using your favorite package manager:

```shell
npm i -D @rescript/webapi@experimental
npm i @rescript/webapi@experimental
```

and add `@rescript/webapi` to your `rescript.json`:
Expand Down
4 changes: 2 additions & 2 deletions docs/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ Install the package using your favorite package manager:
<Code
lang="shell"
frame="none"
code="npm i -D @rescript/webapi@experimental"
code="npm i @rescript/webapi@experimental"
/>
</TabItem>
<TabItem label="bun">
<Code
lang="shell"
frame="none"
code="bun i -D @rescript/webapi@experimental"
code="bun i @rescript/webapi@experimental"
/>
</TabItem>
</Tabs>
Expand Down
29 changes: 29 additions & 0 deletions src/DOMAPI.res
Original file line number Diff line number Diff line change
Expand Up @@ -7442,6 +7442,19 @@ and htmlTableRowElement = {
cells: htmlCollectionOf<htmlTableCellElement>,
}

/**
Provides special properties (beyond the HTMLElement interface it also has available to it inheritance) for manipulating single or grouped table column elements.
[See HTMLTableColElement on MDN](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement)
*/
type htmlTableColElement = {
...htmlElement,
/**
Sets or retrieves the number of columns in the group.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
*/
mutable span: int,
}

/**
Provides properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <button> elements.
[See HTMLButtonElement on MDN](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
Expand Down Expand Up @@ -8307,6 +8320,22 @@ type htmlDataElement = {
mutable value: string,
}

/**
[See HTMLDetailsElement on MDN](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement)
*/
type htmlDetailsElement = {
...htmlElement,
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open)
*/
mutable name: string,
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open)
*/
@as("open")
mutable open_: bool,
}

/**
[See HTMLDialogElement on MDN](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement)
*/
Expand Down
204 changes: 203 additions & 1 deletion src/DOMAPI/Document.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions src/DOMAPI/Document.res
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,9 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
@send
external replaceChildren2: (document, string) => unit = "replaceChildren"

/**
Returns the first element that is a descendant of node that matches selectors.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Document/querySelector)
*/
@send
external querySelector: (document, string) => element = "querySelector"
include QuerySelector.Impl({
type t = document
})

/**
Returns all element descendants of node that match selectors.
Expand Down
8 changes: 4 additions & 4 deletions src/DOMAPI/FillStyle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/DOMAPI/HTMLCanvasElement.res
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ external asHTMLElement: htmlCanvasElement => htmlElement = "%identity"
external asElement: htmlCanvasElement => element = "%identity"
external asNode: htmlCanvasElement => node = "%identity"
external asEventTarget: htmlCanvasElement => eventTarget = "%identity"

/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/HTMLElement/focus)
*/
Expand Down
Loading