node_modules/preact/src/jsx.d.ts in isomorfeus-preact-10.7.1 vs node_modules/preact/src/jsx.d.ts in isomorfeus-preact-10.7.2
- old
+ new
@@ -819,10 +819,15 @@
itemType?: string;
itemID?: string;
itemRef?: string;
}
+ export type DetailedHTMLProps<
+ HA extends HTMLAttributes<RefType>,
+ RefType extends EventTarget = EventTarget
+ > = HA;
+
export interface HTMLMarqueeElement extends HTMLElement {
behavior?: 'scroll' | 'slide' | 'alternate';
bgColor?: string;
direction?: 'left' | 'right' | 'up' | 'down';
height?: number | string;
@@ -888,10 +893,10 @@
hr: HTMLAttributes<HTMLHRElement>;
html: HTMLAttributes<HTMLHtmlElement>;
i: HTMLAttributes<HTMLElement>;
iframe: HTMLAttributes<HTMLIFrameElement>;
img: HTMLAttributes<HTMLImageElement>;
- input: HTMLAttributes<HTMLInputElement>;
+ input: HTMLAttributes<HTMLInputElement> & { defaultValue?: string };
ins: HTMLAttributes<HTMLModElement>;
kbd: HTMLAttributes<HTMLElement>;
keygen: HTMLAttributes<HTMLUnknownElement>;
label: HTMLAttributes<HTMLLabelElement>;
legend: HTMLAttributes<HTMLLegendElement>;