solid-js 2.0.0-beta.5 → 2.0.0-beta.7

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.
package/types/jsx.d.ts CHANGED
@@ -4,6 +4,7 @@
4
4
  */
5
5
 
6
6
  import * as csstype from "csstype";
7
+ import type { PropKey, WidenPropValue } from "./jsx-properties.js";
7
8
 
8
9
  /**
9
10
  * Originally based on JSX types for Surplus and Inferno and adapted for `dom-expressions`.
@@ -114,6 +115,19 @@ import * as csstype from "csstype";
114
115
 
115
116
  type DOMElement = Element;
116
117
 
118
+ /**
119
+ * Fallback declarations for event types that are not yet defined in older TypeScript
120
+ * `lib.dom.d.ts` versions. When the user's TS lib defines these, declaration merging
121
+ * yields the full specialized type; otherwise these serve as a bare `Event` fallback.
122
+ */
123
+ declare global {
124
+ interface CommandEvent extends Event {}
125
+ interface PageRevealEvent extends Event {}
126
+ interface PageSwapEvent extends Event {}
127
+ interface SnapEvent extends Event {}
128
+ interface TimeEvent extends Event {}
129
+ }
130
+
117
131
  export namespace JSX {
118
132
  // START - difference between `jsx.d.ts` and `jsx-h.d.ts`
119
133
  type FunctionMaybe<T = unknown> = { (): T } | T;
@@ -162,7 +176,8 @@ export namespace JSX {
162
176
  > = EHandler | BoundEventHandler<T, E, EHandler>;
163
177
 
164
178
  interface EventHandlerWithOptions<T, E extends Event, EHandler = EventHandler<T, E>>
165
- extends AddEventListenerOptions, EventListenerOptions {
179
+ extends AddEventListenerOptions,
180
+ EventListenerOptions {
166
181
  handleEvent: EHandler;
167
182
  }
168
183
 
@@ -251,6 +266,16 @@ export namespace JSX {
251
266
  [Key in keyof CustomEvents as `on:${Key}`]?: EventHandlerWithOptionsUnion<T, CustomEvents[Key]>;
252
267
  };
253
268
 
269
+ /**
270
+ * Writable, element-specific DOM properties exposed as `prop:*` attributes, auto-derived
271
+ * from the element interface `T`. See `./jsx-properties.d.ts` for the filtering rules.
272
+ * Existing element interfaces can locally disable an auto-derived key with
273
+ * `"prop:foo"?: never;` to redirect users to a plain attribute form.
274
+ */
275
+ type Properties<T> = {
276
+ [K in keyof T as PropKey<T, K>]?: WidenPropValue<T[K]>;
277
+ };
278
+
254
279
  // CSS
255
280
 
256
281
  interface CSSProperties extends csstype.PropertiesHyphen {
@@ -684,6 +709,9 @@ export namespace JSX {
684
709
  onAfterPrint?: EventHandlerUnion<T, Event> | undefined;
685
710
  onBeforePrint?: EventHandlerUnion<T, Event> | undefined;
686
711
  onBeforeUnload?: EventHandlerUnion<T, BeforeUnloadEvent> | undefined;
712
+ onDeviceMotion?: EventHandlerUnion<T, DeviceMotionEvent> | undefined;
713
+ onDeviceOrientation?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
714
+ onDeviceOrientationAbsolute?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
687
715
  onGamepadConnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
688
716
  onGamepadDisconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
689
717
  onHashchange?: EventHandlerUnion<T, HashChangeEvent> | undefined;
@@ -692,12 +720,12 @@ export namespace JSX {
692
720
  onMessageError?: EventHandlerUnion<T, MessageEvent> | undefined;
693
721
  onOffline?: EventHandlerUnion<T, Event> | undefined;
694
722
  onOnline?: EventHandlerUnion<T, Event> | undefined;
723
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
724
+ onOrientationChange?: EventHandlerUnion<T, Event> | undefined;
695
725
  onPageHide?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
696
- // TODO `PageRevealEvent` is currently undefined on TS
697
- onPageReveal?: EventHandlerUnion<T, Event> | undefined;
726
+ onPageReveal?: EventHandlerUnion<T, PageRevealEvent> | undefined;
698
727
  onPageShow?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
699
- // TODO `PageSwapEvent` is currently undefined on TS
700
- onPageSwap?: EventHandlerUnion<T, Event> | undefined;
728
+ onPageSwap?: EventHandlerUnion<T, PageSwapEvent> | undefined;
701
729
  onPopstate?: EventHandlerUnion<T, PopStateEvent> | undefined;
702
730
  onRejectionHandled?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
703
731
  onStorage?: EventHandlerUnion<T, StorageEvent> | undefined;
@@ -707,6 +735,11 @@ export namespace JSX {
707
735
  "on:afterprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
708
736
  "on:beforeprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
709
737
  "on:beforeunload"?: EventHandlerWithOptionsUnion<T, BeforeUnloadEvent> | undefined;
738
+ "on:devicemotion"?: EventHandlerWithOptionsUnion<T, DeviceMotionEvent> | undefined;
739
+ "on:deviceorientation"?: EventHandlerWithOptionsUnion<T, DeviceOrientationEvent> | undefined;
740
+ "on:deviceorientationabsolute"?:
741
+ | EventHandlerWithOptionsUnion<T, DeviceOrientationEvent>
742
+ | undefined;
710
743
  "on:gamepadconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
711
744
  "on:gamepaddisconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
712
745
  "on:hashchange"?: EventHandlerWithOptionsUnion<T, HashChangeEvent> | undefined;
@@ -715,12 +748,12 @@ export namespace JSX {
715
748
  "on:messageerror"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
716
749
  "on:offline"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
717
750
  "on:online"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
751
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
752
+ "on:orientationchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
718
753
  "on:pagehide"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
719
- // TODO `PageRevealEvent` is currently undefined in TS
720
- "on:pagereveal"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
754
+ "on:pagereveal"?: EventHandlerWithOptionsUnion<T, PageRevealEvent> | undefined;
721
755
  "on:pageshow"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
722
- // TODO `PageSwapEvent` is currently undefined in TS
723
- "on:pageswap"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
756
+ "on:pageswap"?: EventHandlerWithOptionsUnion<T, PageSwapEvent> | undefined;
724
757
  "on:popstate"?: EventHandlerWithOptionsUnion<T, PopStateEvent> | undefined;
725
758
  "on:rejectionhandled"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
726
759
  "on:storage"?: EventHandlerWithOptionsUnion<T, StorageEvent> | undefined;
@@ -757,8 +790,7 @@ export namespace JSX {
757
790
  onChange?: ChangeEventHandlerUnion<T, Event> | undefined;
758
791
  onClick?: EventHandlerUnion<T, MouseEvent> | undefined;
759
792
  onClose?: EventHandlerUnion<T, Event> | undefined;
760
- // TODO `CommandEvent` is currently undefined in TS
761
- onCommand?: EventHandlerUnion<T, Event> | undefined;
793
+ onCommand?: EventHandlerUnion<T, CommandEvent> | undefined;
762
794
  onCompositionEnd?: EventHandlerUnion<T, CompositionEvent> | undefined;
763
795
  onCompositionStart?: EventHandlerUnion<T, CompositionEvent> | undefined;
764
796
  onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
@@ -827,10 +859,8 @@ export namespace JSX {
827
859
  onResize?: EventHandlerUnion<T, UIEvent> | undefined;
828
860
  onScroll?: EventHandlerUnion<T, Event> | undefined;
829
861
  onScrollEnd?: EventHandlerUnion<T, Event> | undefined;
830
- // todo `SnapEvent` is currently undefined in TS
831
- onScrollSnapChange?: EventHandlerUnion<T, Event> | undefined;
832
- // todo `SnapEvent` is currently undefined in TS
833
- onScrollSnapChanging?: EventHandlerUnion<T, Event> | undefined;
862
+ onScrollSnapChange?: EventHandlerUnion<T, SnapEvent> | undefined;
863
+ onScrollSnapChanging?: EventHandlerUnion<T, SnapEvent> | undefined;
834
864
  onSecurityPolicyViolation?: EventHandlerUnion<T, SecurityPolicyViolationEvent> | undefined;
835
865
  onSeeked?: EventHandlerUnion<T, Event> | undefined;
836
866
  onSeeking?: EventHandlerUnion<T, Event> | undefined;
@@ -879,8 +909,7 @@ export namespace JSX {
879
909
  "on:change"?: EventHandlerWithOptionsUnion<T, Event, ChangeEventHandler<T, Event>> | undefined;
880
910
  "on:click"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
881
911
  "on:close"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
882
- // TODO `CommandEvent` is currently undefined in TS
883
- "on:command"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
912
+ "on:command"?: EventHandlerWithOptionsUnion<T, CommandEvent> | undefined;
884
913
  "on:compositionend"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
885
914
  "on:compositionstart"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
886
915
  "on:compositionupdate"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
@@ -957,10 +986,8 @@ export namespace JSX {
957
986
  "on:resize"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
958
987
  "on:scroll"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
959
988
  "on:scrollend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
960
- // todo `SnapEvent` is currently undefined in TS
961
- "on:scrollsnapchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
962
- // todo `SnapEvent` is currently undefined in TS
963
- "on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
989
+ "on:scrollsnapchange"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
990
+ "on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
964
991
  "on:securitypolicyviolation"?:
965
992
  | EventHandlerWithOptionsUnion<T, SecurityPolicyViolationEvent>
966
993
  | undefined;
@@ -995,15 +1022,15 @@ export namespace JSX {
995
1022
  ? K extends `on:${infer T}`
996
1023
  ? T
997
1024
  : K extends `on${infer T}`
998
- ? Lowercase<T>
999
- : never
1025
+ ? Lowercase<T>
1026
+ : never
1000
1027
  : never)
1001
1028
  | (keyof EventHandlersElement<any> extends infer K
1002
1029
  ? K extends `on:${infer T}`
1003
1030
  ? T
1004
1031
  : K extends `on${infer T}`
1005
- ? Lowercase<T>
1006
- : never
1032
+ ? Lowercase<T>
1033
+ : never
1007
1034
  : never)
1008
1035
  | (string & {});
1009
1036
 
@@ -1027,8 +1054,7 @@ export namespace JSX {
1027
1054
  * 2. Includes `keys` defined by `Element` and `Node` interfaces.
1028
1055
  */
1029
1056
  interface ElementAttributes<T>
1030
- extends
1031
- CustomAttributes<T>,
1057
+ extends CustomAttributes<T>,
1032
1058
  PropAttributes,
1033
1059
  OnAttributes<T>,
1034
1060
  EventHandlersElement<T>,
@@ -1114,7 +1140,7 @@ export namespace JSX {
1114
1140
  | RemoveAttribute;
1115
1141
  is?: string | RemoveAttribute;
1116
1142
  lang?: string | RemoveAttribute;
1117
- popover?: EnumeratedAcceptsEmpty | "manual" | "auto" | RemoveAttribute;
1143
+ popover?: EnumeratedAcceptsEmpty | "manual" | "auto" | "hint" | RemoveAttribute;
1118
1144
  spellcheck?: EnumeratedPseudoBoolean | EnumeratedAcceptsEmpty | RemoveAttribute;
1119
1145
  title?: string | RemoveAttribute;
1120
1146
  translate?: "yes" | "no" | RemoveAttribute;
@@ -1397,6 +1423,7 @@ export namespace JSX {
1397
1423
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#usage_notes
1398
1424
  */
1399
1425
  tabindex?: never;
1426
+ "prop:tabIndex"?: never;
1400
1427
 
1401
1428
  /** @experimental */
1402
1429
  closedby?: "any" | "closerequest" | "none" | RemoveAttribute;
@@ -1526,8 +1553,7 @@ export namespace JSX {
1526
1553
  alt?: string | RemoveAttribute;
1527
1554
  autocomplete?: HTMLAutocomplete | RemoveAttribute;
1528
1555
  capture?: "user" | "environment" | RemoveAttribute;
1529
- checked?: BooleanAttribute | RemoveAttribute;
1530
- "prop:checked"?: BooleanProperty | RemoveProperty;
1556
+
1531
1557
  colorspace?: string | RemoveAttribute;
1532
1558
  dirname?: string | RemoveAttribute;
1533
1559
  disabled?: BooleanAttribute | RemoveAttribute;
@@ -1581,9 +1607,8 @@ export namespace JSX {
1581
1607
  | "week"
1582
1608
  | (string & {})
1583
1609
  | RemoveAttribute;
1584
- value?: string | string[] | number | RemoveAttribute;
1585
- "prop:value"?: string | string[] | number | RemoveProperty;
1586
1610
  width?: number | string | RemoveAttribute;
1611
+ webkitdirectory?: BooleanAttribute | RemoveAttribute;
1587
1612
 
1588
1613
  /** @non-standard */
1589
1614
  incremental?: BooleanAttribute | RemoveAttribute;
@@ -1592,6 +1617,24 @@ export namespace JSX {
1592
1617
  align?: string | RemoveAttribute;
1593
1618
  /** @deprecated */
1594
1619
  usemap?: string | RemoveAttribute;
1620
+
1621
+ // special cases locked to properties
1622
+
1623
+ checked?: BooleanProperty | RemoveProperty;
1624
+ /** @error use `<input checked={..}/>` instead */
1625
+ "prop:checked"?: never;
1626
+
1627
+ defaultChecked?: BooleanProperty | RemoveProperty;
1628
+ /** @error use `<input defaultChecked={..}/>` instead */
1629
+ "prop:defaultChecked"?: never;
1630
+
1631
+ value?: string | string[] | number | RemoveProperty;
1632
+ /** @error use `<input value={..}/>` instead */
1633
+ "prop:value"?: never;
1634
+
1635
+ defaultValue?: string | string[] | number | RemoveProperty;
1636
+ /** @error use `<input defaultValue={..}/>` instead */
1637
+ "prop:defaultValue"?: never;
1595
1638
  }
1596
1639
  interface ModHTMLAttributes<T> extends HTMLAttributes<T> {
1597
1640
  cite?: string | RemoveAttribute;
@@ -1661,8 +1704,7 @@ export namespace JSX {
1661
1704
  crossorigin?: HTMLCrossorigin | RemoveAttribute;
1662
1705
  disableremoteplayback?: BooleanAttribute | RemoveAttribute;
1663
1706
  loop?: BooleanAttribute | RemoveAttribute;
1664
- muted?: BooleanAttribute | RemoveAttribute;
1665
- "prop:muted"?: BooleanProperty | RemoveProperty;
1707
+
1666
1708
  preload?: "none" | "metadata" | "auto" | EnumeratedAcceptsEmpty | RemoveAttribute;
1667
1709
  src?: string | RemoveAttribute;
1668
1710
 
@@ -1674,6 +1716,16 @@ export namespace JSX {
1674
1716
 
1675
1717
  /** @deprecated */
1676
1718
  mediagroup?: string | RemoveAttribute;
1719
+
1720
+ // special cases locked to properties
1721
+
1722
+ muted?: BooleanProperty | RemoveProperty;
1723
+ /** @error use `<video/audio muted={..}/>` instead */
1724
+ "prop:muted"?: never;
1725
+
1726
+ defaultMuted?: BooleanProperty | RemoveProperty;
1727
+ /** @error use `<video/audio defaultMuted={..}/>` instead */
1728
+ "prop:defaultMuted"?: never;
1677
1729
  }
1678
1730
  interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
1679
1731
  /** @deprecated */
@@ -1765,10 +1817,27 @@ export namespace JSX {
1765
1817
  interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
1766
1818
  disabled?: BooleanAttribute | RemoveAttribute;
1767
1819
  label?: string | RemoveAttribute;
1768
- selected?: BooleanAttribute | RemoveAttribute;
1769
- "prop:selected"?: BooleanProperty | RemoveProperty;
1770
- value?: string | string[] | number | RemoveAttribute;
1771
- "prop:value"?: string | string[] | number | RemoveProperty;
1820
+
1821
+ // special cases locked to properties
1822
+
1823
+ selected?: BooleanProperty | RemoveProperty;
1824
+ /** @error use `<option selected={..}/>` instead */
1825
+ "prop:selected"?: never;
1826
+
1827
+ defaultSelected?: BooleanProperty | RemoveProperty;
1828
+ /** @error use `<option defaultSelected={..}/>` instead */
1829
+ "prop:defaultSelected"?: never;
1830
+
1831
+ value?: string | string[] | number | RemoveProperty;
1832
+ /** @error use `<option value={..}/>` instead */
1833
+ "prop:value"?: never;
1834
+
1835
+ // for sanity
1836
+
1837
+ /** @error This doesn't exists for `<option/>` */
1838
+ "prop:defaultValue"?: never;
1839
+ /** @error This doesn't exists for `<option/>` */
1840
+ defaultValue?: never;
1772
1841
  }
1773
1842
  interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
1774
1843
  for?: string | RemoveAttribute;
@@ -1820,8 +1889,24 @@ export namespace JSX {
1820
1889
  name?: string | RemoveAttribute;
1821
1890
  required?: BooleanAttribute | RemoveAttribute;
1822
1891
  size?: number | string | RemoveAttribute;
1823
- value?: string | string[] | number | RemoveAttribute;
1824
- "prop:value"?: string | string[] | number | RemoveProperty;
1892
+
1893
+ // special cases locked to properties
1894
+
1895
+ value?: string | string[] | number | RemoveProperty;
1896
+ /** @error use `<select value={..}/>` instead */
1897
+ "prop:value"?: never;
1898
+
1899
+ // for sanity
1900
+
1901
+ /** @error use `<option defaultSelected={..}/>` instead */
1902
+ defaultSelected?: never;
1903
+ /** @error use `<option defaultSelected={..}/>` instead */
1904
+ "prop:defaultSelected"?: never;
1905
+
1906
+ /** @error use `<option defaultSelected={..}/>` instead */
1907
+ selected?: never;
1908
+ /** @error use `<option defaultSelected={..}/>` instead */
1909
+ "prop:selected"?: never;
1825
1910
  }
1826
1911
  interface HTMLSlotElementAttributes<T> extends HTMLAttributes<T> {
1827
1912
  name?: string | RemoveAttribute;
@@ -1895,9 +1980,17 @@ export namespace JSX {
1895
1980
  readonly?: BooleanAttribute | RemoveAttribute;
1896
1981
  required?: BooleanAttribute | RemoveAttribute;
1897
1982
  rows?: number | string | RemoveAttribute;
1898
- value?: string | string[] | number | RemoveAttribute;
1899
- "prop:value"?: string | string[] | number | RemoveProperty;
1900
1983
  wrap?: "hard" | "soft" | "off" | RemoveAttribute;
1984
+
1985
+ // special cases locked to properties
1986
+
1987
+ value?: string | string[] | number | RemoveProperty;
1988
+ /** @error use `<textarea value={..}/>` instead */
1989
+ "prop:value"?: never;
1990
+
1991
+ defaultValue?: string | string[] | number | RemoveProperty;
1992
+ /** @error use `<textarea defaultValue={..}/>` instead */
1993
+ "prop:defaultValue"?: never;
1901
1994
  }
1902
1995
  interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
1903
1996
  abbr?: string | RemoveAttribute;
@@ -2224,22 +2317,20 @@ export namespace JSX {
2224
2317
  visibility?: "visible" | "hidden" | "collapse" | "inherit" | RemoveAttribute;
2225
2318
  }
2226
2319
  interface AnimationElementSVGAttributes<T>
2227
- extends SVGAttributes<T>, ExternalResourceSVGAttributes, ConditionalProcessingSVGAttributes {
2228
- // TODO TimeEvent is currently undefined on TS
2229
- onBegin?: EventHandlerUnion<T, Event> | undefined;
2230
- "on:begin"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2320
+ extends SVGAttributes<T>,
2321
+ ExternalResourceSVGAttributes,
2322
+ ConditionalProcessingSVGAttributes {
2323
+ onBegin?: EventHandlerUnion<T, TimeEvent> | undefined;
2324
+ "on:begin"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2231
2325
 
2232
- // TODO TimeEvent is currently undefined on TS
2233
- onEnd?: EventHandlerUnion<T, Event> | undefined;
2234
- "on:end"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2326
+ onEnd?: EventHandlerUnion<T, TimeEvent> | undefined;
2327
+ "on:end"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2235
2328
 
2236
- // TODO TimeEvent is currently undefined on TS
2237
- onRepeat?: EventHandlerUnion<T, Event> | undefined;
2238
- "on:repeat"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2329
+ onRepeat?: EventHandlerUnion<T, TimeEvent> | undefined;
2330
+ "on:repeat"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2239
2331
  }
2240
2332
  interface ContainerElementSVGAttributes<T>
2241
- extends
2242
- SVGAttributes<T>,
2333
+ extends SVGAttributes<T>,
2243
2334
  ShapeElementSVGAttributes<T>,
2244
2335
  Pick<
2245
2336
  PresentationSVGAttributes,
@@ -2253,7 +2344,8 @@ export namespace JSX {
2253
2344
  | "color-rendering"
2254
2345
  > {}
2255
2346
  interface FilterPrimitiveElementSVGAttributes<T>
2256
- extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2347
+ extends SVGAttributes<T>,
2348
+ Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2257
2349
  height?: number | string | RemoveAttribute;
2258
2350
  result?: string | RemoveAttribute;
2259
2351
  width?: number | string | RemoveAttribute;
@@ -2272,15 +2364,16 @@ export namespace JSX {
2272
2364
  viewBox?: string | RemoveAttribute;
2273
2365
  }
2274
2366
  interface GradientElementSVGAttributes<T>
2275
- extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2367
+ extends SVGAttributes<T>,
2368
+ ExternalResourceSVGAttributes,
2369
+ StylableSVGAttributes {
2276
2370
  gradientTransform?: string | RemoveAttribute;
2277
2371
  gradientUnits?: SVGUnits | RemoveAttribute;
2278
2372
  href?: string | RemoveAttribute;
2279
2373
  spreadMethod?: "pad" | "reflect" | "repeat" | RemoveAttribute;
2280
2374
  }
2281
2375
  interface GraphicsElementSVGAttributes<T>
2282
- extends
2283
- SVGAttributes<T>,
2376
+ extends SVGAttributes<T>,
2284
2377
  Pick<
2285
2378
  PresentationSVGAttributes,
2286
2379
  | "clip-rule"
@@ -2296,12 +2389,12 @@ export namespace JSX {
2296
2389
  > {}
2297
2390
  interface LightSourceElementSVGAttributes<T> extends SVGAttributes<T> {}
2298
2391
  interface NewViewportSVGAttributes<T>
2299
- extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2392
+ extends SVGAttributes<T>,
2393
+ Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2300
2394
  viewBox?: string | RemoveAttribute;
2301
2395
  }
2302
2396
  interface ShapeElementSVGAttributes<T>
2303
- extends
2304
- SVGAttributes<T>,
2397
+ extends SVGAttributes<T>,
2305
2398
  Pick<
2306
2399
  PresentationSVGAttributes,
2307
2400
  | "color"
@@ -2320,8 +2413,7 @@ export namespace JSX {
2320
2413
  | "pathLength"
2321
2414
  > {}
2322
2415
  interface TextContentElementSVGAttributes<T>
2323
- extends
2324
- SVGAttributes<T>,
2416
+ extends SVGAttributes<T>,
2325
2417
  Pick<
2326
2418
  PresentationSVGAttributes,
2327
2419
  | "font-family"
@@ -2362,16 +2454,14 @@ export namespace JSX {
2362
2454
  zoomAndPan?: "disable" | "magnify" | RemoveAttribute;
2363
2455
  }
2364
2456
  interface AnimateSVGAttributes<T>
2365
- extends
2366
- AnimationElementSVGAttributes<T>,
2457
+ extends AnimationElementSVGAttributes<T>,
2367
2458
  AnimationAttributeTargetSVGAttributes,
2368
2459
  AnimationTimingSVGAttributes,
2369
2460
  AnimationValueSVGAttributes,
2370
2461
  AnimationAdditionSVGAttributes,
2371
2462
  Pick<PresentationSVGAttributes, "color-interpolation" | "color-rendering"> {}
2372
2463
  interface AnimateMotionSVGAttributes<T>
2373
- extends
2374
- AnimationElementSVGAttributes<T>,
2464
+ extends AnimationElementSVGAttributes<T>,
2375
2465
  AnimationTimingSVGAttributes,
2376
2466
  AnimationValueSVGAttributes,
2377
2467
  AnimationAdditionSVGAttributes {
@@ -2381,8 +2471,7 @@ export namespace JSX {
2381
2471
  rotate?: number | string | "auto" | "auto-reverse" | RemoveAttribute;
2382
2472
  }
2383
2473
  interface AnimateTransformSVGAttributes<T>
2384
- extends
2385
- AnimationElementSVGAttributes<T>,
2474
+ extends AnimationElementSVGAttributes<T>,
2386
2475
  AnimationAttributeTargetSVGAttributes,
2387
2476
  AnimationTimingSVGAttributes,
2388
2477
  AnimationValueSVGAttributes,
@@ -2390,8 +2479,7 @@ export namespace JSX {
2390
2479
  type?: "translate" | "scale" | "rotate" | "skewX" | "skewY" | RemoveAttribute;
2391
2480
  }
2392
2481
  interface CircleSVGAttributes<T>
2393
- extends
2394
- GraphicsElementSVGAttributes<T>,
2482
+ extends GraphicsElementSVGAttributes<T>,
2395
2483
  ShapeElementSVGAttributes<T>,
2396
2484
  ConditionalProcessingSVGAttributes,
2397
2485
  StylableSVGAttributes,
@@ -2402,8 +2490,7 @@ export namespace JSX {
2402
2490
  r?: number | string | RemoveAttribute;
2403
2491
  }
2404
2492
  interface ClipPathSVGAttributes<T>
2405
- extends
2406
- SVGAttributes<T>,
2493
+ extends SVGAttributes<T>,
2407
2494
  ConditionalProcessingSVGAttributes,
2408
2495
  ExternalResourceSVGAttributes,
2409
2496
  StylableSVGAttributes,
@@ -2412,16 +2499,14 @@ export namespace JSX {
2412
2499
  clipPathUnits?: SVGUnits | RemoveAttribute;
2413
2500
  }
2414
2501
  interface DefsSVGAttributes<T>
2415
- extends
2416
- ContainerElementSVGAttributes<T>,
2502
+ extends ContainerElementSVGAttributes<T>,
2417
2503
  ConditionalProcessingSVGAttributes,
2418
2504
  ExternalResourceSVGAttributes,
2419
2505
  StylableSVGAttributes,
2420
2506
  TransformableSVGAttributes {}
2421
2507
  interface DescSVGAttributes<T> extends SVGAttributes<T>, StylableSVGAttributes {}
2422
2508
  interface EllipseSVGAttributes<T>
2423
- extends
2424
- GraphicsElementSVGAttributes<T>,
2509
+ extends GraphicsElementSVGAttributes<T>,
2425
2510
  ShapeElementSVGAttributes<T>,
2426
2511
  ConditionalProcessingSVGAttributes,
2427
2512
  ExternalResourceSVGAttributes,
@@ -2434,28 +2519,24 @@ export namespace JSX {
2434
2519
  ry?: number | string | RemoveAttribute;
2435
2520
  }
2436
2521
  interface FeBlendSVGAttributes<T>
2437
- extends
2438
- FilterPrimitiveElementSVGAttributes<T>,
2522
+ extends FilterPrimitiveElementSVGAttributes<T>,
2439
2523
  DoubleInputFilterSVGAttributes,
2440
2524
  StylableSVGAttributes {
2441
2525
  mode?: "normal" | "multiply" | "screen" | "darken" | "lighten" | RemoveAttribute;
2442
2526
  }
2443
2527
  interface FeColorMatrixSVGAttributes<T>
2444
- extends
2445
- FilterPrimitiveElementSVGAttributes<T>,
2528
+ extends FilterPrimitiveElementSVGAttributes<T>,
2446
2529
  SingleInputFilterSVGAttributes,
2447
2530
  StylableSVGAttributes {
2448
2531
  type?: "matrix" | "saturate" | "hueRotate" | "luminanceToAlpha" | RemoveAttribute;
2449
2532
  values?: string | RemoveAttribute;
2450
2533
  }
2451
2534
  interface FeComponentTransferSVGAttributes<T>
2452
- extends
2453
- FilterPrimitiveElementSVGAttributes<T>,
2535
+ extends FilterPrimitiveElementSVGAttributes<T>,
2454
2536
  SingleInputFilterSVGAttributes,
2455
2537
  StylableSVGAttributes {}
2456
2538
  interface FeCompositeSVGAttributes<T>
2457
- extends
2458
- FilterPrimitiveElementSVGAttributes<T>,
2539
+ extends FilterPrimitiveElementSVGAttributes<T>,
2459
2540
  DoubleInputFilterSVGAttributes,
2460
2541
  StylableSVGAttributes {
2461
2542
  k1?: number | string | RemoveAttribute;
@@ -2465,8 +2546,7 @@ export namespace JSX {
2465
2546
  operator?: "over" | "in" | "out" | "atop" | "xor" | "arithmetic" | RemoveAttribute;
2466
2547
  }
2467
2548
  interface FeConvolveMatrixSVGAttributes<T>
2468
- extends
2469
- FilterPrimitiveElementSVGAttributes<T>,
2549
+ extends FilterPrimitiveElementSVGAttributes<T>,
2470
2550
  SingleInputFilterSVGAttributes,
2471
2551
  StylableSVGAttributes {
2472
2552
  bias?: number | string | RemoveAttribute;
@@ -2480,8 +2560,7 @@ export namespace JSX {
2480
2560
  targetY?: number | string | RemoveAttribute;
2481
2561
  }
2482
2562
  interface FeDiffuseLightingSVGAttributes<T>
2483
- extends
2484
- FilterPrimitiveElementSVGAttributes<T>,
2563
+ extends FilterPrimitiveElementSVGAttributes<T>,
2485
2564
  SingleInputFilterSVGAttributes,
2486
2565
  StylableSVGAttributes,
2487
2566
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2490,8 +2569,7 @@ export namespace JSX {
2490
2569
  surfaceScale?: number | string | RemoveAttribute;
2491
2570
  }
2492
2571
  interface FeDisplacementMapSVGAttributes<T>
2493
- extends
2494
- FilterPrimitiveElementSVGAttributes<T>,
2572
+ extends FilterPrimitiveElementSVGAttributes<T>,
2495
2573
  DoubleInputFilterSVGAttributes,
2496
2574
  StylableSVGAttributes {
2497
2575
  scale?: number | string | RemoveAttribute;
@@ -2503,8 +2581,7 @@ export namespace JSX {
2503
2581
  elevation?: number | string | RemoveAttribute;
2504
2582
  }
2505
2583
  interface FeDropShadowSVGAttributes<T>
2506
- extends
2507
- SVGAttributes<T>,
2584
+ extends SVGAttributes<T>,
2508
2585
  FilterPrimitiveElementSVGAttributes<T>,
2509
2586
  StylableSVGAttributes,
2510
2587
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {
@@ -2513,8 +2590,7 @@ export namespace JSX {
2513
2590
  stdDeviation?: number | string | RemoveAttribute;
2514
2591
  }
2515
2592
  interface FeFloodSVGAttributes<T>
2516
- extends
2517
- FilterPrimitiveElementSVGAttributes<T>,
2593
+ extends FilterPrimitiveElementSVGAttributes<T>,
2518
2594
  StylableSVGAttributes,
2519
2595
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {}
2520
2596
  interface FeFuncSVGAttributes<T> extends SVGAttributes<T> {
@@ -2527,34 +2603,31 @@ export namespace JSX {
2527
2603
  type?: "identity" | "table" | "discrete" | "linear" | "gamma" | RemoveAttribute;
2528
2604
  }
2529
2605
  interface FeGaussianBlurSVGAttributes<T>
2530
- extends
2531
- FilterPrimitiveElementSVGAttributes<T>,
2606
+ extends FilterPrimitiveElementSVGAttributes<T>,
2532
2607
  SingleInputFilterSVGAttributes,
2533
2608
  StylableSVGAttributes {
2534
2609
  stdDeviation?: number | string | RemoveAttribute;
2535
2610
  }
2536
2611
  interface FeImageSVGAttributes<T>
2537
- extends
2538
- FilterPrimitiveElementSVGAttributes<T>,
2612
+ extends FilterPrimitiveElementSVGAttributes<T>,
2539
2613
  ExternalResourceSVGAttributes,
2540
2614
  StylableSVGAttributes {
2541
2615
  href?: string | RemoveAttribute;
2542
2616
  preserveAspectRatio?: SVGPreserveAspectRatio | RemoveAttribute;
2543
2617
  }
2544
2618
  interface FeMergeSVGAttributes<T>
2545
- extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {}
2619
+ extends FilterPrimitiveElementSVGAttributes<T>,
2620
+ StylableSVGAttributes {}
2546
2621
  interface FeMergeNodeSVGAttributes<T> extends SVGAttributes<T>, SingleInputFilterSVGAttributes {}
2547
2622
  interface FeMorphologySVGAttributes<T>
2548
- extends
2549
- FilterPrimitiveElementSVGAttributes<T>,
2623
+ extends FilterPrimitiveElementSVGAttributes<T>,
2550
2624
  SingleInputFilterSVGAttributes,
2551
2625
  StylableSVGAttributes {
2552
2626
  operator?: "erode" | "dilate" | RemoveAttribute;
2553
2627
  radius?: number | string | RemoveAttribute;
2554
2628
  }
2555
2629
  interface FeOffsetSVGAttributes<T>
2556
- extends
2557
- FilterPrimitiveElementSVGAttributes<T>,
2630
+ extends FilterPrimitiveElementSVGAttributes<T>,
2558
2631
  SingleInputFilterSVGAttributes,
2559
2632
  StylableSVGAttributes {
2560
2633
  dx?: number | string | RemoveAttribute;
@@ -2566,8 +2639,7 @@ export namespace JSX {
2566
2639
  z?: number | string | RemoveAttribute;
2567
2640
  }
2568
2641
  interface FeSpecularLightingSVGAttributes<T>
2569
- extends
2570
- FilterPrimitiveElementSVGAttributes<T>,
2642
+ extends FilterPrimitiveElementSVGAttributes<T>,
2571
2643
  SingleInputFilterSVGAttributes,
2572
2644
  StylableSVGAttributes,
2573
2645
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2587,12 +2659,12 @@ export namespace JSX {
2587
2659
  z?: number | string | RemoveAttribute;
2588
2660
  }
2589
2661
  interface FeTileSVGAttributes<T>
2590
- extends
2591
- FilterPrimitiveElementSVGAttributes<T>,
2662
+ extends FilterPrimitiveElementSVGAttributes<T>,
2592
2663
  SingleInputFilterSVGAttributes,
2593
2664
  StylableSVGAttributes {}
2594
2665
  interface FeTurbulanceSVGAttributes<T>
2595
- extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {
2666
+ extends FilterPrimitiveElementSVGAttributes<T>,
2667
+ StylableSVGAttributes {
2596
2668
  baseFrequency?: number | string | RemoveAttribute;
2597
2669
  numOctaves?: number | string | RemoveAttribute;
2598
2670
  seed?: number | string | RemoveAttribute;
@@ -2600,7 +2672,9 @@ export namespace JSX {
2600
2672
  type?: "fractalNoise" | "turbulence" | RemoveAttribute;
2601
2673
  }
2602
2674
  interface FilterSVGAttributes<T>
2603
- extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2675
+ extends SVGAttributes<T>,
2676
+ ExternalResourceSVGAttributes,
2677
+ StylableSVGAttributes {
2604
2678
  filterRes?: number | string | RemoveAttribute;
2605
2679
  filterUnits?: SVGUnits | RemoveAttribute;
2606
2680
  height?: number | string | RemoveAttribute;
@@ -2610,8 +2684,7 @@ export namespace JSX {
2610
2684
  y?: number | string | RemoveAttribute;
2611
2685
  }
2612
2686
  interface ForeignObjectSVGAttributes<T>
2613
- extends
2614
- NewViewportSVGAttributes<T>,
2687
+ extends NewViewportSVGAttributes<T>,
2615
2688
  ConditionalProcessingSVGAttributes,
2616
2689
  ExternalResourceSVGAttributes,
2617
2690
  StylableSVGAttributes,
@@ -2623,16 +2696,14 @@ export namespace JSX {
2623
2696
  y?: number | string | RemoveAttribute;
2624
2697
  }
2625
2698
  interface GSVGAttributes<T>
2626
- extends
2627
- ContainerElementSVGAttributes<T>,
2699
+ extends ContainerElementSVGAttributes<T>,
2628
2700
  ConditionalProcessingSVGAttributes,
2629
2701
  ExternalResourceSVGAttributes,
2630
2702
  StylableSVGAttributes,
2631
2703
  TransformableSVGAttributes,
2632
2704
  Pick<PresentationSVGAttributes, "clip-path" | "display" | "visibility"> {}
2633
2705
  interface ImageSVGAttributes<T>
2634
- extends
2635
- NewViewportSVGAttributes<T>,
2706
+ extends NewViewportSVGAttributes<T>,
2636
2707
  GraphicsElementSVGAttributes<T>,
2637
2708
  ConditionalProcessingSVGAttributes,
2638
2709
  StylableSVGAttributes,
@@ -2646,8 +2717,7 @@ export namespace JSX {
2646
2717
  y?: number | string | RemoveAttribute;
2647
2718
  }
2648
2719
  interface LineSVGAttributes<T>
2649
- extends
2650
- GraphicsElementSVGAttributes<T>,
2720
+ extends GraphicsElementSVGAttributes<T>,
2651
2721
  ShapeElementSVGAttributes<T>,
2652
2722
  ConditionalProcessingSVGAttributes,
2653
2723
  ExternalResourceSVGAttributes,
@@ -2666,8 +2736,7 @@ export namespace JSX {
2666
2736
  y2?: number | string | RemoveAttribute;
2667
2737
  }
2668
2738
  interface MarkerSVGAttributes<T>
2669
- extends
2670
- ContainerElementSVGAttributes<T>,
2739
+ extends ContainerElementSVGAttributes<T>,
2671
2740
  ExternalResourceSVGAttributes,
2672
2741
  StylableSVGAttributes,
2673
2742
  FitToViewBoxSVGAttributes,
@@ -2680,8 +2749,7 @@ export namespace JSX {
2680
2749
  refY?: number | string | RemoveAttribute;
2681
2750
  }
2682
2751
  interface MaskSVGAttributes<T>
2683
- extends
2684
- Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2752
+ extends Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2685
2753
  ConditionalProcessingSVGAttributes,
2686
2754
  ExternalResourceSVGAttributes,
2687
2755
  StylableSVGAttributes,
@@ -2696,8 +2764,7 @@ export namespace JSX {
2696
2764
  interface MetadataSVGAttributes<T> extends SVGAttributes<T> {}
2697
2765
  interface MPathSVGAttributes<T> extends SVGAttributes<T> {}
2698
2766
  interface PathSVGAttributes<T>
2699
- extends
2700
- GraphicsElementSVGAttributes<T>,
2767
+ extends GraphicsElementSVGAttributes<T>,
2701
2768
  ShapeElementSVGAttributes<T>,
2702
2769
  ConditionalProcessingSVGAttributes,
2703
2770
  ExternalResourceSVGAttributes,
@@ -2708,8 +2775,7 @@ export namespace JSX {
2708
2775
  pathLength?: number | string | RemoveAttribute;
2709
2776
  }
2710
2777
  interface PatternSVGAttributes<T>
2711
- extends
2712
- ContainerElementSVGAttributes<T>,
2778
+ extends ContainerElementSVGAttributes<T>,
2713
2779
  ConditionalProcessingSVGAttributes,
2714
2780
  ExternalResourceSVGAttributes,
2715
2781
  StylableSVGAttributes,
@@ -2725,8 +2791,7 @@ export namespace JSX {
2725
2791
  y?: number | string | RemoveAttribute;
2726
2792
  }
2727
2793
  interface PolygonSVGAttributes<T>
2728
- extends
2729
- GraphicsElementSVGAttributes<T>,
2794
+ extends GraphicsElementSVGAttributes<T>,
2730
2795
  ShapeElementSVGAttributes<T>,
2731
2796
  ConditionalProcessingSVGAttributes,
2732
2797
  ExternalResourceSVGAttributes,
@@ -2736,8 +2801,7 @@ export namespace JSX {
2736
2801
  points?: string | RemoveAttribute;
2737
2802
  }
2738
2803
  interface PolylineSVGAttributes<T>
2739
- extends
2740
- GraphicsElementSVGAttributes<T>,
2804
+ extends GraphicsElementSVGAttributes<T>,
2741
2805
  ShapeElementSVGAttributes<T>,
2742
2806
  ConditionalProcessingSVGAttributes,
2743
2807
  ExternalResourceSVGAttributes,
@@ -2754,8 +2818,7 @@ export namespace JSX {
2754
2818
  r?: number | string | RemoveAttribute;
2755
2819
  }
2756
2820
  interface RectSVGAttributes<T>
2757
- extends
2758
- GraphicsElementSVGAttributes<T>,
2821
+ extends GraphicsElementSVGAttributes<T>,
2759
2822
  ShapeElementSVGAttributes<T>,
2760
2823
  ConditionalProcessingSVGAttributes,
2761
2824
  ExternalResourceSVGAttributes,
@@ -2770,17 +2833,17 @@ export namespace JSX {
2770
2833
  y?: number | string | RemoveAttribute;
2771
2834
  }
2772
2835
  interface SetSVGAttributes<T>
2773
- extends AnimationElementSVGAttributes<T>, StylableSVGAttributes, AnimationTimingSVGAttributes {}
2836
+ extends AnimationElementSVGAttributes<T>,
2837
+ StylableSVGAttributes,
2838
+ AnimationTimingSVGAttributes {}
2774
2839
  interface StopSVGAttributes<T>
2775
- extends
2776
- SVGAttributes<T>,
2840
+ extends SVGAttributes<T>,
2777
2841
  StylableSVGAttributes,
2778
2842
  Pick<PresentationSVGAttributes, "color" | "stop-color" | "stop-opacity"> {
2779
2843
  offset?: number | string | RemoveAttribute;
2780
2844
  }
2781
2845
  interface SvgSVGAttributes<T>
2782
- extends
2783
- ContainerElementSVGAttributes<T>,
2846
+ extends ContainerElementSVGAttributes<T>,
2784
2847
  NewViewportSVGAttributes<T>,
2785
2848
  ConditionalProcessingSVGAttributes,
2786
2849
  ExternalResourceSVGAttributes,
@@ -2803,16 +2866,14 @@ export namespace JSX {
2803
2866
  version?: string | RemoveAttribute;
2804
2867
  }
2805
2868
  interface SwitchSVGAttributes<T>
2806
- extends
2807
- ContainerElementSVGAttributes<T>,
2869
+ extends ContainerElementSVGAttributes<T>,
2808
2870
  ConditionalProcessingSVGAttributes,
2809
2871
  ExternalResourceSVGAttributes,
2810
2872
  StylableSVGAttributes,
2811
2873
  TransformableSVGAttributes,
2812
2874
  Pick<PresentationSVGAttributes, "display" | "visibility"> {}
2813
2875
  interface SymbolSVGAttributes<T>
2814
- extends
2815
- ContainerElementSVGAttributes<T>,
2876
+ extends ContainerElementSVGAttributes<T>,
2816
2877
  NewViewportSVGAttributes<T>,
2817
2878
  ExternalResourceSVGAttributes,
2818
2879
  StylableSVGAttributes,
@@ -2828,8 +2889,7 @@ export namespace JSX {
2828
2889
  y?: number | string | RemoveAttribute;
2829
2890
  }
2830
2891
  interface TextSVGAttributes<T>
2831
- extends
2832
- TextContentElementSVGAttributes<T>,
2892
+ extends TextContentElementSVGAttributes<T>,
2833
2893
  GraphicsElementSVGAttributes<T>,
2834
2894
  ConditionalProcessingSVGAttributes,
2835
2895
  ExternalResourceSVGAttributes,
@@ -2845,8 +2905,7 @@ export namespace JSX {
2845
2905
  y?: number | string | RemoveAttribute;
2846
2906
  }
2847
2907
  interface TextPathSVGAttributes<T>
2848
- extends
2849
- TextContentElementSVGAttributes<T>,
2908
+ extends TextContentElementSVGAttributes<T>,
2850
2909
  ConditionalProcessingSVGAttributes,
2851
2910
  ExternalResourceSVGAttributes,
2852
2911
  StylableSVGAttributes,
@@ -2860,8 +2919,7 @@ export namespace JSX {
2860
2919
  startOffset?: number | string | RemoveAttribute;
2861
2920
  }
2862
2921
  interface TSpanSVGAttributes<T>
2863
- extends
2864
- TextContentElementSVGAttributes<T>,
2922
+ extends TextContentElementSVGAttributes<T>,
2865
2923
  ConditionalProcessingSVGAttributes,
2866
2924
  ExternalResourceSVGAttributes,
2867
2925
  StylableSVGAttributes,
@@ -2879,8 +2937,7 @@ export namespace JSX {
2879
2937
  }
2880
2938
  /** @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use */
2881
2939
  interface UseSVGAttributes<T>
2882
- extends
2883
- SVGAttributes<T>,
2940
+ extends SVGAttributes<T>,
2884
2941
  StylableSVGAttributes,
2885
2942
  ConditionalProcessingSVGAttributes,
2886
2943
  GraphicsElementSVGAttributes<T>,
@@ -2894,8 +2951,7 @@ export namespace JSX {
2894
2951
  y?: number | string | RemoveAttribute;
2895
2952
  }
2896
2953
  interface ViewSVGAttributes<T>
2897
- extends
2898
- SVGAttributes<T>,
2954
+ extends SVGAttributes<T>,
2899
2955
  ExternalResourceSVGAttributes,
2900
2956
  FitToViewBoxSVGAttributes,
2901
2957
  ZoomAndPanSVGAttributes {
@@ -3127,564 +3183,564 @@ export namespace JSX {
3127
3183
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
3128
3184
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
3129
3185
  */
3130
- a: AnchorHTMLAttributes<HTMLAnchorElement>;
3186
+ a: AnchorHTMLAttributes<HTMLAnchorElement> & Properties<HTMLAnchorElement>;
3131
3187
  /**
3132
3188
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
3133
3189
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3134
3190
  */
3135
- abbr: HTMLAttributes<HTMLElement>;
3191
+ abbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3136
3192
  /**
3137
3193
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
3138
3194
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3139
3195
  */
3140
- address: HTMLAttributes<HTMLElement>;
3196
+ address: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3141
3197
  /**
3142
3198
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
3143
3199
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
3144
3200
  */
3145
- area: AreaHTMLAttributes<HTMLAreaElement>;
3201
+ area: AreaHTMLAttributes<HTMLAreaElement> & Properties<HTMLAreaElement>;
3146
3202
  /**
3147
3203
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
3148
3204
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3149
3205
  */
3150
- article: HTMLAttributes<HTMLElement>;
3206
+ article: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3151
3207
  /**
3152
3208
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
3153
3209
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3154
3210
  */
3155
- aside: HTMLAttributes<HTMLElement>;
3211
+ aside: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3156
3212
  /**
3157
3213
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
3158
3214
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement
3159
3215
  */
3160
- audio: AudioHTMLAttributes<HTMLAudioElement>;
3216
+ audio: AudioHTMLAttributes<HTMLAudioElement> & Properties<HTMLAudioElement>;
3161
3217
  /**
3162
3218
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
3163
3219
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3164
3220
  */
3165
- b: HTMLAttributes<HTMLElement>;
3221
+ b: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3166
3222
  /**
3167
3223
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
3168
3224
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBaseElement
3169
3225
  */
3170
- base: BaseHTMLAttributes<HTMLBaseElement>;
3226
+ base: BaseHTMLAttributes<HTMLBaseElement> & Properties<HTMLBaseElement>;
3171
3227
  /**
3172
3228
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
3173
3229
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3174
3230
  */
3175
- bdi: HTMLAttributes<HTMLElement>;
3231
+ bdi: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3176
3232
  /**
3177
3233
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
3178
3234
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3179
3235
  */
3180
- bdo: BdoHTMLAttributes<HTMLElement>;
3236
+ bdo: BdoHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3181
3237
  /**
3182
3238
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
3183
3239
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3184
3240
  */
3185
- blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
3241
+ blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3186
3242
  /**
3187
3243
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
3188
3244
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
3189
3245
  */
3190
- body: BodyHTMLAttributes<HTMLBodyElement>;
3246
+ body: BodyHTMLAttributes<HTMLBodyElement> & Properties<HTMLBodyElement>;
3191
3247
  /**
3192
3248
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
3193
3249
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBRElement
3194
3250
  */
3195
- br: HTMLAttributes<HTMLBRElement>;
3251
+ br: HTMLAttributes<HTMLBRElement> & Properties<HTMLBRElement>;
3196
3252
  /**
3197
3253
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
3198
3254
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement
3199
3255
  */
3200
- button: ButtonHTMLAttributes<HTMLButtonElement>;
3256
+ button: ButtonHTMLAttributes<HTMLButtonElement> & Properties<HTMLButtonElement>;
3201
3257
  /**
3202
3258
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
3203
3259
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
3204
3260
  */
3205
- canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
3261
+ canvas: CanvasHTMLAttributes<HTMLCanvasElement> & Properties<HTMLCanvasElement>;
3206
3262
  /**
3207
3263
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
3208
3264
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement
3209
3265
  */
3210
- caption: CaptionHTMLAttributes<HTMLTableCaptionElement>;
3266
+ caption: CaptionHTMLAttributes<HTMLTableCaptionElement> & Properties<HTMLTableCaptionElement>;
3211
3267
  /**
3212
3268
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
3213
3269
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3214
3270
  */
3215
- cite: HTMLAttributes<HTMLElement>;
3271
+ cite: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3216
3272
  /**
3217
3273
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
3218
3274
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3219
3275
  */
3220
- code: HTMLAttributes<HTMLElement>;
3276
+ code: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3221
3277
  /**
3222
3278
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
3223
3279
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3224
3280
  */
3225
- col: ColHTMLAttributes<HTMLTableColElement>;
3281
+ col: ColHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3226
3282
  /**
3227
3283
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
3228
3284
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3229
3285
  */
3230
- colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
3286
+ colgroup: ColgroupHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3231
3287
  /**
3232
3288
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
3233
3289
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
3234
3290
  */
3235
- data: DataHTMLAttributes<HTMLDataElement>;
3291
+ data: DataHTMLAttributes<HTMLDataElement> & Properties<HTMLDataElement>;
3236
3292
  /**
3237
3293
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
3238
3294
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement
3239
3295
  */
3240
- datalist: HTMLAttributes<HTMLDataListElement>;
3296
+ datalist: HTMLAttributes<HTMLDataListElement> & Properties<HTMLDataListElement>;
3241
3297
  /**
3242
3298
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
3243
3299
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3244
3300
  */
3245
- dd: HTMLAttributes<HTMLElement>;
3301
+ dd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3246
3302
  /**
3247
3303
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
3248
3304
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3249
3305
  */
3250
- del: ModHTMLAttributes<HTMLModElement>;
3306
+ del: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3251
3307
  /**
3252
3308
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
3253
3309
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement
3254
3310
  */
3255
- details: DetailsHtmlAttributes<HTMLDetailsElement>;
3311
+ details: DetailsHtmlAttributes<HTMLDetailsElement> & Properties<HTMLDetailsElement>;
3256
3312
  /**
3257
3313
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
3258
3314
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3259
3315
  */
3260
- dfn: HTMLAttributes<HTMLElement>;
3316
+ dfn: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3261
3317
  /**
3262
3318
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
3263
3319
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement
3264
3320
  */
3265
- dialog: DialogHtmlAttributes<HTMLDialogElement>;
3321
+ dialog: DialogHtmlAttributes<HTMLDialogElement> & Properties<HTMLDialogElement>;
3266
3322
  /**
3267
3323
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
3268
3324
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement
3269
3325
  */
3270
- div: HTMLAttributes<HTMLDivElement>;
3326
+ div: HTMLAttributes<HTMLDivElement> & Properties<HTMLDivElement>;
3271
3327
  /**
3272
3328
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
3273
3329
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDListElement
3274
3330
  */
3275
- dl: HTMLAttributes<HTMLDListElement>;
3331
+ dl: HTMLAttributes<HTMLDListElement> & Properties<HTMLDListElement>;
3276
3332
  /**
3277
3333
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
3278
3334
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3279
3335
  */
3280
- dt: HTMLAttributes<HTMLElement>;
3336
+ dt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3281
3337
  /**
3282
3338
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
3283
3339
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3284
3340
  */
3285
- em: HTMLAttributes<HTMLElement>;
3341
+ em: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3286
3342
  /**
3287
3343
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
3288
3344
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
3289
3345
  */
3290
- embed: EmbedHTMLAttributes<HTMLEmbedElement>;
3346
+ embed: EmbedHTMLAttributes<HTMLEmbedElement> & Properties<HTMLEmbedElement>;
3291
3347
  /**
3292
3348
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
3293
3349
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
3294
3350
  */
3295
- fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
3351
+ fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement> & Properties<HTMLFieldSetElement>;
3296
3352
  /**
3297
3353
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
3298
3354
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3299
3355
  */
3300
- figcaption: HTMLAttributes<HTMLElement>;
3356
+ figcaption: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3301
3357
  /**
3302
3358
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
3303
3359
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3304
3360
  */
3305
- figure: HTMLAttributes<HTMLElement>;
3361
+ figure: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3306
3362
  /**
3307
3363
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
3308
3364
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3309
3365
  */
3310
- footer: HTMLAttributes<HTMLElement>;
3366
+ footer: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3311
3367
  /**
3312
3368
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
3313
3369
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement
3314
3370
  */
3315
- form: FormHTMLAttributes<HTMLFormElement>;
3371
+ form: FormHTMLAttributes<HTMLFormElement> & Properties<HTMLFormElement>;
3316
3372
  /**
3317
3373
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
3318
3374
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3319
3375
  */
3320
- h1: HTMLAttributes<HTMLHeadingElement>;
3376
+ h1: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3321
3377
  /**
3322
3378
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
3323
3379
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3324
3380
  */
3325
- h2: HTMLAttributes<HTMLHeadingElement>;
3381
+ h2: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3326
3382
  /**
3327
3383
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
3328
3384
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3329
3385
  */
3330
- h3: HTMLAttributes<HTMLHeadingElement>;
3386
+ h3: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3331
3387
  /**
3332
3388
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
3333
3389
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3334
3390
  */
3335
- h4: HTMLAttributes<HTMLHeadingElement>;
3391
+ h4: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3336
3392
  /**
3337
3393
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
3338
3394
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3339
3395
  */
3340
- h5: HTMLAttributes<HTMLHeadingElement>;
3396
+ h5: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3341
3397
  /**
3342
3398
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
3343
3399
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3344
3400
  */
3345
- h6: HTMLAttributes<HTMLHeadingElement>;
3401
+ h6: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3346
3402
  /**
3347
3403
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
3348
3404
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement
3349
3405
  */
3350
- head: HTMLAttributes<HTMLHeadElement>;
3406
+ head: HTMLAttributes<HTMLHeadElement> & Properties<HTMLHeadElement>;
3351
3407
  /**
3352
3408
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
3353
3409
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3354
3410
  */
3355
- header: HTMLAttributes<HTMLElement>;
3411
+ header: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3356
3412
  /**
3357
3413
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
3358
3414
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3359
3415
  */
3360
- hgroup: HTMLAttributes<HTMLElement>;
3416
+ hgroup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3361
3417
  /**
3362
3418
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
3363
3419
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHRElement
3364
3420
  */
3365
- hr: HTMLAttributes<HTMLHRElement>;
3421
+ hr: HTMLAttributes<HTMLHRElement> & Properties<HTMLHRElement>;
3366
3422
  /**
3367
3423
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
3368
3424
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement
3369
3425
  */
3370
- html: HTMLAttributes<HTMLHtmlElement>;
3426
+ html: HTMLAttributes<HTMLHtmlElement> & Properties<HTMLHtmlElement>;
3371
3427
  /**
3372
3428
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
3373
3429
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3374
3430
  */
3375
- i: HTMLAttributes<HTMLElement>;
3431
+ i: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3376
3432
  /**
3377
3433
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
3378
3434
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
3379
3435
  */
3380
- iframe: IframeHTMLAttributes<HTMLIFrameElement>;
3436
+ iframe: IframeHTMLAttributes<HTMLIFrameElement> & Properties<HTMLIFrameElement>;
3381
3437
  /**
3382
3438
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
3383
3439
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
3384
3440
  */
3385
- img: ImgHTMLAttributes<HTMLImageElement>;
3441
+ img: ImgHTMLAttributes<HTMLImageElement> & Properties<HTMLImageElement>;
3386
3442
  /**
3387
3443
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
3388
3444
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement
3389
3445
  */
3390
- input: InputHTMLAttributes<HTMLInputElement>;
3446
+ input: InputHTMLAttributes<HTMLInputElement> & Properties<HTMLInputElement>;
3391
3447
  /**
3392
3448
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
3393
3449
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3394
3450
  */
3395
- ins: ModHTMLAttributes<HTMLModElement>;
3451
+ ins: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3396
3452
  /**
3397
3453
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
3398
3454
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3399
3455
  */
3400
- kbd: HTMLAttributes<HTMLElement>;
3456
+ kbd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3401
3457
  /**
3402
3458
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
3403
3459
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement
3404
3460
  */
3405
- label: LabelHTMLAttributes<HTMLLabelElement>;
3461
+ label: LabelHTMLAttributes<HTMLLabelElement> & Properties<HTMLLabelElement>;
3406
3462
  /**
3407
3463
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
3408
3464
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
3409
3465
  */
3410
- legend: HTMLAttributes<HTMLLegendElement>;
3466
+ legend: HTMLAttributes<HTMLLegendElement> & Properties<HTMLLegendElement>;
3411
3467
  /**
3412
3468
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
3413
3469
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
3414
3470
  */
3415
- li: LiHTMLAttributes<HTMLLIElement>;
3471
+ li: LiHTMLAttributes<HTMLLIElement> & Properties<HTMLLIElement>;
3416
3472
  /**
3417
3473
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
3418
3474
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement
3419
3475
  */
3420
- link: LinkHTMLAttributes<HTMLLinkElement>;
3476
+ link: LinkHTMLAttributes<HTMLLinkElement> & Properties<HTMLLinkElement>;
3421
3477
  /**
3422
3478
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
3423
3479
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3424
3480
  */
3425
- main: HTMLAttributes<HTMLElement>;
3481
+ main: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3426
3482
  /**
3427
3483
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
3428
3484
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMapElement
3429
3485
  */
3430
- map: MapHTMLAttributes<HTMLMapElement>;
3486
+ map: MapHTMLAttributes<HTMLMapElement> & Properties<HTMLMapElement>;
3431
3487
  /**
3432
3488
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
3433
3489
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3434
3490
  */
3435
- mark: HTMLAttributes<HTMLElement>;
3491
+ mark: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3436
3492
  /**
3437
3493
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
3438
3494
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMenuElement
3439
3495
  */
3440
- menu: MenuHTMLAttributes<HTMLMenuElement>;
3496
+ menu: MenuHTMLAttributes<HTMLMenuElement> & Properties<HTMLMenuElement>;
3441
3497
  /**
3442
3498
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
3443
3499
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement
3444
3500
  */
3445
- meta: MetaHTMLAttributes<HTMLMetaElement>;
3501
+ meta: MetaHTMLAttributes<HTMLMetaElement> & Properties<HTMLMetaElement>;
3446
3502
  /**
3447
3503
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
3448
3504
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement
3449
3505
  */
3450
- meter: MeterHTMLAttributes<HTMLMeterElement>;
3506
+ meter: MeterHTMLAttributes<HTMLMeterElement> & Properties<HTMLMeterElement>;
3451
3507
  /**
3452
3508
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
3453
3509
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3454
3510
  */
3455
- nav: HTMLAttributes<HTMLElement>;
3511
+ nav: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3456
3512
  /**
3457
3513
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
3458
3514
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3459
3515
  */
3460
- noscript: HTMLAttributes<HTMLElement>;
3516
+ noscript: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3461
3517
  /**
3462
3518
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
3463
3519
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement
3464
3520
  */
3465
- object: ObjectHTMLAttributes<HTMLObjectElement>;
3521
+ object: ObjectHTMLAttributes<HTMLObjectElement> & Properties<HTMLObjectElement>;
3466
3522
  /**
3467
3523
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
3468
3524
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
3469
3525
  */
3470
- ol: OlHTMLAttributes<HTMLOListElement>;
3526
+ ol: OlHTMLAttributes<HTMLOListElement> & Properties<HTMLOListElement>;
3471
3527
  /**
3472
3528
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
3473
3529
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement
3474
3530
  */
3475
- optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
3531
+ optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement> & Properties<HTMLOptGroupElement>;
3476
3532
  /**
3477
3533
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
3478
3534
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement
3479
3535
  */
3480
- option: OptionHTMLAttributes<HTMLOptionElement>;
3536
+ option: OptionHTMLAttributes<HTMLOptionElement> & Properties<HTMLOptionElement>;
3481
3537
  /**
3482
3538
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
3483
3539
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement
3484
3540
  */
3485
- output: OutputHTMLAttributes<HTMLOutputElement>;
3541
+ output: OutputHTMLAttributes<HTMLOutputElement> & Properties<HTMLOutputElement>;
3486
3542
  /**
3487
3543
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
3488
3544
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement
3489
3545
  */
3490
- p: HTMLAttributes<HTMLParagraphElement>;
3546
+ p: HTMLAttributes<HTMLParagraphElement> & Properties<HTMLParagraphElement>;
3491
3547
  /**
3492
3548
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
3493
3549
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement
3494
3550
  */
3495
- picture: HTMLAttributes<HTMLPictureElement>;
3551
+ picture: HTMLAttributes<HTMLPictureElement> & Properties<HTMLPictureElement>;
3496
3552
  /**
3497
3553
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
3498
3554
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement
3499
3555
  */
3500
- pre: HTMLAttributes<HTMLPreElement>;
3556
+ pre: HTMLAttributes<HTMLPreElement> & Properties<HTMLPreElement>;
3501
3557
  /**
3502
3558
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
3503
3559
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
3504
3560
  */
3505
- progress: ProgressHTMLAttributes<HTMLProgressElement>;
3561
+ progress: ProgressHTMLAttributes<HTMLProgressElement> & Properties<HTMLProgressElement>;
3506
3562
  /**
3507
3563
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
3508
3564
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3509
3565
  */
3510
- q: QuoteHTMLAttributes<HTMLQuoteElement>;
3566
+ q: QuoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3511
3567
  /**
3512
3568
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
3513
3569
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3514
3570
  */
3515
- rp: HTMLAttributes<HTMLElement>;
3571
+ rp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3516
3572
  /**
3517
3573
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
3518
3574
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3519
3575
  */
3520
- rt: HTMLAttributes<HTMLElement>;
3576
+ rt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3521
3577
  /**
3522
3578
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
3523
3579
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3524
3580
  */
3525
- ruby: HTMLAttributes<HTMLElement>;
3581
+ ruby: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3526
3582
  /**
3527
3583
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
3528
3584
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3529
3585
  */
3530
- s: HTMLAttributes<HTMLElement>;
3586
+ s: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3531
3587
  /**
3532
3588
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
3533
3589
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3534
3590
  */
3535
- samp: HTMLAttributes<HTMLElement>;
3591
+ samp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3536
3592
  /**
3537
3593
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
3538
3594
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement
3539
3595
  */
3540
- script: ScriptHTMLAttributes<HTMLScriptElement>;
3596
+ script: ScriptHTMLAttributes<HTMLScriptElement> & Properties<HTMLScriptElement>;
3541
3597
  /**
3542
3598
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
3543
3599
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3544
3600
  */
3545
- search: HTMLAttributes<HTMLElement>;
3601
+ search: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3546
3602
  /**
3547
3603
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
3548
3604
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3549
3605
  */
3550
- section: HTMLAttributes<HTMLElement>;
3606
+ section: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3551
3607
  /**
3552
3608
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
3553
3609
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement
3554
3610
  */
3555
- select: SelectHTMLAttributes<HTMLSelectElement>;
3611
+ select: SelectHTMLAttributes<HTMLSelectElement> & Properties<HTMLSelectElement>;
3556
3612
  /**
3557
3613
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
3558
3614
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement
3559
3615
  */
3560
- slot: HTMLSlotElementAttributes<HTMLSlotElement>;
3616
+ slot: HTMLSlotElementAttributes<HTMLSlotElement> & Properties<HTMLSlotElement>;
3561
3617
  /**
3562
3618
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
3563
3619
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3564
3620
  */
3565
- small: HTMLAttributes<HTMLElement>;
3621
+ small: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3566
3622
  /**
3567
3623
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
3568
3624
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
3569
3625
  */
3570
- source: SourceHTMLAttributes<HTMLSourceElement>;
3626
+ source: SourceHTMLAttributes<HTMLSourceElement> & Properties<HTMLSourceElement>;
3571
3627
  /**
3572
3628
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
3573
3629
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement
3574
3630
  */
3575
- span: HTMLAttributes<HTMLSpanElement>;
3631
+ span: HTMLAttributes<HTMLSpanElement> & Properties<HTMLSpanElement>;
3576
3632
  /**
3577
3633
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
3578
3634
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3579
3635
  */
3580
- strong: HTMLAttributes<HTMLElement>;
3636
+ strong: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3581
3637
  /**
3582
3638
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
3583
3639
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement
3584
3640
  */
3585
- style: StyleHTMLAttributes<HTMLStyleElement>;
3641
+ style: StyleHTMLAttributes<HTMLStyleElement> & Properties<HTMLStyleElement>;
3586
3642
  /**
3587
3643
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
3588
3644
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3589
3645
  */
3590
- sub: HTMLAttributes<HTMLElement>;
3646
+ sub: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3591
3647
  /**
3592
3648
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
3593
3649
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3594
3650
  */
3595
- summary: HTMLAttributes<HTMLElement>;
3651
+ summary: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3596
3652
  /**
3597
3653
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
3598
3654
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3599
3655
  */
3600
- sup: HTMLAttributes<HTMLElement>;
3656
+ sup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3601
3657
  /**
3602
3658
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
3603
3659
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement
3604
3660
  */
3605
- table: HTMLAttributes<HTMLTableElement>;
3661
+ table: HTMLAttributes<HTMLTableElement> & Properties<HTMLTableElement>;
3606
3662
  /**
3607
3663
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
3608
3664
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3609
3665
  */
3610
- tbody: HTMLAttributes<HTMLTableSectionElement>;
3666
+ tbody: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3611
3667
  /**
3612
3668
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
3613
3669
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3614
3670
  */
3615
- td: TdHTMLAttributes<HTMLTableCellElement>;
3671
+ td: TdHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3616
3672
  /**
3617
3673
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
3618
3674
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement
3619
3675
  */
3620
- template: TemplateHTMLAttributes<HTMLTemplateElement>;
3676
+ template: TemplateHTMLAttributes<HTMLTemplateElement> & Properties<HTMLTemplateElement>;
3621
3677
  /**
3622
3678
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
3623
3679
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
3624
3680
  */
3625
- textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
3681
+ textarea: TextareaHTMLAttributes<HTMLTextAreaElement> & Properties<HTMLTextAreaElement>;
3626
3682
  /**
3627
3683
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
3628
3684
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3629
3685
  */
3630
- tfoot: HTMLAttributes<HTMLTableSectionElement>;
3686
+ tfoot: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3631
3687
  /**
3632
3688
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
3633
3689
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3634
3690
  */
3635
- th: ThHTMLAttributes<HTMLTableCellElement>;
3691
+ th: ThHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3636
3692
  /**
3637
3693
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
3638
3694
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3639
3695
  */
3640
- thead: HTMLAttributes<HTMLTableSectionElement>;
3696
+ thead: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3641
3697
  /**
3642
3698
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
3643
3699
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement
3644
3700
  */
3645
- time: TimeHTMLAttributes<HTMLTimeElement>;
3701
+ time: TimeHTMLAttributes<HTMLTimeElement> & Properties<HTMLTimeElement>;
3646
3702
  /**
3647
3703
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
3648
3704
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement
3649
3705
  */
3650
- title: HTMLAttributes<HTMLTitleElement>;
3706
+ title: HTMLAttributes<HTMLTitleElement> & Properties<HTMLTitleElement>;
3651
3707
  /**
3652
3708
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
3653
3709
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement
3654
3710
  */
3655
- tr: HTMLAttributes<HTMLTableRowElement>;
3711
+ tr: HTMLAttributes<HTMLTableRowElement> & Properties<HTMLTableRowElement>;
3656
3712
  /**
3657
3713
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
3658
3714
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTrackElement
3659
3715
  */
3660
- track: TrackHTMLAttributes<HTMLTrackElement>;
3716
+ track: TrackHTMLAttributes<HTMLTrackElement> & Properties<HTMLTrackElement>;
3661
3717
  /**
3662
3718
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
3663
3719
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3664
3720
  */
3665
- u: HTMLAttributes<HTMLElement>;
3721
+ u: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3666
3722
  /**
3667
3723
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
3668
3724
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement
3669
3725
  */
3670
- ul: HTMLAttributes<HTMLUListElement>;
3726
+ ul: HTMLAttributes<HTMLUListElement> & Properties<HTMLUListElement>;
3671
3727
  /**
3672
3728
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
3673
3729
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3674
3730
  */
3675
- var: HTMLAttributes<HTMLElement>;
3731
+ var: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3676
3732
  /**
3677
3733
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
3678
3734
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement
3679
3735
  */
3680
- video: VideoHTMLAttributes<HTMLVideoElement>;
3736
+ video: VideoHTMLAttributes<HTMLVideoElement> & Properties<HTMLVideoElement>;
3681
3737
  /**
3682
3738
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
3683
3739
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3684
3740
  */
3685
- wbr: HTMLAttributes<HTMLElement>;
3741
+ wbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3686
3742
  /** @url https://www.electronjs.org/docs/latest/api/webview-tag */
3687
- webview: WebViewHTMLAttributes<HTMLElement>;
3743
+ webview: WebViewHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3688
3744
  }
3689
3745
  /** @type {HTMLElementDeprecatedTagNameMap} */
3690
3746
  interface HTMLElementDeprecatedTags {
@@ -3693,25 +3749,25 @@ export namespace JSX {
3693
3749
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
3694
3750
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3695
3751
  */
3696
- big: HTMLAttributes<HTMLElement>;
3752
+ big: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3697
3753
  /**
3698
3754
  * @deprecated
3699
3755
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3700
3756
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3701
3757
  */
3702
- keygen: KeygenHTMLAttributes<HTMLUnknownElement>;
3758
+ keygen: KeygenHTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3703
3759
  /**
3704
3760
  * @deprecated
3705
3761
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
3706
3762
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3707
3763
  */
3708
- menuitem: HTMLAttributes<HTMLUnknownElement>;
3764
+ menuitem: HTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3709
3765
  /**
3710
3766
  * @deprecated
3711
3767
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
3712
3768
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParamElement
3713
3769
  */
3714
- param: ParamHTMLAttributes<HTMLParamElement>;
3770
+ param: ParamHTMLAttributes<HTMLParamElement> & Properties<HTMLParamElement>;
3715
3771
  }
3716
3772
  /** @type {SVGElementTagNameMap} */
3717
3773
  interface SVGElementTags {
@@ -3719,297 +3775,317 @@ export namespace JSX {
3719
3775
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
3720
3776
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement
3721
3777
  */
3722
- animate: AnimateSVGAttributes<SVGAnimateElement>;
3778
+ animate: AnimateSVGAttributes<SVGAnimateElement> & Properties<SVGAnimateElement>;
3723
3779
  /**
3724
3780
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion
3725
3781
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement
3726
3782
  */
3727
- animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
3783
+ animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement> &
3784
+ Properties<SVGAnimateMotionElement>;
3728
3785
  /**
3729
3786
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform
3730
3787
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement
3731
3788
  */
3732
- animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
3789
+ animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement> &
3790
+ Properties<SVGAnimateTransformElement>;
3733
3791
  /**
3734
3792
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
3735
3793
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement
3736
3794
  */
3737
- circle: CircleSVGAttributes<SVGCircleElement>;
3795
+ circle: CircleSVGAttributes<SVGCircleElement> & Properties<SVGCircleElement>;
3738
3796
  /**
3739
3797
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath
3740
3798
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
3741
3799
  */
3742
- clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
3800
+ clipPath: ClipPathSVGAttributes<SVGClipPathElement> & Properties<SVGClipPathElement>;
3743
3801
  /**
3744
3802
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
3745
3803
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDefsElement
3746
3804
  */
3747
- defs: DefsSVGAttributes<SVGDefsElement>;
3805
+ defs: DefsSVGAttributes<SVGDefsElement> & Properties<SVGDefsElement>;
3748
3806
  /**
3749
3807
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
3750
3808
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDescElement
3751
3809
  */
3752
- desc: DescSVGAttributes<SVGDescElement>;
3810
+ desc: DescSVGAttributes<SVGDescElement> & Properties<SVGDescElement>;
3753
3811
  /**
3754
3812
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
3755
3813
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement
3756
3814
  */
3757
- ellipse: EllipseSVGAttributes<SVGEllipseElement>;
3815
+ ellipse: EllipseSVGAttributes<SVGEllipseElement> & Properties<SVGEllipseElement>;
3758
3816
  /**
3759
3817
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend
3760
3818
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
3761
3819
  */
3762
- feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
3820
+ feBlend: FeBlendSVGAttributes<SVGFEBlendElement> & Properties<SVGFEBlendElement>;
3763
3821
  /**
3764
3822
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix
3765
3823
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement
3766
3824
  */
3767
- feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
3825
+ feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement> &
3826
+ Properties<SVGFEColorMatrixElement>;
3768
3827
  /**
3769
3828
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer
3770
3829
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElemen
3771
3830
  */
3772
- feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
3831
+ feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement> &
3832
+ Properties<SVGFEComponentTransferElement>;
3773
3833
  /**
3774
3834
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite
3775
3835
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
3776
3836
  */
3777
- feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
3837
+ feComposite: FeCompositeSVGAttributes<SVGFECompositeElement> &
3838
+ Properties<SVGFECompositeElement>;
3778
3839
  /**
3779
3840
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix
3780
3841
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEConvolveMatrixElement
3781
3842
  */
3782
- feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
3843
+ feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement> &
3844
+ Properties<SVGFEConvolveMatrixElement>;
3783
3845
  /**
3784
3846
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting
3785
3847
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDiffuseLightingElement
3786
3848
  */
3787
- feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
3849
+ feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement> &
3850
+ Properties<SVGFEDiffuseLightingElement>;
3788
3851
  /**
3789
3852
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap
3790
3853
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDisplacementMapElement
3791
3854
  */
3792
- feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
3855
+ feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement> &
3856
+ Properties<SVGFEDisplacementMapElement>;
3793
3857
  /**
3794
3858
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight
3795
3859
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
3796
3860
  */
3797
- feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
3861
+ feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement> &
3862
+ Properties<SVGFEDistantLightElement>;
3798
3863
  /**
3799
3864
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow
3800
3865
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDropShadowElement
3801
3866
  */
3802
- feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement>;
3867
+ feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement> &
3868
+ Properties<SVGFEDropShadowElement>;
3803
3869
  /**
3804
3870
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood
3805
3871
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFloodElement
3806
3872
  */
3807
- feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
3873
+ feFlood: FeFloodSVGAttributes<SVGFEFloodElement> & Properties<SVGFEFloodElement>;
3808
3874
  /**
3809
3875
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA
3810
3876
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncAElement
3811
3877
  */
3812
- feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
3878
+ feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement> & Properties<SVGFEFuncAElement>;
3813
3879
  /**
3814
3880
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB
3815
3881
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncBElement
3816
3882
  */
3817
- feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
3883
+ feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement> & Properties<SVGFEFuncBElement>;
3818
3884
  /**
3819
3885
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG
3820
3886
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncGElement
3821
3887
  */
3822
- feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
3888
+ feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement> & Properties<SVGFEFuncGElement>;
3823
3889
  /**
3824
3890
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR
3825
3891
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncRElement
3826
3892
  */
3827
- feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
3893
+ feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement> & Properties<SVGFEFuncRElement>;
3828
3894
  /**
3829
3895
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur
3830
3896
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEGaussianBlurElement
3831
3897
  */
3832
- feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
3898
+ feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement> &
3899
+ Properties<SVGFEGaussianBlurElement>;
3833
3900
  /**
3834
3901
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage
3835
3902
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement
3836
3903
  */
3837
- feImage: FeImageSVGAttributes<SVGFEImageElement>;
3904
+ feImage: FeImageSVGAttributes<SVGFEImageElement> & Properties<SVGFEImageElement>;
3838
3905
  /**
3839
3906
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge
3840
3907
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement
3841
3908
  */
3842
- feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
3909
+ feMerge: FeMergeSVGAttributes<SVGFEMergeElement> & Properties<SVGFEMergeElement>;
3843
3910
  /**
3844
3911
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode
3845
3912
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
3846
3913
  */
3847
- feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
3914
+ feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement> &
3915
+ Properties<SVGFEMergeNodeElement>;
3848
3916
  /**
3849
3917
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology
3850
3918
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMorphologyElement
3851
3919
  */
3852
- feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
3920
+ feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement> &
3921
+ Properties<SVGFEMorphologyElement>;
3853
3922
  /**
3854
3923
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset
3855
3924
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEOffsetElement
3856
3925
  */
3857
- feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
3926
+ feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement> & Properties<SVGFEOffsetElement>;
3858
3927
  /**
3859
3928
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight
3860
3929
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
3861
3930
  */
3862
- fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
3931
+ fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement> &
3932
+ Properties<SVGFEPointLightElement>;
3863
3933
  /**
3864
3934
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting
3865
3935
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
3866
3936
  */
3867
- feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
3937
+ feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement> &
3938
+ Properties<SVGFESpecularLightingElement>;
3868
3939
  /**
3869
3940
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight
3870
3941
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
3871
3942
  */
3872
- feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
3943
+ feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement> &
3944
+ Properties<SVGFESpotLightElement>;
3873
3945
  /**
3874
3946
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile
3875
3947
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETileElement
3876
3948
  */
3877
- feTile: FeTileSVGAttributes<SVGFETileElement>;
3949
+ feTile: FeTileSVGAttributes<SVGFETileElement> & Properties<SVGFETileElement>;
3878
3950
  /**
3879
3951
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence
3880
3952
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
3881
3953
  */
3882
- feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
3954
+ feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement> &
3955
+ Properties<SVGFETurbulenceElement>;
3883
3956
  /**
3884
3957
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter
3885
3958
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFilterElement
3886
3959
  */
3887
- filter: FilterSVGAttributes<SVGFilterElement>;
3960
+ filter: FilterSVGAttributes<SVGFilterElement> & Properties<SVGFilterElement>;
3888
3961
  /**
3889
3962
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject
3890
3963
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGForeignObjectElement
3891
3964
  */
3892
- foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
3965
+ foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement> &
3966
+ Properties<SVGForeignObjectElement>;
3893
3967
  /**
3894
3968
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
3895
3969
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGGElement
3896
3970
  */
3897
- g: GSVGAttributes<SVGGElement>;
3971
+ g: GSVGAttributes<SVGGElement> & Properties<SVGGElement>;
3898
3972
  /**
3899
3973
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
3900
3974
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGImageElement
3901
3975
  */
3902
- image: ImageSVGAttributes<SVGImageElement>;
3976
+ image: ImageSVGAttributes<SVGImageElement> & Properties<SVGImageElement>;
3903
3977
  /**
3904
3978
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
3905
3979
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
3906
3980
  */
3907
- line: LineSVGAttributes<SVGLineElement>;
3981
+ line: LineSVGAttributes<SVGLineElement> & Properties<SVGLineElement>;
3908
3982
  /**
3909
3983
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
3910
3984
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
3911
3985
  */
3912
- linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
3986
+ linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement> &
3987
+ Properties<SVGLinearGradientElement>;
3913
3988
  /**
3914
3989
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker
3915
3990
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMarkerElement
3916
3991
  */
3917
- marker: MarkerSVGAttributes<SVGMarkerElement>;
3992
+ marker: MarkerSVGAttributes<SVGMarkerElement> & Properties<SVGMarkerElement>;
3918
3993
  /**
3919
3994
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask
3920
3995
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement
3921
3996
  */
3922
- mask: MaskSVGAttributes<SVGMaskElement>;
3997
+ mask: MaskSVGAttributes<SVGMaskElement> & Properties<SVGMaskElement>;
3923
3998
  /**
3924
3999
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata
3925
4000
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMetadataElement
3926
4001
  */
3927
- metadata: MetadataSVGAttributes<SVGMetadataElement>;
4002
+ metadata: MetadataSVGAttributes<SVGMetadataElement> & Properties<SVGMetadataElement>;
3928
4003
  /**
3929
4004
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath
3930
4005
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
3931
4006
  */
3932
- mpath: MPathSVGAttributes<SVGMPathElement>;
4007
+ mpath: MPathSVGAttributes<SVGMPathElement> & Properties<SVGMPathElement>;
3933
4008
  /**
3934
4009
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
3935
4010
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPathElement
3936
4011
  */
3937
- path: PathSVGAttributes<SVGPathElement>;
4012
+ path: PathSVGAttributes<SVGPathElement> & Properties<SVGPathElement>;
3938
4013
  /**
3939
4014
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern
3940
4015
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPatternElement
3941
4016
  */
3942
- pattern: PatternSVGAttributes<SVGPatternElement>;
4017
+ pattern: PatternSVGAttributes<SVGPatternElement> & Properties<SVGPatternElement>;
3943
4018
  /**
3944
4019
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
3945
4020
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolygonElement
3946
4021
  */
3947
- polygon: PolygonSVGAttributes<SVGPolygonElement>;
4022
+ polygon: PolygonSVGAttributes<SVGPolygonElement> & Properties<SVGPolygonElement>;
3948
4023
  /**
3949
4024
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
3950
4025
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolylineElement
3951
4026
  */
3952
- polyline: PolylineSVGAttributes<SVGPolylineElement>;
4027
+ polyline: PolylineSVGAttributes<SVGPolylineElement> & Properties<SVGPolylineElement>;
3953
4028
  /**
3954
4029
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
3955
4030
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
3956
4031
  */
3957
- radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
4032
+ radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement> &
4033
+ Properties<SVGRadialGradientElement>;
3958
4034
  /**
3959
4035
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
3960
4036
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRectElement
3961
4037
  */
3962
- rect: RectSVGAttributes<SVGRectElement>;
4038
+ rect: RectSVGAttributes<SVGRectElement> & Properties<SVGRectElement>;
3963
4039
  /**
3964
4040
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set
3965
4041
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement
3966
4042
  */
3967
- set: SetSVGAttributes<SVGSetElement>;
4043
+ set: SetSVGAttributes<SVGSetElement> & Properties<SVGSetElement>;
3968
4044
  /**
3969
4045
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop
3970
4046
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGStopElement
3971
4047
  */
3972
- stop: StopSVGAttributes<SVGStopElement>;
4048
+ stop: StopSVGAttributes<SVGStopElement> & Properties<SVGStopElement>;
3973
4049
  /**
3974
4050
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
3975
4051
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSVGElement
3976
4052
  */
3977
- svg: SvgSVGAttributes<SVGSVGElement>;
4053
+ svg: SvgSVGAttributes<SVGSVGElement> & Properties<SVGSVGElement>;
3978
4054
  /**
3979
4055
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch
3980
4056
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSwitchElement
3981
4057
  */
3982
- switch: SwitchSVGAttributes<SVGSwitchElement>;
4058
+ switch: SwitchSVGAttributes<SVGSwitchElement> & Properties<SVGSwitchElement>;
3983
4059
  /**
3984
4060
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol
3985
4061
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement
3986
4062
  */
3987
- symbol: SymbolSVGAttributes<SVGSymbolElement>;
4063
+ symbol: SymbolSVGAttributes<SVGSymbolElement> & Properties<SVGSymbolElement>;
3988
4064
  /**
3989
4065
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
3990
4066
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextElement
3991
4067
  */
3992
- text: TextSVGAttributes<SVGTextElement>;
4068
+ text: TextSVGAttributes<SVGTextElement> & Properties<SVGTextElement>;
3993
4069
  /**
3994
4070
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath
3995
4071
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPathElement
3996
4072
  */
3997
- textPath: TextPathSVGAttributes<SVGTextPathElement>;
4073
+ textPath: TextPathSVGAttributes<SVGTextPathElement> & Properties<SVGTextPathElement>;
3998
4074
  /**
3999
4075
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan
4000
4076
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTSpanElement
4001
4077
  */
4002
- tspan: TSpanSVGAttributes<SVGTSpanElement>;
4078
+ tspan: TSpanSVGAttributes<SVGTSpanElement> & Properties<SVGTSpanElement>;
4003
4079
  /**
4004
4080
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
4005
4081
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGUseElement
4006
4082
  */
4007
- use: UseSVGAttributes<SVGUseElement>;
4083
+ use: UseSVGAttributes<SVGUseElement> & Properties<SVGUseElement>;
4008
4084
  /**
4009
4085
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view
4010
4086
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGViewElement
4011
4087
  */
4012
- view: ViewSVGAttributes<SVGViewElement>;
4088
+ view: ViewSVGAttributes<SVGViewElement> & Properties<SVGViewElement>;
4013
4089
  }
4014
4090
 
4015
4091
  interface MathMLElementTags {
@@ -4017,7 +4093,7 @@ export namespace JSX {
4017
4093
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation
4018
4094
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4019
4095
  */
4020
- annotation: MathMLAnnotationElementAttributes<MathMLElement>;
4096
+ annotation: MathMLAnnotationElementAttributes<MathMLElement> & Properties<MathMLElement>;
4021
4097
  /**
4022
4098
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation-xml
4023
4099
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
@@ -4027,158 +4103,161 @@ export namespace JSX {
4027
4103
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
4028
4104
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4029
4105
  */
4030
- math: MathMLMathElementAttributes<MathMLElement>;
4106
+ math: MathMLMathElementAttributes<MathMLElement> & Properties<MathMLElement>;
4031
4107
  /**
4032
4108
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror
4033
4109
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4034
4110
  */
4035
- merror: MathMLMerrorElementAttributes<MathMLElement>;
4111
+ merror: MathMLMerrorElementAttributes<MathMLElement> & Properties<MathMLElement>;
4036
4112
  /**
4037
4113
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac
4038
4114
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4039
4115
  */
4040
- mfrac: MathMLMfracElementAttributes<MathMLElement>;
4116
+ mfrac: MathMLMfracElementAttributes<MathMLElement> & Properties<MathMLElement>;
4041
4117
  /**
4042
4118
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi
4043
4119
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4044
4120
  */
4045
- mi: MathMLMiElementAttributes<MathMLElement>;
4121
+ mi: MathMLMiElementAttributes<MathMLElement> & Properties<MathMLElement>;
4046
4122
  /**
4047
4123
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts
4048
4124
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4049
4125
  */
4050
- mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement>;
4126
+ mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4051
4127
  /**
4052
4128
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn
4053
4129
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4054
4130
  */
4055
- mn: MathMLMnElementAttributes<MathMLElement>;
4131
+ mn: MathMLMnElementAttributes<MathMLElement> & Properties<MathMLElement>;
4056
4132
  /**
4057
4133
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo
4058
4134
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4059
4135
  */
4060
- mo: MathMLMoElementAttributes<MathMLElement>;
4136
+ mo: MathMLMoElementAttributes<MathMLElement> & Properties<MathMLElement>;
4061
4137
  /**
4062
4138
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover
4063
4139
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4064
4140
  */
4065
- mover: MathMLMoverElementAttributes<MathMLElement>;
4141
+ mover: MathMLMoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4066
4142
  /**
4067
4143
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded
4068
4144
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4069
4145
  */
4070
- mpadded: MathMLMpaddedElementAttributes<MathMLElement>;
4146
+ mpadded: MathMLMpaddedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4071
4147
  /**
4072
4148
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom
4073
4149
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4074
4150
  */
4075
- mphantom: MathMLMphantomElementAttributes<MathMLElement>;
4151
+ mphantom: MathMLMphantomElementAttributes<MathMLElement> & Properties<MathMLElement>;
4076
4152
  /**
4077
4153
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mprescripts
4078
4154
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4079
4155
  */
4080
- mprescripts: MathMLMprescriptsElementAttributes<MathMLElement>;
4156
+ mprescripts: MathMLMprescriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4081
4157
  /**
4082
4158
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot
4083
4159
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4084
4160
  */
4085
- mroot: MathMLMrootElementAttributes<MathMLElement>;
4161
+ mroot: MathMLMrootElementAttributes<MathMLElement> & Properties<MathMLElement>;
4086
4162
  /**
4087
4163
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow
4088
4164
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4089
4165
  */
4090
- mrow: MathMLMrowElementAttributes<MathMLElement>;
4166
+ mrow: MathMLMrowElementAttributes<MathMLElement> & Properties<MathMLElement>;
4091
4167
  /**
4092
4168
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms
4093
4169
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4094
4170
  */
4095
- ms: MathMLMsElementAttributes<MathMLElement>;
4171
+ ms: MathMLMsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4096
4172
  /**
4097
4173
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace
4098
4174
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4099
4175
  */
4100
- mspace: MathMLMspaceElementAttributes<MathMLElement>;
4176
+ mspace: MathMLMspaceElementAttributes<MathMLElement> & Properties<MathMLElement>;
4101
4177
  /**
4102
4178
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt
4103
4179
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4104
4180
  */
4105
- msqrt: MathMLMsqrtElementAttributes<MathMLElement>;
4181
+ msqrt: MathMLMsqrtElementAttributes<MathMLElement> & Properties<MathMLElement>;
4106
4182
  /**
4107
4183
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
4108
4184
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4109
4185
  */
4110
- mstyle: MathMLMstyleElementAttributes<MathMLElement>;
4186
+ mstyle: MathMLMstyleElementAttributes<MathMLElement> & Properties<MathMLElement>;
4111
4187
  /**
4112
4188
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub
4113
4189
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4114
4190
  */
4115
- msub: MathMLMsubElementAttributes<MathMLElement>;
4191
+ msub: MathMLMsubElementAttributes<MathMLElement> & Properties<MathMLElement>;
4116
4192
  /**
4117
4193
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup
4118
4194
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4119
4195
  */
4120
- msubsup: MathMLMsubsupElementAttributes<MathMLElement>;
4196
+ msubsup: MathMLMsubsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4121
4197
  /**
4122
4198
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup
4123
4199
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4124
4200
  */
4125
- msup: MathMLMsupElementAttributes<MathMLElement>;
4201
+ msup: MathMLMsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4126
4202
  /**
4127
4203
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable
4128
4204
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4129
4205
  */
4130
- mtable: MathMLMtableElementAttributes<MathMLElement>;
4206
+ mtable: MathMLMtableElementAttributes<MathMLElement> & Properties<MathMLElement>;
4131
4207
  /**
4132
4208
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd
4133
4209
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4134
4210
  */
4135
- mtd: MathMLMtdElementAttributes<MathMLElement>;
4211
+ mtd: MathMLMtdElementAttributes<MathMLElement> & Properties<MathMLElement>;
4136
4212
  /**
4137
4213
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext
4138
4214
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4139
4215
  */
4140
- mtext: MathMLMtextElementAttributes<MathMLElement>;
4216
+ mtext: MathMLMtextElementAttributes<MathMLElement> & Properties<MathMLElement>;
4141
4217
  /**
4142
4218
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr
4143
4219
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4144
4220
  */
4145
- mtr: MathMLMtrElementAttributes<MathMLElement>;
4221
+ mtr: MathMLMtrElementAttributes<MathMLElement> & Properties<MathMLElement>;
4146
4222
  /**
4147
4223
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder
4148
4224
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4149
4225
  */
4150
- munder: MathMLMunderElementAttributes<MathMLElement>;
4226
+ munder: MathMLMunderElementAttributes<MathMLElement> & Properties<MathMLElement>;
4151
4227
  /**
4152
4228
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover
4153
4229
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4154
4230
  */
4155
- munderover: MathMLMunderoverElementAttributes<MathMLElement>;
4231
+ munderover: MathMLMunderoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4156
4232
  /**
4157
4233
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics
4158
4234
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4159
4235
  */
4160
- semantics: MathMLSemanticsElementAttributes<MathMLElement>;
4236
+ semantics: MathMLSemanticsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4161
4237
  /**
4162
4238
  * @non-standard
4163
4239
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose
4164
4240
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4165
4241
  */
4166
- menclose: MathMLMencloseElementAttributes<MathMLElement>;
4242
+ menclose: MathMLMencloseElementAttributes<MathMLElement> & Properties<MathMLElement>;
4167
4243
  /**
4168
4244
  * @deprecated
4169
4245
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/maction
4170
4246
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4171
4247
  */
4172
- maction: MathMLMactionElementAttributes<MathMLElement>;
4248
+ maction: MathMLMactionElementAttributes<MathMLElement> & Properties<MathMLElement>;
4173
4249
  /**
4174
4250
  * @deprecated
4175
4251
  * @non-standard
4176
4252
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced
4177
4253
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4178
4254
  */
4179
- mfenced: MathMLMfencedElementAttributes<MathMLElement>;
4255
+ mfenced: MathMLMfencedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4180
4256
  }
4181
4257
 
4182
4258
  interface IntrinsicElements
4183
- extends HTMLElementTags, HTMLElementDeprecatedTags, SVGElementTags, MathMLElementTags {}
4259
+ extends HTMLElementTags,
4260
+ HTMLElementDeprecatedTags,
4261
+ SVGElementTags,
4262
+ MathMLElementTags {}
4184
4263
  }