Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const HCollapsibleTrigger = component$<PropsOf<'button'>>(

return (
<button
type="button"
{...props}
id={triggerId}
ref={context.triggerRef}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export const HDropdownTrigger = component$<DropdownTriggerProps>((props) => {

return (
<button
type="button"
data-trigger
{...props}
id={triggerId}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const HModalTrigger = component$((props: PropsOf<'button'>) => {

return (
<button
type="button"
aria-haspopup="dialog"
aria-expanded={context.showSig.value}
data-open={context.showSig.value ? '' : undefined}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export const HPopoverTrigger = component$<PopoverTriggerProps>(

return (
<button
type="button"
{...props}
ref={context.triggerRef}
id={triggerId}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ export const HSelectTrigger = component$<SelectTriggerProps>((props) => {

return (
<button
type="button"
{...props}
id={triggerId}
ref={triggerRef}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export const HTooltipTrigger = component$((props: PropsOf<'button'>) => {

return (
<button
type="button"
ref={context.triggerRef}
onMouseOver$={[preventDefaultSync$, setTooltipOpen$]}
onMouseLeave$={setTooltipClosed$}
Expand Down