node_modules/preact/src/jsx.d.ts in isomorfeus-preact-10.5.8 vs node_modules/preact/src/jsx.d.ts in isomorfeus-preact-10.5.9
- old
+ new
@@ -443,18 +443,24 @@
onToggle?: GenericEventHandler<Target>;
// Focus Events
onFocus?: FocusEventHandler<Target>;
onFocusCapture?: FocusEventHandler<Target>;
+ onfocusin?: FocusEventHandler<Target>;
+ onfocusinCapture?: FocusEventHandler<Target>;
+ onfocusout?: FocusEventHandler<Target>;
+ onfocusoutCapture?: FocusEventHandler<Target>;
onBlur?: FocusEventHandler<Target>;
onBlurCapture?: FocusEventHandler<Target>;
// Form Events
onChange?: GenericEventHandler<Target>;
onChangeCapture?: GenericEventHandler<Target>;
onInput?: GenericEventHandler<Target>;
onInputCapture?: GenericEventHandler<Target>;
+ onBeforeInput?: GenericEventHandler<Target>;
+ onBeforeInputCapture?: GenericEventHandler<Target>;
onSearch?: GenericEventHandler<Target>;
onSearchCapture?: GenericEventHandler<Target>;
onSubmit?: GenericEventHandler<Target>;
onSubmitCapture?: GenericEventHandler<Target>;
onInvalid?: GenericEventHandler<Target>;
@@ -619,10 +625,11 @@
// Standard HTML Attributes
accept?: string;
acceptCharset?: string;
accessKey?: string;
action?: string;
+ allow?: string;
allowFullScreen?: boolean;
allowTransparency?: boolean;
alt?: string;
as?: string;
async?: boolean;
@@ -637,10 +644,11 @@
cellPadding?: number | string;
cellSpacing?: number | string;
charSet?: string;
challenge?: string;
checked?: boolean;
+ cite?: string;
class?: string;
className?: string;
cols?: number;
colSpan?: number;
content?: string;
@@ -659,10 +667,18 @@
disableRemotePlayback?: boolean;
download?: any;
decoding?: 'sync' | 'async' | 'auto';
draggable?: boolean;
encType?: string;
+ enterkeyhint?:
+ | 'enter'
+ | 'done'
+ | 'go'
+ | 'next'
+ | 'previous'
+ | 'search'
+ | 'send';
form?: string;
formAction?: string;
formEncType?: string;
formMethod?: string;
formNoValidate?: boolean;
@@ -702,24 +718,36 @@
min?: number | string;
minLength?: number;
multiple?: boolean;
muted?: boolean;
name?: string;
+ nomodule?: boolean;
nonce?: string;
noValidate?: boolean;
open?: boolean;
optimum?: number;
pattern?: string;
+ ping?: string;
placeholder?: string;
playsInline?: boolean;
poster?: string;
preload?: string;
radioGroup?: string;
readonly?: boolean;
readOnly?: boolean;
+ referrerpolicy?:
+ | 'no-referrer'
+ | 'no-referrer-when-downgrade'
+ | 'origin'
+ | 'origin-when-cross-origin'
+ | 'same-origin'
+ | 'strict-origin'
+ | 'strict-origin-when-cross-origin'
+ | 'unsafe-url';
rel?: string;
required?: boolean;
+ reversed?: boolean;
role?: string;
rows?: number;
rowSpan?: number;
sandbox?: string;
scope?: string;
@@ -753,11 +781,26 @@
width?: number | string;
wmode?: string;
wrap?: string;
// Non-standard Attributes
- autocapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
- autoCapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
+ autocapitalize?:
+ | 'off'
+ | 'none'
+ | 'on'
+ | 'sentences'
+ | 'words'
+ | 'characters';
+ autoCapitalize?:
+ | 'off'
+ | 'none'
+ | 'on'
+ | 'sentences'
+ | 'words'
+ | 'characters';
+ disablePictureInPicture?: boolean;
+ results?: number;
+ translate?: 'yes' | 'no';
// RDFa Attributes
about?: string;
datatype?: string;
inlist?: any;