nixos-configs/modules/ags/gtk4/widget/subclasses/popover.ts
matt1432 e7accbd7bd
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags4): write own ConstructProps to exclude props
2025-01-15 18:17:27 -05:00

19 lines
553 B
TypeScript

import { register } from 'astal';
import { Gtk } from 'astal/gtk4';
import astalify, { type AstalifyProps, type ConstructProps } from '../astalify';
export type PopoverProps = ConstructProps<
PopoverClass,
Gtk.Popover.ConstructorProps & AstalifyProps
>;
@register({ GTypeName: 'Popover' })
export class PopoverClass extends astalify(Gtk.Popover) {
constructor({ cssName = 'popover', ...props }: PopoverProps = {}) {
super({ cssName, ...props });
}
}
export const Popover = (props?: PopoverProps) => new PopoverClass(props);