@solidjs/h 2.0.0-beta.0 → 2.0.0-beta.10

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`.
@@ -109,6 +111,19 @@ import * as csstype from "csstype";
109
111
 
110
112
  type DOMElement = Element;
111
113
 
114
+ /**
115
+ * Fallback declarations for event types that are not yet defined in older TypeScript
116
+ * `lib.dom.d.ts` versions. When the user's TS lib defines these, declaration merging
117
+ * yields the full specialized type; otherwise these serve as a bare `Event` fallback.
118
+ */
119
+ declare global {
120
+ interface CommandEvent extends Event {}
121
+ interface PageRevealEvent extends Event {}
122
+ interface PageSwapEvent extends Event {}
123
+ interface SnapEvent extends Event {}
124
+ interface TimeEvent extends Event {}
125
+ }
126
+
112
127
  export namespace JSX {
113
128
  // START - difference between `jsx.d.ts` and `jsx-h.d.ts`
114
129
  type FunctionMaybe<T = unknown> = { (): T } | T;
@@ -116,15 +131,7 @@ export namespace JSX {
116
131
  (): Element;
117
132
  }
118
133
 
119
- type Element =
120
- | Node
121
- | ArrayElement
122
- | FunctionElement
123
- | (string & {})
124
- | number
125
- | boolean
126
- | null
127
- | undefined;
134
+ type Element = SolidElement | Node | FunctionElement | ArrayElement;
128
135
  // END - difference between `jsx.d.ts` and `jsx-h.d.ts`
129
136
 
130
137
  interface ArrayElement extends Array<Element> {}
@@ -165,8 +172,7 @@ export namespace JSX {
165
172
  > = EHandler | BoundEventHandler<T, E, EHandler>;
166
173
 
167
174
  interface EventHandlerWithOptions<T, E extends Event, EHandler = EventHandler<T, E>>
168
- extends AddEventListenerOptions,
169
- EventListenerOptions {
175
+ extends AddEventListenerOptions, EventListenerOptions {
170
176
  handleEvent: EHandler;
171
177
  }
172
178
 
@@ -235,40 +241,19 @@ export namespace JSX {
235
241
  [SERIALIZABLE]: never;
236
242
  }
237
243
 
244
+ type RefCallback<T> = (el: T) => void;
245
+ type Ref<T> = T | RefCallback<T> | (RefCallback<T> | Ref<T>)[];
246
+
238
247
  interface IntrinsicAttributes {
239
- ref?: unknown | ((e: unknown) => void) | undefined;
248
+ ref?: Ref<unknown> | undefined;
240
249
  }
241
250
  interface CustomAttributes<T> {
242
- ref?: T | ((el: T) => void) | undefined;
251
+ ref?: Ref<T> | undefined;
243
252
  children?: FunctionMaybe<Element | undefined>;
244
253
  $ServerOnly?: boolean | undefined;
245
254
  }
246
- type Accessor<T> = () => T;
247
- interface Directives {}
248
- interface DirectiveFunctions {
249
- [x: string]: (el: DOMElement, accessor: Accessor<any>) => void;
250
- }
251
255
  interface ExplicitProperties {}
252
256
  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
257
  type PropAttributes = {
273
258
  [Key in keyof ExplicitProperties as `prop:${Key}`]?: ExplicitProperties[Key];
274
259
  };
@@ -276,6 +261,16 @@ export namespace JSX {
276
261
  [Key in keyof CustomEvents as `on:${Key}`]?: EventHandlerWithOptionsUnion<T, CustomEvents[Key]>;
277
262
  };
278
263
 
264
+ /**
265
+ * Writable, element-specific DOM properties exposed as `prop:*` attributes, auto-derived
266
+ * from the element interface `T`. See `./jsx-properties.d.ts` for the filtering rules.
267
+ * Existing element interfaces can locally disable an auto-derived key with
268
+ * `"prop:foo"?: never;` to redirect users to a plain attribute form.
269
+ */
270
+ type Properties<T> = {
271
+ [K in keyof T as PropKey<T, K>]?: FunctionMaybe<WidenPropValue<T[K]>>;
272
+ };
273
+
279
274
  // CSS
280
275
 
281
276
  interface CSSProperties extends csstype.PropertiesHyphen {
@@ -302,12 +297,16 @@ export namespace JSX {
302
297
 
303
298
  type BooleanAttribute = true | false | "";
304
299
 
300
+ type BooleanProperty = true | false;
301
+
305
302
  type EnumeratedPseudoBoolean = "false" | "true";
306
303
 
307
304
  type EnumeratedAcceptsEmpty = "" | true;
308
305
 
309
306
  type RemoveAttribute = undefined | false;
310
307
 
308
+ type RemoveProperty = undefined;
309
+
311
310
  // ARIA
312
311
 
313
312
  // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
@@ -701,6 +700,9 @@ export namespace JSX {
701
700
  onAfterPrint?: EventHandlerUnion<T, Event> | undefined;
702
701
  onBeforePrint?: EventHandlerUnion<T, Event> | undefined;
703
702
  onBeforeUnload?: EventHandlerUnion<T, BeforeUnloadEvent> | undefined;
703
+ onDeviceMotion?: EventHandlerUnion<T, DeviceMotionEvent> | undefined;
704
+ onDeviceOrientation?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
705
+ onDeviceOrientationAbsolute?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
704
706
  onGamepadConnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
705
707
  onGamepadDisconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
706
708
  onHashchange?: EventHandlerUnion<T, HashChangeEvent> | undefined;
@@ -709,12 +711,12 @@ export namespace JSX {
709
711
  onMessageError?: EventHandlerUnion<T, MessageEvent> | undefined;
710
712
  onOffline?: EventHandlerUnion<T, Event> | undefined;
711
713
  onOnline?: EventHandlerUnion<T, Event> | undefined;
714
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
715
+ onOrientationChange?: EventHandlerUnion<T, Event> | undefined;
712
716
  onPageHide?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
713
- // TODO `PageRevealEvent` is currently undefined on TS
714
- onPageReveal?: EventHandlerUnion<T, Event> | undefined;
717
+ onPageReveal?: EventHandlerUnion<T, PageRevealEvent> | undefined;
715
718
  onPageShow?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
716
- // TODO `PageSwapEvent` is currently undefined on TS
717
- onPageSwap?: EventHandlerUnion<T, Event> | undefined;
719
+ onPageSwap?: EventHandlerUnion<T, PageSwapEvent> | undefined;
718
720
  onPopstate?: EventHandlerUnion<T, PopStateEvent> | undefined;
719
721
  onRejectionHandled?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
720
722
  onStorage?: EventHandlerUnion<T, StorageEvent> | undefined;
@@ -724,6 +726,11 @@ export namespace JSX {
724
726
  "on:afterprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
725
727
  "on:beforeprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
726
728
  "on:beforeunload"?: EventHandlerWithOptionsUnion<T, BeforeUnloadEvent> | undefined;
729
+ "on:devicemotion"?: EventHandlerWithOptionsUnion<T, DeviceMotionEvent> | undefined;
730
+ "on:deviceorientation"?: EventHandlerWithOptionsUnion<T, DeviceOrientationEvent> | undefined;
731
+ "on:deviceorientationabsolute"?:
732
+ | EventHandlerWithOptionsUnion<T, DeviceOrientationEvent>
733
+ | undefined;
727
734
  "on:gamepadconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
728
735
  "on:gamepaddisconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
729
736
  "on:hashchange"?: EventHandlerWithOptionsUnion<T, HashChangeEvent> | undefined;
@@ -732,12 +739,12 @@ export namespace JSX {
732
739
  "on:messageerror"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
733
740
  "on:offline"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
734
741
  "on:online"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
742
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
743
+ "on:orientationchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
735
744
  "on:pagehide"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
736
- // TODO `PageRevealEvent` is currently undefined in TS
737
- "on:pagereveal"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
745
+ "on:pagereveal"?: EventHandlerWithOptionsUnion<T, PageRevealEvent> | undefined;
738
746
  "on:pageshow"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
739
- // TODO `PageSwapEvent` is currently undefined in TS
740
- "on:pageswap"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
747
+ "on:pageswap"?: EventHandlerWithOptionsUnion<T, PageSwapEvent> | undefined;
741
748
  "on:popstate"?: EventHandlerWithOptionsUnion<T, PopStateEvent> | undefined;
742
749
  "on:rejectionhandled"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
743
750
  "on:storage"?: EventHandlerWithOptionsUnion<T, StorageEvent> | undefined;
@@ -774,8 +781,7 @@ export namespace JSX {
774
781
  onChange?: ChangeEventHandlerUnion<T, Event> | undefined;
775
782
  onClick?: EventHandlerUnion<T, MouseEvent> | undefined;
776
783
  onClose?: EventHandlerUnion<T, Event> | undefined;
777
- // TODO `CommandEvent` is currently undefined in TS
778
- onCommand?: EventHandlerUnion<T, Event> | undefined;
784
+ onCommand?: EventHandlerUnion<T, CommandEvent> | undefined;
779
785
  onCompositionEnd?: EventHandlerUnion<T, CompositionEvent> | undefined;
780
786
  onCompositionStart?: EventHandlerUnion<T, CompositionEvent> | undefined;
781
787
  onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
@@ -844,10 +850,8 @@ export namespace JSX {
844
850
  onResize?: EventHandlerUnion<T, UIEvent> | undefined;
845
851
  onScroll?: EventHandlerUnion<T, Event> | undefined;
846
852
  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;
853
+ onScrollSnapChange?: EventHandlerUnion<T, SnapEvent> | undefined;
854
+ onScrollSnapChanging?: EventHandlerUnion<T, SnapEvent> | undefined;
851
855
  onSecurityPolicyViolation?: EventHandlerUnion<T, SecurityPolicyViolationEvent> | undefined;
852
856
  onSeeked?: EventHandlerUnion<T, Event> | undefined;
853
857
  onSeeking?: EventHandlerUnion<T, Event> | undefined;
@@ -896,8 +900,7 @@ export namespace JSX {
896
900
  "on:change"?: EventHandlerWithOptionsUnion<T, Event, ChangeEventHandler<T, Event>> | undefined;
897
901
  "on:click"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
898
902
  "on:close"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
899
- // TODO `CommandEvent` is currently undefined in TS
900
- "on:command"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
903
+ "on:command"?: EventHandlerWithOptionsUnion<T, CommandEvent> | undefined;
901
904
  "on:compositionend"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
902
905
  "on:compositionstart"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
903
906
  "on:compositionupdate"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
@@ -974,10 +977,8 @@ export namespace JSX {
974
977
  "on:resize"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
975
978
  "on:scroll"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
976
979
  "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;
980
+ "on:scrollsnapchange"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
981
+ "on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
981
982
  "on:securitypolicyviolation"?:
982
983
  | EventHandlerWithOptionsUnion<T, SecurityPolicyViolationEvent>
983
984
  | undefined;
@@ -1005,23 +1006,36 @@ export namespace JSX {
1005
1006
  "on:wheel"?: EventHandlerWithOptionsUnion<T, WheelEvent> | undefined;
1006
1007
  }
1007
1008
 
1008
- type EventType =
1009
+ // EventName = "click" | "mousedown" ...
1010
+
1011
+ type EventName =
1009
1012
  | (keyof EventHandlersWindow<any> extends infer K
1010
1013
  ? K extends `on:${infer T}`
1011
1014
  ? T
1012
1015
  : K extends `on${infer T}`
1013
- ? Lowercase<T>
1014
- : never
1016
+ ? Lowercase<T>
1017
+ : never
1015
1018
  : never)
1016
1019
  | (keyof EventHandlersElement<any> extends infer K
1017
1020
  ? K extends `on:${infer T}`
1018
1021
  ? T
1019
1022
  : K extends `on${infer T}`
1020
- ? Lowercase<T>
1021
- : never
1023
+ ? Lowercase<T>
1024
+ : never
1022
1025
  : never)
1023
1026
  | (string & {});
1024
1027
 
1028
+ type ExtractEventType<T> = {
1029
+ [K in keyof T as K extends `on:${infer Name}`
1030
+ ? Name
1031
+ : never]: T[K] extends EventHandlerWithOptionsUnion<Element, infer E> ? E : never;
1032
+ };
1033
+
1034
+ // EventType["click"] = MouseEvent
1035
+
1036
+ type EventType = ExtractEventType<EventHandlersElement<Element>> &
1037
+ ExtractEventType<EventHandlersWindow<Element>>;
1038
+
1025
1039
  // GLOBAL ATTRIBUTES
1026
1040
 
1027
1041
  /**
@@ -1031,9 +1045,8 @@ export namespace JSX {
1031
1045
  * 2. Includes `keys` defined by `Element` and `Node` interfaces.
1032
1046
  */
1033
1047
  interface ElementAttributes<T>
1034
- extends CustomAttributes<T>,
1035
- DirectiveAttributes,
1036
- DirectiveFunctionAttributes<T>,
1048
+ extends
1049
+ CustomAttributes<T>,
1037
1050
  PropAttributes,
1038
1051
  OnAttributes<T>,
1039
1052
  EventHandlersElement<T>,
@@ -1046,6 +1059,19 @@ export namespace JSX {
1046
1059
 
1047
1060
  // attributes
1048
1061
  autofocus?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1062
+ /**
1063
+ * Class names to apply. Accepts a string, an object whose keys are class
1064
+ * names and values are booleans (`{ active: isActive() }` — truthy keys
1065
+ * are added), or an array merging strings/objects/nested arrays
1066
+ * (`["card", props.class, { active: isActive() }]`).
1067
+ *
1068
+ * For conditional classes, prefer the array+object form. Don't build
1069
+ * class strings manually with concatenation, template literals, or
1070
+ * `.filter(Boolean).join(" ")` — that's the React/`classnames` reflex
1071
+ * and the array+object form replaces it. The array+object form composes
1072
+ * with reactive values directly; manually-built strings re-run the whole
1073
+ * concatenation on every change instead of toggling the affected classes.
1074
+ */
1049
1075
  class?: FunctionMaybe<string | ClassList | RemoveAttribute>;
1050
1076
  elementtiming?: FunctionMaybe<string | RemoveAttribute>;
1051
1077
  id?: FunctionMaybe<string | RemoveAttribute>;
@@ -1107,7 +1133,7 @@ export namespace JSX {
1107
1133
  >;
1108
1134
  is?: FunctionMaybe<string | RemoveAttribute>;
1109
1135
  lang?: FunctionMaybe<string | RemoveAttribute>;
1110
- popover?: FunctionMaybe<EnumeratedAcceptsEmpty | "manual" | "auto" | RemoveAttribute>;
1136
+ popover?: FunctionMaybe<EnumeratedAcceptsEmpty | "manual" | "auto" | "hint" | RemoveAttribute>;
1111
1137
  spellcheck?: FunctionMaybe<EnumeratedPseudoBoolean | EnumeratedAcceptsEmpty | RemoveAttribute>;
1112
1138
  title?: FunctionMaybe<string | RemoveAttribute>;
1113
1139
  translate?: FunctionMaybe<"yes" | "no" | RemoveAttribute>;
@@ -1251,7 +1277,7 @@ export namespace JSX {
1251
1277
  | "worker";
1252
1278
 
1253
1279
  interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
1254
- download?: FunctionMaybe<string | RemoveAttribute>;
1280
+ download?: FunctionMaybe<string | EnumeratedAcceptsEmpty | RemoveAttribute>;
1255
1281
  href?: FunctionMaybe<string | RemoveAttribute>;
1256
1282
  hreflang?: FunctionMaybe<string | RemoveAttribute>;
1257
1283
  ping?: FunctionMaybe<string | RemoveAttribute>;
@@ -1280,7 +1306,7 @@ export namespace JSX {
1280
1306
  interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
1281
1307
  alt?: FunctionMaybe<string | RemoveAttribute>;
1282
1308
  coords?: FunctionMaybe<string | RemoveAttribute>;
1283
- download?: FunctionMaybe<string | RemoveAttribute>;
1309
+ download?: FunctionMaybe<string | EnumeratedAcceptsEmpty | RemoveAttribute>;
1284
1310
  href?: FunctionMaybe<string | RemoveAttribute>;
1285
1311
  ping?: FunctionMaybe<string | RemoveAttribute>;
1286
1312
  referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | RemoveAttribute>;
@@ -1401,6 +1427,7 @@ export namespace JSX {
1401
1427
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#usage_notes
1402
1428
  */
1403
1429
  tabindex?: never;
1430
+ "prop:tabIndex"?: never;
1404
1431
 
1405
1432
  /** @experimental */
1406
1433
  closedby?: FunctionMaybe<"any" | "closerequest" | "none" | RemoveAttribute>;
@@ -1532,7 +1559,7 @@ export namespace JSX {
1532
1559
  alt?: FunctionMaybe<string | RemoveAttribute>;
1533
1560
  autocomplete?: FunctionMaybe<HTMLAutocomplete | RemoveAttribute>;
1534
1561
  capture?: FunctionMaybe<"user" | "environment" | RemoveAttribute>;
1535
- checked?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1562
+
1536
1563
  colorspace?: FunctionMaybe<string | RemoveAttribute>;
1537
1564
  dirname?: FunctionMaybe<string | RemoveAttribute>;
1538
1565
  disabled?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
@@ -1587,8 +1614,8 @@ export namespace JSX {
1587
1614
  | (string & {})
1588
1615
  | RemoveAttribute
1589
1616
  >;
1590
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1591
1617
  width?: FunctionMaybe<number | string | RemoveAttribute>;
1618
+ webkitdirectory?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1592
1619
 
1593
1620
  /** @non-standard */
1594
1621
  incremental?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
@@ -1597,6 +1624,24 @@ export namespace JSX {
1597
1624
  align?: FunctionMaybe<string | RemoveAttribute>;
1598
1625
  /** @deprecated */
1599
1626
  usemap?: FunctionMaybe<string | RemoveAttribute>;
1627
+
1628
+ // special cases locked to properties
1629
+
1630
+ checked?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1631
+ /** @error use `<input checked={..}/>` instead */
1632
+ "prop:checked"?: never;
1633
+
1634
+ defaultChecked?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1635
+ /** @error use `<input defaultChecked={..}/>` instead */
1636
+ "prop:defaultChecked"?: never;
1637
+
1638
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1639
+ /** @error use `<input value={..}/>` instead */
1640
+ "prop:value"?: never;
1641
+
1642
+ defaultValue?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1643
+ /** @error use `<input defaultValue={..}/>` instead */
1644
+ "prop:defaultValue"?: never;
1600
1645
  }
1601
1646
  interface ModHTMLAttributes<T> extends HTMLAttributes<T> {
1602
1647
  cite?: FunctionMaybe<string | RemoveAttribute>;
@@ -1667,7 +1712,7 @@ export namespace JSX {
1667
1712
  crossorigin?: FunctionMaybe<HTMLCrossorigin | RemoveAttribute>;
1668
1713
  disableremoteplayback?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1669
1714
  loop?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1670
- muted?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1715
+
1671
1716
  preload?: FunctionMaybe<
1672
1717
  "none" | "metadata" | "auto" | EnumeratedAcceptsEmpty | RemoveAttribute
1673
1718
  >;
@@ -1681,6 +1726,16 @@ export namespace JSX {
1681
1726
 
1682
1727
  /** @deprecated */
1683
1728
  mediagroup?: FunctionMaybe<string | RemoveAttribute>;
1729
+
1730
+ // special cases locked to properties
1731
+
1732
+ muted?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1733
+ /** @error use `<video/audio muted={..}/>` instead */
1734
+ "prop:muted"?: never;
1735
+
1736
+ defaultMuted?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1737
+ /** @error use `<video/audio defaultMuted={..}/>` instead */
1738
+ "prop:defaultMuted"?: never;
1684
1739
  }
1685
1740
  interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
1686
1741
  /** @deprecated */
@@ -1773,8 +1828,27 @@ export namespace JSX {
1773
1828
  interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
1774
1829
  disabled?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1775
1830
  label?: FunctionMaybe<string | RemoveAttribute>;
1776
- selected?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1777
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1831
+
1832
+ // special cases locked to properties
1833
+
1834
+ selected?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1835
+ /** @error use `<option selected={..}/>` instead */
1836
+ "prop:selected"?: never;
1837
+
1838
+ defaultSelected?: FunctionMaybe<BooleanProperty | RemoveProperty>;
1839
+ /** @error use `<option defaultSelected={..}/>` instead */
1840
+ "prop:defaultSelected"?: never;
1841
+
1842
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1843
+ /** @error use `<option value={..}/>` instead */
1844
+ "prop:value"?: never;
1845
+
1846
+ // for sanity
1847
+
1848
+ /** @error This doesn't exists for `<option/>` */
1849
+ "prop:defaultValue"?: never;
1850
+ /** @error This doesn't exists for `<option/>` */
1851
+ defaultValue?: never;
1778
1852
  }
1779
1853
  interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
1780
1854
  for?: FunctionMaybe<string | RemoveAttribute>;
@@ -1828,7 +1902,24 @@ export namespace JSX {
1828
1902
  name?: FunctionMaybe<string | RemoveAttribute>;
1829
1903
  required?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1830
1904
  size?: FunctionMaybe<number | string | RemoveAttribute>;
1831
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1905
+
1906
+ // special cases locked to properties
1907
+
1908
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
1909
+ /** @error use `<select value={..}/>` instead */
1910
+ "prop:value"?: never;
1911
+
1912
+ // for sanity
1913
+
1914
+ /** @error use `<option defaultSelected={..}/>` instead */
1915
+ defaultSelected?: never;
1916
+ /** @error use `<option defaultSelected={..}/>` instead */
1917
+ "prop:defaultSelected"?: never;
1918
+
1919
+ /** @error use `<option defaultSelected={..}/>` instead */
1920
+ selected?: never;
1921
+ /** @error use `<option defaultSelected={..}/>` instead */
1922
+ "prop:selected"?: never;
1832
1923
  }
1833
1924
  interface HTMLSlotElementAttributes<T> extends HTMLAttributes<T> {
1834
1925
  name?: FunctionMaybe<string | RemoveAttribute>;
@@ -1902,8 +1993,17 @@ export namespace JSX {
1902
1993
  readonly?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1903
1994
  required?: FunctionMaybe<BooleanAttribute | RemoveAttribute>;
1904
1995
  rows?: FunctionMaybe<number | string | RemoveAttribute>;
1905
- value?: FunctionMaybe<string | string[] | number | RemoveAttribute>;
1906
1996
  wrap?: FunctionMaybe<"hard" | "soft" | "off" | RemoveAttribute>;
1997
+
1998
+ // special cases locked to properties
1999
+
2000
+ value?: FunctionMaybe<string | string[] | number | RemoveProperty>;
2001
+ /** @error use `<textarea value={..}/>` instead */
2002
+ "prop:value"?: never;
2003
+
2004
+ defaultValue?: FunctionMaybe<string | string[] | number | RemoveProperty>;
2005
+ /** @error use `<textarea defaultValue={..}/>` instead */
2006
+ "prop:defaultValue"?: never;
1907
2007
  }
1908
2008
  interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
1909
2009
  abbr?: FunctionMaybe<string | RemoveAttribute>;
@@ -2061,6 +2161,19 @@ export namespace JSX {
2061
2161
  type SVGUnits = "userSpaceOnUse" | "objectBoundingBox";
2062
2162
 
2063
2163
  interface StylableSVGAttributes {
2164
+ /**
2165
+ * Class names to apply. Accepts a string, an object whose keys are class
2166
+ * names and values are booleans (`{ active: isActive() }` — truthy keys
2167
+ * are added), or an array merging strings/objects/nested arrays
2168
+ * (`["card", props.class, { active: isActive() }]`).
2169
+ *
2170
+ * For conditional classes, prefer the array+object form. Don't build
2171
+ * class strings manually with concatenation, template literals, or
2172
+ * `.filter(Boolean).join(" ")` — that's the React/`classnames` reflex
2173
+ * and the array+object form replaces it. The array+object form composes
2174
+ * with reactive values directly; manually-built strings re-run the whole
2175
+ * concatenation on every change instead of toggling the affected classes.
2176
+ */
2064
2177
  class?: FunctionMaybe<string | ClassList | RemoveAttribute>;
2065
2178
  style?: FunctionMaybe<CSSProperties | string | RemoveAttribute>;
2066
2179
  }
@@ -2233,23 +2346,19 @@ export namespace JSX {
2233
2346
  visibility?: FunctionMaybe<"visible" | "hidden" | "collapse" | "inherit" | RemoveAttribute>;
2234
2347
  }
2235
2348
  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;
2349
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, ConditionalProcessingSVGAttributes {
2350
+ onBegin?: EventHandlerUnion<T, TimeEvent> | undefined;
2351
+ "on:begin"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2242
2352
 
2243
- // TODO TimeEvent is currently undefined on TS
2244
- onEnd?: EventHandlerUnion<T, Event> | undefined;
2245
- "on:end"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2353
+ onEnd?: EventHandlerUnion<T, TimeEvent> | undefined;
2354
+ "on:end"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2246
2355
 
2247
- // TODO TimeEvent is currently undefined on TS
2248
- onRepeat?: EventHandlerUnion<T, Event> | undefined;
2249
- "on:repeat"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2356
+ onRepeat?: EventHandlerUnion<T, TimeEvent> | undefined;
2357
+ "on:repeat"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2250
2358
  }
2251
2359
  interface ContainerElementSVGAttributes<T>
2252
- extends SVGAttributes<T>,
2360
+ extends
2361
+ SVGAttributes<T>,
2253
2362
  ShapeElementSVGAttributes<T>,
2254
2363
  Pick<
2255
2364
  PresentationSVGAttributes,
@@ -2263,8 +2372,7 @@ export namespace JSX {
2263
2372
  | "color-rendering"
2264
2373
  > {}
2265
2374
  interface FilterPrimitiveElementSVGAttributes<T>
2266
- extends SVGAttributes<T>,
2267
- Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2375
+ extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2268
2376
  height?: FunctionMaybe<number | string | RemoveAttribute>;
2269
2377
  result?: FunctionMaybe<string | RemoveAttribute>;
2270
2378
  width?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2283,16 +2391,15 @@ export namespace JSX {
2283
2391
  viewBox?: FunctionMaybe<string | RemoveAttribute>;
2284
2392
  }
2285
2393
  interface GradientElementSVGAttributes<T>
2286
- extends SVGAttributes<T>,
2287
- ExternalResourceSVGAttributes,
2288
- StylableSVGAttributes {
2394
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2289
2395
  gradientTransform?: FunctionMaybe<string | RemoveAttribute>;
2290
2396
  gradientUnits?: FunctionMaybe<SVGUnits | RemoveAttribute>;
2291
2397
  href?: FunctionMaybe<string | RemoveAttribute>;
2292
2398
  spreadMethod?: FunctionMaybe<"pad" | "reflect" | "repeat" | RemoveAttribute>;
2293
2399
  }
2294
2400
  interface GraphicsElementSVGAttributes<T>
2295
- extends SVGAttributes<T>,
2401
+ extends
2402
+ SVGAttributes<T>,
2296
2403
  Pick<
2297
2404
  PresentationSVGAttributes,
2298
2405
  | "clip-rule"
@@ -2308,12 +2415,12 @@ export namespace JSX {
2308
2415
  > {}
2309
2416
  interface LightSourceElementSVGAttributes<T> extends SVGAttributes<T> {}
2310
2417
  interface NewViewportSVGAttributes<T>
2311
- extends SVGAttributes<T>,
2312
- Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2418
+ extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2313
2419
  viewBox?: FunctionMaybe<string | RemoveAttribute>;
2314
2420
  }
2315
2421
  interface ShapeElementSVGAttributes<T>
2316
- extends SVGAttributes<T>,
2422
+ extends
2423
+ SVGAttributes<T>,
2317
2424
  Pick<
2318
2425
  PresentationSVGAttributes,
2319
2426
  | "color"
@@ -2332,7 +2439,8 @@ export namespace JSX {
2332
2439
  | "pathLength"
2333
2440
  > {}
2334
2441
  interface TextContentElementSVGAttributes<T>
2335
- extends SVGAttributes<T>,
2442
+ extends
2443
+ SVGAttributes<T>,
2336
2444
  Pick<
2337
2445
  PresentationSVGAttributes,
2338
2446
  | "font-family"
@@ -2373,14 +2481,16 @@ export namespace JSX {
2373
2481
  zoomAndPan?: FunctionMaybe<"disable" | "magnify" | RemoveAttribute>;
2374
2482
  }
2375
2483
  interface AnimateSVGAttributes<T>
2376
- extends AnimationElementSVGAttributes<T>,
2484
+ extends
2485
+ AnimationElementSVGAttributes<T>,
2377
2486
  AnimationAttributeTargetSVGAttributes,
2378
2487
  AnimationTimingSVGAttributes,
2379
2488
  AnimationValueSVGAttributes,
2380
2489
  AnimationAdditionSVGAttributes,
2381
2490
  Pick<PresentationSVGAttributes, "color-interpolation" | "color-rendering"> {}
2382
2491
  interface AnimateMotionSVGAttributes<T>
2383
- extends AnimationElementSVGAttributes<T>,
2492
+ extends
2493
+ AnimationElementSVGAttributes<T>,
2384
2494
  AnimationTimingSVGAttributes,
2385
2495
  AnimationValueSVGAttributes,
2386
2496
  AnimationAdditionSVGAttributes {
@@ -2390,7 +2500,8 @@ export namespace JSX {
2390
2500
  rotate?: FunctionMaybe<number | string | "auto" | "auto-reverse" | RemoveAttribute>;
2391
2501
  }
2392
2502
  interface AnimateTransformSVGAttributes<T>
2393
- extends AnimationElementSVGAttributes<T>,
2503
+ extends
2504
+ AnimationElementSVGAttributes<T>,
2394
2505
  AnimationAttributeTargetSVGAttributes,
2395
2506
  AnimationTimingSVGAttributes,
2396
2507
  AnimationValueSVGAttributes,
@@ -2398,7 +2509,8 @@ export namespace JSX {
2398
2509
  type?: FunctionMaybe<"translate" | "scale" | "rotate" | "skewX" | "skewY" | RemoveAttribute>;
2399
2510
  }
2400
2511
  interface CircleSVGAttributes<T>
2401
- extends GraphicsElementSVGAttributes<T>,
2512
+ extends
2513
+ GraphicsElementSVGAttributes<T>,
2402
2514
  ShapeElementSVGAttributes<T>,
2403
2515
  ConditionalProcessingSVGAttributes,
2404
2516
  StylableSVGAttributes,
@@ -2409,7 +2521,8 @@ export namespace JSX {
2409
2521
  r?: FunctionMaybe<number | string | RemoveAttribute>;
2410
2522
  }
2411
2523
  interface ClipPathSVGAttributes<T>
2412
- extends SVGAttributes<T>,
2524
+ extends
2525
+ SVGAttributes<T>,
2413
2526
  ConditionalProcessingSVGAttributes,
2414
2527
  ExternalResourceSVGAttributes,
2415
2528
  StylableSVGAttributes,
@@ -2418,14 +2531,16 @@ export namespace JSX {
2418
2531
  clipPathUnits?: FunctionMaybe<SVGUnits | RemoveAttribute>;
2419
2532
  }
2420
2533
  interface DefsSVGAttributes<T>
2421
- extends ContainerElementSVGAttributes<T>,
2534
+ extends
2535
+ ContainerElementSVGAttributes<T>,
2422
2536
  ConditionalProcessingSVGAttributes,
2423
2537
  ExternalResourceSVGAttributes,
2424
2538
  StylableSVGAttributes,
2425
2539
  TransformableSVGAttributes {}
2426
2540
  interface DescSVGAttributes<T> extends SVGAttributes<T>, StylableSVGAttributes {}
2427
2541
  interface EllipseSVGAttributes<T>
2428
- extends GraphicsElementSVGAttributes<T>,
2542
+ extends
2543
+ GraphicsElementSVGAttributes<T>,
2429
2544
  ShapeElementSVGAttributes<T>,
2430
2545
  ConditionalProcessingSVGAttributes,
2431
2546
  ExternalResourceSVGAttributes,
@@ -2438,13 +2553,15 @@ export namespace JSX {
2438
2553
  ry?: FunctionMaybe<number | string | RemoveAttribute>;
2439
2554
  }
2440
2555
  interface FeBlendSVGAttributes<T>
2441
- extends FilterPrimitiveElementSVGAttributes<T>,
2556
+ extends
2557
+ FilterPrimitiveElementSVGAttributes<T>,
2442
2558
  DoubleInputFilterSVGAttributes,
2443
2559
  StylableSVGAttributes {
2444
2560
  mode?: FunctionMaybe<"normal" | "multiply" | "screen" | "darken" | "lighten" | RemoveAttribute>;
2445
2561
  }
2446
2562
  interface FeColorMatrixSVGAttributes<T>
2447
- extends FilterPrimitiveElementSVGAttributes<T>,
2563
+ extends
2564
+ FilterPrimitiveElementSVGAttributes<T>,
2448
2565
  SingleInputFilterSVGAttributes,
2449
2566
  StylableSVGAttributes {
2450
2567
  type?: FunctionMaybe<
@@ -2453,11 +2570,13 @@ export namespace JSX {
2453
2570
  values?: FunctionMaybe<string | RemoveAttribute>;
2454
2571
  }
2455
2572
  interface FeComponentTransferSVGAttributes<T>
2456
- extends FilterPrimitiveElementSVGAttributes<T>,
2573
+ extends
2574
+ FilterPrimitiveElementSVGAttributes<T>,
2457
2575
  SingleInputFilterSVGAttributes,
2458
2576
  StylableSVGAttributes {}
2459
2577
  interface FeCompositeSVGAttributes<T>
2460
- extends FilterPrimitiveElementSVGAttributes<T>,
2578
+ extends
2579
+ FilterPrimitiveElementSVGAttributes<T>,
2461
2580
  DoubleInputFilterSVGAttributes,
2462
2581
  StylableSVGAttributes {
2463
2582
  k1?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2469,7 +2588,8 @@ export namespace JSX {
2469
2588
  >;
2470
2589
  }
2471
2590
  interface FeConvolveMatrixSVGAttributes<T>
2472
- extends FilterPrimitiveElementSVGAttributes<T>,
2591
+ extends
2592
+ FilterPrimitiveElementSVGAttributes<T>,
2473
2593
  SingleInputFilterSVGAttributes,
2474
2594
  StylableSVGAttributes {
2475
2595
  bias?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2483,7 +2603,8 @@ export namespace JSX {
2483
2603
  targetY?: FunctionMaybe<number | string | RemoveAttribute>;
2484
2604
  }
2485
2605
  interface FeDiffuseLightingSVGAttributes<T>
2486
- extends FilterPrimitiveElementSVGAttributes<T>,
2606
+ extends
2607
+ FilterPrimitiveElementSVGAttributes<T>,
2487
2608
  SingleInputFilterSVGAttributes,
2488
2609
  StylableSVGAttributes,
2489
2610
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2492,7 +2613,8 @@ export namespace JSX {
2492
2613
  surfaceScale?: FunctionMaybe<number | string | RemoveAttribute>;
2493
2614
  }
2494
2615
  interface FeDisplacementMapSVGAttributes<T>
2495
- extends FilterPrimitiveElementSVGAttributes<T>,
2616
+ extends
2617
+ FilterPrimitiveElementSVGAttributes<T>,
2496
2618
  DoubleInputFilterSVGAttributes,
2497
2619
  StylableSVGAttributes {
2498
2620
  scale?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2504,7 +2626,8 @@ export namespace JSX {
2504
2626
  elevation?: FunctionMaybe<number | string | RemoveAttribute>;
2505
2627
  }
2506
2628
  interface FeDropShadowSVGAttributes<T>
2507
- extends SVGAttributes<T>,
2629
+ extends
2630
+ SVGAttributes<T>,
2508
2631
  FilterPrimitiveElementSVGAttributes<T>,
2509
2632
  StylableSVGAttributes,
2510
2633
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {
@@ -2513,7 +2636,8 @@ export namespace JSX {
2513
2636
  stdDeviation?: FunctionMaybe<number | string | RemoveAttribute>;
2514
2637
  }
2515
2638
  interface FeFloodSVGAttributes<T>
2516
- extends FilterPrimitiveElementSVGAttributes<T>,
2639
+ extends
2640
+ FilterPrimitiveElementSVGAttributes<T>,
2517
2641
  StylableSVGAttributes,
2518
2642
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {}
2519
2643
  interface FeFuncSVGAttributes<T> extends SVGAttributes<T> {
@@ -2526,31 +2650,34 @@ export namespace JSX {
2526
2650
  type?: FunctionMaybe<"identity" | "table" | "discrete" | "linear" | "gamma" | RemoveAttribute>;
2527
2651
  }
2528
2652
  interface FeGaussianBlurSVGAttributes<T>
2529
- extends FilterPrimitiveElementSVGAttributes<T>,
2653
+ extends
2654
+ FilterPrimitiveElementSVGAttributes<T>,
2530
2655
  SingleInputFilterSVGAttributes,
2531
2656
  StylableSVGAttributes {
2532
2657
  stdDeviation?: FunctionMaybe<number | string | RemoveAttribute>;
2533
2658
  }
2534
2659
  interface FeImageSVGAttributes<T>
2535
- extends FilterPrimitiveElementSVGAttributes<T>,
2660
+ extends
2661
+ FilterPrimitiveElementSVGAttributes<T>,
2536
2662
  ExternalResourceSVGAttributes,
2537
2663
  StylableSVGAttributes {
2538
2664
  href?: FunctionMaybe<string | RemoveAttribute>;
2539
2665
  preserveAspectRatio?: FunctionMaybe<SVGPreserveAspectRatio | RemoveAttribute>;
2540
2666
  }
2541
2667
  interface FeMergeSVGAttributes<T>
2542
- extends FilterPrimitiveElementSVGAttributes<T>,
2543
- StylableSVGAttributes {}
2668
+ extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {}
2544
2669
  interface FeMergeNodeSVGAttributes<T> extends SVGAttributes<T>, SingleInputFilterSVGAttributes {}
2545
2670
  interface FeMorphologySVGAttributes<T>
2546
- extends FilterPrimitiveElementSVGAttributes<T>,
2671
+ extends
2672
+ FilterPrimitiveElementSVGAttributes<T>,
2547
2673
  SingleInputFilterSVGAttributes,
2548
2674
  StylableSVGAttributes {
2549
2675
  operator?: FunctionMaybe<"erode" | "dilate" | RemoveAttribute>;
2550
2676
  radius?: FunctionMaybe<number | string | RemoveAttribute>;
2551
2677
  }
2552
2678
  interface FeOffsetSVGAttributes<T>
2553
- extends FilterPrimitiveElementSVGAttributes<T>,
2679
+ extends
2680
+ FilterPrimitiveElementSVGAttributes<T>,
2554
2681
  SingleInputFilterSVGAttributes,
2555
2682
  StylableSVGAttributes {
2556
2683
  dx?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2562,7 +2689,8 @@ export namespace JSX {
2562
2689
  z?: FunctionMaybe<number | string | RemoveAttribute>;
2563
2690
  }
2564
2691
  interface FeSpecularLightingSVGAttributes<T>
2565
- extends FilterPrimitiveElementSVGAttributes<T>,
2692
+ extends
2693
+ FilterPrimitiveElementSVGAttributes<T>,
2566
2694
  SingleInputFilterSVGAttributes,
2567
2695
  StylableSVGAttributes,
2568
2696
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2582,12 +2710,12 @@ export namespace JSX {
2582
2710
  z?: FunctionMaybe<number | string | RemoveAttribute>;
2583
2711
  }
2584
2712
  interface FeTileSVGAttributes<T>
2585
- extends FilterPrimitiveElementSVGAttributes<T>,
2713
+ extends
2714
+ FilterPrimitiveElementSVGAttributes<T>,
2586
2715
  SingleInputFilterSVGAttributes,
2587
2716
  StylableSVGAttributes {}
2588
2717
  interface FeTurbulanceSVGAttributes<T>
2589
- extends FilterPrimitiveElementSVGAttributes<T>,
2590
- StylableSVGAttributes {
2718
+ extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {
2591
2719
  baseFrequency?: FunctionMaybe<number | string | RemoveAttribute>;
2592
2720
  numOctaves?: FunctionMaybe<number | string | RemoveAttribute>;
2593
2721
  seed?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2595,9 +2723,7 @@ export namespace JSX {
2595
2723
  type?: FunctionMaybe<"fractalNoise" | "turbulence" | RemoveAttribute>;
2596
2724
  }
2597
2725
  interface FilterSVGAttributes<T>
2598
- extends SVGAttributes<T>,
2599
- ExternalResourceSVGAttributes,
2600
- StylableSVGAttributes {
2726
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2601
2727
  filterRes?: FunctionMaybe<number | string | RemoveAttribute>;
2602
2728
  filterUnits?: FunctionMaybe<SVGUnits | RemoveAttribute>;
2603
2729
  height?: FunctionMaybe<number | string | RemoveAttribute>;
@@ -2607,7 +2733,8 @@ export namespace JSX {
2607
2733
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2608
2734
  }
2609
2735
  interface ForeignObjectSVGAttributes<T>
2610
- extends NewViewportSVGAttributes<T>,
2736
+ extends
2737
+ NewViewportSVGAttributes<T>,
2611
2738
  ConditionalProcessingSVGAttributes,
2612
2739
  ExternalResourceSVGAttributes,
2613
2740
  StylableSVGAttributes,
@@ -2619,14 +2746,16 @@ export namespace JSX {
2619
2746
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2620
2747
  }
2621
2748
  interface GSVGAttributes<T>
2622
- extends ContainerElementSVGAttributes<T>,
2749
+ extends
2750
+ ContainerElementSVGAttributes<T>,
2623
2751
  ConditionalProcessingSVGAttributes,
2624
2752
  ExternalResourceSVGAttributes,
2625
2753
  StylableSVGAttributes,
2626
2754
  TransformableSVGAttributes,
2627
2755
  Pick<PresentationSVGAttributes, "clip-path" | "display" | "visibility"> {}
2628
2756
  interface ImageSVGAttributes<T>
2629
- extends NewViewportSVGAttributes<T>,
2757
+ extends
2758
+ NewViewportSVGAttributes<T>,
2630
2759
  GraphicsElementSVGAttributes<T>,
2631
2760
  ConditionalProcessingSVGAttributes,
2632
2761
  StylableSVGAttributes,
@@ -2640,7 +2769,8 @@ export namespace JSX {
2640
2769
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2641
2770
  }
2642
2771
  interface LineSVGAttributes<T>
2643
- extends GraphicsElementSVGAttributes<T>,
2772
+ extends
2773
+ GraphicsElementSVGAttributes<T>,
2644
2774
  ShapeElementSVGAttributes<T>,
2645
2775
  ConditionalProcessingSVGAttributes,
2646
2776
  ExternalResourceSVGAttributes,
@@ -2659,7 +2789,8 @@ export namespace JSX {
2659
2789
  y2?: FunctionMaybe<number | string | RemoveAttribute>;
2660
2790
  }
2661
2791
  interface MarkerSVGAttributes<T>
2662
- extends ContainerElementSVGAttributes<T>,
2792
+ extends
2793
+ ContainerElementSVGAttributes<T>,
2663
2794
  ExternalResourceSVGAttributes,
2664
2795
  StylableSVGAttributes,
2665
2796
  FitToViewBoxSVGAttributes,
@@ -2672,7 +2803,8 @@ export namespace JSX {
2672
2803
  refY?: FunctionMaybe<number | string | RemoveAttribute>;
2673
2804
  }
2674
2805
  interface MaskSVGAttributes<T>
2675
- extends Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2806
+ extends
2807
+ Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2676
2808
  ConditionalProcessingSVGAttributes,
2677
2809
  ExternalResourceSVGAttributes,
2678
2810
  StylableSVGAttributes,
@@ -2687,7 +2819,8 @@ export namespace JSX {
2687
2819
  interface MetadataSVGAttributes<T> extends SVGAttributes<T> {}
2688
2820
  interface MPathSVGAttributes<T> extends SVGAttributes<T> {}
2689
2821
  interface PathSVGAttributes<T>
2690
- extends GraphicsElementSVGAttributes<T>,
2822
+ extends
2823
+ GraphicsElementSVGAttributes<T>,
2691
2824
  ShapeElementSVGAttributes<T>,
2692
2825
  ConditionalProcessingSVGAttributes,
2693
2826
  ExternalResourceSVGAttributes,
@@ -2698,7 +2831,8 @@ export namespace JSX {
2698
2831
  pathLength?: FunctionMaybe<number | string | RemoveAttribute>;
2699
2832
  }
2700
2833
  interface PatternSVGAttributes<T>
2701
- extends ContainerElementSVGAttributes<T>,
2834
+ extends
2835
+ ContainerElementSVGAttributes<T>,
2702
2836
  ConditionalProcessingSVGAttributes,
2703
2837
  ExternalResourceSVGAttributes,
2704
2838
  StylableSVGAttributes,
@@ -2714,7 +2848,8 @@ export namespace JSX {
2714
2848
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2715
2849
  }
2716
2850
  interface PolygonSVGAttributes<T>
2717
- extends GraphicsElementSVGAttributes<T>,
2851
+ extends
2852
+ GraphicsElementSVGAttributes<T>,
2718
2853
  ShapeElementSVGAttributes<T>,
2719
2854
  ConditionalProcessingSVGAttributes,
2720
2855
  ExternalResourceSVGAttributes,
@@ -2724,7 +2859,8 @@ export namespace JSX {
2724
2859
  points?: FunctionMaybe<string | RemoveAttribute>;
2725
2860
  }
2726
2861
  interface PolylineSVGAttributes<T>
2727
- extends GraphicsElementSVGAttributes<T>,
2862
+ extends
2863
+ GraphicsElementSVGAttributes<T>,
2728
2864
  ShapeElementSVGAttributes<T>,
2729
2865
  ConditionalProcessingSVGAttributes,
2730
2866
  ExternalResourceSVGAttributes,
@@ -2741,7 +2877,8 @@ export namespace JSX {
2741
2877
  r?: FunctionMaybe<number | string | RemoveAttribute>;
2742
2878
  }
2743
2879
  interface RectSVGAttributes<T>
2744
- extends GraphicsElementSVGAttributes<T>,
2880
+ extends
2881
+ GraphicsElementSVGAttributes<T>,
2745
2882
  ShapeElementSVGAttributes<T>,
2746
2883
  ConditionalProcessingSVGAttributes,
2747
2884
  ExternalResourceSVGAttributes,
@@ -2756,17 +2893,17 @@ export namespace JSX {
2756
2893
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2757
2894
  }
2758
2895
  interface SetSVGAttributes<T>
2759
- extends AnimationElementSVGAttributes<T>,
2760
- StylableSVGAttributes,
2761
- AnimationTimingSVGAttributes {}
2896
+ extends AnimationElementSVGAttributes<T>, StylableSVGAttributes, AnimationTimingSVGAttributes {}
2762
2897
  interface StopSVGAttributes<T>
2763
- extends SVGAttributes<T>,
2898
+ extends
2899
+ SVGAttributes<T>,
2764
2900
  StylableSVGAttributes,
2765
2901
  Pick<PresentationSVGAttributes, "color" | "stop-color" | "stop-opacity"> {
2766
2902
  offset?: FunctionMaybe<number | string | RemoveAttribute>;
2767
2903
  }
2768
2904
  interface SvgSVGAttributes<T>
2769
- extends ContainerElementSVGAttributes<T>,
2905
+ extends
2906
+ ContainerElementSVGAttributes<T>,
2770
2907
  NewViewportSVGAttributes<T>,
2771
2908
  ConditionalProcessingSVGAttributes,
2772
2909
  ExternalResourceSVGAttributes,
@@ -2789,14 +2926,16 @@ export namespace JSX {
2789
2926
  version?: FunctionMaybe<string | RemoveAttribute>;
2790
2927
  }
2791
2928
  interface SwitchSVGAttributes<T>
2792
- extends ContainerElementSVGAttributes<T>,
2929
+ extends
2930
+ ContainerElementSVGAttributes<T>,
2793
2931
  ConditionalProcessingSVGAttributes,
2794
2932
  ExternalResourceSVGAttributes,
2795
2933
  StylableSVGAttributes,
2796
2934
  TransformableSVGAttributes,
2797
2935
  Pick<PresentationSVGAttributes, "display" | "visibility"> {}
2798
2936
  interface SymbolSVGAttributes<T>
2799
- extends ContainerElementSVGAttributes<T>,
2937
+ extends
2938
+ ContainerElementSVGAttributes<T>,
2800
2939
  NewViewportSVGAttributes<T>,
2801
2940
  ExternalResourceSVGAttributes,
2802
2941
  StylableSVGAttributes,
@@ -2812,7 +2951,8 @@ export namespace JSX {
2812
2951
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2813
2952
  }
2814
2953
  interface TextSVGAttributes<T>
2815
- extends TextContentElementSVGAttributes<T>,
2954
+ extends
2955
+ TextContentElementSVGAttributes<T>,
2816
2956
  GraphicsElementSVGAttributes<T>,
2817
2957
  ConditionalProcessingSVGAttributes,
2818
2958
  ExternalResourceSVGAttributes,
@@ -2828,7 +2968,8 @@ export namespace JSX {
2828
2968
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2829
2969
  }
2830
2970
  interface TextPathSVGAttributes<T>
2831
- extends TextContentElementSVGAttributes<T>,
2971
+ extends
2972
+ TextContentElementSVGAttributes<T>,
2832
2973
  ConditionalProcessingSVGAttributes,
2833
2974
  ExternalResourceSVGAttributes,
2834
2975
  StylableSVGAttributes,
@@ -2842,7 +2983,8 @@ export namespace JSX {
2842
2983
  startOffset?: FunctionMaybe<number | string | RemoveAttribute>;
2843
2984
  }
2844
2985
  interface TSpanSVGAttributes<T>
2845
- extends TextContentElementSVGAttributes<T>,
2986
+ extends
2987
+ TextContentElementSVGAttributes<T>,
2846
2988
  ConditionalProcessingSVGAttributes,
2847
2989
  ExternalResourceSVGAttributes,
2848
2990
  StylableSVGAttributes,
@@ -2860,7 +3002,8 @@ export namespace JSX {
2860
3002
  }
2861
3003
  /** @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use */
2862
3004
  interface UseSVGAttributes<T>
2863
- extends SVGAttributes<T>,
3005
+ extends
3006
+ SVGAttributes<T>,
2864
3007
  StylableSVGAttributes,
2865
3008
  ConditionalProcessingSVGAttributes,
2866
3009
  GraphicsElementSVGAttributes<T>,
@@ -2874,7 +3017,8 @@ export namespace JSX {
2874
3017
  y?: FunctionMaybe<number | string | RemoveAttribute>;
2875
3018
  }
2876
3019
  interface ViewSVGAttributes<T>
2877
- extends SVGAttributes<T>,
3020
+ extends
3021
+ SVGAttributes<T>,
2878
3022
  ExternalResourceSVGAttributes,
2879
3023
  FitToViewBoxSVGAttributes,
2880
3024
  ZoomAndPanSVGAttributes {
@@ -3106,564 +3250,564 @@ export namespace JSX {
3106
3250
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
3107
3251
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
3108
3252
  */
3109
- a: AnchorHTMLAttributes<HTMLAnchorElement>;
3253
+ a: AnchorHTMLAttributes<HTMLAnchorElement> & Properties<HTMLAnchorElement>;
3110
3254
  /**
3111
3255
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
3112
3256
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3113
3257
  */
3114
- abbr: HTMLAttributes<HTMLElement>;
3258
+ abbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3115
3259
  /**
3116
3260
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
3117
3261
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3118
3262
  */
3119
- address: HTMLAttributes<HTMLElement>;
3263
+ address: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3120
3264
  /**
3121
3265
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
3122
3266
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
3123
3267
  */
3124
- area: AreaHTMLAttributes<HTMLAreaElement>;
3268
+ area: AreaHTMLAttributes<HTMLAreaElement> & Properties<HTMLAreaElement>;
3125
3269
  /**
3126
3270
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
3127
3271
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3128
3272
  */
3129
- article: HTMLAttributes<HTMLElement>;
3273
+ article: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3130
3274
  /**
3131
3275
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
3132
3276
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3133
3277
  */
3134
- aside: HTMLAttributes<HTMLElement>;
3278
+ aside: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3135
3279
  /**
3136
3280
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
3137
3281
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement
3138
3282
  */
3139
- audio: AudioHTMLAttributes<HTMLAudioElement>;
3283
+ audio: AudioHTMLAttributes<HTMLAudioElement> & Properties<HTMLAudioElement>;
3140
3284
  /**
3141
3285
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
3142
3286
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3143
3287
  */
3144
- b: HTMLAttributes<HTMLElement>;
3288
+ b: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3145
3289
  /**
3146
3290
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
3147
3291
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBaseElement
3148
3292
  */
3149
- base: BaseHTMLAttributes<HTMLBaseElement>;
3293
+ base: BaseHTMLAttributes<HTMLBaseElement> & Properties<HTMLBaseElement>;
3150
3294
  /**
3151
3295
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
3152
3296
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3153
3297
  */
3154
- bdi: HTMLAttributes<HTMLElement>;
3298
+ bdi: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3155
3299
  /**
3156
3300
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
3157
3301
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3158
3302
  */
3159
- bdo: BdoHTMLAttributes<HTMLElement>;
3303
+ bdo: BdoHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3160
3304
  /**
3161
3305
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
3162
3306
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3163
3307
  */
3164
- blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
3308
+ blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3165
3309
  /**
3166
3310
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
3167
3311
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
3168
3312
  */
3169
- body: BodyHTMLAttributes<HTMLBodyElement>;
3313
+ body: BodyHTMLAttributes<HTMLBodyElement> & Properties<HTMLBodyElement>;
3170
3314
  /**
3171
3315
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
3172
3316
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBRElement
3173
3317
  */
3174
- br: HTMLAttributes<HTMLBRElement>;
3318
+ br: HTMLAttributes<HTMLBRElement> & Properties<HTMLBRElement>;
3175
3319
  /**
3176
3320
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
3177
3321
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement
3178
3322
  */
3179
- button: ButtonHTMLAttributes<HTMLButtonElement>;
3323
+ button: ButtonHTMLAttributes<HTMLButtonElement> & Properties<HTMLButtonElement>;
3180
3324
  /**
3181
3325
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
3182
3326
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
3183
3327
  */
3184
- canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
3328
+ canvas: CanvasHTMLAttributes<HTMLCanvasElement> & Properties<HTMLCanvasElement>;
3185
3329
  /**
3186
3330
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
3187
3331
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement
3188
3332
  */
3189
- caption: CaptionHTMLAttributes<HTMLTableCaptionElement>;
3333
+ caption: CaptionHTMLAttributes<HTMLTableCaptionElement> & Properties<HTMLTableCaptionElement>;
3190
3334
  /**
3191
3335
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
3192
3336
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3193
3337
  */
3194
- cite: HTMLAttributes<HTMLElement>;
3338
+ cite: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3195
3339
  /**
3196
3340
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
3197
3341
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3198
3342
  */
3199
- code: HTMLAttributes<HTMLElement>;
3343
+ code: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3200
3344
  /**
3201
3345
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
3202
3346
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3203
3347
  */
3204
- col: ColHTMLAttributes<HTMLTableColElement>;
3348
+ col: ColHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3205
3349
  /**
3206
3350
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
3207
3351
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3208
3352
  */
3209
- colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
3353
+ colgroup: ColgroupHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3210
3354
  /**
3211
3355
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
3212
3356
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
3213
3357
  */
3214
- data: DataHTMLAttributes<HTMLDataElement>;
3358
+ data: DataHTMLAttributes<HTMLDataElement> & Properties<HTMLDataElement>;
3215
3359
  /**
3216
3360
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
3217
3361
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement
3218
3362
  */
3219
- datalist: HTMLAttributes<HTMLDataListElement>;
3363
+ datalist: HTMLAttributes<HTMLDataListElement> & Properties<HTMLDataListElement>;
3220
3364
  /**
3221
3365
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
3222
3366
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3223
3367
  */
3224
- dd: HTMLAttributes<HTMLElement>;
3368
+ dd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3225
3369
  /**
3226
3370
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
3227
3371
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3228
3372
  */
3229
- del: ModHTMLAttributes<HTMLModElement>;
3373
+ del: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3230
3374
  /**
3231
3375
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
3232
3376
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement
3233
3377
  */
3234
- details: DetailsHtmlAttributes<HTMLDetailsElement>;
3378
+ details: DetailsHtmlAttributes<HTMLDetailsElement> & Properties<HTMLDetailsElement>;
3235
3379
  /**
3236
3380
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
3237
3381
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3238
3382
  */
3239
- dfn: HTMLAttributes<HTMLElement>;
3383
+ dfn: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3240
3384
  /**
3241
3385
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
3242
3386
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement
3243
3387
  */
3244
- dialog: DialogHtmlAttributes<HTMLDialogElement>;
3388
+ dialog: DialogHtmlAttributes<HTMLDialogElement> & Properties<HTMLDialogElement>;
3245
3389
  /**
3246
3390
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
3247
3391
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement
3248
3392
  */
3249
- div: HTMLAttributes<HTMLDivElement>;
3393
+ div: HTMLAttributes<HTMLDivElement> & Properties<HTMLDivElement>;
3250
3394
  /**
3251
3395
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
3252
3396
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDListElement
3253
3397
  */
3254
- dl: HTMLAttributes<HTMLDListElement>;
3398
+ dl: HTMLAttributes<HTMLDListElement> & Properties<HTMLDListElement>;
3255
3399
  /**
3256
3400
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
3257
3401
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3258
3402
  */
3259
- dt: HTMLAttributes<HTMLElement>;
3403
+ dt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3260
3404
  /**
3261
3405
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
3262
3406
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3263
3407
  */
3264
- em: HTMLAttributes<HTMLElement>;
3408
+ em: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3265
3409
  /**
3266
3410
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
3267
3411
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
3268
3412
  */
3269
- embed: EmbedHTMLAttributes<HTMLEmbedElement>;
3413
+ embed: EmbedHTMLAttributes<HTMLEmbedElement> & Properties<HTMLEmbedElement>;
3270
3414
  /**
3271
3415
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
3272
3416
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
3273
3417
  */
3274
- fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
3418
+ fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement> & Properties<HTMLFieldSetElement>;
3275
3419
  /**
3276
3420
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
3277
3421
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3278
3422
  */
3279
- figcaption: HTMLAttributes<HTMLElement>;
3423
+ figcaption: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3280
3424
  /**
3281
3425
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
3282
3426
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3283
3427
  */
3284
- figure: HTMLAttributes<HTMLElement>;
3428
+ figure: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3285
3429
  /**
3286
3430
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
3287
3431
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3288
3432
  */
3289
- footer: HTMLAttributes<HTMLElement>;
3433
+ footer: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3290
3434
  /**
3291
3435
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
3292
3436
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement
3293
3437
  */
3294
- form: FormHTMLAttributes<HTMLFormElement>;
3438
+ form: FormHTMLAttributes<HTMLFormElement> & Properties<HTMLFormElement>;
3295
3439
  /**
3296
3440
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
3297
3441
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3298
3442
  */
3299
- h1: HTMLAttributes<HTMLHeadingElement>;
3443
+ h1: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3300
3444
  /**
3301
3445
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
3302
3446
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3303
3447
  */
3304
- h2: HTMLAttributes<HTMLHeadingElement>;
3448
+ h2: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3305
3449
  /**
3306
3450
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
3307
3451
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3308
3452
  */
3309
- h3: HTMLAttributes<HTMLHeadingElement>;
3453
+ h3: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3310
3454
  /**
3311
3455
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
3312
3456
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3313
3457
  */
3314
- h4: HTMLAttributes<HTMLHeadingElement>;
3458
+ h4: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3315
3459
  /**
3316
3460
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
3317
3461
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3318
3462
  */
3319
- h5: HTMLAttributes<HTMLHeadingElement>;
3463
+ h5: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3320
3464
  /**
3321
3465
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
3322
3466
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3323
3467
  */
3324
- h6: HTMLAttributes<HTMLHeadingElement>;
3468
+ h6: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3325
3469
  /**
3326
3470
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
3327
3471
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement
3328
3472
  */
3329
- head: HTMLAttributes<HTMLHeadElement>;
3473
+ head: HTMLAttributes<HTMLHeadElement> & Properties<HTMLHeadElement>;
3330
3474
  /**
3331
3475
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
3332
3476
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3333
3477
  */
3334
- header: HTMLAttributes<HTMLElement>;
3478
+ header: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3335
3479
  /**
3336
3480
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
3337
3481
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3338
3482
  */
3339
- hgroup: HTMLAttributes<HTMLElement>;
3483
+ hgroup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3340
3484
  /**
3341
3485
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
3342
3486
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHRElement
3343
3487
  */
3344
- hr: HTMLAttributes<HTMLHRElement>;
3488
+ hr: HTMLAttributes<HTMLHRElement> & Properties<HTMLHRElement>;
3345
3489
  /**
3346
3490
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
3347
3491
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement
3348
3492
  */
3349
- html: HTMLAttributes<HTMLHtmlElement>;
3493
+ html: HTMLAttributes<HTMLHtmlElement> & Properties<HTMLHtmlElement>;
3350
3494
  /**
3351
3495
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
3352
3496
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3353
3497
  */
3354
- i: HTMLAttributes<HTMLElement>;
3498
+ i: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3355
3499
  /**
3356
3500
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
3357
3501
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
3358
3502
  */
3359
- iframe: IframeHTMLAttributes<HTMLIFrameElement>;
3503
+ iframe: IframeHTMLAttributes<HTMLIFrameElement> & Properties<HTMLIFrameElement>;
3360
3504
  /**
3361
3505
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
3362
3506
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
3363
3507
  */
3364
- img: ImgHTMLAttributes<HTMLImageElement>;
3508
+ img: ImgHTMLAttributes<HTMLImageElement> & Properties<HTMLImageElement>;
3365
3509
  /**
3366
3510
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
3367
3511
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement
3368
3512
  */
3369
- input: InputHTMLAttributes<HTMLInputElement>;
3513
+ input: InputHTMLAttributes<HTMLInputElement> & Properties<HTMLInputElement>;
3370
3514
  /**
3371
3515
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
3372
3516
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3373
3517
  */
3374
- ins: ModHTMLAttributes<HTMLModElement>;
3518
+ ins: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3375
3519
  /**
3376
3520
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
3377
3521
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3378
3522
  */
3379
- kbd: HTMLAttributes<HTMLElement>;
3523
+ kbd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3380
3524
  /**
3381
3525
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
3382
3526
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement
3383
3527
  */
3384
- label: LabelHTMLAttributes<HTMLLabelElement>;
3528
+ label: LabelHTMLAttributes<HTMLLabelElement> & Properties<HTMLLabelElement>;
3385
3529
  /**
3386
3530
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
3387
3531
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
3388
3532
  */
3389
- legend: HTMLAttributes<HTMLLegendElement>;
3533
+ legend: HTMLAttributes<HTMLLegendElement> & Properties<HTMLLegendElement>;
3390
3534
  /**
3391
3535
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
3392
3536
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
3393
3537
  */
3394
- li: LiHTMLAttributes<HTMLLIElement>;
3538
+ li: LiHTMLAttributes<HTMLLIElement> & Properties<HTMLLIElement>;
3395
3539
  /**
3396
3540
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
3397
3541
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement
3398
3542
  */
3399
- link: LinkHTMLAttributes<HTMLLinkElement>;
3543
+ link: LinkHTMLAttributes<HTMLLinkElement> & Properties<HTMLLinkElement>;
3400
3544
  /**
3401
3545
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
3402
3546
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3403
3547
  */
3404
- main: HTMLAttributes<HTMLElement>;
3548
+ main: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3405
3549
  /**
3406
3550
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
3407
3551
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMapElement
3408
3552
  */
3409
- map: MapHTMLAttributes<HTMLMapElement>;
3553
+ map: MapHTMLAttributes<HTMLMapElement> & Properties<HTMLMapElement>;
3410
3554
  /**
3411
3555
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
3412
3556
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3413
3557
  */
3414
- mark: HTMLAttributes<HTMLElement>;
3558
+ mark: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3415
3559
  /**
3416
3560
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
3417
3561
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMenuElement
3418
3562
  */
3419
- menu: MenuHTMLAttributes<HTMLMenuElement>;
3563
+ menu: MenuHTMLAttributes<HTMLMenuElement> & Properties<HTMLMenuElement>;
3420
3564
  /**
3421
3565
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
3422
3566
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement
3423
3567
  */
3424
- meta: MetaHTMLAttributes<HTMLMetaElement>;
3568
+ meta: MetaHTMLAttributes<HTMLMetaElement> & Properties<HTMLMetaElement>;
3425
3569
  /**
3426
3570
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
3427
3571
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement
3428
3572
  */
3429
- meter: MeterHTMLAttributes<HTMLMeterElement>;
3573
+ meter: MeterHTMLAttributes<HTMLMeterElement> & Properties<HTMLMeterElement>;
3430
3574
  /**
3431
3575
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
3432
3576
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3433
3577
  */
3434
- nav: HTMLAttributes<HTMLElement>;
3578
+ nav: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3435
3579
  /**
3436
3580
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
3437
3581
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3438
3582
  */
3439
- noscript: HTMLAttributes<HTMLElement>;
3583
+ noscript: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3440
3584
  /**
3441
3585
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
3442
3586
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement
3443
3587
  */
3444
- object: ObjectHTMLAttributes<HTMLObjectElement>;
3588
+ object: ObjectHTMLAttributes<HTMLObjectElement> & Properties<HTMLObjectElement>;
3445
3589
  /**
3446
3590
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
3447
3591
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
3448
3592
  */
3449
- ol: OlHTMLAttributes<HTMLOListElement>;
3593
+ ol: OlHTMLAttributes<HTMLOListElement> & Properties<HTMLOListElement>;
3450
3594
  /**
3451
3595
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
3452
3596
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement
3453
3597
  */
3454
- optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
3598
+ optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement> & Properties<HTMLOptGroupElement>;
3455
3599
  /**
3456
3600
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
3457
3601
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement
3458
3602
  */
3459
- option: OptionHTMLAttributes<HTMLOptionElement>;
3603
+ option: OptionHTMLAttributes<HTMLOptionElement> & Properties<HTMLOptionElement>;
3460
3604
  /**
3461
3605
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
3462
3606
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement
3463
3607
  */
3464
- output: OutputHTMLAttributes<HTMLOutputElement>;
3608
+ output: OutputHTMLAttributes<HTMLOutputElement> & Properties<HTMLOutputElement>;
3465
3609
  /**
3466
3610
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
3467
3611
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement
3468
3612
  */
3469
- p: HTMLAttributes<HTMLParagraphElement>;
3613
+ p: HTMLAttributes<HTMLParagraphElement> & Properties<HTMLParagraphElement>;
3470
3614
  /**
3471
3615
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
3472
3616
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement
3473
3617
  */
3474
- picture: HTMLAttributes<HTMLPictureElement>;
3618
+ picture: HTMLAttributes<HTMLPictureElement> & Properties<HTMLPictureElement>;
3475
3619
  /**
3476
3620
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
3477
3621
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement
3478
3622
  */
3479
- pre: HTMLAttributes<HTMLPreElement>;
3623
+ pre: HTMLAttributes<HTMLPreElement> & Properties<HTMLPreElement>;
3480
3624
  /**
3481
3625
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
3482
3626
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
3483
3627
  */
3484
- progress: ProgressHTMLAttributes<HTMLProgressElement>;
3628
+ progress: ProgressHTMLAttributes<HTMLProgressElement> & Properties<HTMLProgressElement>;
3485
3629
  /**
3486
3630
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
3487
3631
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3488
3632
  */
3489
- q: QuoteHTMLAttributes<HTMLQuoteElement>;
3633
+ q: QuoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3490
3634
  /**
3491
3635
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
3492
3636
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3493
3637
  */
3494
- rp: HTMLAttributes<HTMLElement>;
3638
+ rp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3495
3639
  /**
3496
3640
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
3497
3641
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3498
3642
  */
3499
- rt: HTMLAttributes<HTMLElement>;
3643
+ rt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3500
3644
  /**
3501
3645
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
3502
3646
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3503
3647
  */
3504
- ruby: HTMLAttributes<HTMLElement>;
3648
+ ruby: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3505
3649
  /**
3506
3650
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
3507
3651
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3508
3652
  */
3509
- s: HTMLAttributes<HTMLElement>;
3653
+ s: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3510
3654
  /**
3511
3655
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
3512
3656
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3513
3657
  */
3514
- samp: HTMLAttributes<HTMLElement>;
3658
+ samp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3515
3659
  /**
3516
3660
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
3517
3661
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement
3518
3662
  */
3519
- script: ScriptHTMLAttributes<HTMLScriptElement>;
3663
+ script: ScriptHTMLAttributes<HTMLScriptElement> & Properties<HTMLScriptElement>;
3520
3664
  /**
3521
3665
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
3522
3666
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3523
3667
  */
3524
- search: HTMLAttributes<HTMLElement>;
3668
+ search: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3525
3669
  /**
3526
3670
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
3527
3671
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3528
3672
  */
3529
- section: HTMLAttributes<HTMLElement>;
3673
+ section: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3530
3674
  /**
3531
3675
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
3532
3676
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement
3533
3677
  */
3534
- select: SelectHTMLAttributes<HTMLSelectElement>;
3678
+ select: SelectHTMLAttributes<HTMLSelectElement> & Properties<HTMLSelectElement>;
3535
3679
  /**
3536
3680
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
3537
3681
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement
3538
3682
  */
3539
- slot: HTMLSlotElementAttributes<HTMLSlotElement>;
3683
+ slot: HTMLSlotElementAttributes<HTMLSlotElement> & Properties<HTMLSlotElement>;
3540
3684
  /**
3541
3685
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
3542
3686
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3543
3687
  */
3544
- small: HTMLAttributes<HTMLElement>;
3688
+ small: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3545
3689
  /**
3546
3690
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
3547
3691
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
3548
3692
  */
3549
- source: SourceHTMLAttributes<HTMLSourceElement>;
3693
+ source: SourceHTMLAttributes<HTMLSourceElement> & Properties<HTMLSourceElement>;
3550
3694
  /**
3551
3695
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
3552
3696
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement
3553
3697
  */
3554
- span: HTMLAttributes<HTMLSpanElement>;
3698
+ span: HTMLAttributes<HTMLSpanElement> & Properties<HTMLSpanElement>;
3555
3699
  /**
3556
3700
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
3557
3701
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3558
3702
  */
3559
- strong: HTMLAttributes<HTMLElement>;
3703
+ strong: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3560
3704
  /**
3561
3705
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
3562
3706
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement
3563
3707
  */
3564
- style: StyleHTMLAttributes<HTMLStyleElement>;
3708
+ style: StyleHTMLAttributes<HTMLStyleElement> & Properties<HTMLStyleElement>;
3565
3709
  /**
3566
3710
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
3567
3711
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3568
3712
  */
3569
- sub: HTMLAttributes<HTMLElement>;
3713
+ sub: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3570
3714
  /**
3571
3715
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
3572
3716
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3573
3717
  */
3574
- summary: HTMLAttributes<HTMLElement>;
3718
+ summary: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3575
3719
  /**
3576
3720
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
3577
3721
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3578
3722
  */
3579
- sup: HTMLAttributes<HTMLElement>;
3723
+ sup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3580
3724
  /**
3581
3725
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
3582
3726
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement
3583
3727
  */
3584
- table: HTMLAttributes<HTMLTableElement>;
3728
+ table: HTMLAttributes<HTMLTableElement> & Properties<HTMLTableElement>;
3585
3729
  /**
3586
3730
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
3587
3731
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3588
3732
  */
3589
- tbody: HTMLAttributes<HTMLTableSectionElement>;
3733
+ tbody: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3590
3734
  /**
3591
3735
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
3592
3736
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3593
3737
  */
3594
- td: TdHTMLAttributes<HTMLTableCellElement>;
3738
+ td: TdHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3595
3739
  /**
3596
3740
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
3597
3741
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement
3598
3742
  */
3599
- template: TemplateHTMLAttributes<HTMLTemplateElement>;
3743
+ template: TemplateHTMLAttributes<HTMLTemplateElement> & Properties<HTMLTemplateElement>;
3600
3744
  /**
3601
3745
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
3602
3746
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
3603
3747
  */
3604
- textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
3748
+ textarea: TextareaHTMLAttributes<HTMLTextAreaElement> & Properties<HTMLTextAreaElement>;
3605
3749
  /**
3606
3750
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
3607
3751
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3608
3752
  */
3609
- tfoot: HTMLAttributes<HTMLTableSectionElement>;
3753
+ tfoot: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3610
3754
  /**
3611
3755
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
3612
3756
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3613
3757
  */
3614
- th: ThHTMLAttributes<HTMLTableCellElement>;
3758
+ th: ThHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3615
3759
  /**
3616
3760
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
3617
3761
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3618
3762
  */
3619
- thead: HTMLAttributes<HTMLTableSectionElement>;
3763
+ thead: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3620
3764
  /**
3621
3765
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
3622
3766
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement
3623
3767
  */
3624
- time: TimeHTMLAttributes<HTMLTimeElement>;
3768
+ time: TimeHTMLAttributes<HTMLTimeElement> & Properties<HTMLTimeElement>;
3625
3769
  /**
3626
3770
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
3627
3771
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement
3628
3772
  */
3629
- title: HTMLAttributes<HTMLTitleElement>;
3773
+ title: HTMLAttributes<HTMLTitleElement> & Properties<HTMLTitleElement>;
3630
3774
  /**
3631
3775
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
3632
3776
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement
3633
3777
  */
3634
- tr: HTMLAttributes<HTMLTableRowElement>;
3778
+ tr: HTMLAttributes<HTMLTableRowElement> & Properties<HTMLTableRowElement>;
3635
3779
  /**
3636
3780
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
3637
3781
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTrackElement
3638
3782
  */
3639
- track: TrackHTMLAttributes<HTMLTrackElement>;
3783
+ track: TrackHTMLAttributes<HTMLTrackElement> & Properties<HTMLTrackElement>;
3640
3784
  /**
3641
3785
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
3642
3786
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3643
3787
  */
3644
- u: HTMLAttributes<HTMLElement>;
3788
+ u: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3645
3789
  /**
3646
3790
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
3647
3791
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement
3648
3792
  */
3649
- ul: HTMLAttributes<HTMLUListElement>;
3793
+ ul: HTMLAttributes<HTMLUListElement> & Properties<HTMLUListElement>;
3650
3794
  /**
3651
3795
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
3652
3796
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3653
3797
  */
3654
- var: HTMLAttributes<HTMLElement>;
3798
+ var: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3655
3799
  /**
3656
3800
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
3657
3801
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement
3658
3802
  */
3659
- video: VideoHTMLAttributes<HTMLVideoElement>;
3803
+ video: VideoHTMLAttributes<HTMLVideoElement> & Properties<HTMLVideoElement>;
3660
3804
  /**
3661
3805
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
3662
3806
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3663
3807
  */
3664
- wbr: HTMLAttributes<HTMLElement>;
3808
+ wbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3665
3809
  /** @url https://www.electronjs.org/docs/latest/api/webview-tag */
3666
- webview: WebViewHTMLAttributes<HTMLElement>;
3810
+ webview: WebViewHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3667
3811
  }
3668
3812
  /** @type {HTMLElementDeprecatedTagNameMap} */
3669
3813
  interface HTMLElementDeprecatedTags {
@@ -3672,25 +3816,25 @@ export namespace JSX {
3672
3816
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
3673
3817
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3674
3818
  */
3675
- big: HTMLAttributes<HTMLElement>;
3819
+ big: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3676
3820
  /**
3677
3821
  * @deprecated
3678
3822
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3679
3823
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3680
3824
  */
3681
- keygen: KeygenHTMLAttributes<HTMLUnknownElement>;
3825
+ keygen: KeygenHTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3682
3826
  /**
3683
3827
  * @deprecated
3684
3828
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
3685
3829
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3686
3830
  */
3687
- menuitem: HTMLAttributes<HTMLUnknownElement>;
3831
+ menuitem: HTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3688
3832
  /**
3689
3833
  * @deprecated
3690
3834
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
3691
3835
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParamElement
3692
3836
  */
3693
- param: ParamHTMLAttributes<HTMLParamElement>;
3837
+ param: ParamHTMLAttributes<HTMLParamElement> & Properties<HTMLParamElement>;
3694
3838
  }
3695
3839
  /** @type {SVGElementTagNameMap} */
3696
3840
  interface SVGElementTags {
@@ -3698,297 +3842,317 @@ export namespace JSX {
3698
3842
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
3699
3843
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement
3700
3844
  */
3701
- animate: AnimateSVGAttributes<SVGAnimateElement>;
3845
+ animate: AnimateSVGAttributes<SVGAnimateElement> & Properties<SVGAnimateElement>;
3702
3846
  /**
3703
3847
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion
3704
3848
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement
3705
3849
  */
3706
- animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
3850
+ animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement> &
3851
+ Properties<SVGAnimateMotionElement>;
3707
3852
  /**
3708
3853
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform
3709
3854
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement
3710
3855
  */
3711
- animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
3856
+ animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement> &
3857
+ Properties<SVGAnimateTransformElement>;
3712
3858
  /**
3713
3859
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
3714
3860
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement
3715
3861
  */
3716
- circle: CircleSVGAttributes<SVGCircleElement>;
3862
+ circle: CircleSVGAttributes<SVGCircleElement> & Properties<SVGCircleElement>;
3717
3863
  /**
3718
3864
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath
3719
3865
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
3720
3866
  */
3721
- clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
3867
+ clipPath: ClipPathSVGAttributes<SVGClipPathElement> & Properties<SVGClipPathElement>;
3722
3868
  /**
3723
3869
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
3724
3870
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDefsElement
3725
3871
  */
3726
- defs: DefsSVGAttributes<SVGDefsElement>;
3872
+ defs: DefsSVGAttributes<SVGDefsElement> & Properties<SVGDefsElement>;
3727
3873
  /**
3728
3874
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
3729
3875
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDescElement
3730
3876
  */
3731
- desc: DescSVGAttributes<SVGDescElement>;
3877
+ desc: DescSVGAttributes<SVGDescElement> & Properties<SVGDescElement>;
3732
3878
  /**
3733
3879
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
3734
3880
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement
3735
3881
  */
3736
- ellipse: EllipseSVGAttributes<SVGEllipseElement>;
3882
+ ellipse: EllipseSVGAttributes<SVGEllipseElement> & Properties<SVGEllipseElement>;
3737
3883
  /**
3738
3884
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend
3739
3885
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
3740
3886
  */
3741
- feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
3887
+ feBlend: FeBlendSVGAttributes<SVGFEBlendElement> & Properties<SVGFEBlendElement>;
3742
3888
  /**
3743
3889
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix
3744
3890
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement
3745
3891
  */
3746
- feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
3892
+ feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement> &
3893
+ Properties<SVGFEColorMatrixElement>;
3747
3894
  /**
3748
3895
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer
3749
3896
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElemen
3750
3897
  */
3751
- feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
3898
+ feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement> &
3899
+ Properties<SVGFEComponentTransferElement>;
3752
3900
  /**
3753
3901
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite
3754
3902
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
3755
3903
  */
3756
- feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
3904
+ feComposite: FeCompositeSVGAttributes<SVGFECompositeElement> &
3905
+ Properties<SVGFECompositeElement>;
3757
3906
  /**
3758
3907
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix
3759
3908
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEConvolveMatrixElement
3760
3909
  */
3761
- feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
3910
+ feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement> &
3911
+ Properties<SVGFEConvolveMatrixElement>;
3762
3912
  /**
3763
3913
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting
3764
3914
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDiffuseLightingElement
3765
3915
  */
3766
- feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
3916
+ feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement> &
3917
+ Properties<SVGFEDiffuseLightingElement>;
3767
3918
  /**
3768
3919
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap
3769
3920
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDisplacementMapElement
3770
3921
  */
3771
- feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
3922
+ feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement> &
3923
+ Properties<SVGFEDisplacementMapElement>;
3772
3924
  /**
3773
3925
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight
3774
3926
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
3775
3927
  */
3776
- feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
3928
+ feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement> &
3929
+ Properties<SVGFEDistantLightElement>;
3777
3930
  /**
3778
3931
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow
3779
3932
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDropShadowElement
3780
3933
  */
3781
- feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement>;
3934
+ feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement> &
3935
+ Properties<SVGFEDropShadowElement>;
3782
3936
  /**
3783
3937
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood
3784
3938
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFloodElement
3785
3939
  */
3786
- feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
3940
+ feFlood: FeFloodSVGAttributes<SVGFEFloodElement> & Properties<SVGFEFloodElement>;
3787
3941
  /**
3788
3942
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA
3789
3943
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncAElement
3790
3944
  */
3791
- feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
3945
+ feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement> & Properties<SVGFEFuncAElement>;
3792
3946
  /**
3793
3947
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB
3794
3948
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncBElement
3795
3949
  */
3796
- feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
3950
+ feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement> & Properties<SVGFEFuncBElement>;
3797
3951
  /**
3798
3952
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG
3799
3953
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncGElement
3800
3954
  */
3801
- feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
3955
+ feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement> & Properties<SVGFEFuncGElement>;
3802
3956
  /**
3803
3957
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR
3804
3958
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncRElement
3805
3959
  */
3806
- feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
3960
+ feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement> & Properties<SVGFEFuncRElement>;
3807
3961
  /**
3808
3962
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur
3809
3963
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEGaussianBlurElement
3810
3964
  */
3811
- feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
3965
+ feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement> &
3966
+ Properties<SVGFEGaussianBlurElement>;
3812
3967
  /**
3813
3968
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage
3814
3969
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement
3815
3970
  */
3816
- feImage: FeImageSVGAttributes<SVGFEImageElement>;
3971
+ feImage: FeImageSVGAttributes<SVGFEImageElement> & Properties<SVGFEImageElement>;
3817
3972
  /**
3818
3973
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge
3819
3974
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement
3820
3975
  */
3821
- feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
3976
+ feMerge: FeMergeSVGAttributes<SVGFEMergeElement> & Properties<SVGFEMergeElement>;
3822
3977
  /**
3823
3978
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode
3824
3979
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
3825
3980
  */
3826
- feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
3981
+ feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement> &
3982
+ Properties<SVGFEMergeNodeElement>;
3827
3983
  /**
3828
3984
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology
3829
3985
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMorphologyElement
3830
3986
  */
3831
- feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
3987
+ feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement> &
3988
+ Properties<SVGFEMorphologyElement>;
3832
3989
  /**
3833
3990
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset
3834
3991
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEOffsetElement
3835
3992
  */
3836
- feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
3993
+ feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement> & Properties<SVGFEOffsetElement>;
3837
3994
  /**
3838
3995
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight
3839
3996
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
3840
3997
  */
3841
- fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
3998
+ fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement> &
3999
+ Properties<SVGFEPointLightElement>;
3842
4000
  /**
3843
4001
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting
3844
4002
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
3845
4003
  */
3846
- feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
4004
+ feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement> &
4005
+ Properties<SVGFESpecularLightingElement>;
3847
4006
  /**
3848
4007
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight
3849
4008
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
3850
4009
  */
3851
- feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
4010
+ feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement> &
4011
+ Properties<SVGFESpotLightElement>;
3852
4012
  /**
3853
4013
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile
3854
4014
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETileElement
3855
4015
  */
3856
- feTile: FeTileSVGAttributes<SVGFETileElement>;
4016
+ feTile: FeTileSVGAttributes<SVGFETileElement> & Properties<SVGFETileElement>;
3857
4017
  /**
3858
4018
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence
3859
4019
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
3860
4020
  */
3861
- feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
4021
+ feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement> &
4022
+ Properties<SVGFETurbulenceElement>;
3862
4023
  /**
3863
4024
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter
3864
4025
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFilterElement
3865
4026
  */
3866
- filter: FilterSVGAttributes<SVGFilterElement>;
4027
+ filter: FilterSVGAttributes<SVGFilterElement> & Properties<SVGFilterElement>;
3867
4028
  /**
3868
4029
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject
3869
4030
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGForeignObjectElement
3870
4031
  */
3871
- foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
4032
+ foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement> &
4033
+ Properties<SVGForeignObjectElement>;
3872
4034
  /**
3873
4035
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
3874
4036
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGGElement
3875
4037
  */
3876
- g: GSVGAttributes<SVGGElement>;
4038
+ g: GSVGAttributes<SVGGElement> & Properties<SVGGElement>;
3877
4039
  /**
3878
4040
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
3879
4041
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGImageElement
3880
4042
  */
3881
- image: ImageSVGAttributes<SVGImageElement>;
4043
+ image: ImageSVGAttributes<SVGImageElement> & Properties<SVGImageElement>;
3882
4044
  /**
3883
4045
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
3884
4046
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
3885
4047
  */
3886
- line: LineSVGAttributes<SVGLineElement>;
4048
+ line: LineSVGAttributes<SVGLineElement> & Properties<SVGLineElement>;
3887
4049
  /**
3888
4050
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
3889
4051
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
3890
4052
  */
3891
- linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
4053
+ linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement> &
4054
+ Properties<SVGLinearGradientElement>;
3892
4055
  /**
3893
4056
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker
3894
4057
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMarkerElement
3895
4058
  */
3896
- marker: MarkerSVGAttributes<SVGMarkerElement>;
4059
+ marker: MarkerSVGAttributes<SVGMarkerElement> & Properties<SVGMarkerElement>;
3897
4060
  /**
3898
4061
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask
3899
4062
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement
3900
4063
  */
3901
- mask: MaskSVGAttributes<SVGMaskElement>;
4064
+ mask: MaskSVGAttributes<SVGMaskElement> & Properties<SVGMaskElement>;
3902
4065
  /**
3903
4066
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata
3904
4067
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMetadataElement
3905
4068
  */
3906
- metadata: MetadataSVGAttributes<SVGMetadataElement>;
4069
+ metadata: MetadataSVGAttributes<SVGMetadataElement> & Properties<SVGMetadataElement>;
3907
4070
  /**
3908
4071
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath
3909
4072
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
3910
4073
  */
3911
- mpath: MPathSVGAttributes<SVGMPathElement>;
4074
+ mpath: MPathSVGAttributes<SVGMPathElement> & Properties<SVGMPathElement>;
3912
4075
  /**
3913
4076
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
3914
4077
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPathElement
3915
4078
  */
3916
- path: PathSVGAttributes<SVGPathElement>;
4079
+ path: PathSVGAttributes<SVGPathElement> & Properties<SVGPathElement>;
3917
4080
  /**
3918
4081
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern
3919
4082
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPatternElement
3920
4083
  */
3921
- pattern: PatternSVGAttributes<SVGPatternElement>;
4084
+ pattern: PatternSVGAttributes<SVGPatternElement> & Properties<SVGPatternElement>;
3922
4085
  /**
3923
4086
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
3924
4087
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolygonElement
3925
4088
  */
3926
- polygon: PolygonSVGAttributes<SVGPolygonElement>;
4089
+ polygon: PolygonSVGAttributes<SVGPolygonElement> & Properties<SVGPolygonElement>;
3927
4090
  /**
3928
4091
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
3929
4092
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolylineElement
3930
4093
  */
3931
- polyline: PolylineSVGAttributes<SVGPolylineElement>;
4094
+ polyline: PolylineSVGAttributes<SVGPolylineElement> & Properties<SVGPolylineElement>;
3932
4095
  /**
3933
4096
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
3934
4097
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
3935
4098
  */
3936
- radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
4099
+ radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement> &
4100
+ Properties<SVGRadialGradientElement>;
3937
4101
  /**
3938
4102
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
3939
4103
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRectElement
3940
4104
  */
3941
- rect: RectSVGAttributes<SVGRectElement>;
4105
+ rect: RectSVGAttributes<SVGRectElement> & Properties<SVGRectElement>;
3942
4106
  /**
3943
4107
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set
3944
4108
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement
3945
4109
  */
3946
- set: SetSVGAttributes<SVGSetElement>;
4110
+ set: SetSVGAttributes<SVGSetElement> & Properties<SVGSetElement>;
3947
4111
  /**
3948
4112
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop
3949
4113
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGStopElement
3950
4114
  */
3951
- stop: StopSVGAttributes<SVGStopElement>;
4115
+ stop: StopSVGAttributes<SVGStopElement> & Properties<SVGStopElement>;
3952
4116
  /**
3953
4117
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
3954
4118
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSVGElement
3955
4119
  */
3956
- svg: SvgSVGAttributes<SVGSVGElement>;
4120
+ svg: SvgSVGAttributes<SVGSVGElement> & Properties<SVGSVGElement>;
3957
4121
  /**
3958
4122
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch
3959
4123
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSwitchElement
3960
4124
  */
3961
- switch: SwitchSVGAttributes<SVGSwitchElement>;
4125
+ switch: SwitchSVGAttributes<SVGSwitchElement> & Properties<SVGSwitchElement>;
3962
4126
  /**
3963
4127
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol
3964
4128
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement
3965
4129
  */
3966
- symbol: SymbolSVGAttributes<SVGSymbolElement>;
4130
+ symbol: SymbolSVGAttributes<SVGSymbolElement> & Properties<SVGSymbolElement>;
3967
4131
  /**
3968
4132
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
3969
4133
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextElement
3970
4134
  */
3971
- text: TextSVGAttributes<SVGTextElement>;
4135
+ text: TextSVGAttributes<SVGTextElement> & Properties<SVGTextElement>;
3972
4136
  /**
3973
4137
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath
3974
4138
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPathElement
3975
4139
  */
3976
- textPath: TextPathSVGAttributes<SVGTextPathElement>;
4140
+ textPath: TextPathSVGAttributes<SVGTextPathElement> & Properties<SVGTextPathElement>;
3977
4141
  /**
3978
4142
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan
3979
4143
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTSpanElement
3980
4144
  */
3981
- tspan: TSpanSVGAttributes<SVGTSpanElement>;
4145
+ tspan: TSpanSVGAttributes<SVGTSpanElement> & Properties<SVGTSpanElement>;
3982
4146
  /**
3983
4147
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
3984
4148
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGUseElement
3985
4149
  */
3986
- use: UseSVGAttributes<SVGUseElement>;
4150
+ use: UseSVGAttributes<SVGUseElement> & Properties<SVGUseElement>;
3987
4151
  /**
3988
4152
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view
3989
4153
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGViewElement
3990
4154
  */
3991
- view: ViewSVGAttributes<SVGViewElement>;
4155
+ view: ViewSVGAttributes<SVGViewElement> & Properties<SVGViewElement>;
3992
4156
  }
3993
4157
 
3994
4158
  interface MathMLElementTags {
@@ -3996,7 +4160,7 @@ export namespace JSX {
3996
4160
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation
3997
4161
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3998
4162
  */
3999
- annotation: MathMLAnnotationElementAttributes<MathMLElement>;
4163
+ annotation: MathMLAnnotationElementAttributes<MathMLElement> & Properties<MathMLElement>;
4000
4164
  /**
4001
4165
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation-xml
4002
4166
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
@@ -4006,161 +4170,158 @@ export namespace JSX {
4006
4170
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
4007
4171
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4008
4172
  */
4009
- math: MathMLMathElementAttributes<MathMLElement>;
4173
+ math: MathMLMathElementAttributes<MathMLElement> & Properties<MathMLElement>;
4010
4174
  /**
4011
4175
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror
4012
4176
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4013
4177
  */
4014
- merror: MathMLMerrorElementAttributes<MathMLElement>;
4178
+ merror: MathMLMerrorElementAttributes<MathMLElement> & Properties<MathMLElement>;
4015
4179
  /**
4016
4180
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac
4017
4181
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4018
4182
  */
4019
- mfrac: MathMLMfracElementAttributes<MathMLElement>;
4183
+ mfrac: MathMLMfracElementAttributes<MathMLElement> & Properties<MathMLElement>;
4020
4184
  /**
4021
4185
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi
4022
4186
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4023
4187
  */
4024
- mi: MathMLMiElementAttributes<MathMLElement>;
4188
+ mi: MathMLMiElementAttributes<MathMLElement> & Properties<MathMLElement>;
4025
4189
  /**
4026
4190
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts
4027
4191
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4028
4192
  */
4029
- mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement>;
4193
+ mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4030
4194
  /**
4031
4195
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn
4032
4196
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4033
4197
  */
4034
- mn: MathMLMnElementAttributes<MathMLElement>;
4198
+ mn: MathMLMnElementAttributes<MathMLElement> & Properties<MathMLElement>;
4035
4199
  /**
4036
4200
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo
4037
4201
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4038
4202
  */
4039
- mo: MathMLMoElementAttributes<MathMLElement>;
4203
+ mo: MathMLMoElementAttributes<MathMLElement> & Properties<MathMLElement>;
4040
4204
  /**
4041
4205
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover
4042
4206
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4043
4207
  */
4044
- mover: MathMLMoverElementAttributes<MathMLElement>;
4208
+ mover: MathMLMoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4045
4209
  /**
4046
4210
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded
4047
4211
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4048
4212
  */
4049
- mpadded: MathMLMpaddedElementAttributes<MathMLElement>;
4213
+ mpadded: MathMLMpaddedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4050
4214
  /**
4051
4215
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom
4052
4216
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4053
4217
  */
4054
- mphantom: MathMLMphantomElementAttributes<MathMLElement>;
4218
+ mphantom: MathMLMphantomElementAttributes<MathMLElement> & Properties<MathMLElement>;
4055
4219
  /**
4056
4220
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mprescripts
4057
4221
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4058
4222
  */
4059
- mprescripts: MathMLMprescriptsElementAttributes<MathMLElement>;
4223
+ mprescripts: MathMLMprescriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4060
4224
  /**
4061
4225
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot
4062
4226
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4063
4227
  */
4064
- mroot: MathMLMrootElementAttributes<MathMLElement>;
4228
+ mroot: MathMLMrootElementAttributes<MathMLElement> & Properties<MathMLElement>;
4065
4229
  /**
4066
4230
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow
4067
4231
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4068
4232
  */
4069
- mrow: MathMLMrowElementAttributes<MathMLElement>;
4233
+ mrow: MathMLMrowElementAttributes<MathMLElement> & Properties<MathMLElement>;
4070
4234
  /**
4071
4235
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms
4072
4236
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4073
4237
  */
4074
- ms: MathMLMsElementAttributes<MathMLElement>;
4238
+ ms: MathMLMsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4075
4239
  /**
4076
4240
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace
4077
4241
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4078
4242
  */
4079
- mspace: MathMLMspaceElementAttributes<MathMLElement>;
4243
+ mspace: MathMLMspaceElementAttributes<MathMLElement> & Properties<MathMLElement>;
4080
4244
  /**
4081
4245
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt
4082
4246
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4083
4247
  */
4084
- msqrt: MathMLMsqrtElementAttributes<MathMLElement>;
4248
+ msqrt: MathMLMsqrtElementAttributes<MathMLElement> & Properties<MathMLElement>;
4085
4249
  /**
4086
4250
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
4087
4251
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4088
4252
  */
4089
- mstyle: MathMLMstyleElementAttributes<MathMLElement>;
4253
+ mstyle: MathMLMstyleElementAttributes<MathMLElement> & Properties<MathMLElement>;
4090
4254
  /**
4091
4255
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub
4092
4256
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4093
4257
  */
4094
- msub: MathMLMsubElementAttributes<MathMLElement>;
4258
+ msub: MathMLMsubElementAttributes<MathMLElement> & Properties<MathMLElement>;
4095
4259
  /**
4096
4260
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup
4097
4261
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4098
4262
  */
4099
- msubsup: MathMLMsubsupElementAttributes<MathMLElement>;
4263
+ msubsup: MathMLMsubsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4100
4264
  /**
4101
4265
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup
4102
4266
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4103
4267
  */
4104
- msup: MathMLMsupElementAttributes<MathMLElement>;
4268
+ msup: MathMLMsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4105
4269
  /**
4106
4270
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable
4107
4271
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4108
4272
  */
4109
- mtable: MathMLMtableElementAttributes<MathMLElement>;
4273
+ mtable: MathMLMtableElementAttributes<MathMLElement> & Properties<MathMLElement>;
4110
4274
  /**
4111
4275
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd
4112
4276
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4113
4277
  */
4114
- mtd: MathMLMtdElementAttributes<MathMLElement>;
4278
+ mtd: MathMLMtdElementAttributes<MathMLElement> & Properties<MathMLElement>;
4115
4279
  /**
4116
4280
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext
4117
4281
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4118
4282
  */
4119
- mtext: MathMLMtextElementAttributes<MathMLElement>;
4283
+ mtext: MathMLMtextElementAttributes<MathMLElement> & Properties<MathMLElement>;
4120
4284
  /**
4121
4285
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr
4122
4286
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4123
4287
  */
4124
- mtr: MathMLMtrElementAttributes<MathMLElement>;
4288
+ mtr: MathMLMtrElementAttributes<MathMLElement> & Properties<MathMLElement>;
4125
4289
  /**
4126
4290
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder
4127
4291
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4128
4292
  */
4129
- munder: MathMLMunderElementAttributes<MathMLElement>;
4293
+ munder: MathMLMunderElementAttributes<MathMLElement> & Properties<MathMLElement>;
4130
4294
  /**
4131
4295
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover
4132
4296
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4133
4297
  */
4134
- munderover: MathMLMunderoverElementAttributes<MathMLElement>;
4298
+ munderover: MathMLMunderoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4135
4299
  /**
4136
4300
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics
4137
4301
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4138
4302
  */
4139
- semantics: MathMLSemanticsElementAttributes<MathMLElement>;
4303
+ semantics: MathMLSemanticsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4140
4304
  /**
4141
4305
  * @non-standard
4142
4306
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose
4143
4307
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4144
4308
  */
4145
- menclose: MathMLMencloseElementAttributes<MathMLElement>;
4309
+ menclose: MathMLMencloseElementAttributes<MathMLElement> & Properties<MathMLElement>;
4146
4310
  /**
4147
4311
  * @deprecated
4148
4312
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/maction
4149
4313
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4150
4314
  */
4151
- maction: MathMLMactionElementAttributes<MathMLElement>;
4315
+ maction: MathMLMactionElementAttributes<MathMLElement> & Properties<MathMLElement>;
4152
4316
  /**
4153
4317
  * @deprecated
4154
4318
  * @non-standard
4155
4319
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced
4156
4320
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4157
4321
  */
4158
- mfenced: MathMLMfencedElementAttributes<MathMLElement>;
4322
+ mfenced: MathMLMfencedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4159
4323
  }
4160
4324
 
4161
4325
  interface IntrinsicElements
4162
- extends HTMLElementTags,
4163
- HTMLElementDeprecatedTags,
4164
- SVGElementTags,
4165
- MathMLElementTags {}
4326
+ extends HTMLElementTags, HTMLElementDeprecatedTags, SVGElementTags, MathMLElementTags {}
4166
4327
  }