solid-js 2.0.0-beta.6 → 2.0.0-beta.8

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,8 +176,7 @@ 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,
166
- EventListenerOptions {
179
+ extends AddEventListenerOptions, EventListenerOptions {
167
180
  handleEvent: EHandler;
168
181
  }
169
182
 
@@ -252,6 +265,16 @@ export namespace JSX {
252
265
  [Key in keyof CustomEvents as `on:${Key}`]?: EventHandlerWithOptionsUnion<T, CustomEvents[Key]>;
253
266
  };
254
267
 
268
+ /**
269
+ * Writable, element-specific DOM properties exposed as `prop:*` attributes, auto-derived
270
+ * from the element interface `T`. See `./jsx-properties.d.ts` for the filtering rules.
271
+ * Existing element interfaces can locally disable an auto-derived key with
272
+ * `"prop:foo"?: never;` to redirect users to a plain attribute form.
273
+ */
274
+ type Properties<T> = {
275
+ [K in keyof T as PropKey<T, K>]?: WidenPropValue<T[K]>;
276
+ };
277
+
255
278
  // CSS
256
279
 
257
280
  interface CSSProperties extends csstype.PropertiesHyphen {
@@ -685,6 +708,9 @@ export namespace JSX {
685
708
  onAfterPrint?: EventHandlerUnion<T, Event> | undefined;
686
709
  onBeforePrint?: EventHandlerUnion<T, Event> | undefined;
687
710
  onBeforeUnload?: EventHandlerUnion<T, BeforeUnloadEvent> | undefined;
711
+ onDeviceMotion?: EventHandlerUnion<T, DeviceMotionEvent> | undefined;
712
+ onDeviceOrientation?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
713
+ onDeviceOrientationAbsolute?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
688
714
  onGamepadConnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
689
715
  onGamepadDisconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
690
716
  onHashchange?: EventHandlerUnion<T, HashChangeEvent> | undefined;
@@ -693,12 +719,12 @@ export namespace JSX {
693
719
  onMessageError?: EventHandlerUnion<T, MessageEvent> | undefined;
694
720
  onOffline?: EventHandlerUnion<T, Event> | undefined;
695
721
  onOnline?: EventHandlerUnion<T, Event> | undefined;
722
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
723
+ onOrientationChange?: EventHandlerUnion<T, Event> | undefined;
696
724
  onPageHide?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
697
- // TODO `PageRevealEvent` is currently undefined on TS
698
- onPageReveal?: EventHandlerUnion<T, Event> | undefined;
725
+ onPageReveal?: EventHandlerUnion<T, PageRevealEvent> | undefined;
699
726
  onPageShow?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
700
- // TODO `PageSwapEvent` is currently undefined on TS
701
- onPageSwap?: EventHandlerUnion<T, Event> | undefined;
727
+ onPageSwap?: EventHandlerUnion<T, PageSwapEvent> | undefined;
702
728
  onPopstate?: EventHandlerUnion<T, PopStateEvent> | undefined;
703
729
  onRejectionHandled?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
704
730
  onStorage?: EventHandlerUnion<T, StorageEvent> | undefined;
@@ -708,6 +734,11 @@ export namespace JSX {
708
734
  "on:afterprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
709
735
  "on:beforeprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
710
736
  "on:beforeunload"?: EventHandlerWithOptionsUnion<T, BeforeUnloadEvent> | undefined;
737
+ "on:devicemotion"?: EventHandlerWithOptionsUnion<T, DeviceMotionEvent> | undefined;
738
+ "on:deviceorientation"?: EventHandlerWithOptionsUnion<T, DeviceOrientationEvent> | undefined;
739
+ "on:deviceorientationabsolute"?:
740
+ | EventHandlerWithOptionsUnion<T, DeviceOrientationEvent>
741
+ | undefined;
711
742
  "on:gamepadconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
712
743
  "on:gamepaddisconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
713
744
  "on:hashchange"?: EventHandlerWithOptionsUnion<T, HashChangeEvent> | undefined;
@@ -716,12 +747,12 @@ export namespace JSX {
716
747
  "on:messageerror"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
717
748
  "on:offline"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
718
749
  "on:online"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
750
+ /** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
751
+ "on:orientationchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
719
752
  "on:pagehide"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
720
- // TODO `PageRevealEvent` is currently undefined in TS
721
- "on:pagereveal"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
753
+ "on:pagereveal"?: EventHandlerWithOptionsUnion<T, PageRevealEvent> | undefined;
722
754
  "on:pageshow"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
723
- // TODO `PageSwapEvent` is currently undefined in TS
724
- "on:pageswap"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
755
+ "on:pageswap"?: EventHandlerWithOptionsUnion<T, PageSwapEvent> | undefined;
725
756
  "on:popstate"?: EventHandlerWithOptionsUnion<T, PopStateEvent> | undefined;
726
757
  "on:rejectionhandled"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
727
758
  "on:storage"?: EventHandlerWithOptionsUnion<T, StorageEvent> | undefined;
@@ -758,8 +789,7 @@ export namespace JSX {
758
789
  onChange?: ChangeEventHandlerUnion<T, Event> | undefined;
759
790
  onClick?: EventHandlerUnion<T, MouseEvent> | undefined;
760
791
  onClose?: EventHandlerUnion<T, Event> | undefined;
761
- // TODO `CommandEvent` is currently undefined in TS
762
- onCommand?: EventHandlerUnion<T, Event> | undefined;
792
+ onCommand?: EventHandlerUnion<T, CommandEvent> | undefined;
763
793
  onCompositionEnd?: EventHandlerUnion<T, CompositionEvent> | undefined;
764
794
  onCompositionStart?: EventHandlerUnion<T, CompositionEvent> | undefined;
765
795
  onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
@@ -828,10 +858,8 @@ export namespace JSX {
828
858
  onResize?: EventHandlerUnion<T, UIEvent> | undefined;
829
859
  onScroll?: EventHandlerUnion<T, Event> | undefined;
830
860
  onScrollEnd?: EventHandlerUnion<T, Event> | undefined;
831
- // todo `SnapEvent` is currently undefined in TS
832
- onScrollSnapChange?: EventHandlerUnion<T, Event> | undefined;
833
- // todo `SnapEvent` is currently undefined in TS
834
- onScrollSnapChanging?: EventHandlerUnion<T, Event> | undefined;
861
+ onScrollSnapChange?: EventHandlerUnion<T, SnapEvent> | undefined;
862
+ onScrollSnapChanging?: EventHandlerUnion<T, SnapEvent> | undefined;
835
863
  onSecurityPolicyViolation?: EventHandlerUnion<T, SecurityPolicyViolationEvent> | undefined;
836
864
  onSeeked?: EventHandlerUnion<T, Event> | undefined;
837
865
  onSeeking?: EventHandlerUnion<T, Event> | undefined;
@@ -880,8 +908,7 @@ export namespace JSX {
880
908
  "on:change"?: EventHandlerWithOptionsUnion<T, Event, ChangeEventHandler<T, Event>> | undefined;
881
909
  "on:click"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
882
910
  "on:close"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
883
- // TODO `CommandEvent` is currently undefined in TS
884
- "on:command"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
911
+ "on:command"?: EventHandlerWithOptionsUnion<T, CommandEvent> | undefined;
885
912
  "on:compositionend"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
886
913
  "on:compositionstart"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
887
914
  "on:compositionupdate"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
@@ -958,10 +985,8 @@ export namespace JSX {
958
985
  "on:resize"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
959
986
  "on:scroll"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
960
987
  "on:scrollend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
961
- // todo `SnapEvent` is currently undefined in TS
962
- "on:scrollsnapchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
963
- // todo `SnapEvent` is currently undefined in TS
964
- "on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
988
+ "on:scrollsnapchange"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
989
+ "on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
965
990
  "on:securitypolicyviolation"?:
966
991
  | EventHandlerWithOptionsUnion<T, SecurityPolicyViolationEvent>
967
992
  | undefined;
@@ -996,15 +1021,15 @@ export namespace JSX {
996
1021
  ? K extends `on:${infer T}`
997
1022
  ? T
998
1023
  : K extends `on${infer T}`
999
- ? Lowercase<T>
1000
- : never
1024
+ ? Lowercase<T>
1025
+ : never
1001
1026
  : never)
1002
1027
  | (keyof EventHandlersElement<any> extends infer K
1003
1028
  ? K extends `on:${infer T}`
1004
1029
  ? T
1005
1030
  : K extends `on${infer T}`
1006
- ? Lowercase<T>
1007
- : never
1031
+ ? Lowercase<T>
1032
+ : never
1008
1033
  : never)
1009
1034
  | (string & {});
1010
1035
 
@@ -1028,7 +1053,8 @@ export namespace JSX {
1028
1053
  * 2. Includes `keys` defined by `Element` and `Node` interfaces.
1029
1054
  */
1030
1055
  interface ElementAttributes<T>
1031
- extends CustomAttributes<T>,
1056
+ extends
1057
+ 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;
@@ -1581,6 +1608,7 @@ export namespace JSX {
1581
1608
  | (string & {})
1582
1609
  | RemoveAttribute;
1583
1610
  width?: number | string | RemoveAttribute;
1611
+ webkitdirectory?: BooleanAttribute | RemoveAttribute;
1584
1612
 
1585
1613
  /** @non-standard */
1586
1614
  incremental?: BooleanAttribute | RemoveAttribute;
@@ -2289,23 +2317,19 @@ export namespace JSX {
2289
2317
  visibility?: "visible" | "hidden" | "collapse" | "inherit" | RemoveAttribute;
2290
2318
  }
2291
2319
  interface AnimationElementSVGAttributes<T>
2292
- extends SVGAttributes<T>,
2293
- ExternalResourceSVGAttributes,
2294
- ConditionalProcessingSVGAttributes {
2295
- // TODO TimeEvent is currently undefined on TS
2296
- onBegin?: EventHandlerUnion<T, Event> | undefined;
2297
- "on:begin"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2320
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, ConditionalProcessingSVGAttributes {
2321
+ onBegin?: EventHandlerUnion<T, TimeEvent> | undefined;
2322
+ "on:begin"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2298
2323
 
2299
- // TODO TimeEvent is currently undefined on TS
2300
- onEnd?: EventHandlerUnion<T, Event> | undefined;
2301
- "on:end"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2324
+ onEnd?: EventHandlerUnion<T, TimeEvent> | undefined;
2325
+ "on:end"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2302
2326
 
2303
- // TODO TimeEvent is currently undefined on TS
2304
- onRepeat?: EventHandlerUnion<T, Event> | undefined;
2305
- "on:repeat"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
2327
+ onRepeat?: EventHandlerUnion<T, TimeEvent> | undefined;
2328
+ "on:repeat"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
2306
2329
  }
2307
2330
  interface ContainerElementSVGAttributes<T>
2308
- extends SVGAttributes<T>,
2331
+ extends
2332
+ SVGAttributes<T>,
2309
2333
  ShapeElementSVGAttributes<T>,
2310
2334
  Pick<
2311
2335
  PresentationSVGAttributes,
@@ -2319,8 +2343,7 @@ export namespace JSX {
2319
2343
  | "color-rendering"
2320
2344
  > {}
2321
2345
  interface FilterPrimitiveElementSVGAttributes<T>
2322
- extends SVGAttributes<T>,
2323
- Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2346
+ extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2324
2347
  height?: number | string | RemoveAttribute;
2325
2348
  result?: string | RemoveAttribute;
2326
2349
  width?: number | string | RemoveAttribute;
@@ -2339,16 +2362,15 @@ export namespace JSX {
2339
2362
  viewBox?: string | RemoveAttribute;
2340
2363
  }
2341
2364
  interface GradientElementSVGAttributes<T>
2342
- extends SVGAttributes<T>,
2343
- ExternalResourceSVGAttributes,
2344
- StylableSVGAttributes {
2365
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2345
2366
  gradientTransform?: string | RemoveAttribute;
2346
2367
  gradientUnits?: SVGUnits | RemoveAttribute;
2347
2368
  href?: string | RemoveAttribute;
2348
2369
  spreadMethod?: "pad" | "reflect" | "repeat" | RemoveAttribute;
2349
2370
  }
2350
2371
  interface GraphicsElementSVGAttributes<T>
2351
- extends SVGAttributes<T>,
2372
+ extends
2373
+ SVGAttributes<T>,
2352
2374
  Pick<
2353
2375
  PresentationSVGAttributes,
2354
2376
  | "clip-rule"
@@ -2364,12 +2386,12 @@ export namespace JSX {
2364
2386
  > {}
2365
2387
  interface LightSourceElementSVGAttributes<T> extends SVGAttributes<T> {}
2366
2388
  interface NewViewportSVGAttributes<T>
2367
- extends SVGAttributes<T>,
2368
- Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2389
+ extends SVGAttributes<T>, Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2369
2390
  viewBox?: string | RemoveAttribute;
2370
2391
  }
2371
2392
  interface ShapeElementSVGAttributes<T>
2372
- extends SVGAttributes<T>,
2393
+ extends
2394
+ SVGAttributes<T>,
2373
2395
  Pick<
2374
2396
  PresentationSVGAttributes,
2375
2397
  | "color"
@@ -2388,7 +2410,8 @@ export namespace JSX {
2388
2410
  | "pathLength"
2389
2411
  > {}
2390
2412
  interface TextContentElementSVGAttributes<T>
2391
- extends SVGAttributes<T>,
2413
+ extends
2414
+ SVGAttributes<T>,
2392
2415
  Pick<
2393
2416
  PresentationSVGAttributes,
2394
2417
  | "font-family"
@@ -2429,14 +2452,16 @@ export namespace JSX {
2429
2452
  zoomAndPan?: "disable" | "magnify" | RemoveAttribute;
2430
2453
  }
2431
2454
  interface AnimateSVGAttributes<T>
2432
- extends AnimationElementSVGAttributes<T>,
2455
+ extends
2456
+ AnimationElementSVGAttributes<T>,
2433
2457
  AnimationAttributeTargetSVGAttributes,
2434
2458
  AnimationTimingSVGAttributes,
2435
2459
  AnimationValueSVGAttributes,
2436
2460
  AnimationAdditionSVGAttributes,
2437
2461
  Pick<PresentationSVGAttributes, "color-interpolation" | "color-rendering"> {}
2438
2462
  interface AnimateMotionSVGAttributes<T>
2439
- extends AnimationElementSVGAttributes<T>,
2463
+ extends
2464
+ AnimationElementSVGAttributes<T>,
2440
2465
  AnimationTimingSVGAttributes,
2441
2466
  AnimationValueSVGAttributes,
2442
2467
  AnimationAdditionSVGAttributes {
@@ -2446,7 +2471,8 @@ export namespace JSX {
2446
2471
  rotate?: number | string | "auto" | "auto-reverse" | RemoveAttribute;
2447
2472
  }
2448
2473
  interface AnimateTransformSVGAttributes<T>
2449
- extends AnimationElementSVGAttributes<T>,
2474
+ extends
2475
+ AnimationElementSVGAttributes<T>,
2450
2476
  AnimationAttributeTargetSVGAttributes,
2451
2477
  AnimationTimingSVGAttributes,
2452
2478
  AnimationValueSVGAttributes,
@@ -2454,7 +2480,8 @@ export namespace JSX {
2454
2480
  type?: "translate" | "scale" | "rotate" | "skewX" | "skewY" | RemoveAttribute;
2455
2481
  }
2456
2482
  interface CircleSVGAttributes<T>
2457
- extends GraphicsElementSVGAttributes<T>,
2483
+ extends
2484
+ GraphicsElementSVGAttributes<T>,
2458
2485
  ShapeElementSVGAttributes<T>,
2459
2486
  ConditionalProcessingSVGAttributes,
2460
2487
  StylableSVGAttributes,
@@ -2465,7 +2492,8 @@ export namespace JSX {
2465
2492
  r?: number | string | RemoveAttribute;
2466
2493
  }
2467
2494
  interface ClipPathSVGAttributes<T>
2468
- extends SVGAttributes<T>,
2495
+ extends
2496
+ SVGAttributes<T>,
2469
2497
  ConditionalProcessingSVGAttributes,
2470
2498
  ExternalResourceSVGAttributes,
2471
2499
  StylableSVGAttributes,
@@ -2474,14 +2502,16 @@ export namespace JSX {
2474
2502
  clipPathUnits?: SVGUnits | RemoveAttribute;
2475
2503
  }
2476
2504
  interface DefsSVGAttributes<T>
2477
- extends ContainerElementSVGAttributes<T>,
2505
+ extends
2506
+ ContainerElementSVGAttributes<T>,
2478
2507
  ConditionalProcessingSVGAttributes,
2479
2508
  ExternalResourceSVGAttributes,
2480
2509
  StylableSVGAttributes,
2481
2510
  TransformableSVGAttributes {}
2482
2511
  interface DescSVGAttributes<T> extends SVGAttributes<T>, StylableSVGAttributes {}
2483
2512
  interface EllipseSVGAttributes<T>
2484
- extends GraphicsElementSVGAttributes<T>,
2513
+ extends
2514
+ GraphicsElementSVGAttributes<T>,
2485
2515
  ShapeElementSVGAttributes<T>,
2486
2516
  ConditionalProcessingSVGAttributes,
2487
2517
  ExternalResourceSVGAttributes,
@@ -2494,24 +2524,28 @@ export namespace JSX {
2494
2524
  ry?: number | string | RemoveAttribute;
2495
2525
  }
2496
2526
  interface FeBlendSVGAttributes<T>
2497
- extends FilterPrimitiveElementSVGAttributes<T>,
2527
+ extends
2528
+ FilterPrimitiveElementSVGAttributes<T>,
2498
2529
  DoubleInputFilterSVGAttributes,
2499
2530
  StylableSVGAttributes {
2500
2531
  mode?: "normal" | "multiply" | "screen" | "darken" | "lighten" | RemoveAttribute;
2501
2532
  }
2502
2533
  interface FeColorMatrixSVGAttributes<T>
2503
- extends FilterPrimitiveElementSVGAttributes<T>,
2534
+ extends
2535
+ FilterPrimitiveElementSVGAttributes<T>,
2504
2536
  SingleInputFilterSVGAttributes,
2505
2537
  StylableSVGAttributes {
2506
2538
  type?: "matrix" | "saturate" | "hueRotate" | "luminanceToAlpha" | RemoveAttribute;
2507
2539
  values?: string | RemoveAttribute;
2508
2540
  }
2509
2541
  interface FeComponentTransferSVGAttributes<T>
2510
- extends FilterPrimitiveElementSVGAttributes<T>,
2542
+ extends
2543
+ FilterPrimitiveElementSVGAttributes<T>,
2511
2544
  SingleInputFilterSVGAttributes,
2512
2545
  StylableSVGAttributes {}
2513
2546
  interface FeCompositeSVGAttributes<T>
2514
- extends FilterPrimitiveElementSVGAttributes<T>,
2547
+ extends
2548
+ FilterPrimitiveElementSVGAttributes<T>,
2515
2549
  DoubleInputFilterSVGAttributes,
2516
2550
  StylableSVGAttributes {
2517
2551
  k1?: number | string | RemoveAttribute;
@@ -2521,7 +2555,8 @@ export namespace JSX {
2521
2555
  operator?: "over" | "in" | "out" | "atop" | "xor" | "arithmetic" | RemoveAttribute;
2522
2556
  }
2523
2557
  interface FeConvolveMatrixSVGAttributes<T>
2524
- extends FilterPrimitiveElementSVGAttributes<T>,
2558
+ extends
2559
+ FilterPrimitiveElementSVGAttributes<T>,
2525
2560
  SingleInputFilterSVGAttributes,
2526
2561
  StylableSVGAttributes {
2527
2562
  bias?: number | string | RemoveAttribute;
@@ -2535,7 +2570,8 @@ export namespace JSX {
2535
2570
  targetY?: number | string | RemoveAttribute;
2536
2571
  }
2537
2572
  interface FeDiffuseLightingSVGAttributes<T>
2538
- extends FilterPrimitiveElementSVGAttributes<T>,
2573
+ extends
2574
+ FilterPrimitiveElementSVGAttributes<T>,
2539
2575
  SingleInputFilterSVGAttributes,
2540
2576
  StylableSVGAttributes,
2541
2577
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2544,7 +2580,8 @@ export namespace JSX {
2544
2580
  surfaceScale?: number | string | RemoveAttribute;
2545
2581
  }
2546
2582
  interface FeDisplacementMapSVGAttributes<T>
2547
- extends FilterPrimitiveElementSVGAttributes<T>,
2583
+ extends
2584
+ FilterPrimitiveElementSVGAttributes<T>,
2548
2585
  DoubleInputFilterSVGAttributes,
2549
2586
  StylableSVGAttributes {
2550
2587
  scale?: number | string | RemoveAttribute;
@@ -2556,7 +2593,8 @@ export namespace JSX {
2556
2593
  elevation?: number | string | RemoveAttribute;
2557
2594
  }
2558
2595
  interface FeDropShadowSVGAttributes<T>
2559
- extends SVGAttributes<T>,
2596
+ extends
2597
+ SVGAttributes<T>,
2560
2598
  FilterPrimitiveElementSVGAttributes<T>,
2561
2599
  StylableSVGAttributes,
2562
2600
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {
@@ -2565,7 +2603,8 @@ export namespace JSX {
2565
2603
  stdDeviation?: number | string | RemoveAttribute;
2566
2604
  }
2567
2605
  interface FeFloodSVGAttributes<T>
2568
- extends FilterPrimitiveElementSVGAttributes<T>,
2606
+ extends
2607
+ FilterPrimitiveElementSVGAttributes<T>,
2569
2608
  StylableSVGAttributes,
2570
2609
  Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {}
2571
2610
  interface FeFuncSVGAttributes<T> extends SVGAttributes<T> {
@@ -2578,31 +2617,34 @@ export namespace JSX {
2578
2617
  type?: "identity" | "table" | "discrete" | "linear" | "gamma" | RemoveAttribute;
2579
2618
  }
2580
2619
  interface FeGaussianBlurSVGAttributes<T>
2581
- extends FilterPrimitiveElementSVGAttributes<T>,
2620
+ extends
2621
+ FilterPrimitiveElementSVGAttributes<T>,
2582
2622
  SingleInputFilterSVGAttributes,
2583
2623
  StylableSVGAttributes {
2584
2624
  stdDeviation?: number | string | RemoveAttribute;
2585
2625
  }
2586
2626
  interface FeImageSVGAttributes<T>
2587
- extends FilterPrimitiveElementSVGAttributes<T>,
2627
+ extends
2628
+ FilterPrimitiveElementSVGAttributes<T>,
2588
2629
  ExternalResourceSVGAttributes,
2589
2630
  StylableSVGAttributes {
2590
2631
  href?: string | RemoveAttribute;
2591
2632
  preserveAspectRatio?: SVGPreserveAspectRatio | RemoveAttribute;
2592
2633
  }
2593
2634
  interface FeMergeSVGAttributes<T>
2594
- extends FilterPrimitiveElementSVGAttributes<T>,
2595
- StylableSVGAttributes {}
2635
+ extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {}
2596
2636
  interface FeMergeNodeSVGAttributes<T> extends SVGAttributes<T>, SingleInputFilterSVGAttributes {}
2597
2637
  interface FeMorphologySVGAttributes<T>
2598
- extends FilterPrimitiveElementSVGAttributes<T>,
2638
+ extends
2639
+ FilterPrimitiveElementSVGAttributes<T>,
2599
2640
  SingleInputFilterSVGAttributes,
2600
2641
  StylableSVGAttributes {
2601
2642
  operator?: "erode" | "dilate" | RemoveAttribute;
2602
2643
  radius?: number | string | RemoveAttribute;
2603
2644
  }
2604
2645
  interface FeOffsetSVGAttributes<T>
2605
- extends FilterPrimitiveElementSVGAttributes<T>,
2646
+ extends
2647
+ FilterPrimitiveElementSVGAttributes<T>,
2606
2648
  SingleInputFilterSVGAttributes,
2607
2649
  StylableSVGAttributes {
2608
2650
  dx?: number | string | RemoveAttribute;
@@ -2614,7 +2656,8 @@ export namespace JSX {
2614
2656
  z?: number | string | RemoveAttribute;
2615
2657
  }
2616
2658
  interface FeSpecularLightingSVGAttributes<T>
2617
- extends FilterPrimitiveElementSVGAttributes<T>,
2659
+ extends
2660
+ FilterPrimitiveElementSVGAttributes<T>,
2618
2661
  SingleInputFilterSVGAttributes,
2619
2662
  StylableSVGAttributes,
2620
2663
  Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
@@ -2634,12 +2677,12 @@ export namespace JSX {
2634
2677
  z?: number | string | RemoveAttribute;
2635
2678
  }
2636
2679
  interface FeTileSVGAttributes<T>
2637
- extends FilterPrimitiveElementSVGAttributes<T>,
2680
+ extends
2681
+ FilterPrimitiveElementSVGAttributes<T>,
2638
2682
  SingleInputFilterSVGAttributes,
2639
2683
  StylableSVGAttributes {}
2640
2684
  interface FeTurbulanceSVGAttributes<T>
2641
- extends FilterPrimitiveElementSVGAttributes<T>,
2642
- StylableSVGAttributes {
2685
+ extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {
2643
2686
  baseFrequency?: number | string | RemoveAttribute;
2644
2687
  numOctaves?: number | string | RemoveAttribute;
2645
2688
  seed?: number | string | RemoveAttribute;
@@ -2647,9 +2690,7 @@ export namespace JSX {
2647
2690
  type?: "fractalNoise" | "turbulence" | RemoveAttribute;
2648
2691
  }
2649
2692
  interface FilterSVGAttributes<T>
2650
- extends SVGAttributes<T>,
2651
- ExternalResourceSVGAttributes,
2652
- StylableSVGAttributes {
2693
+ extends SVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
2653
2694
  filterRes?: number | string | RemoveAttribute;
2654
2695
  filterUnits?: SVGUnits | RemoveAttribute;
2655
2696
  height?: number | string | RemoveAttribute;
@@ -2659,7 +2700,8 @@ export namespace JSX {
2659
2700
  y?: number | string | RemoveAttribute;
2660
2701
  }
2661
2702
  interface ForeignObjectSVGAttributes<T>
2662
- extends NewViewportSVGAttributes<T>,
2703
+ extends
2704
+ NewViewportSVGAttributes<T>,
2663
2705
  ConditionalProcessingSVGAttributes,
2664
2706
  ExternalResourceSVGAttributes,
2665
2707
  StylableSVGAttributes,
@@ -2671,14 +2713,16 @@ export namespace JSX {
2671
2713
  y?: number | string | RemoveAttribute;
2672
2714
  }
2673
2715
  interface GSVGAttributes<T>
2674
- extends ContainerElementSVGAttributes<T>,
2716
+ extends
2717
+ ContainerElementSVGAttributes<T>,
2675
2718
  ConditionalProcessingSVGAttributes,
2676
2719
  ExternalResourceSVGAttributes,
2677
2720
  StylableSVGAttributes,
2678
2721
  TransformableSVGAttributes,
2679
2722
  Pick<PresentationSVGAttributes, "clip-path" | "display" | "visibility"> {}
2680
2723
  interface ImageSVGAttributes<T>
2681
- extends NewViewportSVGAttributes<T>,
2724
+ extends
2725
+ NewViewportSVGAttributes<T>,
2682
2726
  GraphicsElementSVGAttributes<T>,
2683
2727
  ConditionalProcessingSVGAttributes,
2684
2728
  StylableSVGAttributes,
@@ -2692,7 +2736,8 @@ export namespace JSX {
2692
2736
  y?: number | string | RemoveAttribute;
2693
2737
  }
2694
2738
  interface LineSVGAttributes<T>
2695
- extends GraphicsElementSVGAttributes<T>,
2739
+ extends
2740
+ GraphicsElementSVGAttributes<T>,
2696
2741
  ShapeElementSVGAttributes<T>,
2697
2742
  ConditionalProcessingSVGAttributes,
2698
2743
  ExternalResourceSVGAttributes,
@@ -2711,7 +2756,8 @@ export namespace JSX {
2711
2756
  y2?: number | string | RemoveAttribute;
2712
2757
  }
2713
2758
  interface MarkerSVGAttributes<T>
2714
- extends ContainerElementSVGAttributes<T>,
2759
+ extends
2760
+ ContainerElementSVGAttributes<T>,
2715
2761
  ExternalResourceSVGAttributes,
2716
2762
  StylableSVGAttributes,
2717
2763
  FitToViewBoxSVGAttributes,
@@ -2724,7 +2770,8 @@ export namespace JSX {
2724
2770
  refY?: number | string | RemoveAttribute;
2725
2771
  }
2726
2772
  interface MaskSVGAttributes<T>
2727
- extends Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2773
+ extends
2774
+ Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2728
2775
  ConditionalProcessingSVGAttributes,
2729
2776
  ExternalResourceSVGAttributes,
2730
2777
  StylableSVGAttributes,
@@ -2739,7 +2786,8 @@ export namespace JSX {
2739
2786
  interface MetadataSVGAttributes<T> extends SVGAttributes<T> {}
2740
2787
  interface MPathSVGAttributes<T> extends SVGAttributes<T> {}
2741
2788
  interface PathSVGAttributes<T>
2742
- extends GraphicsElementSVGAttributes<T>,
2789
+ extends
2790
+ GraphicsElementSVGAttributes<T>,
2743
2791
  ShapeElementSVGAttributes<T>,
2744
2792
  ConditionalProcessingSVGAttributes,
2745
2793
  ExternalResourceSVGAttributes,
@@ -2750,7 +2798,8 @@ export namespace JSX {
2750
2798
  pathLength?: number | string | RemoveAttribute;
2751
2799
  }
2752
2800
  interface PatternSVGAttributes<T>
2753
- extends ContainerElementSVGAttributes<T>,
2801
+ extends
2802
+ ContainerElementSVGAttributes<T>,
2754
2803
  ConditionalProcessingSVGAttributes,
2755
2804
  ExternalResourceSVGAttributes,
2756
2805
  StylableSVGAttributes,
@@ -2766,7 +2815,8 @@ export namespace JSX {
2766
2815
  y?: number | string | RemoveAttribute;
2767
2816
  }
2768
2817
  interface PolygonSVGAttributes<T>
2769
- extends GraphicsElementSVGAttributes<T>,
2818
+ extends
2819
+ GraphicsElementSVGAttributes<T>,
2770
2820
  ShapeElementSVGAttributes<T>,
2771
2821
  ConditionalProcessingSVGAttributes,
2772
2822
  ExternalResourceSVGAttributes,
@@ -2776,7 +2826,8 @@ export namespace JSX {
2776
2826
  points?: string | RemoveAttribute;
2777
2827
  }
2778
2828
  interface PolylineSVGAttributes<T>
2779
- extends GraphicsElementSVGAttributes<T>,
2829
+ extends
2830
+ GraphicsElementSVGAttributes<T>,
2780
2831
  ShapeElementSVGAttributes<T>,
2781
2832
  ConditionalProcessingSVGAttributes,
2782
2833
  ExternalResourceSVGAttributes,
@@ -2793,7 +2844,8 @@ export namespace JSX {
2793
2844
  r?: number | string | RemoveAttribute;
2794
2845
  }
2795
2846
  interface RectSVGAttributes<T>
2796
- extends GraphicsElementSVGAttributes<T>,
2847
+ extends
2848
+ GraphicsElementSVGAttributes<T>,
2797
2849
  ShapeElementSVGAttributes<T>,
2798
2850
  ConditionalProcessingSVGAttributes,
2799
2851
  ExternalResourceSVGAttributes,
@@ -2808,17 +2860,17 @@ export namespace JSX {
2808
2860
  y?: number | string | RemoveAttribute;
2809
2861
  }
2810
2862
  interface SetSVGAttributes<T>
2811
- extends AnimationElementSVGAttributes<T>,
2812
- StylableSVGAttributes,
2813
- AnimationTimingSVGAttributes {}
2863
+ extends AnimationElementSVGAttributes<T>, StylableSVGAttributes, AnimationTimingSVGAttributes {}
2814
2864
  interface StopSVGAttributes<T>
2815
- extends SVGAttributes<T>,
2865
+ extends
2866
+ SVGAttributes<T>,
2816
2867
  StylableSVGAttributes,
2817
2868
  Pick<PresentationSVGAttributes, "color" | "stop-color" | "stop-opacity"> {
2818
2869
  offset?: number | string | RemoveAttribute;
2819
2870
  }
2820
2871
  interface SvgSVGAttributes<T>
2821
- extends ContainerElementSVGAttributes<T>,
2872
+ extends
2873
+ ContainerElementSVGAttributes<T>,
2822
2874
  NewViewportSVGAttributes<T>,
2823
2875
  ConditionalProcessingSVGAttributes,
2824
2876
  ExternalResourceSVGAttributes,
@@ -2841,14 +2893,16 @@ export namespace JSX {
2841
2893
  version?: string | RemoveAttribute;
2842
2894
  }
2843
2895
  interface SwitchSVGAttributes<T>
2844
- extends ContainerElementSVGAttributes<T>,
2896
+ extends
2897
+ ContainerElementSVGAttributes<T>,
2845
2898
  ConditionalProcessingSVGAttributes,
2846
2899
  ExternalResourceSVGAttributes,
2847
2900
  StylableSVGAttributes,
2848
2901
  TransformableSVGAttributes,
2849
2902
  Pick<PresentationSVGAttributes, "display" | "visibility"> {}
2850
2903
  interface SymbolSVGAttributes<T>
2851
- extends ContainerElementSVGAttributes<T>,
2904
+ extends
2905
+ ContainerElementSVGAttributes<T>,
2852
2906
  NewViewportSVGAttributes<T>,
2853
2907
  ExternalResourceSVGAttributes,
2854
2908
  StylableSVGAttributes,
@@ -2864,7 +2918,8 @@ export namespace JSX {
2864
2918
  y?: number | string | RemoveAttribute;
2865
2919
  }
2866
2920
  interface TextSVGAttributes<T>
2867
- extends TextContentElementSVGAttributes<T>,
2921
+ extends
2922
+ TextContentElementSVGAttributes<T>,
2868
2923
  GraphicsElementSVGAttributes<T>,
2869
2924
  ConditionalProcessingSVGAttributes,
2870
2925
  ExternalResourceSVGAttributes,
@@ -2880,7 +2935,8 @@ export namespace JSX {
2880
2935
  y?: number | string | RemoveAttribute;
2881
2936
  }
2882
2937
  interface TextPathSVGAttributes<T>
2883
- extends TextContentElementSVGAttributes<T>,
2938
+ extends
2939
+ TextContentElementSVGAttributes<T>,
2884
2940
  ConditionalProcessingSVGAttributes,
2885
2941
  ExternalResourceSVGAttributes,
2886
2942
  StylableSVGAttributes,
@@ -2894,7 +2950,8 @@ export namespace JSX {
2894
2950
  startOffset?: number | string | RemoveAttribute;
2895
2951
  }
2896
2952
  interface TSpanSVGAttributes<T>
2897
- extends TextContentElementSVGAttributes<T>,
2953
+ extends
2954
+ TextContentElementSVGAttributes<T>,
2898
2955
  ConditionalProcessingSVGAttributes,
2899
2956
  ExternalResourceSVGAttributes,
2900
2957
  StylableSVGAttributes,
@@ -2912,7 +2969,8 @@ export namespace JSX {
2912
2969
  }
2913
2970
  /** @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use */
2914
2971
  interface UseSVGAttributes<T>
2915
- extends SVGAttributes<T>,
2972
+ extends
2973
+ SVGAttributes<T>,
2916
2974
  StylableSVGAttributes,
2917
2975
  ConditionalProcessingSVGAttributes,
2918
2976
  GraphicsElementSVGAttributes<T>,
@@ -2926,7 +2984,8 @@ export namespace JSX {
2926
2984
  y?: number | string | RemoveAttribute;
2927
2985
  }
2928
2986
  interface ViewSVGAttributes<T>
2929
- extends SVGAttributes<T>,
2987
+ extends
2988
+ SVGAttributes<T>,
2930
2989
  ExternalResourceSVGAttributes,
2931
2990
  FitToViewBoxSVGAttributes,
2932
2991
  ZoomAndPanSVGAttributes {
@@ -3158,564 +3217,564 @@ export namespace JSX {
3158
3217
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
3159
3218
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
3160
3219
  */
3161
- a: AnchorHTMLAttributes<HTMLAnchorElement>;
3220
+ a: AnchorHTMLAttributes<HTMLAnchorElement> & Properties<HTMLAnchorElement>;
3162
3221
  /**
3163
3222
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
3164
3223
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3165
3224
  */
3166
- abbr: HTMLAttributes<HTMLElement>;
3225
+ abbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3167
3226
  /**
3168
3227
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
3169
3228
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3170
3229
  */
3171
- address: HTMLAttributes<HTMLElement>;
3230
+ address: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3172
3231
  /**
3173
3232
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
3174
3233
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
3175
3234
  */
3176
- area: AreaHTMLAttributes<HTMLAreaElement>;
3235
+ area: AreaHTMLAttributes<HTMLAreaElement> & Properties<HTMLAreaElement>;
3177
3236
  /**
3178
3237
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
3179
3238
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3180
3239
  */
3181
- article: HTMLAttributes<HTMLElement>;
3240
+ article: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3182
3241
  /**
3183
3242
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
3184
3243
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3185
3244
  */
3186
- aside: HTMLAttributes<HTMLElement>;
3245
+ aside: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3187
3246
  /**
3188
3247
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
3189
3248
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement
3190
3249
  */
3191
- audio: AudioHTMLAttributes<HTMLAudioElement>;
3250
+ audio: AudioHTMLAttributes<HTMLAudioElement> & Properties<HTMLAudioElement>;
3192
3251
  /**
3193
3252
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
3194
3253
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3195
3254
  */
3196
- b: HTMLAttributes<HTMLElement>;
3255
+ b: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3197
3256
  /**
3198
3257
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
3199
3258
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBaseElement
3200
3259
  */
3201
- base: BaseHTMLAttributes<HTMLBaseElement>;
3260
+ base: BaseHTMLAttributes<HTMLBaseElement> & Properties<HTMLBaseElement>;
3202
3261
  /**
3203
3262
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
3204
3263
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3205
3264
  */
3206
- bdi: HTMLAttributes<HTMLElement>;
3265
+ bdi: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3207
3266
  /**
3208
3267
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
3209
3268
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3210
3269
  */
3211
- bdo: BdoHTMLAttributes<HTMLElement>;
3270
+ bdo: BdoHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3212
3271
  /**
3213
3272
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
3214
3273
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3215
3274
  */
3216
- blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
3275
+ blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3217
3276
  /**
3218
3277
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
3219
3278
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
3220
3279
  */
3221
- body: BodyHTMLAttributes<HTMLBodyElement>;
3280
+ body: BodyHTMLAttributes<HTMLBodyElement> & Properties<HTMLBodyElement>;
3222
3281
  /**
3223
3282
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
3224
3283
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBRElement
3225
3284
  */
3226
- br: HTMLAttributes<HTMLBRElement>;
3285
+ br: HTMLAttributes<HTMLBRElement> & Properties<HTMLBRElement>;
3227
3286
  /**
3228
3287
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
3229
3288
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement
3230
3289
  */
3231
- button: ButtonHTMLAttributes<HTMLButtonElement>;
3290
+ button: ButtonHTMLAttributes<HTMLButtonElement> & Properties<HTMLButtonElement>;
3232
3291
  /**
3233
3292
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
3234
3293
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
3235
3294
  */
3236
- canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
3295
+ canvas: CanvasHTMLAttributes<HTMLCanvasElement> & Properties<HTMLCanvasElement>;
3237
3296
  /**
3238
3297
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
3239
3298
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement
3240
3299
  */
3241
- caption: CaptionHTMLAttributes<HTMLTableCaptionElement>;
3300
+ caption: CaptionHTMLAttributes<HTMLTableCaptionElement> & Properties<HTMLTableCaptionElement>;
3242
3301
  /**
3243
3302
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
3244
3303
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3245
3304
  */
3246
- cite: HTMLAttributes<HTMLElement>;
3305
+ cite: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3247
3306
  /**
3248
3307
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
3249
3308
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3250
3309
  */
3251
- code: HTMLAttributes<HTMLElement>;
3310
+ code: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3252
3311
  /**
3253
3312
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
3254
3313
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3255
3314
  */
3256
- col: ColHTMLAttributes<HTMLTableColElement>;
3315
+ col: ColHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3257
3316
  /**
3258
3317
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
3259
3318
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3260
3319
  */
3261
- colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
3320
+ colgroup: ColgroupHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
3262
3321
  /**
3263
3322
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
3264
3323
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
3265
3324
  */
3266
- data: DataHTMLAttributes<HTMLDataElement>;
3325
+ data: DataHTMLAttributes<HTMLDataElement> & Properties<HTMLDataElement>;
3267
3326
  /**
3268
3327
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
3269
3328
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement
3270
3329
  */
3271
- datalist: HTMLAttributes<HTMLDataListElement>;
3330
+ datalist: HTMLAttributes<HTMLDataListElement> & Properties<HTMLDataListElement>;
3272
3331
  /**
3273
3332
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
3274
3333
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3275
3334
  */
3276
- dd: HTMLAttributes<HTMLElement>;
3335
+ dd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3277
3336
  /**
3278
3337
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
3279
3338
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3280
3339
  */
3281
- del: ModHTMLAttributes<HTMLModElement>;
3340
+ del: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3282
3341
  /**
3283
3342
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
3284
3343
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement
3285
3344
  */
3286
- details: DetailsHtmlAttributes<HTMLDetailsElement>;
3345
+ details: DetailsHtmlAttributes<HTMLDetailsElement> & Properties<HTMLDetailsElement>;
3287
3346
  /**
3288
3347
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
3289
3348
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3290
3349
  */
3291
- dfn: HTMLAttributes<HTMLElement>;
3350
+ dfn: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3292
3351
  /**
3293
3352
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
3294
3353
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement
3295
3354
  */
3296
- dialog: DialogHtmlAttributes<HTMLDialogElement>;
3355
+ dialog: DialogHtmlAttributes<HTMLDialogElement> & Properties<HTMLDialogElement>;
3297
3356
  /**
3298
3357
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
3299
3358
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement
3300
3359
  */
3301
- div: HTMLAttributes<HTMLDivElement>;
3360
+ div: HTMLAttributes<HTMLDivElement> & Properties<HTMLDivElement>;
3302
3361
  /**
3303
3362
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
3304
3363
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDListElement
3305
3364
  */
3306
- dl: HTMLAttributes<HTMLDListElement>;
3365
+ dl: HTMLAttributes<HTMLDListElement> & Properties<HTMLDListElement>;
3307
3366
  /**
3308
3367
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
3309
3368
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3310
3369
  */
3311
- dt: HTMLAttributes<HTMLElement>;
3370
+ dt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3312
3371
  /**
3313
3372
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
3314
3373
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3315
3374
  */
3316
- em: HTMLAttributes<HTMLElement>;
3375
+ em: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3317
3376
  /**
3318
3377
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
3319
3378
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
3320
3379
  */
3321
- embed: EmbedHTMLAttributes<HTMLEmbedElement>;
3380
+ embed: EmbedHTMLAttributes<HTMLEmbedElement> & Properties<HTMLEmbedElement>;
3322
3381
  /**
3323
3382
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
3324
3383
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
3325
3384
  */
3326
- fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
3385
+ fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement> & Properties<HTMLFieldSetElement>;
3327
3386
  /**
3328
3387
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
3329
3388
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3330
3389
  */
3331
- figcaption: HTMLAttributes<HTMLElement>;
3390
+ figcaption: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3332
3391
  /**
3333
3392
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
3334
3393
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3335
3394
  */
3336
- figure: HTMLAttributes<HTMLElement>;
3395
+ figure: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3337
3396
  /**
3338
3397
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
3339
3398
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3340
3399
  */
3341
- footer: HTMLAttributes<HTMLElement>;
3400
+ footer: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3342
3401
  /**
3343
3402
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
3344
3403
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement
3345
3404
  */
3346
- form: FormHTMLAttributes<HTMLFormElement>;
3405
+ form: FormHTMLAttributes<HTMLFormElement> & Properties<HTMLFormElement>;
3347
3406
  /**
3348
3407
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
3349
3408
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3350
3409
  */
3351
- h1: HTMLAttributes<HTMLHeadingElement>;
3410
+ h1: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3352
3411
  /**
3353
3412
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
3354
3413
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3355
3414
  */
3356
- h2: HTMLAttributes<HTMLHeadingElement>;
3415
+ h2: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3357
3416
  /**
3358
3417
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
3359
3418
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3360
3419
  */
3361
- h3: HTMLAttributes<HTMLHeadingElement>;
3420
+ h3: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3362
3421
  /**
3363
3422
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
3364
3423
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3365
3424
  */
3366
- h4: HTMLAttributes<HTMLHeadingElement>;
3425
+ h4: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3367
3426
  /**
3368
3427
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
3369
3428
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3370
3429
  */
3371
- h5: HTMLAttributes<HTMLHeadingElement>;
3430
+ h5: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3372
3431
  /**
3373
3432
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
3374
3433
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3375
3434
  */
3376
- h6: HTMLAttributes<HTMLHeadingElement>;
3435
+ h6: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
3377
3436
  /**
3378
3437
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
3379
3438
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement
3380
3439
  */
3381
- head: HTMLAttributes<HTMLHeadElement>;
3440
+ head: HTMLAttributes<HTMLHeadElement> & Properties<HTMLHeadElement>;
3382
3441
  /**
3383
3442
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
3384
3443
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3385
3444
  */
3386
- header: HTMLAttributes<HTMLElement>;
3445
+ header: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3387
3446
  /**
3388
3447
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
3389
3448
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3390
3449
  */
3391
- hgroup: HTMLAttributes<HTMLElement>;
3450
+ hgroup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3392
3451
  /**
3393
3452
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
3394
3453
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHRElement
3395
3454
  */
3396
- hr: HTMLAttributes<HTMLHRElement>;
3455
+ hr: HTMLAttributes<HTMLHRElement> & Properties<HTMLHRElement>;
3397
3456
  /**
3398
3457
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
3399
3458
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement
3400
3459
  */
3401
- html: HTMLAttributes<HTMLHtmlElement>;
3460
+ html: HTMLAttributes<HTMLHtmlElement> & Properties<HTMLHtmlElement>;
3402
3461
  /**
3403
3462
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
3404
3463
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3405
3464
  */
3406
- i: HTMLAttributes<HTMLElement>;
3465
+ i: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3407
3466
  /**
3408
3467
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
3409
3468
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
3410
3469
  */
3411
- iframe: IframeHTMLAttributes<HTMLIFrameElement>;
3470
+ iframe: IframeHTMLAttributes<HTMLIFrameElement> & Properties<HTMLIFrameElement>;
3412
3471
  /**
3413
3472
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
3414
3473
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
3415
3474
  */
3416
- img: ImgHTMLAttributes<HTMLImageElement>;
3475
+ img: ImgHTMLAttributes<HTMLImageElement> & Properties<HTMLImageElement>;
3417
3476
  /**
3418
3477
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
3419
3478
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement
3420
3479
  */
3421
- input: InputHTMLAttributes<HTMLInputElement>;
3480
+ input: InputHTMLAttributes<HTMLInputElement> & Properties<HTMLInputElement>;
3422
3481
  /**
3423
3482
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
3424
3483
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3425
3484
  */
3426
- ins: ModHTMLAttributes<HTMLModElement>;
3485
+ ins: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
3427
3486
  /**
3428
3487
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
3429
3488
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3430
3489
  */
3431
- kbd: HTMLAttributes<HTMLElement>;
3490
+ kbd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3432
3491
  /**
3433
3492
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
3434
3493
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement
3435
3494
  */
3436
- label: LabelHTMLAttributes<HTMLLabelElement>;
3495
+ label: LabelHTMLAttributes<HTMLLabelElement> & Properties<HTMLLabelElement>;
3437
3496
  /**
3438
3497
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
3439
3498
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
3440
3499
  */
3441
- legend: HTMLAttributes<HTMLLegendElement>;
3500
+ legend: HTMLAttributes<HTMLLegendElement> & Properties<HTMLLegendElement>;
3442
3501
  /**
3443
3502
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
3444
3503
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
3445
3504
  */
3446
- li: LiHTMLAttributes<HTMLLIElement>;
3505
+ li: LiHTMLAttributes<HTMLLIElement> & Properties<HTMLLIElement>;
3447
3506
  /**
3448
3507
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
3449
3508
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement
3450
3509
  */
3451
- link: LinkHTMLAttributes<HTMLLinkElement>;
3510
+ link: LinkHTMLAttributes<HTMLLinkElement> & Properties<HTMLLinkElement>;
3452
3511
  /**
3453
3512
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
3454
3513
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3455
3514
  */
3456
- main: HTMLAttributes<HTMLElement>;
3515
+ main: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3457
3516
  /**
3458
3517
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
3459
3518
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMapElement
3460
3519
  */
3461
- map: MapHTMLAttributes<HTMLMapElement>;
3520
+ map: MapHTMLAttributes<HTMLMapElement> & Properties<HTMLMapElement>;
3462
3521
  /**
3463
3522
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
3464
3523
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3465
3524
  */
3466
- mark: HTMLAttributes<HTMLElement>;
3525
+ mark: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3467
3526
  /**
3468
3527
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
3469
3528
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMenuElement
3470
3529
  */
3471
- menu: MenuHTMLAttributes<HTMLMenuElement>;
3530
+ menu: MenuHTMLAttributes<HTMLMenuElement> & Properties<HTMLMenuElement>;
3472
3531
  /**
3473
3532
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
3474
3533
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement
3475
3534
  */
3476
- meta: MetaHTMLAttributes<HTMLMetaElement>;
3535
+ meta: MetaHTMLAttributes<HTMLMetaElement> & Properties<HTMLMetaElement>;
3477
3536
  /**
3478
3537
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
3479
3538
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement
3480
3539
  */
3481
- meter: MeterHTMLAttributes<HTMLMeterElement>;
3540
+ meter: MeterHTMLAttributes<HTMLMeterElement> & Properties<HTMLMeterElement>;
3482
3541
  /**
3483
3542
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
3484
3543
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3485
3544
  */
3486
- nav: HTMLAttributes<HTMLElement>;
3545
+ nav: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3487
3546
  /**
3488
3547
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
3489
3548
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3490
3549
  */
3491
- noscript: HTMLAttributes<HTMLElement>;
3550
+ noscript: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3492
3551
  /**
3493
3552
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
3494
3553
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement
3495
3554
  */
3496
- object: ObjectHTMLAttributes<HTMLObjectElement>;
3555
+ object: ObjectHTMLAttributes<HTMLObjectElement> & Properties<HTMLObjectElement>;
3497
3556
  /**
3498
3557
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
3499
3558
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
3500
3559
  */
3501
- ol: OlHTMLAttributes<HTMLOListElement>;
3560
+ ol: OlHTMLAttributes<HTMLOListElement> & Properties<HTMLOListElement>;
3502
3561
  /**
3503
3562
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
3504
3563
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement
3505
3564
  */
3506
- optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
3565
+ optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement> & Properties<HTMLOptGroupElement>;
3507
3566
  /**
3508
3567
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
3509
3568
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement
3510
3569
  */
3511
- option: OptionHTMLAttributes<HTMLOptionElement>;
3570
+ option: OptionHTMLAttributes<HTMLOptionElement> & Properties<HTMLOptionElement>;
3512
3571
  /**
3513
3572
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
3514
3573
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement
3515
3574
  */
3516
- output: OutputHTMLAttributes<HTMLOutputElement>;
3575
+ output: OutputHTMLAttributes<HTMLOutputElement> & Properties<HTMLOutputElement>;
3517
3576
  /**
3518
3577
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
3519
3578
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement
3520
3579
  */
3521
- p: HTMLAttributes<HTMLParagraphElement>;
3580
+ p: HTMLAttributes<HTMLParagraphElement> & Properties<HTMLParagraphElement>;
3522
3581
  /**
3523
3582
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
3524
3583
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement
3525
3584
  */
3526
- picture: HTMLAttributes<HTMLPictureElement>;
3585
+ picture: HTMLAttributes<HTMLPictureElement> & Properties<HTMLPictureElement>;
3527
3586
  /**
3528
3587
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
3529
3588
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement
3530
3589
  */
3531
- pre: HTMLAttributes<HTMLPreElement>;
3590
+ pre: HTMLAttributes<HTMLPreElement> & Properties<HTMLPreElement>;
3532
3591
  /**
3533
3592
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
3534
3593
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
3535
3594
  */
3536
- progress: ProgressHTMLAttributes<HTMLProgressElement>;
3595
+ progress: ProgressHTMLAttributes<HTMLProgressElement> & Properties<HTMLProgressElement>;
3537
3596
  /**
3538
3597
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
3539
3598
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3540
3599
  */
3541
- q: QuoteHTMLAttributes<HTMLQuoteElement>;
3600
+ q: QuoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
3542
3601
  /**
3543
3602
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
3544
3603
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3545
3604
  */
3546
- rp: HTMLAttributes<HTMLElement>;
3605
+ rp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3547
3606
  /**
3548
3607
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
3549
3608
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3550
3609
  */
3551
- rt: HTMLAttributes<HTMLElement>;
3610
+ rt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3552
3611
  /**
3553
3612
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
3554
3613
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3555
3614
  */
3556
- ruby: HTMLAttributes<HTMLElement>;
3615
+ ruby: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3557
3616
  /**
3558
3617
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
3559
3618
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3560
3619
  */
3561
- s: HTMLAttributes<HTMLElement>;
3620
+ s: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3562
3621
  /**
3563
3622
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
3564
3623
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3565
3624
  */
3566
- samp: HTMLAttributes<HTMLElement>;
3625
+ samp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3567
3626
  /**
3568
3627
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
3569
3628
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement
3570
3629
  */
3571
- script: ScriptHTMLAttributes<HTMLScriptElement>;
3630
+ script: ScriptHTMLAttributes<HTMLScriptElement> & Properties<HTMLScriptElement>;
3572
3631
  /**
3573
3632
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
3574
3633
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3575
3634
  */
3576
- search: HTMLAttributes<HTMLElement>;
3635
+ search: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3577
3636
  /**
3578
3637
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
3579
3638
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3580
3639
  */
3581
- section: HTMLAttributes<HTMLElement>;
3640
+ section: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3582
3641
  /**
3583
3642
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
3584
3643
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement
3585
3644
  */
3586
- select: SelectHTMLAttributes<HTMLSelectElement>;
3645
+ select: SelectHTMLAttributes<HTMLSelectElement> & Properties<HTMLSelectElement>;
3587
3646
  /**
3588
3647
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
3589
3648
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement
3590
3649
  */
3591
- slot: HTMLSlotElementAttributes<HTMLSlotElement>;
3650
+ slot: HTMLSlotElementAttributes<HTMLSlotElement> & Properties<HTMLSlotElement>;
3592
3651
  /**
3593
3652
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
3594
3653
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3595
3654
  */
3596
- small: HTMLAttributes<HTMLElement>;
3655
+ small: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3597
3656
  /**
3598
3657
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
3599
3658
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
3600
3659
  */
3601
- source: SourceHTMLAttributes<HTMLSourceElement>;
3660
+ source: SourceHTMLAttributes<HTMLSourceElement> & Properties<HTMLSourceElement>;
3602
3661
  /**
3603
3662
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
3604
3663
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement
3605
3664
  */
3606
- span: HTMLAttributes<HTMLSpanElement>;
3665
+ span: HTMLAttributes<HTMLSpanElement> & Properties<HTMLSpanElement>;
3607
3666
  /**
3608
3667
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
3609
3668
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3610
3669
  */
3611
- strong: HTMLAttributes<HTMLElement>;
3670
+ strong: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3612
3671
  /**
3613
3672
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
3614
3673
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement
3615
3674
  */
3616
- style: StyleHTMLAttributes<HTMLStyleElement>;
3675
+ style: StyleHTMLAttributes<HTMLStyleElement> & Properties<HTMLStyleElement>;
3617
3676
  /**
3618
3677
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
3619
3678
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3620
3679
  */
3621
- sub: HTMLAttributes<HTMLElement>;
3680
+ sub: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3622
3681
  /**
3623
3682
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
3624
3683
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3625
3684
  */
3626
- summary: HTMLAttributes<HTMLElement>;
3685
+ summary: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3627
3686
  /**
3628
3687
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
3629
3688
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3630
3689
  */
3631
- sup: HTMLAttributes<HTMLElement>;
3690
+ sup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3632
3691
  /**
3633
3692
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
3634
3693
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement
3635
3694
  */
3636
- table: HTMLAttributes<HTMLTableElement>;
3695
+ table: HTMLAttributes<HTMLTableElement> & Properties<HTMLTableElement>;
3637
3696
  /**
3638
3697
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
3639
3698
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3640
3699
  */
3641
- tbody: HTMLAttributes<HTMLTableSectionElement>;
3700
+ tbody: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3642
3701
  /**
3643
3702
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
3644
3703
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3645
3704
  */
3646
- td: TdHTMLAttributes<HTMLTableCellElement>;
3705
+ td: TdHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3647
3706
  /**
3648
3707
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
3649
3708
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement
3650
3709
  */
3651
- template: TemplateHTMLAttributes<HTMLTemplateElement>;
3710
+ template: TemplateHTMLAttributes<HTMLTemplateElement> & Properties<HTMLTemplateElement>;
3652
3711
  /**
3653
3712
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
3654
3713
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
3655
3714
  */
3656
- textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
3715
+ textarea: TextareaHTMLAttributes<HTMLTextAreaElement> & Properties<HTMLTextAreaElement>;
3657
3716
  /**
3658
3717
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
3659
3718
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3660
3719
  */
3661
- tfoot: HTMLAttributes<HTMLTableSectionElement>;
3720
+ tfoot: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3662
3721
  /**
3663
3722
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
3664
3723
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3665
3724
  */
3666
- th: ThHTMLAttributes<HTMLTableCellElement>;
3725
+ th: ThHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
3667
3726
  /**
3668
3727
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
3669
3728
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3670
3729
  */
3671
- thead: HTMLAttributes<HTMLTableSectionElement>;
3730
+ thead: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
3672
3731
  /**
3673
3732
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
3674
3733
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement
3675
3734
  */
3676
- time: TimeHTMLAttributes<HTMLTimeElement>;
3735
+ time: TimeHTMLAttributes<HTMLTimeElement> & Properties<HTMLTimeElement>;
3677
3736
  /**
3678
3737
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
3679
3738
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement
3680
3739
  */
3681
- title: HTMLAttributes<HTMLTitleElement>;
3740
+ title: HTMLAttributes<HTMLTitleElement> & Properties<HTMLTitleElement>;
3682
3741
  /**
3683
3742
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
3684
3743
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement
3685
3744
  */
3686
- tr: HTMLAttributes<HTMLTableRowElement>;
3745
+ tr: HTMLAttributes<HTMLTableRowElement> & Properties<HTMLTableRowElement>;
3687
3746
  /**
3688
3747
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
3689
3748
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTrackElement
3690
3749
  */
3691
- track: TrackHTMLAttributes<HTMLTrackElement>;
3750
+ track: TrackHTMLAttributes<HTMLTrackElement> & Properties<HTMLTrackElement>;
3692
3751
  /**
3693
3752
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
3694
3753
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3695
3754
  */
3696
- u: HTMLAttributes<HTMLElement>;
3755
+ u: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3697
3756
  /**
3698
3757
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
3699
3758
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement
3700
3759
  */
3701
- ul: HTMLAttributes<HTMLUListElement>;
3760
+ ul: HTMLAttributes<HTMLUListElement> & Properties<HTMLUListElement>;
3702
3761
  /**
3703
3762
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
3704
3763
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3705
3764
  */
3706
- var: HTMLAttributes<HTMLElement>;
3765
+ var: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3707
3766
  /**
3708
3767
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
3709
3768
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement
3710
3769
  */
3711
- video: VideoHTMLAttributes<HTMLVideoElement>;
3770
+ video: VideoHTMLAttributes<HTMLVideoElement> & Properties<HTMLVideoElement>;
3712
3771
  /**
3713
3772
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
3714
3773
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3715
3774
  */
3716
- wbr: HTMLAttributes<HTMLElement>;
3775
+ wbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3717
3776
  /** @url https://www.electronjs.org/docs/latest/api/webview-tag */
3718
- webview: WebViewHTMLAttributes<HTMLElement>;
3777
+ webview: WebViewHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3719
3778
  }
3720
3779
  /** @type {HTMLElementDeprecatedTagNameMap} */
3721
3780
  interface HTMLElementDeprecatedTags {
@@ -3724,25 +3783,25 @@ export namespace JSX {
3724
3783
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
3725
3784
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3726
3785
  */
3727
- big: HTMLAttributes<HTMLElement>;
3786
+ big: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
3728
3787
  /**
3729
3788
  * @deprecated
3730
3789
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3731
3790
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3732
3791
  */
3733
- keygen: KeygenHTMLAttributes<HTMLUnknownElement>;
3792
+ keygen: KeygenHTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3734
3793
  /**
3735
3794
  * @deprecated
3736
3795
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
3737
3796
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3738
3797
  */
3739
- menuitem: HTMLAttributes<HTMLUnknownElement>;
3798
+ menuitem: HTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
3740
3799
  /**
3741
3800
  * @deprecated
3742
3801
  * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
3743
3802
  * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParamElement
3744
3803
  */
3745
- param: ParamHTMLAttributes<HTMLParamElement>;
3804
+ param: ParamHTMLAttributes<HTMLParamElement> & Properties<HTMLParamElement>;
3746
3805
  }
3747
3806
  /** @type {SVGElementTagNameMap} */
3748
3807
  interface SVGElementTags {
@@ -3750,297 +3809,317 @@ export namespace JSX {
3750
3809
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
3751
3810
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement
3752
3811
  */
3753
- animate: AnimateSVGAttributes<SVGAnimateElement>;
3812
+ animate: AnimateSVGAttributes<SVGAnimateElement> & Properties<SVGAnimateElement>;
3754
3813
  /**
3755
3814
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion
3756
3815
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement
3757
3816
  */
3758
- animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
3817
+ animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement> &
3818
+ Properties<SVGAnimateMotionElement>;
3759
3819
  /**
3760
3820
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform
3761
3821
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement
3762
3822
  */
3763
- animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
3823
+ animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement> &
3824
+ Properties<SVGAnimateTransformElement>;
3764
3825
  /**
3765
3826
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
3766
3827
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement
3767
3828
  */
3768
- circle: CircleSVGAttributes<SVGCircleElement>;
3829
+ circle: CircleSVGAttributes<SVGCircleElement> & Properties<SVGCircleElement>;
3769
3830
  /**
3770
3831
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath
3771
3832
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
3772
3833
  */
3773
- clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
3834
+ clipPath: ClipPathSVGAttributes<SVGClipPathElement> & Properties<SVGClipPathElement>;
3774
3835
  /**
3775
3836
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
3776
3837
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDefsElement
3777
3838
  */
3778
- defs: DefsSVGAttributes<SVGDefsElement>;
3839
+ defs: DefsSVGAttributes<SVGDefsElement> & Properties<SVGDefsElement>;
3779
3840
  /**
3780
3841
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
3781
3842
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDescElement
3782
3843
  */
3783
- desc: DescSVGAttributes<SVGDescElement>;
3844
+ desc: DescSVGAttributes<SVGDescElement> & Properties<SVGDescElement>;
3784
3845
  /**
3785
3846
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
3786
3847
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement
3787
3848
  */
3788
- ellipse: EllipseSVGAttributes<SVGEllipseElement>;
3849
+ ellipse: EllipseSVGAttributes<SVGEllipseElement> & Properties<SVGEllipseElement>;
3789
3850
  /**
3790
3851
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend
3791
3852
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
3792
3853
  */
3793
- feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
3854
+ feBlend: FeBlendSVGAttributes<SVGFEBlendElement> & Properties<SVGFEBlendElement>;
3794
3855
  /**
3795
3856
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix
3796
3857
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement
3797
3858
  */
3798
- feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
3859
+ feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement> &
3860
+ Properties<SVGFEColorMatrixElement>;
3799
3861
  /**
3800
3862
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer
3801
3863
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElemen
3802
3864
  */
3803
- feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
3865
+ feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement> &
3866
+ Properties<SVGFEComponentTransferElement>;
3804
3867
  /**
3805
3868
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite
3806
3869
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
3807
3870
  */
3808
- feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
3871
+ feComposite: FeCompositeSVGAttributes<SVGFECompositeElement> &
3872
+ Properties<SVGFECompositeElement>;
3809
3873
  /**
3810
3874
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix
3811
3875
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEConvolveMatrixElement
3812
3876
  */
3813
- feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
3877
+ feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement> &
3878
+ Properties<SVGFEConvolveMatrixElement>;
3814
3879
  /**
3815
3880
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting
3816
3881
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDiffuseLightingElement
3817
3882
  */
3818
- feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
3883
+ feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement> &
3884
+ Properties<SVGFEDiffuseLightingElement>;
3819
3885
  /**
3820
3886
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap
3821
3887
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDisplacementMapElement
3822
3888
  */
3823
- feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
3889
+ feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement> &
3890
+ Properties<SVGFEDisplacementMapElement>;
3824
3891
  /**
3825
3892
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight
3826
3893
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
3827
3894
  */
3828
- feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
3895
+ feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement> &
3896
+ Properties<SVGFEDistantLightElement>;
3829
3897
  /**
3830
3898
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow
3831
3899
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDropShadowElement
3832
3900
  */
3833
- feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement>;
3901
+ feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement> &
3902
+ Properties<SVGFEDropShadowElement>;
3834
3903
  /**
3835
3904
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood
3836
3905
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFloodElement
3837
3906
  */
3838
- feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
3907
+ feFlood: FeFloodSVGAttributes<SVGFEFloodElement> & Properties<SVGFEFloodElement>;
3839
3908
  /**
3840
3909
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA
3841
3910
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncAElement
3842
3911
  */
3843
- feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
3912
+ feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement> & Properties<SVGFEFuncAElement>;
3844
3913
  /**
3845
3914
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB
3846
3915
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncBElement
3847
3916
  */
3848
- feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
3917
+ feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement> & Properties<SVGFEFuncBElement>;
3849
3918
  /**
3850
3919
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG
3851
3920
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncGElement
3852
3921
  */
3853
- feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
3922
+ feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement> & Properties<SVGFEFuncGElement>;
3854
3923
  /**
3855
3924
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR
3856
3925
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncRElement
3857
3926
  */
3858
- feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
3927
+ feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement> & Properties<SVGFEFuncRElement>;
3859
3928
  /**
3860
3929
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur
3861
3930
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEGaussianBlurElement
3862
3931
  */
3863
- feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
3932
+ feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement> &
3933
+ Properties<SVGFEGaussianBlurElement>;
3864
3934
  /**
3865
3935
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage
3866
3936
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement
3867
3937
  */
3868
- feImage: FeImageSVGAttributes<SVGFEImageElement>;
3938
+ feImage: FeImageSVGAttributes<SVGFEImageElement> & Properties<SVGFEImageElement>;
3869
3939
  /**
3870
3940
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge
3871
3941
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement
3872
3942
  */
3873
- feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
3943
+ feMerge: FeMergeSVGAttributes<SVGFEMergeElement> & Properties<SVGFEMergeElement>;
3874
3944
  /**
3875
3945
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode
3876
3946
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
3877
3947
  */
3878
- feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
3948
+ feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement> &
3949
+ Properties<SVGFEMergeNodeElement>;
3879
3950
  /**
3880
3951
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology
3881
3952
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMorphologyElement
3882
3953
  */
3883
- feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
3954
+ feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement> &
3955
+ Properties<SVGFEMorphologyElement>;
3884
3956
  /**
3885
3957
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset
3886
3958
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEOffsetElement
3887
3959
  */
3888
- feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
3960
+ feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement> & Properties<SVGFEOffsetElement>;
3889
3961
  /**
3890
3962
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight
3891
3963
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
3892
3964
  */
3893
- fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
3965
+ fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement> &
3966
+ Properties<SVGFEPointLightElement>;
3894
3967
  /**
3895
3968
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting
3896
3969
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
3897
3970
  */
3898
- feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
3971
+ feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement> &
3972
+ Properties<SVGFESpecularLightingElement>;
3899
3973
  /**
3900
3974
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight
3901
3975
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
3902
3976
  */
3903
- feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
3977
+ feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement> &
3978
+ Properties<SVGFESpotLightElement>;
3904
3979
  /**
3905
3980
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile
3906
3981
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETileElement
3907
3982
  */
3908
- feTile: FeTileSVGAttributes<SVGFETileElement>;
3983
+ feTile: FeTileSVGAttributes<SVGFETileElement> & Properties<SVGFETileElement>;
3909
3984
  /**
3910
3985
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence
3911
3986
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
3912
3987
  */
3913
- feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
3988
+ feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement> &
3989
+ Properties<SVGFETurbulenceElement>;
3914
3990
  /**
3915
3991
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter
3916
3992
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFilterElement
3917
3993
  */
3918
- filter: FilterSVGAttributes<SVGFilterElement>;
3994
+ filter: FilterSVGAttributes<SVGFilterElement> & Properties<SVGFilterElement>;
3919
3995
  /**
3920
3996
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject
3921
3997
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGForeignObjectElement
3922
3998
  */
3923
- foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
3999
+ foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement> &
4000
+ Properties<SVGForeignObjectElement>;
3924
4001
  /**
3925
4002
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
3926
4003
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGGElement
3927
4004
  */
3928
- g: GSVGAttributes<SVGGElement>;
4005
+ g: GSVGAttributes<SVGGElement> & Properties<SVGGElement>;
3929
4006
  /**
3930
4007
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
3931
4008
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGImageElement
3932
4009
  */
3933
- image: ImageSVGAttributes<SVGImageElement>;
4010
+ image: ImageSVGAttributes<SVGImageElement> & Properties<SVGImageElement>;
3934
4011
  /**
3935
4012
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
3936
4013
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
3937
4014
  */
3938
- line: LineSVGAttributes<SVGLineElement>;
4015
+ line: LineSVGAttributes<SVGLineElement> & Properties<SVGLineElement>;
3939
4016
  /**
3940
4017
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
3941
4018
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
3942
4019
  */
3943
- linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
4020
+ linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement> &
4021
+ Properties<SVGLinearGradientElement>;
3944
4022
  /**
3945
4023
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker
3946
4024
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMarkerElement
3947
4025
  */
3948
- marker: MarkerSVGAttributes<SVGMarkerElement>;
4026
+ marker: MarkerSVGAttributes<SVGMarkerElement> & Properties<SVGMarkerElement>;
3949
4027
  /**
3950
4028
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask
3951
4029
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement
3952
4030
  */
3953
- mask: MaskSVGAttributes<SVGMaskElement>;
4031
+ mask: MaskSVGAttributes<SVGMaskElement> & Properties<SVGMaskElement>;
3954
4032
  /**
3955
4033
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata
3956
4034
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMetadataElement
3957
4035
  */
3958
- metadata: MetadataSVGAttributes<SVGMetadataElement>;
4036
+ metadata: MetadataSVGAttributes<SVGMetadataElement> & Properties<SVGMetadataElement>;
3959
4037
  /**
3960
4038
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath
3961
4039
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
3962
4040
  */
3963
- mpath: MPathSVGAttributes<SVGMPathElement>;
4041
+ mpath: MPathSVGAttributes<SVGMPathElement> & Properties<SVGMPathElement>;
3964
4042
  /**
3965
4043
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
3966
4044
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPathElement
3967
4045
  */
3968
- path: PathSVGAttributes<SVGPathElement>;
4046
+ path: PathSVGAttributes<SVGPathElement> & Properties<SVGPathElement>;
3969
4047
  /**
3970
4048
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern
3971
4049
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPatternElement
3972
4050
  */
3973
- pattern: PatternSVGAttributes<SVGPatternElement>;
4051
+ pattern: PatternSVGAttributes<SVGPatternElement> & Properties<SVGPatternElement>;
3974
4052
  /**
3975
4053
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
3976
4054
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolygonElement
3977
4055
  */
3978
- polygon: PolygonSVGAttributes<SVGPolygonElement>;
4056
+ polygon: PolygonSVGAttributes<SVGPolygonElement> & Properties<SVGPolygonElement>;
3979
4057
  /**
3980
4058
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
3981
4059
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolylineElement
3982
4060
  */
3983
- polyline: PolylineSVGAttributes<SVGPolylineElement>;
4061
+ polyline: PolylineSVGAttributes<SVGPolylineElement> & Properties<SVGPolylineElement>;
3984
4062
  /**
3985
4063
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
3986
4064
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
3987
4065
  */
3988
- radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
4066
+ radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement> &
4067
+ Properties<SVGRadialGradientElement>;
3989
4068
  /**
3990
4069
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
3991
4070
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRectElement
3992
4071
  */
3993
- rect: RectSVGAttributes<SVGRectElement>;
4072
+ rect: RectSVGAttributes<SVGRectElement> & Properties<SVGRectElement>;
3994
4073
  /**
3995
4074
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set
3996
4075
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement
3997
4076
  */
3998
- set: SetSVGAttributes<SVGSetElement>;
4077
+ set: SetSVGAttributes<SVGSetElement> & Properties<SVGSetElement>;
3999
4078
  /**
4000
4079
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop
4001
4080
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGStopElement
4002
4081
  */
4003
- stop: StopSVGAttributes<SVGStopElement>;
4082
+ stop: StopSVGAttributes<SVGStopElement> & Properties<SVGStopElement>;
4004
4083
  /**
4005
4084
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
4006
4085
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSVGElement
4007
4086
  */
4008
- svg: SvgSVGAttributes<SVGSVGElement>;
4087
+ svg: SvgSVGAttributes<SVGSVGElement> & Properties<SVGSVGElement>;
4009
4088
  /**
4010
4089
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch
4011
4090
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSwitchElement
4012
4091
  */
4013
- switch: SwitchSVGAttributes<SVGSwitchElement>;
4092
+ switch: SwitchSVGAttributes<SVGSwitchElement> & Properties<SVGSwitchElement>;
4014
4093
  /**
4015
4094
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol
4016
4095
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement
4017
4096
  */
4018
- symbol: SymbolSVGAttributes<SVGSymbolElement>;
4097
+ symbol: SymbolSVGAttributes<SVGSymbolElement> & Properties<SVGSymbolElement>;
4019
4098
  /**
4020
4099
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
4021
4100
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextElement
4022
4101
  */
4023
- text: TextSVGAttributes<SVGTextElement>;
4102
+ text: TextSVGAttributes<SVGTextElement> & Properties<SVGTextElement>;
4024
4103
  /**
4025
4104
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath
4026
4105
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPathElement
4027
4106
  */
4028
- textPath: TextPathSVGAttributes<SVGTextPathElement>;
4107
+ textPath: TextPathSVGAttributes<SVGTextPathElement> & Properties<SVGTextPathElement>;
4029
4108
  /**
4030
4109
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan
4031
4110
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTSpanElement
4032
4111
  */
4033
- tspan: TSpanSVGAttributes<SVGTSpanElement>;
4112
+ tspan: TSpanSVGAttributes<SVGTSpanElement> & Properties<SVGTSpanElement>;
4034
4113
  /**
4035
4114
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
4036
4115
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGUseElement
4037
4116
  */
4038
- use: UseSVGAttributes<SVGUseElement>;
4117
+ use: UseSVGAttributes<SVGUseElement> & Properties<SVGUseElement>;
4039
4118
  /**
4040
4119
  * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view
4041
4120
  * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGViewElement
4042
4121
  */
4043
- view: ViewSVGAttributes<SVGViewElement>;
4122
+ view: ViewSVGAttributes<SVGViewElement> & Properties<SVGViewElement>;
4044
4123
  }
4045
4124
 
4046
4125
  interface MathMLElementTags {
@@ -4048,7 +4127,7 @@ export namespace JSX {
4048
4127
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation
4049
4128
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4050
4129
  */
4051
- annotation: MathMLAnnotationElementAttributes<MathMLElement>;
4130
+ annotation: MathMLAnnotationElementAttributes<MathMLElement> & Properties<MathMLElement>;
4052
4131
  /**
4053
4132
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation-xml
4054
4133
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
@@ -4058,161 +4137,158 @@ export namespace JSX {
4058
4137
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
4059
4138
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4060
4139
  */
4061
- math: MathMLMathElementAttributes<MathMLElement>;
4140
+ math: MathMLMathElementAttributes<MathMLElement> & Properties<MathMLElement>;
4062
4141
  /**
4063
4142
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror
4064
4143
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4065
4144
  */
4066
- merror: MathMLMerrorElementAttributes<MathMLElement>;
4145
+ merror: MathMLMerrorElementAttributes<MathMLElement> & Properties<MathMLElement>;
4067
4146
  /**
4068
4147
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac
4069
4148
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4070
4149
  */
4071
- mfrac: MathMLMfracElementAttributes<MathMLElement>;
4150
+ mfrac: MathMLMfracElementAttributes<MathMLElement> & Properties<MathMLElement>;
4072
4151
  /**
4073
4152
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi
4074
4153
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4075
4154
  */
4076
- mi: MathMLMiElementAttributes<MathMLElement>;
4155
+ mi: MathMLMiElementAttributes<MathMLElement> & Properties<MathMLElement>;
4077
4156
  /**
4078
4157
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts
4079
4158
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4080
4159
  */
4081
- mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement>;
4160
+ mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4082
4161
  /**
4083
4162
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn
4084
4163
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4085
4164
  */
4086
- mn: MathMLMnElementAttributes<MathMLElement>;
4165
+ mn: MathMLMnElementAttributes<MathMLElement> & Properties<MathMLElement>;
4087
4166
  /**
4088
4167
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo
4089
4168
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4090
4169
  */
4091
- mo: MathMLMoElementAttributes<MathMLElement>;
4170
+ mo: MathMLMoElementAttributes<MathMLElement> & Properties<MathMLElement>;
4092
4171
  /**
4093
4172
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover
4094
4173
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4095
4174
  */
4096
- mover: MathMLMoverElementAttributes<MathMLElement>;
4175
+ mover: MathMLMoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4097
4176
  /**
4098
4177
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded
4099
4178
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4100
4179
  */
4101
- mpadded: MathMLMpaddedElementAttributes<MathMLElement>;
4180
+ mpadded: MathMLMpaddedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4102
4181
  /**
4103
4182
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom
4104
4183
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4105
4184
  */
4106
- mphantom: MathMLMphantomElementAttributes<MathMLElement>;
4185
+ mphantom: MathMLMphantomElementAttributes<MathMLElement> & Properties<MathMLElement>;
4107
4186
  /**
4108
4187
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mprescripts
4109
4188
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4110
4189
  */
4111
- mprescripts: MathMLMprescriptsElementAttributes<MathMLElement>;
4190
+ mprescripts: MathMLMprescriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4112
4191
  /**
4113
4192
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot
4114
4193
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4115
4194
  */
4116
- mroot: MathMLMrootElementAttributes<MathMLElement>;
4195
+ mroot: MathMLMrootElementAttributes<MathMLElement> & Properties<MathMLElement>;
4117
4196
  /**
4118
4197
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow
4119
4198
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4120
4199
  */
4121
- mrow: MathMLMrowElementAttributes<MathMLElement>;
4200
+ mrow: MathMLMrowElementAttributes<MathMLElement> & Properties<MathMLElement>;
4122
4201
  /**
4123
4202
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms
4124
4203
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4125
4204
  */
4126
- ms: MathMLMsElementAttributes<MathMLElement>;
4205
+ ms: MathMLMsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4127
4206
  /**
4128
4207
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace
4129
4208
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4130
4209
  */
4131
- mspace: MathMLMspaceElementAttributes<MathMLElement>;
4210
+ mspace: MathMLMspaceElementAttributes<MathMLElement> & Properties<MathMLElement>;
4132
4211
  /**
4133
4212
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt
4134
4213
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4135
4214
  */
4136
- msqrt: MathMLMsqrtElementAttributes<MathMLElement>;
4215
+ msqrt: MathMLMsqrtElementAttributes<MathMLElement> & Properties<MathMLElement>;
4137
4216
  /**
4138
4217
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
4139
4218
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4140
4219
  */
4141
- mstyle: MathMLMstyleElementAttributes<MathMLElement>;
4220
+ mstyle: MathMLMstyleElementAttributes<MathMLElement> & Properties<MathMLElement>;
4142
4221
  /**
4143
4222
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub
4144
4223
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4145
4224
  */
4146
- msub: MathMLMsubElementAttributes<MathMLElement>;
4225
+ msub: MathMLMsubElementAttributes<MathMLElement> & Properties<MathMLElement>;
4147
4226
  /**
4148
4227
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup
4149
4228
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4150
4229
  */
4151
- msubsup: MathMLMsubsupElementAttributes<MathMLElement>;
4230
+ msubsup: MathMLMsubsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4152
4231
  /**
4153
4232
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup
4154
4233
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4155
4234
  */
4156
- msup: MathMLMsupElementAttributes<MathMLElement>;
4235
+ msup: MathMLMsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
4157
4236
  /**
4158
4237
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable
4159
4238
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4160
4239
  */
4161
- mtable: MathMLMtableElementAttributes<MathMLElement>;
4240
+ mtable: MathMLMtableElementAttributes<MathMLElement> & Properties<MathMLElement>;
4162
4241
  /**
4163
4242
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd
4164
4243
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4165
4244
  */
4166
- mtd: MathMLMtdElementAttributes<MathMLElement>;
4245
+ mtd: MathMLMtdElementAttributes<MathMLElement> & Properties<MathMLElement>;
4167
4246
  /**
4168
4247
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext
4169
4248
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4170
4249
  */
4171
- mtext: MathMLMtextElementAttributes<MathMLElement>;
4250
+ mtext: MathMLMtextElementAttributes<MathMLElement> & Properties<MathMLElement>;
4172
4251
  /**
4173
4252
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr
4174
4253
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4175
4254
  */
4176
- mtr: MathMLMtrElementAttributes<MathMLElement>;
4255
+ mtr: MathMLMtrElementAttributes<MathMLElement> & Properties<MathMLElement>;
4177
4256
  /**
4178
4257
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder
4179
4258
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4180
4259
  */
4181
- munder: MathMLMunderElementAttributes<MathMLElement>;
4260
+ munder: MathMLMunderElementAttributes<MathMLElement> & Properties<MathMLElement>;
4182
4261
  /**
4183
4262
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover
4184
4263
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4185
4264
  */
4186
- munderover: MathMLMunderoverElementAttributes<MathMLElement>;
4265
+ munderover: MathMLMunderoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
4187
4266
  /**
4188
4267
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics
4189
4268
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4190
4269
  */
4191
- semantics: MathMLSemanticsElementAttributes<MathMLElement>;
4270
+ semantics: MathMLSemanticsElementAttributes<MathMLElement> & Properties<MathMLElement>;
4192
4271
  /**
4193
4272
  * @non-standard
4194
4273
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose
4195
4274
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4196
4275
  */
4197
- menclose: MathMLMencloseElementAttributes<MathMLElement>;
4276
+ menclose: MathMLMencloseElementAttributes<MathMLElement> & Properties<MathMLElement>;
4198
4277
  /**
4199
4278
  * @deprecated
4200
4279
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/maction
4201
4280
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4202
4281
  */
4203
- maction: MathMLMactionElementAttributes<MathMLElement>;
4282
+ maction: MathMLMactionElementAttributes<MathMLElement> & Properties<MathMLElement>;
4204
4283
  /**
4205
4284
  * @deprecated
4206
4285
  * @non-standard
4207
4286
  * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced
4208
4287
  * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4209
4288
  */
4210
- mfenced: MathMLMfencedElementAttributes<MathMLElement>;
4289
+ mfenced: MathMLMfencedElementAttributes<MathMLElement> & Properties<MathMLElement>;
4211
4290
  }
4212
4291
 
4213
4292
  interface IntrinsicElements
4214
- extends HTMLElementTags,
4215
- HTMLElementDeprecatedTags,
4216
- SVGElementTags,
4217
- MathMLElementTags {}
4293
+ extends HTMLElementTags, HTMLElementDeprecatedTags, SVGElementTags, MathMLElementTags {}
4218
4294
  }