Skip to content

Commit 62095e6

Browse files
cknittedelvalle
andauthored
Add missing HTML attribute capture to JsxDOM.res (rescript-lang#7006)
* Add missing HTML attribute capture to JsxDOM.res Adding the `capture` attribute to JsxDOM.res https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/capture * CHANGELOG --------- Co-authored-by: Eddy Ernesto del Valle Pino <edelvalle@users.noreply.github.com>
1 parent e8730f9 commit 62095e6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
- Deprecate `%external` extension, which has never been officially introduced. https://github.com/rescript-lang/rescript-compiler/pull/6906
126126
- Deprecate `xxxU` functions in Belt. https://github.com/rescript-lang/rescript-compiler/pull/6941
127127
- Improve error messages for function arity errors. https://github.com/rescript-lang/rescript-compiler/pull/6990
128+
- Add missing HTML attribute capture to JsxDOM.res. https://github.com/rescript-lang/rescript-compiler/pull/7006
128129

129130
# 11.1.3
130131

jscomp/others/jsxDOM.res

+1
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ type domProps = {
136136
defaultValue?: string,
137137
/* global html attributes */
138138
accessKey?: string,
139+
capture?: [#user | #environment],
139140
className?: string /* substitute for "class" */,
140141
contentEditable?: bool,
141142
contextMenu?: string,

0 commit comments

Comments
 (0)