Skip to content

Commit 8f8b2f9

Browse files
authored
Add 'inert' attribute (#7326)
* Add 'inert' attribute * Update Completion.res.txt to include inert attribute * Update CHANGELOG
1 parent 40c51a5 commit 8f8b2f9

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
- Add `Dict.has` and double `Dict.forEachWithKey`/`Dict.mapValues` performance. https://github.com/rescript-lang/rescript/pull/7316
1818
- Add popover attributes to JsxDOM.domProps. https://github.com/rescript-lang/rescript/pull/7317
19+
- Add `inert` attribute to `JsxDOM.domProps`. https://github.com/rescript-lang/rescript/pull/7326
1920

2021
#### :boom: Breaking Change
2122

runtime/JsxDOM.res

+1
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ type domProps = {
153153
draggable?: bool,
154154
hidden?: bool,
155155
id?: string,
156+
inert?: bool,
156157
lang?: string,
157158
popover?: popover,
158159
popoverTarget?: string,

0 commit comments

Comments
 (0)