Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions runtime/JsxDOM.res
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

type style = JsxDOMStyle.t
type domRef
type popover = | @as("auto") Auto | @as("manual") Manual
type popoverTargetAction = | @as("toggle") Toggle | @as("show") Show | @as("hide") Hide

/*
This list isn't exhaustive. We'll add more as we go.
Expand Down Expand Up @@ -146,6 +148,9 @@ type domProps = {
hidden?: bool,
id?: string,
lang?: string,
popover?: string,
popoverTarget?: string,
popoverTargetAction?: popoverTargetAction,
role?: string /* ARIA role */,
style?: style,
spellCheck?: bool,
Expand Down
Loading