-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
feat(runtime-dom): add popover api attributes #10977
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
base: main
Are you sure you want to change the base?
Conversation
@@ -10,17 +10,21 @@ import { makeMap } from './makeMap' | |||
* - nomodule -> noModule | |||
* - novalidate -> noValidate | |||
* - readonly -> readOnly | |||
* - popovertarget -> popoverTargetElement (TODO: how to map this?) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no idea how to handle this
Size ReportBundles
Usages
|
// Popover API: https://developer.mozilla.org/en-US/docs/Web/API/Popover_API | ||
popover?: true | 'auto' | 'manual' | ||
onBeforetoggle?: Event | ||
onToggle?: Event |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
both should be ToggleEvent
, also in DetailsHTMLAttributes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
upps, onBeforetoggle
should be onBeforeToggle
No description provided.