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