Skip to content

Commit bee08c7

Browse files
committed
1 parent b93b156 commit bee08c7

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

codegen/consts.js

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ module.exports.types = {
6767
"onCanPlayThrough": "EventHandler",
6868
"onChange": "EventHandler",
6969
"onClick": "EventHandler",
70+
"onClose": "EventHandler",
7071
"onCompositionEnd": "EventHandler",
7172
"onCompositionStart": "EventHandler",
7273
"onCompositionUpdate": "EventHandler",

codegen/react-html-attributes.json

+1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@
233233
"title"
234234
],
235235
"dialog": [
236+
"onClose",
236237
"open"
237238
],
238239
"embed": [

src/React/Basic/DOM/Generated.purs

+1
Original file line numberDiff line numberDiff line change
@@ -4310,6 +4310,7 @@ type Props_dialog =
43104310
, onAnimationStart :: EventHandler
43114311
, onBlur :: EventHandler
43124312
, onClick :: EventHandler
4313+
, onClose :: EventHandler
43134314
, onCompositionEnd :: EventHandler
43144315
, onCompositionStart :: EventHandler
43154316
, onCompositionUpdate :: EventHandler

src/React/Basic/DOM/Simplified/Generated.purs

+1
Original file line numberDiff line numberDiff line change
@@ -3884,6 +3884,7 @@ type Props_dialog =
38843884
, onAnimationStart :: EventHandler
38853885
, onBlur :: EventHandler
38863886
, onClick :: EventHandler
3887+
, onClose :: EventHandler
38873888
, onCompositionEnd :: EventHandler
38883889
, onCompositionStart :: EventHandler
38893890
, onCompositionUpdate :: EventHandler

0 commit comments

Comments
 (0)