@solidjs/h 2.0.0-beta.2 → 2.0.0-beta.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,6 @@
1
1
  import * as csstype from "csstype";
2
+ import type { PropKey, WidenPropValue } from "./jsx-properties.js";
3
+ import type { Element as SolidElement } from "solid-js";
2
4
 
3
5
  /**
4
6
  * Originally based on JSX types for Surplus and Inferno and adapted for `dom-expressions`.
@@ -28,10 +30,9 @@ import * as csstype from "csstype";
28
30
  *
29
31
  * - Event handlers use `camelCase` such `onClick` and will be delegated when possible, bubbling
30
32
  * through the component tree, not the dom tree.
31
- * - Native event handlers use the namespace `on:` such `on:click`, and wont be delegated. bubbling
32
- * the dom tree.
33
+ * - Event handlers use camelCase attributes; native listener options should be handled with `ref`
34
+ * callbacks that call `addEventListener` directly.
33
35
  * - A global case-insensitive event handler can be added by extending `EventHandlersElement<T>`
34
- * - A native `on:` event handler can be added by extending `CustomEvents<T>` interface
35
36
  *
36
37
  * ## Boolean Attributes (property setter that accepts `true | false`):
37
38
  *
@@ -109,6 +110,19 @@ import * as csstype from "csstype";
109
110
 
110
111
  type DOMElement = Element;
111
112
 
113
+ /**
114
+ * Fallback declarations for event types that are not yet defined in older TypeScript
115
+ * `lib.dom.d.ts` versions. When the user's TS lib defines these, declaration merging
116
+ * yields the full specialized type; otherwise these serve as a bare `Event` fallback.
117
+ */
118
+ declare global {
119
+ interface CommandEvent extends Event {}
120
+ interface PageRevealEvent extends Event {}
121
+ interface PageSwapEvent extends Event {}
122
+ interface SnapEvent extends Event {}
123
+ interface TimeEvent extends Event {}
124
+ }
125
+
112
126
  export namespace JSX {
113
127
  // START - difference between `jsx.d.ts` and `jsx-h.d.ts`
114
128
  type FunctionMaybe<T = unknown> = { (): T } | T;
@@ -116,15 +130,7 @@ export namespace JSX {
116
130
  (): Element;
117
131
  }
118
132
 
119
- type Element =
120
- | Node
121
- | ArrayElement
122
- | FunctionElement
123
- | (string & {})
124
- | number
125
- | boolean
126
- | null
127
- | undefined;
133
+ type Element = SolidElement | Node | FunctionElement | ArrayElement;
128
134
  // END - difference between `jsx.d.ts` and `jsx-h.d.ts`
129
135
 
130
136
  interface ArrayElement extends Array<Element> {}
@@ -164,18 +170,6 @@ export namespace JSX {
164
170
  EHandler extends EventHandler<T, any> = EventHandler<T, E>
165
171
  > = EHandler | BoundEventHandler<T, E, EHandler>;
166
172
 
167
- interface EventHandlerWithOptions<T, E extends Event, EHandler = EventHandler<T, E>>
168
- extends AddEventListenerOptions,
169
- EventListenerOptions {
170
- handleEvent: EHandler;
171
- }
172
-
173
- type EventHandlerWithOptionsUnion<
174
- T,
175
- E extends Event,
176
- EHandler extends EventHandler<T, any> = EventHandler<T, E>
177
- > = EHandler | EventHandlerWithOptions<T, E, EHandler>;
178
-
179
173
  interface InputEventHandler<T, E extends InputEvent> {
180
174
  (
181
175
  e: E & {
@@ -225,9 +219,14 @@ export namespace JSX {
225
219
  >;
226
220
  // end event handlers
227
221
 
228
- type ClassList =
222
+ export type ClassValue =
223
+ | string
224
+ | number
225
+ | boolean
226
+ | null
227
+ | undefined
229
228
  | Record<string, boolean>
230
- | Array<string | number | boolean | null | undefined | Record<string, boolean>>;
229
+ | ClassValue[];
231
230
 
232
231
  const SERIALIZABLE: unique symbol;
233
232
  interface SerializableAttributeValue {
@@ -235,45 +234,30 @@ export namespace JSX {
235
234
  [SERIALIZABLE]: never;
236
235
  }
237
236
 
237
+ type RefCallback<T> = (el: T) => void;
238
+ type Ref<T> = T | RefCallback<T> | (RefCallback<T> | Ref<T>)[];
239
+
238
240
  interface IntrinsicAttributes {
239
- ref?: unknown | ((e: unknown) => void) | undefined;
241
+ ref?: Ref<unknown> | undefined;
240
242
  }
241
243
  interface CustomAttributes<T> {
242
- ref?: T | ((el: T) => void) | undefined;
244
+ ref?: Ref<T> | undefined;
243
245
  children?: FunctionMaybe<Element | undefined>;
244
246
  $ServerOnly?: boolean | undefined;
245
247
  }
246
- type Accessor<T> = () => T;
247
- interface Directives {}
248
- interface DirectiveFunctions {
249
- [x: string]: (el: DOMElement, accessor: Accessor<any>) => void;
250
- }
251
248
  interface ExplicitProperties {}
252
- interface CustomEvents {}
253
- type DirectiveAttributes = {
254
- [Key in keyof Directives as `use:${Key}`]?: Directives[Key];
255
- };
256
- type DirectiveFunctionAttributes<T> = {
257
- [K in keyof DirectiveFunctions as string extends K
258
- ? never
259
- : `use:${K}`]?: DirectiveFunctions[K] extends (
260
- el: infer E, // will be unknown if not provided
261
- ...rest: infer R // use rest so that we can check whether it's provided or not
262
- ) => void
263
- ? T extends E // everything extends unknown if E is unknown
264
- ? R extends [infer A] // check if has accessor provided
265
- ? A extends Accessor<infer V>
266
- ? V // it's an accessor
267
- : never // it isn't, type error
268
- : true // no accessor provided
269
- : never // T is the wrong element
270
- : never; // it isn't a function
271
- };
272
249
  type PropAttributes = {
273
250
  [Key in keyof ExplicitProperties as `prop:${Key}`]?: ExplicitProperties[Key];
274
251
  };
275
- type OnAttributes<T> = {
276
- [Key in keyof CustomEvents as `on:${Key}`]?: EventHandlerWithOptionsUnion<T, CustomEvents[Key]>;
252
+
253
+ /**
254
+ * Writable, element-specific DOM properties exposed as `prop:*` attributes, auto-derived
255
+ * from the element interface `T`. See `./jsx-properties.d.ts` for the filtering rules.
256
+ * Existing element interfaces can locally disable an auto-derived key with
257
+ * `"prop:foo"?: never;` to redirect users to a plain attribute form.
258
+ */
259
+ type Properties<T> = {
260
+ [K in keyof T as PropKey<T, K>]?: FunctionMaybe<WidenPropValue<T[K]>>;
277
261
  };
278
262
 
279
263
  // CSS
@@ -285,11 +269,6 @@ export namespace JSX {
285
269
 
286
270
  // TODO: Should we allow this?
287
271
  // type ClassKeys = `class:${string}`;
288
- // type CSSKeys = Exclude<keyof csstype.PropertiesHyphen, `-${string}`>;
289
-
290
- // type CSSAttributes = {
291
- // [key in CSSKeys as `style:${key}`]: csstype.PropertiesHyphen[key];
292
- // };
293
272
 
294
273
  // BOOLEAN
295
274
 
@@ -302,12 +281,16 @@ export namespace JSX {
302
281
 
303
282
  type BooleanAttribute = true | false | "";
304
283
 
284
+ type BooleanProperty = true | false;
285
+
305
286
  type EnumeratedPseudoBoolean = "false" | "true";
306
287
 
307
288
  type EnumeratedAcceptsEmpty = "" | true;
308
289
 
309
290
  type RemoveAttribute = undefined | false;
310
291
 
292
+ type RemoveProperty = undefined;
293
+
311
294
  // ARIA
312
295
 
313
296
  // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
@@ -701,6 +684,9 @@ export namespace JSX {
701
684
  onAfterPrint?: EventHandlerUnion<T, Event> | undefined;
702
685
  onBeforePrint?: EventHandlerUnion<T, Event> | undefined;
703
686
  onBeforeUnload?: EventHandlerUnion<T, BeforeUnloadEvent> | undefined;
687
+ onDeviceMotion?: EventHandlerUnion<T, DeviceMotionEvent> | undefined;
688
+ onDeviceOrientation?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
689
+ onDeviceOrientationAbsolute?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
704
690
  onGamepadConnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
705
691
  onGamepadDisconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
706
692
  onHashchange?: EventHandlerUnion<T, HashChangeEvent> | undefined;
@@ -709,40 +695,19 @@ export namespace JSX {
709
695
  onMessageError?: EventHandlerUnion<T, MessageEvent> | undefined;
710
696
  onOffline?: EventHandlerUnion<T, Event> | undefined;
711
697
  onOnline?: EventHandlerUnion<T, Event> | undefined;
698
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
699
+ onOrientationChange?: EventHandlerUnion<T, Event> | undefined;
712
700
  onPageHide?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
713
- // TODO `PageRevealEvent` is currently undefined on TS
714
- onPageReveal?: EventHandlerUnion<T, Event> | undefined;
701
+ onPageReveal?: EventHandlerUnion<T, PageRevealEvent> | undefined;
715
702
  onPageShow?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
716
- // TODO `PageSwapEvent` is currently undefined on TS
717
- onPageSwap?: EventHandlerUnion<T, Event> | undefined;
703
+ onPageSwap?: EventHandlerUnion<T, PageSwapEvent> | undefined;
718
704
  onPopstate?: EventHandlerUnion<T, PopStateEvent> | undefined;
719
705
  onRejectionHandled?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
720
706
  onStorage?: EventHandlerUnion<T, StorageEvent> | undefined;
721
707
  onUnhandledRejection?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
722
708
  onUnload?: EventHandlerUnion<T, Event> | undefined;
723
709
 
724
- "on:afterprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
725
- "on:beforeprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
726
- "on:beforeunload"?: EventHandlerWithOptionsUnion<T, BeforeUnloadEvent> | undefined;
727
- "on:gamepadconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
728
- "on:gamepaddisconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
729
- "on:hashchange"?: EventHandlerWithOptionsUnion<T, HashChangeEvent> | undefined;
730
- "on:languagechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
731
- "on:message"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
732
- "on:messageerror"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
733
- "on:offline"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
734
- "on:online"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
735
- "on:pagehide"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
736
- // TODO `PageRevealEvent` is currently undefined in TS
737
- "on:pagereveal"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
738
- "on:pageshow"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
739
- // TODO `PageSwapEvent` is currently undefined in TS
740
- "on:pageswap"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
741
- "on:popstate"?: EventHandlerWithOptionsUnion<T, PopStateEvent> | undefined;
742
- "on:rejectionhandled"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
743
- "on:storage"?: EventHandlerWithOptionsUnion<T, StorageEvent> | undefined;
744
- "on:unhandledrejection"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
745
- "on:unload"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
710
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
746
711
  }
747
712
 
748
713
  /**
@@ -774,8 +739,7 @@ export namespace JSX {
774
739
  onChange?: ChangeEventHandlerUnion<T, Event> | undefined;
775
740
  onClick?: EventHandlerUnion<T, MouseEvent> | undefined;
776
741
  onClose?: EventHandlerUnion<T, Event> | undefined;
777
- // TODO `CommandEvent` is currently undefined in TS
778
- onCommand?: EventHandlerUnion<T, Event> | undefined;
742
+ onCommand?: EventHandlerUnion<T, CommandEvent> | undefined;
779
743
  onCompositionEnd?: EventHandlerUnion<T, CompositionEvent> | undefined;
780
744
  onCompositionStart?: EventHandlerUnion<T, CompositionEvent> | undefined;
781
745
  onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
@@ -844,10 +808,8 @@ export namespace JSX {
844
808
  onResize?: EventHandlerUnion<T, UIEvent> | undefined;
845
809
  onScroll?: EventHandlerUnion<T, Event> | undefined;
846
810
  onScrollEnd?: EventHandlerUnion<T, Event> | undefined;
847
- // todo `SnapEvent` is currently undefined in TS
848
- onScrollSnapChange?: EventHandlerUnion<T, Event> | undefined;
849
- // todo `SnapEvent` is currently undefined in TS
850
- onScrollSnapChanging?: EventHandlerUnion<T, Event> | undefined;
811
+ onScrollSnapChange?: EventHandlerUnion<T, SnapEvent> | undefined;
812
+ onScrollSnapChanging?: EventHandlerUnion<T, SnapEvent> | undefined;
851
813
  onSecurityPolicyViolation?: EventHandlerUnion<T, SecurityPolicyViolationEvent> | undefined;
852
814
  onSeeked?: EventHandlerUnion<T, Event> | undefined;
853
815
  onSeeking?: EventHandlerUnion<T, Event> | undefined;
@@ -871,157 +833,37 @@ export namespace JSX {
871
833
  onVolumeChange?: EventHandlerUnion<T, Event> | undefined;
872
834
  onWaiting?: EventHandlerUnion<T, Event> | undefined;
873
835
  onWheel?: EventHandlerUnion<T, WheelEvent> | undefined;
836
+ }
874
837
 
875
- "on:abort"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
876
- "on:animationcancel"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
877
- "on:animationend"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
878
- "on:animationiteration"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
879
- "on:animationstart"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
880
- "on:auxclick"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
881
- "on:beforecopy"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
882
- "on:beforecut"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
883
- "on:beforeinput"?:
884
- | EventHandlerWithOptionsUnion<T, InputEvent, InputEventHandler<T, InputEvent>>
885
- | undefined;
886
- "on:beforematch"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
887
- "on:beforepaste"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
888
- "on:beforetoggle"?: EventHandlerWithOptionsUnion<T, ToggleEvent> | undefined;
889
- "on:beforexrselect"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
890
- "on:blur"?:
891
- | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
892
- | undefined;
893
- "on:cancel"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
894
- "on:canplay"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
895
- "on:canplaythrough"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
896
- "on:change"?: EventHandlerWithOptionsUnion<T, Event, ChangeEventHandler<T, Event>> | undefined;
897
- "on:click"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
898
- "on:close"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
899
- // TODO `CommandEvent` is currently undefined in TS
900
- "on:command"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
901
- "on:compositionend"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
902
- "on:compositionstart"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
903
- "on:compositionupdate"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
904
- "on:contentvisibilityautostatechange"?:
905
- | EventHandlerWithOptionsUnion<T, ContentVisibilityAutoStateChangeEvent>
906
- | undefined;
907
- "on:contextlost"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
908
- "on:contextmenu"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
909
- "on:contextrestored"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
910
- "on:copy"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
911
- "on:cuechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
912
- "on:cut"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
913
- "on:dblclick"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
914
- "on:drag"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
915
- "on:dragend"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
916
- "on:dragenter"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
917
- "on:dragexit"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
918
- "on:dragleave"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
919
- "on:dragover"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
920
- "on:dragstart"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
921
- "on:drop"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
922
- "on:durationchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
923
- "on:emptied"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
924
- "on:ended"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
925
- "on:error"?: EventHandlerWithOptionsUnion<T, ErrorEvent> | undefined;
926
- "on:focus"?:
927
- | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
928
- | undefined;
929
- "on:focusin"?:
930
- | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
931
- | undefined;
932
- "on:focusout"?:
933
- | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
934
- | undefined;
935
- "on:formdata"?: EventHandlerWithOptionsUnion<T, FormDataEvent> | undefined;
936
- "on:fullscreenchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
937
- "on:fullscreenerror"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
938
- "on:gotpointercapture"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
939
- "on:input"?:
940
- | EventHandlerWithOptionsUnion<T, InputEvent, InputEventHandler<T, InputEvent>>
941
- | undefined;
942
- "on:invalid"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
943
- "on:keydown"?: EventHandlerWithOptionsUnion<T, KeyboardEvent> | undefined;
944
- "on:keypress"?: EventHandlerWithOptionsUnion<T, KeyboardEvent> | undefined;
945
- "on:keyup"?: EventHandlerWithOptionsUnion<T, KeyboardEvent> | undefined;
946
- "on:load"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
947
- "on:loadeddata"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
948
- "on:loadedmetadata"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
949
- "on:loadstart"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
950
- "on:lostpointercapture"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
951
- "on:mousedown"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
952
- "on:mouseenter"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
953
- "on:mouseleave"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
954
- "on:mousemove"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
955
- "on:mouseout"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
956
- "on:mouseover"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
957
- "on:mouseup"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
958
- "on:paste"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
959
- "on:pause"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
960
- "on:play"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
961
- "on:playing"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
962
- "on:pointercancel"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
963
- "on:pointerdown"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
964
- "on:pointerenter"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
965
- "on:pointerleave"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
966
- "on:pointermove"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
967
- "on:pointerout"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
968
- "on:pointerover"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
969
- "on:pointerrawupdate"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
970
- "on:pointerup"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
971
- "on:progress"?: EventHandlerWithOptionsUnion<T, ProgressEvent> | undefined;
972
- "on:ratechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
973
- "on:reset"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
974
- "on:resize"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
975
- "on:scroll"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
976
- "on:scrollend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
977
- // todo `SnapEvent` is currently undefined in TS
978
- "on:scrollsnapchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
979
- // todo `SnapEvent` is currently undefined in TS
980
- "on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
981
- "on:securitypolicyviolation"?:
982
- | EventHandlerWithOptionsUnion<T, SecurityPolicyViolationEvent>
983
- | undefined;
984
- "on:seeked"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
985
- "on:seeking"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
986
- "on:select"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
987
- "on:selectionchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
988
- "on:selectstart"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
989
- "on:slotchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
990
- "on:stalled"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
991
- "on:submit"?: EventHandlerWithOptionsUnion<T, SubmitEvent> | undefined;
992
- "on:suspend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
993
- "on:timeupdate"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
994
- "on:toggle"?: EventHandlerWithOptionsUnion<T, ToggleEvent> | undefined;
995
- "on:touchcancel"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
996
- "on:touchend"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
997
- "on:touchmove"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
998
- "on:touchstart"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
999
- "on:transitioncancel"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
1000
- "on:transitionend"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
1001
- "on:transitionrun"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
1002
- "on:transitionstart"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
1003
- "on:volumechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
1004
- "on:waiting"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
1005
- "on:wheel"?: EventHandlerWithOptionsUnion<T, WheelEvent> | undefined;
1006
- }
1007
-
1008
- type EventType =
838
+ // EventName = "click" | "mousedown" ...
839
+
840
+ type EventName =
1009
841
  | (keyof EventHandlersWindow<any> extends infer K
1010
- ? K extends `on:${infer T}`
1011
- ? T
1012
- : K extends `on${infer T}`
842
+ ? K extends `on${infer T}`
1013
843
  ? Lowercase<T>
1014
844
  : never
1015
845
  : never)
1016
846
  | (keyof EventHandlersElement<any> extends infer K
1017
- ? K extends `on:${infer T}`
1018
- ? T
1019
- : K extends `on${infer T}`
847
+ ? K extends `on${infer T}`
1020
848
  ? Lowercase<T>
1021
849
  : never
1022
850
  : never)
1023
851
  | (string & {});
1024
852
 
853
+ type ExtractEventType<T> = {
854
+ [K in keyof T as K extends `on${infer Name}` ? Name : never]: T[K] extends EventHandlerUnion<
855
+ Element,
856
+ infer E
857
+ >
858
+ ? E
859
+ : never;
860
+ };
861
+
862
+ // EventType["click"] = MouseEvent
863
+
864
+ type EventType = ExtractEventType<EventHandlersElement<Element>> &
865
+ ExtractEventType<EventHandlersWindow<Element>>;
866
+
1025
867
  // GLOBAL ATTRIBUTES
1026
868
 
1027
869
  /**
@@ -1031,13 +873,7 @@ export namespace JSX {
1031
873
  * 2. Includes `keys` defined by `Element` and `Node` interfaces.
1032
874
  */
1033
875
  interface ElementAttributes<T>
1034
- extends CustomAttributes<T>,
1035
- DirectiveAttributes,
1036
- DirectiveFunctionAttributes<T>,
1037
- PropAttributes,
1038
- OnAttributes<T>,
1039
- EventHandlersElement<T>,
1040
- AriaAttributes {
876
+ extends CustomAttributes<T>, PropAttributes, EventHandlersElement<T>, AriaAttributes {
1041
877
  // [key: ClassKeys]: boolean;
1042
878
 
1043
879
  // properties
@@ -1046,7 +882,20 @@ export namespace JSX {
1046
882
 
1047
883
  // attributes
1048
884
  autofocus?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1049
- class?: FunctionMaybe<string | ClassList | RemoveAttribute>;
885
+ /**
886
+ * Class names to apply. Accepts a string, an object whose keys are class
887
+ * names and values are booleans (`{ active: isActive() }` — truthy keys
888
+ * are added), or an array merging strings/objects/nested arrays
889
+ * (`["card", props.class, { active: isActive() }]`).
890
+ *
891
+ * For conditional classes, prefer the array+object form. Don't build
892
+ * class strings manually with concatenation, template literals, or
893
+ * `.filter(Boolean).join(" ")` — that's the React/`classnames` reflex
894
+ * and the array+object form replaces it. The array+object form composes
895
+ * with reactive values directly; manually-built strings re-run the whole
896
+ * concatenation on every change instead of toggling the affected classes.
897
+ */
898
+ class?: FunctionMaybe<ClassValue | RemoveAttribute>;
1050
899
  elementtiming?: FunctionMaybe<string | RemoveAttribute>;
1051
900
  id?: FunctionMaybe<string | RemoveAttribute>;
1052
901
  nonce?: FunctionMaybe<string | RemoveAttribute>;
@@ -1107,7 +956,7 @@ export namespace JSX {
1107
956
  >;
1108
957
  is?: FunctionMaybe<string | RemoveAttribute>;
1109
958
  lang?: FunctionMaybe<string | RemoveAttribute>;
1110
- popover?: FunctionMaybe<EnumeratedAcceptsEmpty | "manual" | "auto" | RemoveAttribute>;
959
+ popover?: FunctionMaybe<EnumeratedAcceptsEmpty | "manual" | "auto" | "hint" | RemoveAttribute>;
1111
960
  spellcheck?: FunctionMaybe<EnumeratedPseudoBoolean | EnumeratedAcceptsEmpty | RemoveAttribute>;
1112
961
  title?: FunctionMaybe<string | RemoveAttribute>;
1113
962
  translate?: FunctionMaybe<"yes" | "no" | RemoveAttribute>;
@@ -1251,7 +1100,7 @@ export namespace JSX {
1251
1100
  | "worker";
1252
1101
 
1253
1102
  interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
1254
- download?: FunctionMaybe<string | RemoveAttribute>;
1103
+ download?: FunctionMaybe<string | EnumeratedAcceptsEmpty | RemoveAttribute>;
1255
1104
  href?: FunctionMaybe<string | RemoveAttribute>;
1256
1105
  hreflang?: FunctionMaybe<string | RemoveAttribute>;
1257
1106
  ping?: FunctionMaybe<string | RemoveAttribute>;
@@ -1280,7 +1129,7 @@ export namespace JSX {
1280
1129
  interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
1281
1130
  alt?: FunctionMaybe<string | RemoveAttribute>;
1282
1131
  coords?: FunctionMaybe<string | RemoveAttribute>;
1283
- download?: FunctionMaybe<string | RemoveAttribute>;
1132
+ download?: FunctionMaybe<string | EnumeratedAcceptsEmpty | RemoveAttribute>;
1284
1133
  href?: FunctionMaybe<string | RemoveAttribute>;
1285
1134
  ping?: FunctionMaybe<string | RemoveAttribute>;
1286
1135
  referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | RemoveAttribute>;
@@ -1401,6 +1250,7 @@ export namespace JSX {
1401
1250
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#usage_notes
1402
1251
  */
1403
1252
  tabindex?: never;
1253
+ "prop:tabIndex"?: never;
1404
1254
 
1405
1255
  /** @experimental */
1406
1256
  closedby?: FunctionMaybe<"any" | "closerequest" | "none" | RemoveAttribute>;
@@ -1532,7 +1382,7 @@ export namespace JSX {
1532
1382
  alt?: FunctionMaybe<string | RemoveAttribute>;
1533
1383
  autocomplete?: FunctionMaybe<HTMLAutocomplete | RemoveAttribute>;
1534
1384
  capture?: FunctionMaybe<"user" | "environment" | RemoveAttribute>;
1535
- checked?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1385
+
1536
1386
  colorspace?: FunctionMaybe<string | RemoveAttribute>;
1537
1387
  dirname?: FunctionMaybe<string | RemoveAttribute>;
1538
1388
  disabled?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
@@ -1587,8 +1437,8 @@ export namespace JSX {
1587
1437
  | (string & {})
1588
1438
  | RemoveAttribute
1589
1439
  >;
1590
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1591
1440
  width?: FunctionMaybe<number | string | RemoveAttribute>;
1441
+ webkitdirectory?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1592
1442
 
1593
1443
  /** @non-standard */
1594
1444
  incremental?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
@@ -1597,6 +1447,24 @@ export namespace JSX {
1597
1447
  align?: FunctionMaybe<string | RemoveAttribute>;
1598
1448
  /** @deprecated */
1599
1449
  usemap?: FunctionMaybe<string | RemoveAttribute>;
1450
+
1451
+ // special cases locked to properties
1452
+
1453
+ checked?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1454
+ /** @error use `<input checked={..}/>` instead */
1455
+ "prop:checked"?: never;
1456
+
1457
+ defaultChecked?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1458
+ /** @error use `<input defaultChecked={..}/>` instead */
1459
+ "prop:defaultChecked"?: never;
1460
+
1461
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1462
+ /** @error use `<input value={..}/>` instead */
1463
+ "prop:value"?: never;
1464
+
1465
+ defaultValue?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1466
+ /** @error use `<input defaultValue={..}/>` instead */
1467
+ "prop:defaultValue"?: never;
1600
1468
  }
1601
1469
  interface ModHTMLAttributes<T> extends HTMLAttributes<T> {
1602
1470
  cite?: FunctionMaybe<string | RemoveAttribute>;
@@ -1667,20 +1535,27 @@ export namespace JSX {
1667
1535
  crossorigin?: FunctionMaybe<HTMLCrossorigin | RemoveAttribute>;
1668
1536
  disableremoteplayback?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1669
1537
  loop?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1670
- muted?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1538
+
1671
1539
  preload?: FunctionMaybe<
1672
1540
  "none" | "metadata" | "auto" | EnumeratedAcceptsEmpty | RemoveAttribute
1673
1541
  >;
1674
1542
  src?: FunctionMaybe<string | RemoveAttribute>;
1675
1543
 
1676
1544
  onEncrypted?: EventHandlerUnion<T, MediaEncryptedEvent> | undefined;
1677
- "on:encrypted"?: EventHandlerWithOptionsUnion<T, MediaEncryptedEvent> | undefined;
1678
-
1679
1545
  onWaitingForKey?: EventHandlerUnion<T, Event> | undefined;
1680
- "on:waitingforkey"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
1681
1546
 
1682
1547
  /** @deprecated */
1683
1548
  mediagroup?: FunctionMaybe<string | RemoveAttribute>;
1549
+
1550
+ // special cases locked to properties
1551
+
1552
+ muted?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1553
+ /** @error use `<video/audio muted={..}/>` instead */
1554
+ "prop:muted"?: never;
1555
+
1556
+ defaultMuted?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1557
+ /** @error use `<video/audio defaultMuted={..}/>` instead */
1558
+ "prop:defaultMuted"?: never;
1684
1559
  }
1685
1560
  interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
1686
1561
  /** @deprecated */
@@ -1773,8 +1648,27 @@ export namespace JSX {
1773
1648
  interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
1774
1649
  disabled?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1775
1650
  label?: FunctionMaybe<string | RemoveAttribute>;
1776
- selected?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1777
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1651
+
1652
+ // special cases locked to properties
1653
+
1654
+ selected?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1655
+ /** @error use `<option selected={..}/>` instead */
1656
+ "prop:selected"?: never;
1657
+
1658
+ defaultSelected?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1659
+ /** @error use `<option defaultSelected={..}/>` instead */
1660
+ "prop:defaultSelected"?: never;
1661
+
1662
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1663
+ /** @error use `<option value={..}/>` instead */
1664
+ "prop:value"?: never;
1665
+
1666
+ // for sanity
1667
+
1668
+ /** @error This doesn't exists for `<option/>` */
1669
+ "prop:defaultValue"?: never;
1670
+ /** @error This doesn't exists for `<option/>` */
1671
+ defaultValue?: never;
1778
1672
  }
1779
1673
  interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
1780
1674
  for?: FunctionMaybe<string | RemoveAttribute>;
@@ -1828,7 +1722,24 @@ export namespace JSX {
1828
1722
  name?: FunctionMaybe<string | RemoveAttribute>;
1829
1723
  required?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1830
1724
  size?: FunctionMaybe<number | string | RemoveAttribute>;
1831
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1725
+
1726
+ // special cases locked to properties
1727
+
1728
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1729
+ /** @error use `<select value={..}/>` instead */
1730
+ "prop:value"?: never;
1731
+
1732
+ // for sanity
1733
+
1734
+ /** @error use `<option defaultSelected={..}/>` instead */
1735
+ defaultSelected?: never;
1736
+ /** @error use `<option defaultSelected={..}/>` instead */
1737
+ "prop:defaultSelected"?: never;
1738
+
1739
+ /** @error use `<option defaultSelected={..}/>` instead */
1740
+ selected?: never;
1741
+ /** @error use `<option defaultSelected={..}/>` instead */
1742
+ "prop:selected"?: never;
1832
1743
  }
1833
1744
  interface HTMLSlotElementAttributes<T> extends HTMLAttributes<T> {
1834
1745
  name?: FunctionMaybe<string | RemoveAttribute>;
@@ -1902,8 +1813,17 @@ export namespace JSX {
1902
1813
  readonly?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1903
1814
  required?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1904
1815
  rows?: FunctionMaybe<number | string | RemoveAttribute>;
1905
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1906
1816
  wrap?: FunctionMaybe<"hard" | "soft" | "off" | RemoveAttribute>;
1817
+
1818
+ // special cases locked to properties
1819
+
1820
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1821
+ /** @error use `<textarea value={..}/>` instead */
1822
+ "prop:value"?: never;
1823
+
1824
+ defaultValue?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1825
+ /** @error use `<textarea defaultValue={..}/>` instead */
1826
+ "prop:defaultValue"?: never;
1907
1827
  }
1908
1828
  interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
1909
1829
  abbr?: FunctionMaybe<string | RemoveAttribute>;
@@ -1964,10 +1884,7 @@ export namespace JSX {
1964
1884
  width?: FunctionMaybe<number | string | RemoveAttribute>;
1965
1885
 
1966
1886
  onEnterPictureInPicture?: EventHandlerUnion<T, PictureInPictureEvent> | undefined;
1967
- "on:enterpictureinpicture"?: EventHandlerWithOptionsUnion<T, PictureInPictureEvent> | undefined;
1968
-
1969
1887
  onLeavePictureInPicture?: EventHandlerUnion<T, PictureInPictureEvent> | undefined;
1970
- "on:leavepictureinpicture"?: EventHandlerWithOptionsUnion<T, PictureInPictureEvent> | undefined;
1971
1888
  }
1972
1889
 
1973
1890
  interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
@@ -2061,7 +1978,20 @@ export namespace JSX {
2061
1978
  type SVGUnits = "userSpaceOnUse" | "objectBoundingBox";
2062
1979
 
2063
1980
  interface StylableSVGAttributes {
2064
- class?: FunctionMaybe<string | ClassList | RemoveAttribute>;
1981
+ /**
1982
+ * Class names to apply. Accepts a string, an object whose keys are class
1983
+ * names and values are booleans (`{ active: isActive() }` — truthy keys
1984
+ * are added), or an array merging strings/objects/nested arrays
1985
+ * (`["card", props.class, { active: isActive() }]`).
1986
+ *
1987
+ * For conditional classes, prefer the array+object form. Don't build
1988
+ * class strings manually with concatenation, template literals, or
1989
+ * `.filter(Boolean).join(" ")` — that's the React/`classnames` reflex
1990
+ * and the array+object form replaces it. The array+object form composes
1991
+ * with reactive values directly; manually-built strings re-run the whole
1992
+ * concatenation on every change instead of toggling the affected classes.
1993
+ */
1994
+ class?: FunctionMaybe<ClassValue | RemoveAttribute>;
2065
1995
  style?: FunctionMaybe<CSSProperties | string | RemoveAttribute>;
2066
1996
  }
2067
1997
  interface TransformableSVGAttributes {
@@ -2233,23 +2163,15 @@ export namespace JSX {
2233
2163
  visibility?: FunctionMaybe<"visible" | "hidden" | "collapse" | "inherit" | RemoveAttribute>;
2234
2164
  }
2235
2165
  interface AnimationElementSVGAttributes<T>
2236
- extends SVGAttributes<T>,
2237
- ExternalResourceSVGAttributes,
2238
- ConditionalProcessingSVGAttributes {
2239
- // TODO TimeEvent is currently undefined on TS
2240
- onBegin?: EventHandlerUnion<T, Event> | undefined;
2241
- "on:begin"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2242
-
2243
- // TODO TimeEvent is currently undefined on TS
2244
- onEnd?: EventHandlerUnion<T, Event> | undefined;
2245
- "on:end"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2246
-
2247
- // TODO TimeEvent is currently undefined on TS
2248
- onRepeat?: EventHandlerUnion<T, Event> | undefined;
2249
- "on:repeat"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2166
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, ConditionalProcessingSVGAttributes {
2167
+ onBegin?: EventHandlerUnion<T, TimeEvent> | undefined;
2168
+ onEnd?: EventHandlerUnion<T, TimeEvent> | undefined;
2169
+ onRepeat?: EventHandlerUnion<T, TimeEvent> | undefined;
2250
2170
  }
2171
+
2251
2172
  interface ContainerElementSVGAttributes<T>
2252
- extends SVGAttributes<T>,
2173
+ extends
2174
+ SVGAttributes<T>,
2253
2175
  ShapeElementSVGAttributes<T>,
2254
2176
  Pick<
2255
2177
  PresentationSVGAttributes,
@@ -2262,9 +2184,9 @@ export namespace JSX {
2262
2184
  | "color-interpolation"
2263
2185
  | "color-rendering"
2264
2186
  > {}
2187
+
2265
2188
  interface FilterPrimitiveElementSVGAttributes<T>
2266
- extends SVGAttributes<T>,
2267
- Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2189
+ extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2268
2190
  height?: FunctionMaybe<number | string | RemoveAttribute>;
2269
2191
  result?: FunctionMaybe<string | RemoveAttribute>;
2270
2192
  width?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2283,16 +2205,15 @@ export namespace JSX {
2283
2205
  viewBox?: FunctionMaybe<string | RemoveAttribute>;
2284
2206
  }
2285
2207
  interface GradientElementSVGAttributes<T>
2286
- extends SVGAttributes<T>,
2287
- ExternalResourceSVGAttributes,
2288
- StylableSVGAttributes {
2208
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2289
2209
  gradientTransform?: FunctionMaybe<string | RemoveAttribute>;
2290
2210
  gradientUnits?: FunctionMaybe<SVGUnits | RemoveAttribute>;
2291
2211
  href?: FunctionMaybe<string | RemoveAttribute>;
2292
2212
  spreadMethod?: FunctionMaybe<"pad" | "reflect" | "repeat" | RemoveAttribute>;
2293
2213
  }
2294
2214
  interface GraphicsElementSVGAttributes<T>
2295
- extends SVGAttributes<T>,
2215
+ extends
2216
+ SVGAttributes<T>,
2296
2217
  Pick<
2297
2218
  PresentationSVGAttributes,
2298
2219
  | "clip-rule"
@@ -2308,12 +2229,12 @@ export namespace JSX {
2308
2229
  > {}
2309
2230
  interface LightSourceElementSVGAttributes<T> extends SVGAttributes<T> {}
2310
2231
  interface NewViewportSVGAttributes<T>
2311
- extends SVGAttributes<T>,
2312
- Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2232
+ extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2313
2233
  viewBox?: FunctionMaybe<string | RemoveAttribute>;
2314
2234
  }
2315
2235
  interface ShapeElementSVGAttributes<T>
2316
- extends SVGAttributes<T>,
2236
+ extends
2237
+ SVGAttributes<T>,
2317
2238
  Pick<
2318
2239
  PresentationSVGAttributes,
2319
2240
  | "color"
@@ -2332,7 +2253,8 @@ export namespace JSX {
2332
2253
  | "pathLength"
2333
2254
  > {}
2334
2255
  interface TextContentElementSVGAttributes<T>
2335
- extends SVGAttributes<T>,
2256
+ extends
2257
+ SVGAttributes<T>,
2336
2258
  Pick<
2337
2259
  PresentationSVGAttributes,
2338
2260
  | "font-family"
@@ -2373,14 +2295,16 @@ export namespace JSX {
2373
2295
  zoomAndPan?: FunctionMaybe<"disable" | "magnify" | RemoveAttribute>;
2374
2296
  }
2375
2297
  interface AnimateSVGAttributes<T>
2376
- extends AnimationElementSVGAttributes<T>,
2298
+ extends
2299
+ AnimationElementSVGAttributes<T>,
2377
2300
  AnimationAttributeTargetSVGAttributes,
2378
2301
  AnimationTimingSVGAttributes,
2379
2302
  AnimationValueSVGAttributes,
2380
2303
  AnimationAdditionSVGAttributes,
2381
2304
  Pick<PresentationSVGAttributes, "color-interpolation" | "color-rendering"> {}
2382
2305
  interface AnimateMotionSVGAttributes<T>
2383
- extends AnimationElementSVGAttributes<T>,
2306
+ extends
2307
+ AnimationElementSVGAttributes<T>,
2384
2308
  AnimationTimingSVGAttributes,
2385
2309
  AnimationValueSVGAttributes,
2386
2310
  AnimationAdditionSVGAttributes {
@@ -2390,7 +2314,8 @@ export namespace JSX {
2390
2314
  rotate?: FunctionMaybe<number | string | "auto" | "auto-reverse" | RemoveAttribute>;
2391
2315
  }
2392
2316
  interface AnimateTransformSVGAttributes<T>
2393
- extends AnimationElementSVGAttributes<T>,
2317
+ extends
2318
+ AnimationElementSVGAttributes<T>,
2394
2319
  AnimationAttributeTargetSVGAttributes,
2395
2320
  AnimationTimingSVGAttributes,
2396
2321
  AnimationValueSVGAttributes,
@@ -2398,7 +2323,8 @@ export namespace JSX {
2398
2323
  type?: FunctionMaybe<"translate" | "scale" | "rotate" | "skewX" | "skewY" | RemoveAttribute>;
2399
2324
  }
2400
2325
  interface CircleSVGAttributes<T>
2401
- extends GraphicsElementSVGAttributes<T>,
2326
+ extends
2327
+ GraphicsElementSVGAttributes<T>,
2402
2328
  ShapeElementSVGAttributes<T>,
2403
2329
  ConditionalProcessingSVGAttributes,
2404
2330
  StylableSVGAttributes,
@@ -2409,7 +2335,8 @@ export namespace JSX {
2409
2335
  r?: FunctionMaybe<number | string | RemoveAttribute>;
2410
2336
  }
2411
2337
  interface ClipPathSVGAttributes<T>
2412
- extends SVGAttributes<T>,
2338
+ extends
2339
+ SVGAttributes<T>,
2413
2340
  ConditionalProcessingSVGAttributes,
2414
2341
  ExternalResourceSVGAttributes,
2415
2342
  StylableSVGAttributes,
@@ -2418,14 +2345,16 @@ export namespace JSX {
2418
2345
  clipPathUnits?: FunctionMaybe<SVGUnits | RemoveAttribute>;
2419
2346
  }
2420
2347
  interface DefsSVGAttributes<T>
2421
- extends ContainerElementSVGAttributes<T>,
2348
+ extends
2349
+ ContainerElementSVGAttributes<T>,
2422
2350
  ConditionalProcessingSVGAttributes,
2423
2351
  ExternalResourceSVGAttributes,
2424
2352
  StylableSVGAttributes,
2425
2353
  TransformableSVGAttributes {}
2426
2354
  interface DescSVGAttributes<T> extends SVGAttributes<T>, StylableSVGAttributes {}
2427
2355
  interface EllipseSVGAttributes<T>
2428
- extends GraphicsElementSVGAttributes<T>,
2356
+ extends
2357
+ GraphicsElementSVGAttributes<T>,
2429
2358
  ShapeElementSVGAttributes<T>,
2430
2359
  ConditionalProcessingSVGAttributes,
2431
2360
  ExternalResourceSVGAttributes,
@@ -2438,13 +2367,15 @@ export namespace JSX {
2438
2367
  ry?: FunctionMaybe<number | string | RemoveAttribute>;
2439
2368
  }
2440
2369
  interface FeBlendSVGAttributes<T>
2441
- extends FilterPrimitiveElementSVGAttributes<T>,
2370
+ extends
2371
+ FilterPrimitiveElementSVGAttributes<T>,
2442
2372
  DoubleInputFilterSVGAttributes,
2443
2373
  StylableSVGAttributes {
2444
2374
  mode?: FunctionMaybe<"normal" | "multiply" | "screen" | "darken" | "lighten" | RemoveAttribute>;
2445
2375
  }
2446
2376
  interface FeColorMatrixSVGAttributes<T>
2447
- extends FilterPrimitiveElementSVGAttributes<T>,
2377
+ extends
2378
+ FilterPrimitiveElementSVGAttributes<T>,
2448
2379
  SingleInputFilterSVGAttributes,
2449
2380
  StylableSVGAttributes {
2450
2381
  type?: FunctionMaybe<
@@ -2453,11 +2384,13 @@ export namespace JSX {
2453
2384
  values?: FunctionMaybe<string | RemoveAttribute>;
2454
2385
  }
2455
2386
  interface FeComponentTransferSVGAttributes<T>
2456
- extends FilterPrimitiveElementSVGAttributes<T>,
2387
+ extends
2388
+ FilterPrimitiveElementSVGAttributes<T>,
2457
2389
  SingleInputFilterSVGAttributes,
2458
2390
  StylableSVGAttributes {}
2459
2391
  interface FeCompositeSVGAttributes<T>
2460
- extends FilterPrimitiveElementSVGAttributes<T>,
2392
+ extends
2393
+ FilterPrimitiveElementSVGAttributes<T>,
2461
2394
  DoubleInputFilterSVGAttributes,
2462
2395
  StylableSVGAttributes {
2463
2396
  k1?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2469,7 +2402,8 @@ export namespace JSX {
2469
2402
  >;
2470
2403
  }
2471
2404
  interface FeConvolveMatrixSVGAttributes<T>
2472
- extends FilterPrimitiveElementSVGAttributes<T>,
2405
+ extends
2406
+ FilterPrimitiveElementSVGAttributes<T>,
2473
2407
  SingleInputFilterSVGAttributes,
2474
2408
  StylableSVGAttributes {
2475
2409
  bias?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2483,7 +2417,8 @@ export namespace JSX {
2483
2417
  targetY?: FunctionMaybe<number | string | RemoveAttribute>;
2484
2418
  }
2485
2419
  interface FeDiffuseLightingSVGAttributes<T>
2486
- extends FilterPrimitiveElementSVGAttributes<T>,
2420
+ extends
2421
+ FilterPrimitiveElementSVGAttributes<T>,
2487
2422
  SingleInputFilterSVGAttributes,
2488
2423
  StylableSVGAttributes,
2489
2424
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2492,7 +2427,8 @@ export namespace JSX {
2492
2427
  surfaceScale?: FunctionMaybe<number | string | RemoveAttribute>;
2493
2428
  }
2494
2429
  interface FeDisplacementMapSVGAttributes<T>
2495
- extends FilterPrimitiveElementSVGAttributes<T>,
2430
+ extends
2431
+ FilterPrimitiveElementSVGAttributes<T>,
2496
2432
  DoubleInputFilterSVGAttributes,
2497
2433
  StylableSVGAttributes {
2498
2434
  scale?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2504,7 +2440,8 @@ export namespace JSX {
2504
2440
  elevation?: FunctionMaybe<number | string | RemoveAttribute>;
2505
2441
  }
2506
2442
  interface FeDropShadowSVGAttributes<T>
2507
- extends SVGAttributes<T>,
2443
+ extends
2444
+ SVGAttributes<T>,
2508
2445
  FilterPrimitiveElementSVGAttributes<T>,
2509
2446
  StylableSVGAttributes,
2510
2447
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {
@@ -2513,7 +2450,8 @@ export namespace JSX {
2513
2450
  stdDeviation?: FunctionMaybe<number | string | RemoveAttribute>;
2514
2451
  }
2515
2452
  interface FeFloodSVGAttributes<T>
2516
- extends FilterPrimitiveElementSVGAttributes<T>,
2453
+ extends
2454
+ FilterPrimitiveElementSVGAttributes<T>,
2517
2455
  StylableSVGAttributes,
2518
2456
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {}
2519
2457
  interface FeFuncSVGAttributes<T> extends SVGAttributes<T> {
@@ -2526,31 +2464,34 @@ export namespace JSX {
2526
2464
  type?: FunctionMaybe<"identity" | "table" | "discrete" | "linear" | "gamma" | RemoveAttribute>;
2527
2465
  }
2528
2466
  interface FeGaussianBlurSVGAttributes<T>
2529
- extends FilterPrimitiveElementSVGAttributes<T>,
2467
+ extends
2468
+ FilterPrimitiveElementSVGAttributes<T>,
2530
2469
  SingleInputFilterSVGAttributes,
2531
2470
  StylableSVGAttributes {
2532
2471
  stdDeviation?: FunctionMaybe<number | string | RemoveAttribute>;
2533
2472
  }
2534
2473
  interface FeImageSVGAttributes<T>
2535
- extends FilterPrimitiveElementSVGAttributes<T>,
2474
+ extends
2475
+ FilterPrimitiveElementSVGAttributes<T>,
2536
2476
  ExternalResourceSVGAttributes,
2537
2477
  StylableSVGAttributes {
2538
2478
  href?: FunctionMaybe<string | RemoveAttribute>;
2539
2479
  preserveAspectRatio?: FunctionMaybe<SVGPreserveAspectRatio | RemoveAttribute>;
2540
2480
  }
2541
2481
  interface FeMergeSVGAttributes<T>
2542
- extends FilterPrimitiveElementSVGAttributes<T>,
2543
- StylableSVGAttributes {}
2482
+ extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {}
2544
2483
  interface FeMergeNodeSVGAttributes<T> extends SVGAttributes<T>, SingleInputFilterSVGAttributes {}
2545
2484
  interface FeMorphologySVGAttributes<T>
2546
- extends FilterPrimitiveElementSVGAttributes<T>,
2485
+ extends
2486
+ FilterPrimitiveElementSVGAttributes<T>,
2547
2487
  SingleInputFilterSVGAttributes,
2548
2488
  StylableSVGAttributes {
2549
2489
  operator?: FunctionMaybe<"erode" | "dilate" | RemoveAttribute>;
2550
2490
  radius?: FunctionMaybe<number | string | RemoveAttribute>;
2551
2491
  }
2552
2492
  interface FeOffsetSVGAttributes<T>
2553
- extends FilterPrimitiveElementSVGAttributes<T>,
2493
+ extends
2494
+ FilterPrimitiveElementSVGAttributes<T>,
2554
2495
  SingleInputFilterSVGAttributes,
2555
2496
  StylableSVGAttributes {
2556
2497
  dx?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2562,7 +2503,8 @@ export namespace JSX {
2562
2503
  z?: FunctionMaybe<number | string | RemoveAttribute>;
2563
2504
  }
2564
2505
  interface FeSpecularLightingSVGAttributes<T>
2565
- extends FilterPrimitiveElementSVGAttributes<T>,
2506
+ extends
2507
+ FilterPrimitiveElementSVGAttributes<T>,
2566
2508
  SingleInputFilterSVGAttributes,
2567
2509
  StylableSVGAttributes,
2568
2510
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2582,12 +2524,12 @@ export namespace JSX {
2582
2524
  z?: FunctionMaybe<number | string | RemoveAttribute>;
2583
2525
  }
2584
2526
  interface FeTileSVGAttributes<T>
2585
- extends FilterPrimitiveElementSVGAttributes<T>,
2527
+ extends
2528
+ FilterPrimitiveElementSVGAttributes<T>,
2586
2529
  SingleInputFilterSVGAttributes,
2587
2530
  StylableSVGAttributes {}
2588
2531
  interface FeTurbulanceSVGAttributes<T>
2589
- extends FilterPrimitiveElementSVGAttributes<T>,
2590
- StylableSVGAttributes {
2532
+ extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {
2591
2533
  baseFrequency?: FunctionMaybe<number | string | RemoveAttribute>;
2592
2534
  numOctaves?: FunctionMaybe<number | string | RemoveAttribute>;
2593
2535
  seed?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2595,9 +2537,7 @@ export namespace JSX {
2595
2537
  type?: FunctionMaybe<"fractalNoise" | "turbulence" | RemoveAttribute>;
2596
2538
  }
2597
2539
  interface FilterSVGAttributes<T>
2598
- extends SVGAttributes<T>,
2599
- ExternalResourceSVGAttributes,
2600
- StylableSVGAttributes {
2540
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2601
2541
  filterRes?: FunctionMaybe<number | string | RemoveAttribute>;
2602
2542
  filterUnits?: FunctionMaybe<SVGUnits | RemoveAttribute>;
2603
2543
  height?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2607,7 +2547,8 @@ export namespace JSX {
2607
2547
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2608
2548
  }
2609
2549
  interface ForeignObjectSVGAttributes<T>
2610
- extends NewViewportSVGAttributes<T>,
2550
+ extends
2551
+ NewViewportSVGAttributes<T>,
2611
2552
  ConditionalProcessingSVGAttributes,
2612
2553
  ExternalResourceSVGAttributes,
2613
2554
  StylableSVGAttributes,
@@ -2619,14 +2560,16 @@ export namespace JSX {
2619
2560
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2620
2561
  }
2621
2562
  interface GSVGAttributes<T>
2622
- extends ContainerElementSVGAttributes<T>,
2563
+ extends
2564
+ ContainerElementSVGAttributes<T>,
2623
2565
  ConditionalProcessingSVGAttributes,
2624
2566
  ExternalResourceSVGAttributes,
2625
2567
  StylableSVGAttributes,
2626
2568
  TransformableSVGAttributes,
2627
2569
  Pick<PresentationSVGAttributes, "clip-path" | "display" | "visibility"> {}
2628
2570
  interface ImageSVGAttributes<T>
2629
- extends NewViewportSVGAttributes<T>,
2571
+ extends
2572
+ NewViewportSVGAttributes<T>,
2630
2573
  GraphicsElementSVGAttributes<T>,
2631
2574
  ConditionalProcessingSVGAttributes,
2632
2575
  StylableSVGAttributes,
@@ -2640,7 +2583,8 @@ export namespace JSX {
2640
2583
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2641
2584
  }
2642
2585
  interface LineSVGAttributes<T>
2643
- extends GraphicsElementSVGAttributes<T>,
2586
+ extends
2587
+ GraphicsElementSVGAttributes<T>,
2644
2588
  ShapeElementSVGAttributes<T>,
2645
2589
  ConditionalProcessingSVGAttributes,
2646
2590
  ExternalResourceSVGAttributes,
@@ -2659,7 +2603,8 @@ export namespace JSX {
2659
2603
  y2?: FunctionMaybe<number | string | RemoveAttribute>;
2660
2604
  }
2661
2605
  interface MarkerSVGAttributes<T>
2662
- extends ContainerElementSVGAttributes<T>,
2606
+ extends
2607
+ ContainerElementSVGAttributes<T>,
2663
2608
  ExternalResourceSVGAttributes,
2664
2609
  StylableSVGAttributes,
2665
2610
  FitToViewBoxSVGAttributes,
@@ -2672,7 +2617,8 @@ export namespace JSX {
2672
2617
  refY?: FunctionMaybe<number | string | RemoveAttribute>;
2673
2618
  }
2674
2619
  interface MaskSVGAttributes<T>
2675
- extends Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2620
+ extends
2621
+ Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2676
2622
  ConditionalProcessingSVGAttributes,
2677
2623
  ExternalResourceSVGAttributes,
2678
2624
  StylableSVGAttributes,
@@ -2687,7 +2633,8 @@ export namespace JSX {
2687
2633
  interface MetadataSVGAttributes<T> extends SVGAttributes<T> {}
2688
2634
  interface MPathSVGAttributes<T> extends SVGAttributes<T> {}
2689
2635
  interface PathSVGAttributes<T>
2690
- extends GraphicsElementSVGAttributes<T>,
2636
+ extends
2637
+ GraphicsElementSVGAttributes<T>,
2691
2638
  ShapeElementSVGAttributes<T>,
2692
2639
  ConditionalProcessingSVGAttributes,
2693
2640
  ExternalResourceSVGAttributes,
@@ -2698,7 +2645,8 @@ export namespace JSX {
2698
2645
  pathLength?: FunctionMaybe<number | string | RemoveAttribute>;
2699
2646
  }
2700
2647
  interface PatternSVGAttributes<T>
2701
- extends ContainerElementSVGAttributes<T>,
2648
+ extends
2649
+ ContainerElementSVGAttributes<T>,
2702
2650
  ConditionalProcessingSVGAttributes,
2703
2651
  ExternalResourceSVGAttributes,
2704
2652
  StylableSVGAttributes,
@@ -2714,7 +2662,8 @@ export namespace JSX {
2714
2662
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2715
2663
  }
2716
2664
  interface PolygonSVGAttributes<T>
2717
- extends GraphicsElementSVGAttributes<T>,
2665
+ extends
2666
+ GraphicsElementSVGAttributes<T>,
2718
2667
  ShapeElementSVGAttributes<T>,
2719
2668
  ConditionalProcessingSVGAttributes,
2720
2669
  ExternalResourceSVGAttributes,
@@ -2724,7 +2673,8 @@ export namespace JSX {
2724
2673
  points?: FunctionMaybe<string | RemoveAttribute>;
2725
2674
  }
2726
2675
  interface PolylineSVGAttributes<T>
2727
- extends GraphicsElementSVGAttributes<T>,
2676
+ extends
2677
+ GraphicsElementSVGAttributes<T>,
2728
2678
  ShapeElementSVGAttributes<T>,
2729
2679
  ConditionalProcessingSVGAttributes,
2730
2680
  ExternalResourceSVGAttributes,
@@ -2741,7 +2691,8 @@ export namespace JSX {
2741
2691
  r?: FunctionMaybe<number | string | RemoveAttribute>;
2742
2692
  }
2743
2693
  interface RectSVGAttributes<T>
2744
- extends GraphicsElementSVGAttributes<T>,
2694
+ extends
2695
+ GraphicsElementSVGAttributes<T>,
2745
2696
  ShapeElementSVGAttributes<T>,
2746
2697
  ConditionalProcessingSVGAttributes,
2747
2698
  ExternalResourceSVGAttributes,
@@ -2756,17 +2707,17 @@ export namespace JSX {
2756
2707
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2757
2708
  }
2758
2709
  interface SetSVGAttributes<T>
2759
- extends AnimationElementSVGAttributes<T>,
2760
- StylableSVGAttributes,
2761
- AnimationTimingSVGAttributes {}
2710
+ extends AnimationElementSVGAttributes<T>, StylableSVGAttributes, AnimationTimingSVGAttributes {}
2762
2711
  interface StopSVGAttributes<T>
2763
- extends SVGAttributes<T>,
2712
+ extends
2713
+ SVGAttributes<T>,
2764
2714
  StylableSVGAttributes,
2765
2715
  Pick<PresentationSVGAttributes, "color" | "stop-color" | "stop-opacity"> {
2766
2716
  offset?: FunctionMaybe<number | string | RemoveAttribute>;
2767
2717
  }
2768
2718
  interface SvgSVGAttributes<T>
2769
- extends ContainerElementSVGAttributes<T>,
2719
+ extends
2720
+ ContainerElementSVGAttributes<T>,
2770
2721
  NewViewportSVGAttributes<T>,
2771
2722
  ConditionalProcessingSVGAttributes,
2772
2723
  ExternalResourceSVGAttributes,
@@ -2789,14 +2740,16 @@ export namespace JSX {
2789
2740
  version?: FunctionMaybe<string | RemoveAttribute>;
2790
2741
  }
2791
2742
  interface SwitchSVGAttributes<T>
2792
- extends ContainerElementSVGAttributes<T>,
2743
+ extends
2744
+ ContainerElementSVGAttributes<T>,
2793
2745
  ConditionalProcessingSVGAttributes,
2794
2746
  ExternalResourceSVGAttributes,
2795
2747
  StylableSVGAttributes,
2796
2748
  TransformableSVGAttributes,
2797
2749
  Pick<PresentationSVGAttributes, "display" | "visibility"> {}
2798
2750
  interface SymbolSVGAttributes<T>
2799
- extends ContainerElementSVGAttributes<T>,
2751
+ extends
2752
+ ContainerElementSVGAttributes<T>,
2800
2753
  NewViewportSVGAttributes<T>,
2801
2754
  ExternalResourceSVGAttributes,
2802
2755
  StylableSVGAttributes,
@@ -2812,7 +2765,8 @@ export namespace JSX {
2812
2765
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2813
2766
  }
2814
2767
  interface TextSVGAttributes<T>
2815
- extends TextContentElementSVGAttributes<T>,
2768
+ extends
2769
+ TextContentElementSVGAttributes<T>,
2816
2770
  GraphicsElementSVGAttributes<T>,
2817
2771
  ConditionalProcessingSVGAttributes,
2818
2772
  ExternalResourceSVGAttributes,
@@ -2828,7 +2782,8 @@ export namespace JSX {
2828
2782
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2829
2783
  }
2830
2784
  interface TextPathSVGAttributes<T>
2831
- extends TextContentElementSVGAttributes<T>,
2785
+ extends
2786
+ TextContentElementSVGAttributes<T>,
2832
2787
  ConditionalProcessingSVGAttributes,
2833
2788
  ExternalResourceSVGAttributes,
2834
2789
  StylableSVGAttributes,
@@ -2842,7 +2797,8 @@ export namespace JSX {
2842
2797
  startOffset?: FunctionMaybe<number | string | RemoveAttribute>;
2843
2798
  }
2844
2799
  interface TSpanSVGAttributes<T>
2845
- extends TextContentElementSVGAttributes<T>,
2800
+ extends
2801
+ TextContentElementSVGAttributes<T>,
2846
2802
  ConditionalProcessingSVGAttributes,
2847
2803
  ExternalResourceSVGAttributes,
2848
2804
  StylableSVGAttributes,
@@ -2860,7 +2816,8 @@ export namespace JSX {
2860
2816
  }
2861
2817
  /** @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use */
2862
2818
  interface UseSVGAttributes<T>
2863
- extends SVGAttributes<T>,
2819
+ extends
2820
+ SVGAttributes<T>,
2864
2821
  StylableSVGAttributes,
2865
2822
  ConditionalProcessingSVGAttributes,
2866
2823
  GraphicsElementSVGAttributes<T>,
@@ -2874,7 +2831,8 @@ export namespace JSX {
2874
2831
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2875
2832
  }
2876
2833
  interface ViewSVGAttributes<T>
2877
- extends SVGAttributes<T>,
2834
+ extends
2835
+ SVGAttributes<T>,
2878
2836
  ExternalResourceSVGAttributes,
2879
2837
  FitToViewBoxSVGAttributes,
2880
2838
  ZoomAndPanSVGAttributes {
@@ -3106,564 +3064,564 @@ export namespace JSX {
3106
3064
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
3107
3065
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
3108
3066
  */
3109
- a: AnchorHTMLAttributes<HTMLAnchorElement>;
3067
+ a: AnchorHTMLAttributes<HTMLAnchorElement> & Properties<HTMLAnchorElement>;
3110
3068
  /**
3111
3069
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
3112
3070
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3113
3071
  */
3114
- abbr: HTMLAttributes<HTMLElement>;
3072
+ abbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3115
3073
  /**
3116
3074
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
3117
3075
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3118
3076
  */
3119
- address: HTMLAttributes<HTMLElement>;
3077
+ address: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3120
3078
  /**
3121
3079
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
3122
3080
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
3123
3081
  */
3124
- area: AreaHTMLAttributes<HTMLAreaElement>;
3082
+ area: AreaHTMLAttributes<HTMLAreaElement> & Properties<HTMLAreaElement>;
3125
3083
  /**
3126
3084
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
3127
3085
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3128
3086
  */
3129
- article: HTMLAttributes<HTMLElement>;
3087
+ article: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3130
3088
  /**
3131
3089
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
3132
3090
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3133
3091
  */
3134
- aside: HTMLAttributes<HTMLElement>;
3092
+ aside: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3135
3093
  /**
3136
3094
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
3137
3095
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement
3138
3096
  */
3139
- audio: AudioHTMLAttributes<HTMLAudioElement>;
3097
+ audio: AudioHTMLAttributes<HTMLAudioElement> & Properties<HTMLAudioElement>;
3140
3098
  /**
3141
3099
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
3142
3100
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3143
3101
  */
3144
- b: HTMLAttributes<HTMLElement>;
3102
+ b: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3145
3103
  /**
3146
3104
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
3147
3105
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBaseElement
3148
3106
  */
3149
- base: BaseHTMLAttributes<HTMLBaseElement>;
3107
+ base: BaseHTMLAttributes<HTMLBaseElement> & Properties<HTMLBaseElement>;
3150
3108
  /**
3151
3109
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
3152
3110
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3153
3111
  */
3154
- bdi: HTMLAttributes<HTMLElement>;
3112
+ bdi: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3155
3113
  /**
3156
3114
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
3157
3115
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3158
3116
  */
3159
- bdo: BdoHTMLAttributes<HTMLElement>;
3117
+ bdo: BdoHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3160
3118
  /**
3161
3119
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
3162
3120
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3163
3121
  */
3164
- blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
3122
+ blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3165
3123
  /**
3166
3124
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
3167
3125
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
3168
3126
  */
3169
- body: BodyHTMLAttributes<HTMLBodyElement>;
3127
+ body: BodyHTMLAttributes<HTMLBodyElement> & Properties<HTMLBodyElement>;
3170
3128
  /**
3171
3129
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
3172
3130
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBRElement
3173
3131
  */
3174
- br: HTMLAttributes<HTMLBRElement>;
3132
+ br: HTMLAttributes<HTMLBRElement> & Properties<HTMLBRElement>;
3175
3133
  /**
3176
3134
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
3177
3135
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement
3178
3136
  */
3179
- button: ButtonHTMLAttributes<HTMLButtonElement>;
3137
+ button: ButtonHTMLAttributes<HTMLButtonElement> & Properties<HTMLButtonElement>;
3180
3138
  /**
3181
3139
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
3182
3140
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
3183
3141
  */
3184
- canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
3142
+ canvas: CanvasHTMLAttributes<HTMLCanvasElement> & Properties<HTMLCanvasElement>;
3185
3143
  /**
3186
3144
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
3187
3145
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement
3188
3146
  */
3189
- caption: CaptionHTMLAttributes<HTMLTableCaptionElement>;
3147
+ caption: CaptionHTMLAttributes<HTMLTableCaptionElement> & Properties<HTMLTableCaptionElement>;
3190
3148
  /**
3191
3149
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
3192
3150
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3193
3151
  */
3194
- cite: HTMLAttributes<HTMLElement>;
3152
+ cite: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3195
3153
  /**
3196
3154
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
3197
3155
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3198
3156
  */
3199
- code: HTMLAttributes<HTMLElement>;
3157
+ code: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3200
3158
  /**
3201
3159
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
3202
3160
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3203
3161
  */
3204
- col: ColHTMLAttributes<HTMLTableColElement>;
3162
+ col: ColHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3205
3163
  /**
3206
3164
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
3207
3165
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3208
3166
  */
3209
- colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
3167
+ colgroup: ColgroupHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3210
3168
  /**
3211
3169
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
3212
3170
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
3213
3171
  */
3214
- data: DataHTMLAttributes<HTMLDataElement>;
3172
+ data: DataHTMLAttributes<HTMLDataElement> & Properties<HTMLDataElement>;
3215
3173
  /**
3216
3174
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
3217
3175
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement
3218
3176
  */
3219
- datalist: HTMLAttributes<HTMLDataListElement>;
3177
+ datalist: HTMLAttributes<HTMLDataListElement> & Properties<HTMLDataListElement>;
3220
3178
  /**
3221
3179
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
3222
3180
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3223
3181
  */
3224
- dd: HTMLAttributes<HTMLElement>;
3182
+ dd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3225
3183
  /**
3226
3184
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
3227
3185
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3228
3186
  */
3229
- del: ModHTMLAttributes<HTMLModElement>;
3187
+ del: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3230
3188
  /**
3231
3189
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
3232
3190
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement
3233
3191
  */
3234
- details: DetailsHtmlAttributes<HTMLDetailsElement>;
3192
+ details: DetailsHtmlAttributes<HTMLDetailsElement> & Properties<HTMLDetailsElement>;
3235
3193
  /**
3236
3194
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
3237
3195
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3238
3196
  */
3239
- dfn: HTMLAttributes<HTMLElement>;
3197
+ dfn: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3240
3198
  /**
3241
3199
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
3242
3200
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement
3243
3201
  */
3244
- dialog: DialogHtmlAttributes<HTMLDialogElement>;
3202
+ dialog: DialogHtmlAttributes<HTMLDialogElement> & Properties<HTMLDialogElement>;
3245
3203
  /**
3246
3204
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
3247
3205
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement
3248
3206
  */
3249
- div: HTMLAttributes<HTMLDivElement>;
3207
+ div: HTMLAttributes<HTMLDivElement> & Properties<HTMLDivElement>;
3250
3208
  /**
3251
3209
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
3252
3210
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDListElement
3253
3211
  */
3254
- dl: HTMLAttributes<HTMLDListElement>;
3212
+ dl: HTMLAttributes<HTMLDListElement> & Properties<HTMLDListElement>;
3255
3213
  /**
3256
3214
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
3257
3215
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3258
3216
  */
3259
- dt: HTMLAttributes<HTMLElement>;
3217
+ dt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3260
3218
  /**
3261
3219
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
3262
3220
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3263
3221
  */
3264
- em: HTMLAttributes<HTMLElement>;
3222
+ em: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3265
3223
  /**
3266
3224
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
3267
3225
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
3268
3226
  */
3269
- embed: EmbedHTMLAttributes<HTMLEmbedElement>;
3227
+ embed: EmbedHTMLAttributes<HTMLEmbedElement> & Properties<HTMLEmbedElement>;
3270
3228
  /**
3271
3229
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
3272
3230
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
3273
3231
  */
3274
- fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
3232
+ fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement> & Properties<HTMLFieldSetElement>;
3275
3233
  /**
3276
3234
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
3277
3235
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3278
3236
  */
3279
- figcaption: HTMLAttributes<HTMLElement>;
3237
+ figcaption: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3280
3238
  /**
3281
3239
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
3282
3240
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3283
3241
  */
3284
- figure: HTMLAttributes<HTMLElement>;
3242
+ figure: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3285
3243
  /**
3286
3244
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
3287
3245
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3288
3246
  */
3289
- footer: HTMLAttributes<HTMLElement>;
3247
+ footer: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3290
3248
  /**
3291
3249
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
3292
3250
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement
3293
3251
  */
3294
- form: FormHTMLAttributes<HTMLFormElement>;
3252
+ form: FormHTMLAttributes<HTMLFormElement> & Properties<HTMLFormElement>;
3295
3253
  /**
3296
3254
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
3297
3255
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3298
3256
  */
3299
- h1: HTMLAttributes<HTMLHeadingElement>;
3257
+ h1: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3300
3258
  /**
3301
3259
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
3302
3260
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3303
3261
  */
3304
- h2: HTMLAttributes<HTMLHeadingElement>;
3262
+ h2: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3305
3263
  /**
3306
3264
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
3307
3265
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3308
3266
  */
3309
- h3: HTMLAttributes<HTMLHeadingElement>;
3267
+ h3: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3310
3268
  /**
3311
3269
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
3312
3270
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3313
3271
  */
3314
- h4: HTMLAttributes<HTMLHeadingElement>;
3272
+ h4: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3315
3273
  /**
3316
3274
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
3317
3275
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3318
3276
  */
3319
- h5: HTMLAttributes<HTMLHeadingElement>;
3277
+ h5: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3320
3278
  /**
3321
3279
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
3322
3280
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3323
3281
  */
3324
- h6: HTMLAttributes<HTMLHeadingElement>;
3282
+ h6: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3325
3283
  /**
3326
3284
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
3327
3285
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement
3328
3286
  */
3329
- head: HTMLAttributes<HTMLHeadElement>;
3287
+ head: HTMLAttributes<HTMLHeadElement> & Properties<HTMLHeadElement>;
3330
3288
  /**
3331
3289
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
3332
3290
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3333
3291
  */
3334
- header: HTMLAttributes<HTMLElement>;
3292
+ header: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3335
3293
  /**
3336
3294
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
3337
3295
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3338
3296
  */
3339
- hgroup: HTMLAttributes<HTMLElement>;
3297
+ hgroup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3340
3298
  /**
3341
3299
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
3342
3300
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHRElement
3343
3301
  */
3344
- hr: HTMLAttributes<HTMLHRElement>;
3302
+ hr: HTMLAttributes<HTMLHRElement> & Properties<HTMLHRElement>;
3345
3303
  /**
3346
3304
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
3347
3305
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement
3348
3306
  */
3349
- html: HTMLAttributes<HTMLHtmlElement>;
3307
+ html: HTMLAttributes<HTMLHtmlElement> & Properties<HTMLHtmlElement>;
3350
3308
  /**
3351
3309
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
3352
3310
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3353
3311
  */
3354
- i: HTMLAttributes<HTMLElement>;
3312
+ i: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3355
3313
  /**
3356
3314
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
3357
3315
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
3358
3316
  */
3359
- iframe: IframeHTMLAttributes<HTMLIFrameElement>;
3317
+ iframe: IframeHTMLAttributes<HTMLIFrameElement> & Properties<HTMLIFrameElement>;
3360
3318
  /**
3361
3319
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
3362
3320
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
3363
3321
  */
3364
- img: ImgHTMLAttributes<HTMLImageElement>;
3322
+ img: ImgHTMLAttributes<HTMLImageElement> & Properties<HTMLImageElement>;
3365
3323
  /**
3366
3324
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
3367
3325
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement
3368
3326
  */
3369
- input: InputHTMLAttributes<HTMLInputElement>;
3327
+ input: InputHTMLAttributes<HTMLInputElement> & Properties<HTMLInputElement>;
3370
3328
  /**
3371
3329
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
3372
3330
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3373
3331
  */
3374
- ins: ModHTMLAttributes<HTMLModElement>;
3332
+ ins: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3375
3333
  /**
3376
3334
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
3377
3335
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3378
3336
  */
3379
- kbd: HTMLAttributes<HTMLElement>;
3337
+ kbd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3380
3338
  /**
3381
3339
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
3382
3340
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement
3383
3341
  */
3384
- label: LabelHTMLAttributes<HTMLLabelElement>;
3342
+ label: LabelHTMLAttributes<HTMLLabelElement> & Properties<HTMLLabelElement>;
3385
3343
  /**
3386
3344
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
3387
3345
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
3388
3346
  */
3389
- legend: HTMLAttributes<HTMLLegendElement>;
3347
+ legend: HTMLAttributes<HTMLLegendElement> & Properties<HTMLLegendElement>;
3390
3348
  /**
3391
3349
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
3392
3350
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
3393
3351
  */
3394
- li: LiHTMLAttributes<HTMLLIElement>;
3352
+ li: LiHTMLAttributes<HTMLLIElement> & Properties<HTMLLIElement>;
3395
3353
  /**
3396
3354
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
3397
3355
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement
3398
3356
  */
3399
- link: LinkHTMLAttributes<HTMLLinkElement>;
3357
+ link: LinkHTMLAttributes<HTMLLinkElement> & Properties<HTMLLinkElement>;
3400
3358
  /**
3401
3359
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
3402
3360
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3403
3361
  */
3404
- main: HTMLAttributes<HTMLElement>;
3362
+ main: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3405
3363
  /**
3406
3364
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
3407
3365
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMapElement
3408
3366
  */
3409
- map: MapHTMLAttributes<HTMLMapElement>;
3367
+ map: MapHTMLAttributes<HTMLMapElement> & Properties<HTMLMapElement>;
3410
3368
  /**
3411
3369
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
3412
3370
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3413
3371
  */
3414
- mark: HTMLAttributes<HTMLElement>;
3372
+ mark: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3415
3373
  /**
3416
3374
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
3417
3375
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMenuElement
3418
3376
  */
3419
- menu: MenuHTMLAttributes<HTMLMenuElement>;
3377
+ menu: MenuHTMLAttributes<HTMLMenuElement> & Properties<HTMLMenuElement>;
3420
3378
  /**
3421
3379
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
3422
3380
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement
3423
3381
  */
3424
- meta: MetaHTMLAttributes<HTMLMetaElement>;
3382
+ meta: MetaHTMLAttributes<HTMLMetaElement> & Properties<HTMLMetaElement>;
3425
3383
  /**
3426
3384
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
3427
3385
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement
3428
3386
  */
3429
- meter: MeterHTMLAttributes<HTMLMeterElement>;
3387
+ meter: MeterHTMLAttributes<HTMLMeterElement> & Properties<HTMLMeterElement>;
3430
3388
  /**
3431
3389
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
3432
3390
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3433
3391
  */
3434
- nav: HTMLAttributes<HTMLElement>;
3392
+ nav: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3435
3393
  /**
3436
3394
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
3437
3395
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3438
3396
  */
3439
- noscript: HTMLAttributes<HTMLElement>;
3397
+ noscript: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3440
3398
  /**
3441
3399
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
3442
3400
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement
3443
3401
  */
3444
- object: ObjectHTMLAttributes<HTMLObjectElement>;
3402
+ object: ObjectHTMLAttributes<HTMLObjectElement> & Properties<HTMLObjectElement>;
3445
3403
  /**
3446
3404
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
3447
3405
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
3448
3406
  */
3449
- ol: OlHTMLAttributes<HTMLOListElement>;
3407
+ ol: OlHTMLAttributes<HTMLOListElement> & Properties<HTMLOListElement>;
3450
3408
  /**
3451
3409
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
3452
3410
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement
3453
3411
  */
3454
- optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
3412
+ optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement> & Properties<HTMLOptGroupElement>;
3455
3413
  /**
3456
3414
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
3457
3415
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement
3458
3416
  */
3459
- option: OptionHTMLAttributes<HTMLOptionElement>;
3417
+ option: OptionHTMLAttributes<HTMLOptionElement> & Properties<HTMLOptionElement>;
3460
3418
  /**
3461
3419
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
3462
3420
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement
3463
3421
  */
3464
- output: OutputHTMLAttributes<HTMLOutputElement>;
3422
+ output: OutputHTMLAttributes<HTMLOutputElement> & Properties<HTMLOutputElement>;
3465
3423
  /**
3466
3424
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
3467
3425
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement
3468
3426
  */
3469
- p: HTMLAttributes<HTMLParagraphElement>;
3427
+ p: HTMLAttributes<HTMLParagraphElement> & Properties<HTMLParagraphElement>;
3470
3428
  /**
3471
3429
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
3472
3430
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement
3473
3431
  */
3474
- picture: HTMLAttributes<HTMLPictureElement>;
3432
+ picture: HTMLAttributes<HTMLPictureElement> & Properties<HTMLPictureElement>;
3475
3433
  /**
3476
3434
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
3477
3435
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement
3478
3436
  */
3479
- pre: HTMLAttributes<HTMLPreElement>;
3437
+ pre: HTMLAttributes<HTMLPreElement> & Properties<HTMLPreElement>;
3480
3438
  /**
3481
3439
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
3482
3440
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
3483
3441
  */
3484
- progress: ProgressHTMLAttributes<HTMLProgressElement>;
3442
+ progress: ProgressHTMLAttributes<HTMLProgressElement> & Properties<HTMLProgressElement>;
3485
3443
  /**
3486
3444
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
3487
3445
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3488
3446
  */
3489
- q: QuoteHTMLAttributes<HTMLQuoteElement>;
3447
+ q: QuoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3490
3448
  /**
3491
3449
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
3492
3450
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3493
3451
  */
3494
- rp: HTMLAttributes<HTMLElement>;
3452
+ rp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3495
3453
  /**
3496
3454
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
3497
3455
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3498
3456
  */
3499
- rt: HTMLAttributes<HTMLElement>;
3457
+ rt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3500
3458
  /**
3501
3459
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
3502
3460
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3503
3461
  */
3504
- ruby: HTMLAttributes<HTMLElement>;
3462
+ ruby: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3505
3463
  /**
3506
3464
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
3507
3465
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3508
3466
  */
3509
- s: HTMLAttributes<HTMLElement>;
3467
+ s: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3510
3468
  /**
3511
3469
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
3512
3470
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3513
3471
  */
3514
- samp: HTMLAttributes<HTMLElement>;
3472
+ samp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3515
3473
  /**
3516
3474
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
3517
3475
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement
3518
3476
  */
3519
- script: ScriptHTMLAttributes<HTMLScriptElement>;
3477
+ script: ScriptHTMLAttributes<HTMLScriptElement> & Properties<HTMLScriptElement>;
3520
3478
  /**
3521
3479
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
3522
3480
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3523
3481
  */
3524
- search: HTMLAttributes<HTMLElement>;
3482
+ search: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3525
3483
  /**
3526
3484
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
3527
3485
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3528
3486
  */
3529
- section: HTMLAttributes<HTMLElement>;
3487
+ section: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3530
3488
  /**
3531
3489
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
3532
3490
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement
3533
3491
  */
3534
- select: SelectHTMLAttributes<HTMLSelectElement>;
3492
+ select: SelectHTMLAttributes<HTMLSelectElement> & Properties<HTMLSelectElement>;
3535
3493
  /**
3536
3494
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
3537
3495
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement
3538
3496
  */
3539
- slot: HTMLSlotElementAttributes<HTMLSlotElement>;
3497
+ slot: HTMLSlotElementAttributes<HTMLSlotElement> & Properties<HTMLSlotElement>;
3540
3498
  /**
3541
3499
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
3542
3500
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3543
3501
  */
3544
- small: HTMLAttributes<HTMLElement>;
3502
+ small: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3545
3503
  /**
3546
3504
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
3547
3505
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
3548
3506
  */
3549
- source: SourceHTMLAttributes<HTMLSourceElement>;
3507
+ source: SourceHTMLAttributes<HTMLSourceElement> & Properties<HTMLSourceElement>;
3550
3508
  /**
3551
3509
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
3552
3510
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement
3553
3511
  */
3554
- span: HTMLAttributes<HTMLSpanElement>;
3512
+ span: HTMLAttributes<HTMLSpanElement> & Properties<HTMLSpanElement>;
3555
3513
  /**
3556
3514
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
3557
3515
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3558
3516
  */
3559
- strong: HTMLAttributes<HTMLElement>;
3517
+ strong: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3560
3518
  /**
3561
3519
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
3562
3520
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement
3563
3521
  */
3564
- style: StyleHTMLAttributes<HTMLStyleElement>;
3522
+ style: StyleHTMLAttributes<HTMLStyleElement> & Properties<HTMLStyleElement>;
3565
3523
  /**
3566
3524
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
3567
3525
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3568
3526
  */
3569
- sub: HTMLAttributes<HTMLElement>;
3527
+ sub: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3570
3528
  /**
3571
3529
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
3572
3530
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3573
3531
  */
3574
- summary: HTMLAttributes<HTMLElement>;
3532
+ summary: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3575
3533
  /**
3576
3534
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
3577
3535
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3578
3536
  */
3579
- sup: HTMLAttributes<HTMLElement>;
3537
+ sup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3580
3538
  /**
3581
3539
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
3582
3540
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement
3583
3541
  */
3584
- table: HTMLAttributes<HTMLTableElement>;
3542
+ table: HTMLAttributes<HTMLTableElement> & Properties<HTMLTableElement>;
3585
3543
  /**
3586
3544
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
3587
3545
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3588
3546
  */
3589
- tbody: HTMLAttributes<HTMLTableSectionElement>;
3547
+ tbody: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3590
3548
  /**
3591
3549
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
3592
3550
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3593
3551
  */
3594
- td: TdHTMLAttributes<HTMLTableCellElement>;
3552
+ td: TdHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3595
3553
  /**
3596
3554
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
3597
3555
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement
3598
3556
  */
3599
- template: TemplateHTMLAttributes<HTMLTemplateElement>;
3557
+ template: TemplateHTMLAttributes<HTMLTemplateElement> & Properties<HTMLTemplateElement>;
3600
3558
  /**
3601
3559
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
3602
3560
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
3603
3561
  */
3604
- textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
3562
+ textarea: TextareaHTMLAttributes<HTMLTextAreaElement> & Properties<HTMLTextAreaElement>;
3605
3563
  /**
3606
3564
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
3607
3565
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3608
3566
  */
3609
- tfoot: HTMLAttributes<HTMLTableSectionElement>;
3567
+ tfoot: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3610
3568
  /**
3611
3569
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
3612
3570
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3613
3571
  */
3614
- th: ThHTMLAttributes<HTMLTableCellElement>;
3572
+ th: ThHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3615
3573
  /**
3616
3574
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
3617
3575
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3618
3576
  */
3619
- thead: HTMLAttributes<HTMLTableSectionElement>;
3577
+ thead: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3620
3578
  /**
3621
3579
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
3622
3580
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement
3623
3581
  */
3624
- time: TimeHTMLAttributes<HTMLTimeElement>;
3582
+ time: TimeHTMLAttributes<HTMLTimeElement> & Properties<HTMLTimeElement>;
3625
3583
  /**
3626
3584
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
3627
3585
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement
3628
3586
  */
3629
- title: HTMLAttributes<HTMLTitleElement>;
3587
+ title: HTMLAttributes<HTMLTitleElement> & Properties<HTMLTitleElement>;
3630
3588
  /**
3631
3589
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
3632
3590
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement
3633
3591
  */
3634
- tr: HTMLAttributes<HTMLTableRowElement>;
3592
+ tr: HTMLAttributes<HTMLTableRowElement> & Properties<HTMLTableRowElement>;
3635
3593
  /**
3636
3594
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
3637
3595
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTrackElement
3638
3596
  */
3639
- track: TrackHTMLAttributes<HTMLTrackElement>;
3597
+ track: TrackHTMLAttributes<HTMLTrackElement> & Properties<HTMLTrackElement>;
3640
3598
  /**
3641
3599
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
3642
3600
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3643
3601
  */
3644
- u: HTMLAttributes<HTMLElement>;
3602
+ u: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3645
3603
  /**
3646
3604
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
3647
3605
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement
3648
3606
  */
3649
- ul: HTMLAttributes<HTMLUListElement>;
3607
+ ul: HTMLAttributes<HTMLUListElement> & Properties<HTMLUListElement>;
3650
3608
  /**
3651
3609
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
3652
3610
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3653
3611
  */
3654
- var: HTMLAttributes<HTMLElement>;
3612
+ var: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3655
3613
  /**
3656
3614
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
3657
3615
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement
3658
3616
  */
3659
- video: VideoHTMLAttributes<HTMLVideoElement>;
3617
+ video: VideoHTMLAttributes<HTMLVideoElement> & Properties<HTMLVideoElement>;
3660
3618
  /**
3661
3619
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
3662
3620
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3663
3621
  */
3664
- wbr: HTMLAttributes<HTMLElement>;
3622
+ wbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3665
3623
  /** @url https://www.electronjs.org/docs/latest/api/webview-tag */
3666
- webview: WebViewHTMLAttributes<HTMLElement>;
3624
+ webview: WebViewHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3667
3625
  }
3668
3626
  /** @type {HTMLElementDeprecatedTagNameMap} */
3669
3627
  interface HTMLElementDeprecatedTags {
@@ -3672,25 +3630,25 @@ export namespace JSX {
3672
3630
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
3673
3631
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3674
3632
  */
3675
- big: HTMLAttributes<HTMLElement>;
3633
+ big: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3676
3634
  /**
3677
3635
  * @deprecated
3678
3636
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3679
3637
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3680
3638
  */
3681
- keygen: KeygenHTMLAttributes<HTMLUnknownElement>;
3639
+ keygen: KeygenHTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3682
3640
  /**
3683
3641
  * @deprecated
3684
3642
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
3685
3643
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3686
3644
  */
3687
- menuitem: HTMLAttributes<HTMLUnknownElement>;
3645
+ menuitem: HTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3688
3646
  /**
3689
3647
  * @deprecated
3690
3648
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
3691
3649
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParamElement
3692
3650
  */
3693
- param: ParamHTMLAttributes<HTMLParamElement>;
3651
+ param: ParamHTMLAttributes<HTMLParamElement> & Properties<HTMLParamElement>;
3694
3652
  }
3695
3653
  /** @type {SVGElementTagNameMap} */
3696
3654
  interface SVGElementTags {
@@ -3698,297 +3656,317 @@ export namespace JSX {
3698
3656
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
3699
3657
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement
3700
3658
  */
3701
- animate: AnimateSVGAttributes<SVGAnimateElement>;
3659
+ animate: AnimateSVGAttributes<SVGAnimateElement> & Properties<SVGAnimateElement>;
3702
3660
  /**
3703
3661
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion
3704
3662
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement
3705
3663
  */
3706
- animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
3664
+ animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement> &
3665
+ Properties<SVGAnimateMotionElement>;
3707
3666
  /**
3708
3667
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform
3709
3668
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement
3710
3669
  */
3711
- animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
3670
+ animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement> &
3671
+ Properties<SVGAnimateTransformElement>;
3712
3672
  /**
3713
3673
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
3714
3674
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement
3715
3675
  */
3716
- circle: CircleSVGAttributes<SVGCircleElement>;
3676
+ circle: CircleSVGAttributes<SVGCircleElement> & Properties<SVGCircleElement>;
3717
3677
  /**
3718
3678
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath
3719
3679
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
3720
3680
  */
3721
- clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
3681
+ clipPath: ClipPathSVGAttributes<SVGClipPathElement> & Properties<SVGClipPathElement>;
3722
3682
  /**
3723
3683
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
3724
3684
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDefsElement
3725
3685
  */
3726
- defs: DefsSVGAttributes<SVGDefsElement>;
3686
+ defs: DefsSVGAttributes<SVGDefsElement> & Properties<SVGDefsElement>;
3727
3687
  /**
3728
3688
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
3729
3689
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDescElement
3730
3690
  */
3731
- desc: DescSVGAttributes<SVGDescElement>;
3691
+ desc: DescSVGAttributes<SVGDescElement> & Properties<SVGDescElement>;
3732
3692
  /**
3733
3693
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
3734
3694
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement
3735
3695
  */
3736
- ellipse: EllipseSVGAttributes<SVGEllipseElement>;
3696
+ ellipse: EllipseSVGAttributes<SVGEllipseElement> & Properties<SVGEllipseElement>;
3737
3697
  /**
3738
3698
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend
3739
3699
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
3740
3700
  */
3741
- feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
3701
+ feBlend: FeBlendSVGAttributes<SVGFEBlendElement> & Properties<SVGFEBlendElement>;
3742
3702
  /**
3743
3703
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix
3744
3704
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement
3745
3705
  */
3746
- feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
3706
+ feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement> &
3707
+ Properties<SVGFEColorMatrixElement>;
3747
3708
  /**
3748
3709
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer
3749
3710
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElemen
3750
3711
  */
3751
- feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
3712
+ feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement> &
3713
+ Properties<SVGFEComponentTransferElement>;
3752
3714
  /**
3753
3715
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite
3754
3716
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
3755
3717
  */
3756
- feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
3718
+ feComposite: FeCompositeSVGAttributes<SVGFECompositeElement> &
3719
+ Properties<SVGFECompositeElement>;
3757
3720
  /**
3758
3721
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix
3759
3722
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEConvolveMatrixElement
3760
3723
  */
3761
- feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
3724
+ feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement> &
3725
+ Properties<SVGFEConvolveMatrixElement>;
3762
3726
  /**
3763
3727
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting
3764
3728
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDiffuseLightingElement
3765
3729
  */
3766
- feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
3730
+ feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement> &
3731
+ Properties<SVGFEDiffuseLightingElement>;
3767
3732
  /**
3768
3733
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap
3769
3734
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDisplacementMapElement
3770
3735
  */
3771
- feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
3736
+ feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement> &
3737
+ Properties<SVGFEDisplacementMapElement>;
3772
3738
  /**
3773
3739
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight
3774
3740
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
3775
3741
  */
3776
- feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
3742
+ feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement> &
3743
+ Properties<SVGFEDistantLightElement>;
3777
3744
  /**
3778
3745
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow
3779
3746
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDropShadowElement
3780
3747
  */
3781
- feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement>;
3748
+ feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement> &
3749
+ Properties<SVGFEDropShadowElement>;
3782
3750
  /**
3783
3751
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood
3784
3752
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFloodElement
3785
3753
  */
3786
- feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
3754
+ feFlood: FeFloodSVGAttributes<SVGFEFloodElement> & Properties<SVGFEFloodElement>;
3787
3755
  /**
3788
3756
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA
3789
3757
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncAElement
3790
3758
  */
3791
- feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
3759
+ feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement> & Properties<SVGFEFuncAElement>;
3792
3760
  /**
3793
3761
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB
3794
3762
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncBElement
3795
3763
  */
3796
- feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
3764
+ feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement> & Properties<SVGFEFuncBElement>;
3797
3765
  /**
3798
3766
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG
3799
3767
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncGElement
3800
3768
  */
3801
- feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
3769
+ feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement> & Properties<SVGFEFuncGElement>;
3802
3770
  /**
3803
3771
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR
3804
3772
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncRElement
3805
3773
  */
3806
- feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
3774
+ feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement> & Properties<SVGFEFuncRElement>;
3807
3775
  /**
3808
3776
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur
3809
3777
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEGaussianBlurElement
3810
3778
  */
3811
- feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
3779
+ feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement> &
3780
+ Properties<SVGFEGaussianBlurElement>;
3812
3781
  /**
3813
3782
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage
3814
3783
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement
3815
3784
  */
3816
- feImage: FeImageSVGAttributes<SVGFEImageElement>;
3785
+ feImage: FeImageSVGAttributes<SVGFEImageElement> & Properties<SVGFEImageElement>;
3817
3786
  /**
3818
3787
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge
3819
3788
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement
3820
3789
  */
3821
- feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
3790
+ feMerge: FeMergeSVGAttributes<SVGFEMergeElement> & Properties<SVGFEMergeElement>;
3822
3791
  /**
3823
3792
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode
3824
3793
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
3825
3794
  */
3826
- feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
3795
+ feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement> &
3796
+ Properties<SVGFEMergeNodeElement>;
3827
3797
  /**
3828
3798
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology
3829
3799
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMorphologyElement
3830
3800
  */
3831
- feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
3801
+ feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement> &
3802
+ Properties<SVGFEMorphologyElement>;
3832
3803
  /**
3833
3804
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset
3834
3805
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEOffsetElement
3835
3806
  */
3836
- feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
3807
+ feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement> & Properties<SVGFEOffsetElement>;
3837
3808
  /**
3838
3809
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight
3839
3810
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
3840
3811
  */
3841
- fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
3812
+ fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement> &
3813
+ Properties<SVGFEPointLightElement>;
3842
3814
  /**
3843
3815
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting
3844
3816
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
3845
3817
  */
3846
- feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
3818
+ feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement> &
3819
+ Properties<SVGFESpecularLightingElement>;
3847
3820
  /**
3848
3821
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight
3849
3822
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
3850
3823
  */
3851
- feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
3824
+ feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement> &
3825
+ Properties<SVGFESpotLightElement>;
3852
3826
  /**
3853
3827
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile
3854
3828
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETileElement
3855
3829
  */
3856
- feTile: FeTileSVGAttributes<SVGFETileElement>;
3830
+ feTile: FeTileSVGAttributes<SVGFETileElement> & Properties<SVGFETileElement>;
3857
3831
  /**
3858
3832
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence
3859
3833
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
3860
3834
  */
3861
- feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
3835
+ feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement> &
3836
+ Properties<SVGFETurbulenceElement>;
3862
3837
  /**
3863
3838
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter
3864
3839
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFilterElement
3865
3840
  */
3866
- filter: FilterSVGAttributes<SVGFilterElement>;
3841
+ filter: FilterSVGAttributes<SVGFilterElement> & Properties<SVGFilterElement>;
3867
3842
  /**
3868
3843
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject
3869
3844
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGForeignObjectElement
3870
3845
  */
3871
- foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
3846
+ foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement> &
3847
+ Properties<SVGForeignObjectElement>;
3872
3848
  /**
3873
3849
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
3874
3850
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGGElement
3875
3851
  */
3876
- g: GSVGAttributes<SVGGElement>;
3852
+ g: GSVGAttributes<SVGGElement> & Properties<SVGGElement>;
3877
3853
  /**
3878
3854
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
3879
3855
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGImageElement
3880
3856
  */
3881
- image: ImageSVGAttributes<SVGImageElement>;
3857
+ image: ImageSVGAttributes<SVGImageElement> & Properties<SVGImageElement>;
3882
3858
  /**
3883
3859
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
3884
3860
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
3885
3861
  */
3886
- line: LineSVGAttributes<SVGLineElement>;
3862
+ line: LineSVGAttributes<SVGLineElement> & Properties<SVGLineElement>;
3887
3863
  /**
3888
3864
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
3889
3865
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
3890
3866
  */
3891
- linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
3867
+ linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement> &
3868
+ Properties<SVGLinearGradientElement>;
3892
3869
  /**
3893
3870
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker
3894
3871
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMarkerElement
3895
3872
  */
3896
- marker: MarkerSVGAttributes<SVGMarkerElement>;
3873
+ marker: MarkerSVGAttributes<SVGMarkerElement> & Properties<SVGMarkerElement>;
3897
3874
  /**
3898
3875
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask
3899
3876
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement
3900
3877
  */
3901
- mask: MaskSVGAttributes<SVGMaskElement>;
3878
+ mask: MaskSVGAttributes<SVGMaskElement> & Properties<SVGMaskElement>;
3902
3879
  /**
3903
3880
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata
3904
3881
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMetadataElement
3905
3882
  */
3906
- metadata: MetadataSVGAttributes<SVGMetadataElement>;
3883
+ metadata: MetadataSVGAttributes<SVGMetadataElement> & Properties<SVGMetadataElement>;
3907
3884
  /**
3908
3885
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath
3909
3886
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
3910
3887
  */
3911
- mpath: MPathSVGAttributes<SVGMPathElement>;
3888
+ mpath: MPathSVGAttributes<SVGMPathElement> & Properties<SVGMPathElement>;
3912
3889
  /**
3913
3890
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
3914
3891
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPathElement
3915
3892
  */
3916
- path: PathSVGAttributes<SVGPathElement>;
3893
+ path: PathSVGAttributes<SVGPathElement> & Properties<SVGPathElement>;
3917
3894
  /**
3918
3895
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern
3919
3896
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPatternElement
3920
3897
  */
3921
- pattern: PatternSVGAttributes<SVGPatternElement>;
3898
+ pattern: PatternSVGAttributes<SVGPatternElement> & Properties<SVGPatternElement>;
3922
3899
  /**
3923
3900
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
3924
3901
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolygonElement
3925
3902
  */
3926
- polygon: PolygonSVGAttributes<SVGPolygonElement>;
3903
+ polygon: PolygonSVGAttributes<SVGPolygonElement> & Properties<SVGPolygonElement>;
3927
3904
  /**
3928
3905
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
3929
3906
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolylineElement
3930
3907
  */
3931
- polyline: PolylineSVGAttributes<SVGPolylineElement>;
3908
+ polyline: PolylineSVGAttributes<SVGPolylineElement> & Properties<SVGPolylineElement>;
3932
3909
  /**
3933
3910
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
3934
3911
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
3935
3912
  */
3936
- radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
3913
+ radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement> &
3914
+ Properties<SVGRadialGradientElement>;
3937
3915
  /**
3938
3916
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
3939
3917
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRectElement
3940
3918
  */
3941
- rect: RectSVGAttributes<SVGRectElement>;
3919
+ rect: RectSVGAttributes<SVGRectElement> & Properties<SVGRectElement>;
3942
3920
  /**
3943
3921
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set
3944
3922
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement
3945
3923
  */
3946
- set: SetSVGAttributes<SVGSetElement>;
3924
+ set: SetSVGAttributes<SVGSetElement> & Properties<SVGSetElement>;
3947
3925
  /**
3948
3926
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop
3949
3927
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGStopElement
3950
3928
  */
3951
- stop: StopSVGAttributes<SVGStopElement>;
3929
+ stop: StopSVGAttributes<SVGStopElement> & Properties<SVGStopElement>;
3952
3930
  /**
3953
3931
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
3954
3932
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSVGElement
3955
3933
  */
3956
- svg: SvgSVGAttributes<SVGSVGElement>;
3934
+ svg: SvgSVGAttributes<SVGSVGElement> & Properties<SVGSVGElement>;
3957
3935
  /**
3958
3936
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch
3959
3937
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSwitchElement
3960
3938
  */
3961
- switch: SwitchSVGAttributes<SVGSwitchElement>;
3939
+ switch: SwitchSVGAttributes<SVGSwitchElement> & Properties<SVGSwitchElement>;
3962
3940
  /**
3963
3941
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol
3964
3942
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement
3965
3943
  */
3966
- symbol: SymbolSVGAttributes<SVGSymbolElement>;
3944
+ symbol: SymbolSVGAttributes<SVGSymbolElement> & Properties<SVGSymbolElement>;
3967
3945
  /**
3968
3946
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
3969
3947
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextElement
3970
3948
  */
3971
- text: TextSVGAttributes<SVGTextElement>;
3949
+ text: TextSVGAttributes<SVGTextElement> & Properties<SVGTextElement>;
3972
3950
  /**
3973
3951
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath
3974
3952
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPathElement
3975
3953
  */
3976
- textPath: TextPathSVGAttributes<SVGTextPathElement>;
3954
+ textPath: TextPathSVGAttributes<SVGTextPathElement> & Properties<SVGTextPathElement>;
3977
3955
  /**
3978
3956
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan
3979
3957
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTSpanElement
3980
3958
  */
3981
- tspan: TSpanSVGAttributes<SVGTSpanElement>;
3959
+ tspan: TSpanSVGAttributes<SVGTSpanElement> & Properties<SVGTSpanElement>;
3982
3960
  /**
3983
3961
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
3984
3962
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGUseElement
3985
3963
  */
3986
- use: UseSVGAttributes<SVGUseElement>;
3964
+ use: UseSVGAttributes<SVGUseElement> & Properties<SVGUseElement>;
3987
3965
  /**
3988
3966
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view
3989
3967
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGViewElement
3990
3968
  */
3991
- view: ViewSVGAttributes<SVGViewElement>;
3969
+ view: ViewSVGAttributes<SVGViewElement> & Properties<SVGViewElement>;
3992
3970
  }
3993
3971
 
3994
3972
  interface MathMLElementTags {
@@ -3996,7 +3974,7 @@ export namespace JSX {
3996
3974
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation
3997
3975
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3998
3976
  */
3999
- annotation: MathMLAnnotationElementAttributes<MathMLElement>;
3977
+ annotation: MathMLAnnotationElementAttributes<MathMLElement> & Properties<MathMLElement>;
4000
3978
  /**
4001
3979
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation-xml
4002
3980
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
@@ -4006,161 +3984,158 @@ export namespace JSX {
4006
3984
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
4007
3985
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4008
3986
  */
4009
- math: MathMLMathElementAttributes<MathMLElement>;
3987
+ math: MathMLMathElementAttributes<MathMLElement> & Properties<MathMLElement>;
4010
3988
  /**
4011
3989
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror
4012
3990
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4013
3991
  */
4014
- merror: MathMLMerrorElementAttributes<MathMLElement>;
3992
+ merror: MathMLMerrorElementAttributes<MathMLElement> & Properties<MathMLElement>;
4015
3993
  /**
4016
3994
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac
4017
3995
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4018
3996
  */
4019
- mfrac: MathMLMfracElementAttributes<MathMLElement>;
3997
+ mfrac: MathMLMfracElementAttributes<MathMLElement> & Properties<MathMLElement>;
4020
3998
  /**
4021
3999
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi
4022
4000
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4023
4001
  */
4024
- mi: MathMLMiElementAttributes<MathMLElement>;
4002
+ mi: MathMLMiElementAttributes<MathMLElement> & Properties<MathMLElement>;
4025
4003
  /**
4026
4004
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts
4027
4005
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4028
4006
  */
4029
- mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement>;
4007
+ mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4030
4008
  /**
4031
4009
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn
4032
4010
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4033
4011
  */
4034
- mn: MathMLMnElementAttributes<MathMLElement>;
4012
+ mn: MathMLMnElementAttributes<MathMLElement> & Properties<MathMLElement>;
4035
4013
  /**
4036
4014
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo
4037
4015
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4038
4016
  */
4039
- mo: MathMLMoElementAttributes<MathMLElement>;
4017
+ mo: MathMLMoElementAttributes<MathMLElement> & Properties<MathMLElement>;
4040
4018
  /**
4041
4019
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover
4042
4020
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4043
4021
  */
4044
- mover: MathMLMoverElementAttributes<MathMLElement>;
4022
+ mover: MathMLMoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4045
4023
  /**
4046
4024
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded
4047
4025
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4048
4026
  */
4049
- mpadded: MathMLMpaddedElementAttributes<MathMLElement>;
4027
+ mpadded: MathMLMpaddedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4050
4028
  /**
4051
4029
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom
4052
4030
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4053
4031
  */
4054
- mphantom: MathMLMphantomElementAttributes<MathMLElement>;
4032
+ mphantom: MathMLMphantomElementAttributes<MathMLElement> & Properties<MathMLElement>;
4055
4033
  /**
4056
4034
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mprescripts
4057
4035
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4058
4036
  */
4059
- mprescripts: MathMLMprescriptsElementAttributes<MathMLElement>;
4037
+ mprescripts: MathMLMprescriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4060
4038
  /**
4061
4039
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot
4062
4040
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4063
4041
  */
4064
- mroot: MathMLMrootElementAttributes<MathMLElement>;
4042
+ mroot: MathMLMrootElementAttributes<MathMLElement> & Properties<MathMLElement>;
4065
4043
  /**
4066
4044
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow
4067
4045
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4068
4046
  */
4069
- mrow: MathMLMrowElementAttributes<MathMLElement>;
4047
+ mrow: MathMLMrowElementAttributes<MathMLElement> & Properties<MathMLElement>;
4070
4048
  /**
4071
4049
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms
4072
4050
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4073
4051
  */
4074
- ms: MathMLMsElementAttributes<MathMLElement>;
4052
+ ms: MathMLMsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4075
4053
  /**
4076
4054
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace
4077
4055
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4078
4056
  */
4079
- mspace: MathMLMspaceElementAttributes<MathMLElement>;
4057
+ mspace: MathMLMspaceElementAttributes<MathMLElement> & Properties<MathMLElement>;
4080
4058
  /**
4081
4059
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt
4082
4060
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4083
4061
  */
4084
- msqrt: MathMLMsqrtElementAttributes<MathMLElement>;
4062
+ msqrt: MathMLMsqrtElementAttributes<MathMLElement> & Properties<MathMLElement>;
4085
4063
  /**
4086
4064
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
4087
4065
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4088
4066
  */
4089
- mstyle: MathMLMstyleElementAttributes<MathMLElement>;
4067
+ mstyle: MathMLMstyleElementAttributes<MathMLElement> & Properties<MathMLElement>;
4090
4068
  /**
4091
4069
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub
4092
4070
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4093
4071
  */
4094
- msub: MathMLMsubElementAttributes<MathMLElement>;
4072
+ msub: MathMLMsubElementAttributes<MathMLElement> & Properties<MathMLElement>;
4095
4073
  /**
4096
4074
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup
4097
4075
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4098
4076
  */
4099
- msubsup: MathMLMsubsupElementAttributes<MathMLElement>;
4077
+ msubsup: MathMLMsubsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4100
4078
  /**
4101
4079
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup
4102
4080
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4103
4081
  */
4104
- msup: MathMLMsupElementAttributes<MathMLElement>;
4082
+ msup: MathMLMsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4105
4083
  /**
4106
4084
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable
4107
4085
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4108
4086
  */
4109
- mtable: MathMLMtableElementAttributes<MathMLElement>;
4087
+ mtable: MathMLMtableElementAttributes<MathMLElement> & Properties<MathMLElement>;
4110
4088
  /**
4111
4089
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd
4112
4090
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4113
4091
  */
4114
- mtd: MathMLMtdElementAttributes<MathMLElement>;
4092
+ mtd: MathMLMtdElementAttributes<MathMLElement> & Properties<MathMLElement>;
4115
4093
  /**
4116
4094
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext
4117
4095
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4118
4096
  */
4119
- mtext: MathMLMtextElementAttributes<MathMLElement>;
4097
+ mtext: MathMLMtextElementAttributes<MathMLElement> & Properties<MathMLElement>;
4120
4098
  /**
4121
4099
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr
4122
4100
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4123
4101
  */
4124
- mtr: MathMLMtrElementAttributes<MathMLElement>;
4102
+ mtr: MathMLMtrElementAttributes<MathMLElement> & Properties<MathMLElement>;
4125
4103
  /**
4126
4104
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder
4127
4105
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4128
4106
  */
4129
- munder: MathMLMunderElementAttributes<MathMLElement>;
4107
+ munder: MathMLMunderElementAttributes<MathMLElement> & Properties<MathMLElement>;
4130
4108
  /**
4131
4109
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover
4132
4110
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4133
4111
  */
4134
- munderover: MathMLMunderoverElementAttributes<MathMLElement>;
4112
+ munderover: MathMLMunderoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4135
4113
  /**
4136
4114
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics
4137
4115
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4138
4116
  */
4139
- semantics: MathMLSemanticsElementAttributes<MathMLElement>;
4117
+ semantics: MathMLSemanticsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4140
4118
  /**
4141
4119
  * @non-standard
4142
4120
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose
4143
4121
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4144
4122
  */
4145
- menclose: MathMLMencloseElementAttributes<MathMLElement>;
4123
+ menclose: MathMLMencloseElementAttributes<MathMLElement> & Properties<MathMLElement>;
4146
4124
  /**
4147
4125
  * @deprecated
4148
4126
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/maction
4149
4127
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4150
4128
  */
4151
- maction: MathMLMactionElementAttributes<MathMLElement>;
4129
+ maction: MathMLMactionElementAttributes<MathMLElement> & Properties<MathMLElement>;
4152
4130
  /**
4153
4131
  * @deprecated
4154
4132
  * @non-standard
4155
4133
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced
4156
4134
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4157
4135
  */
4158
- mfenced: MathMLMfencedElementAttributes<MathMLElement>;
4136
+ mfenced: MathMLMfencedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4159
4137
  }
4160
4138
 
4161
4139
  interface IntrinsicElements
4162
- extends HTMLElementTags,
4163
- HTMLElementDeprecatedTags,
4164
- SVGElementTags,
4165
- MathMLElementTags {}
4140
+ extends HTMLElementTags, HTMLElementDeprecatedTags, SVGElementTags, MathMLElementTags {}
4166
4141
  }