@solidjs/h 2.0.0-beta.6 → 2.0.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/h.cjs +3 -1
- package/dist/h.js +4 -2
- package/jsx-runtime/types/jsx-properties.d.ts +92 -0
- package/jsx-runtime/types/jsx.d.ts +365 -244
- package/jsx-runtime/types-cjs/index.d.cts +11 -0
- package/jsx-runtime/types-cjs/jsx-properties.d.cts +92 -0
- package/jsx-runtime/types-cjs/jsx.d.cts +4308 -0
- package/jsx-runtime/types-cjs/package.json +3 -0
- package/package.json +34 -17
- package/types/hyperscript.d.ts +22 -0
- package/types/index.d.ts +3 -0
- 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;
|
|
@@ -254,6 +268,16 @@ export namespace JSX {
|
|
|
254
268
|
[Key in keyof CustomEvents as `on:${Key}`]?: EventHandlerWithOptionsUnion<T, CustomEvents[Key]>;
|
|
255
269
|
};
|
|
256
270
|
|
|
271
|
+
/**
|
|
272
|
+
* Writable, element-specific DOM properties exposed as `prop:*` attributes, auto-derived
|
|
273
|
+
* from the element interface `T`. See `./jsx-properties.d.ts` for the filtering rules.
|
|
274
|
+
* Existing element interfaces can locally disable an auto-derived key with
|
|
275
|
+
* `"prop:foo"?: never;` to redirect users to a plain attribute form.
|
|
276
|
+
*/
|
|
277
|
+
type Properties<T> = {
|
|
278
|
+
[K in keyof T as PropKey<T, K>]?: FunctionMaybe<WidenPropValue<T[K]>>;
|
|
279
|
+
};
|
|
280
|
+
|
|
257
281
|
// CSS
|
|
258
282
|
|
|
259
283
|
interface CSSProperties extends csstype.PropertiesHyphen {
|
|
@@ -280,12 +304,16 @@ export namespace JSX {
|
|
|
280
304
|
|
|
281
305
|
type BooleanAttribute = true | false | "";
|
|
282
306
|
|
|
307
|
+
type BooleanProperty = true | false;
|
|
308
|
+
|
|
283
309
|
type EnumeratedPseudoBoolean = "false" | "true";
|
|
284
310
|
|
|
285
311
|
type EnumeratedAcceptsEmpty = "" | true;
|
|
286
312
|
|
|
287
313
|
type RemoveAttribute = undefined | false;
|
|
288
314
|
|
|
315
|
+
type RemoveProperty = undefined;
|
|
316
|
+
|
|
289
317
|
// ARIA
|
|
290
318
|
|
|
291
319
|
// All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
|
|
@@ -679,6 +707,9 @@ export namespace JSX {
|
|
|
679
707
|
onAfterPrint?: EventHandlerUnion<T, Event> | undefined;
|
|
680
708
|
onBeforePrint?: EventHandlerUnion<T, Event> | undefined;
|
|
681
709
|
onBeforeUnload?: EventHandlerUnion<T, BeforeUnloadEvent> | undefined;
|
|
710
|
+
onDeviceMotion?: EventHandlerUnion<T, DeviceMotionEvent> | undefined;
|
|
711
|
+
onDeviceOrientation?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
|
|
712
|
+
onDeviceOrientationAbsolute?: EventHandlerUnion<T, DeviceOrientationEvent> | undefined;
|
|
682
713
|
onGamepadConnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
|
|
683
714
|
onGamepadDisconnected?: EventHandlerUnion<T, GamepadEvent> | undefined;
|
|
684
715
|
onHashchange?: EventHandlerUnion<T, HashChangeEvent> | undefined;
|
|
@@ -687,12 +718,12 @@ export namespace JSX {
|
|
|
687
718
|
onMessageError?: EventHandlerUnion<T, MessageEvent> | undefined;
|
|
688
719
|
onOffline?: EventHandlerUnion<T, Event> | undefined;
|
|
689
720
|
onOnline?: EventHandlerUnion<T, Event> | undefined;
|
|
721
|
+
/** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
|
|
722
|
+
onOrientationChange?: EventHandlerUnion<T, Event> | undefined;
|
|
690
723
|
onPageHide?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
|
|
691
|
-
|
|
692
|
-
onPageReveal?: EventHandlerUnion<T, Event> | undefined;
|
|
724
|
+
onPageReveal?: EventHandlerUnion<T, PageRevealEvent> | undefined;
|
|
693
725
|
onPageShow?: EventHandlerUnion<T, PageTransitionEvent> | undefined;
|
|
694
|
-
|
|
695
|
-
onPageSwap?: EventHandlerUnion<T, Event> | undefined;
|
|
726
|
+
onPageSwap?: EventHandlerUnion<T, PageSwapEvent> | undefined;
|
|
696
727
|
onPopstate?: EventHandlerUnion<T, PopStateEvent> | undefined;
|
|
697
728
|
onRejectionHandled?: EventHandlerUnion<T, PromiseRejectionEvent> | undefined;
|
|
698
729
|
onStorage?: EventHandlerUnion<T, StorageEvent> | undefined;
|
|
@@ -702,6 +733,11 @@ export namespace JSX {
|
|
|
702
733
|
"on:afterprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
703
734
|
"on:beforeprint"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
704
735
|
"on:beforeunload"?: EventHandlerWithOptionsUnion<T, BeforeUnloadEvent> | undefined;
|
|
736
|
+
"on:devicemotion"?: EventHandlerWithOptionsUnion<T, DeviceMotionEvent> | undefined;
|
|
737
|
+
"on:deviceorientation"?: EventHandlerWithOptionsUnion<T, DeviceOrientationEvent> | undefined;
|
|
738
|
+
"on:deviceorientationabsolute"?:
|
|
739
|
+
| EventHandlerWithOptionsUnion<T, DeviceOrientationEvent>
|
|
740
|
+
| undefined;
|
|
705
741
|
"on:gamepadconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
|
|
706
742
|
"on:gamepaddisconnected"?: EventHandlerWithOptionsUnion<T, GamepadEvent> | undefined;
|
|
707
743
|
"on:hashchange"?: EventHandlerWithOptionsUnion<T, HashChangeEvent> | undefined;
|
|
@@ -710,12 +746,12 @@ export namespace JSX {
|
|
|
710
746
|
"on:messageerror"?: EventHandlerWithOptionsUnion<T, MessageEvent> | undefined;
|
|
711
747
|
"on:offline"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
712
748
|
"on:online"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
749
|
+
/** @deprecated Use `screen.orientation` (`ScreenOrientation.change`) instead. */
|
|
750
|
+
"on:orientationchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
713
751
|
"on:pagehide"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
|
|
714
|
-
|
|
715
|
-
"on:pagereveal"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
752
|
+
"on:pagereveal"?: EventHandlerWithOptionsUnion<T, PageRevealEvent> | undefined;
|
|
716
753
|
"on:pageshow"?: EventHandlerWithOptionsUnion<T, PageTransitionEvent> | undefined;
|
|
717
|
-
|
|
718
|
-
"on:pageswap"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
754
|
+
"on:pageswap"?: EventHandlerWithOptionsUnion<T, PageSwapEvent> | undefined;
|
|
719
755
|
"on:popstate"?: EventHandlerWithOptionsUnion<T, PopStateEvent> | undefined;
|
|
720
756
|
"on:rejectionhandled"?: EventHandlerWithOptionsUnion<T, PromiseRejectionEvent> | undefined;
|
|
721
757
|
"on:storage"?: EventHandlerWithOptionsUnion<T, StorageEvent> | undefined;
|
|
@@ -752,8 +788,7 @@ export namespace JSX {
|
|
|
752
788
|
onChange?: ChangeEventHandlerUnion<T, Event> | undefined;
|
|
753
789
|
onClick?: EventHandlerUnion<T, MouseEvent> | undefined;
|
|
754
790
|
onClose?: EventHandlerUnion<T, Event> | undefined;
|
|
755
|
-
|
|
756
|
-
onCommand?: EventHandlerUnion<T, Event> | undefined;
|
|
791
|
+
onCommand?: EventHandlerUnion<T, CommandEvent> | undefined;
|
|
757
792
|
onCompositionEnd?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
758
793
|
onCompositionStart?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
759
794
|
onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
|
|
@@ -822,10 +857,8 @@ export namespace JSX {
|
|
|
822
857
|
onResize?: EventHandlerUnion<T, UIEvent> | undefined;
|
|
823
858
|
onScroll?: EventHandlerUnion<T, Event> | undefined;
|
|
824
859
|
onScrollEnd?: EventHandlerUnion<T, Event> | undefined;
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
// todo `SnapEvent` is currently undefined in TS
|
|
828
|
-
onScrollSnapChanging?: EventHandlerUnion<T, Event> | undefined;
|
|
860
|
+
onScrollSnapChange?: EventHandlerUnion<T, SnapEvent> | undefined;
|
|
861
|
+
onScrollSnapChanging?: EventHandlerUnion<T, SnapEvent> | undefined;
|
|
829
862
|
onSecurityPolicyViolation?: EventHandlerUnion<T, SecurityPolicyViolationEvent> | undefined;
|
|
830
863
|
onSeeked?: EventHandlerUnion<T, Event> | undefined;
|
|
831
864
|
onSeeking?: EventHandlerUnion<T, Event> | undefined;
|
|
@@ -874,8 +907,7 @@ export namespace JSX {
|
|
|
874
907
|
"on:change"?: EventHandlerWithOptionsUnion<T, Event, ChangeEventHandler<T, Event>> | undefined;
|
|
875
908
|
"on:click"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
|
|
876
909
|
"on:close"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
877
|
-
|
|
878
|
-
"on:command"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
910
|
+
"on:command"?: EventHandlerWithOptionsUnion<T, CommandEvent> | undefined;
|
|
879
911
|
"on:compositionend"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
|
|
880
912
|
"on:compositionstart"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
|
|
881
913
|
"on:compositionupdate"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
|
|
@@ -952,10 +984,8 @@ export namespace JSX {
|
|
|
952
984
|
"on:resize"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
|
|
953
985
|
"on:scroll"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
954
986
|
"on:scrollend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
955
|
-
|
|
956
|
-
"on:
|
|
957
|
-
// todo `SnapEvent` is currently undefined in TS
|
|
958
|
-
"on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
987
|
+
"on:scrollsnapchange"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
|
|
988
|
+
"on:scrollsnapchanging"?: EventHandlerWithOptionsUnion<T, SnapEvent> | undefined;
|
|
959
989
|
"on:securitypolicyviolation"?:
|
|
960
990
|
| EventHandlerWithOptionsUnion<T, SecurityPolicyViolationEvent>
|
|
961
991
|
| undefined;
|
|
@@ -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>;
|
|
@@ -2224,17 +2328,14 @@ export namespace JSX {
|
|
|
2224
2328
|
}
|
|
2225
2329
|
interface AnimationElementSVGAttributes<T>
|
|
2226
2330
|
extends SVGAttributes<T>, ExternalResourceSVGAttributes, ConditionalProcessingSVGAttributes {
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
"on:begin"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
2331
|
+
onBegin?: EventHandlerUnion<T, TimeEvent> | undefined;
|
|
2332
|
+
"on:begin"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
|
|
2230
2333
|
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
"on:end"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
2334
|
+
onEnd?: EventHandlerUnion<T, TimeEvent> | undefined;
|
|
2335
|
+
"on:end"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
|
|
2234
2336
|
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
"on:repeat"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
|
|
2337
|
+
onRepeat?: EventHandlerUnion<T, TimeEvent> | undefined;
|
|
2338
|
+
"on:repeat"?: EventHandlerWithOptionsUnion<T, TimeEvent> | undefined;
|
|
2238
2339
|
}
|
|
2239
2340
|
interface ContainerElementSVGAttributes<T>
|
|
2240
2341
|
extends
|
|
@@ -3130,564 +3231,564 @@ export namespace JSX {
|
|
|
3130
3231
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
|
|
3131
3232
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
|
|
3132
3233
|
*/
|
|
3133
|
-
a: AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
3234
|
+
a: AnchorHTMLAttributes<HTMLAnchorElement> & Properties<HTMLAnchorElement>;
|
|
3134
3235
|
/**
|
|
3135
3236
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
|
|
3136
3237
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3137
3238
|
*/
|
|
3138
|
-
abbr: HTMLAttributes<HTMLElement>;
|
|
3239
|
+
abbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3139
3240
|
/**
|
|
3140
3241
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
|
|
3141
3242
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3142
3243
|
*/
|
|
3143
|
-
address: HTMLAttributes<HTMLElement>;
|
|
3244
|
+
address: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3144
3245
|
/**
|
|
3145
3246
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
|
|
3146
3247
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
|
|
3147
3248
|
*/
|
|
3148
|
-
area: AreaHTMLAttributes<HTMLAreaElement>;
|
|
3249
|
+
area: AreaHTMLAttributes<HTMLAreaElement> & Properties<HTMLAreaElement>;
|
|
3149
3250
|
/**
|
|
3150
3251
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
|
|
3151
3252
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3152
3253
|
*/
|
|
3153
|
-
article: HTMLAttributes<HTMLElement>;
|
|
3254
|
+
article: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3154
3255
|
/**
|
|
3155
3256
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
|
|
3156
3257
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3157
3258
|
*/
|
|
3158
|
-
aside: HTMLAttributes<HTMLElement>;
|
|
3259
|
+
aside: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3159
3260
|
/**
|
|
3160
3261
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
|
|
3161
3262
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement
|
|
3162
3263
|
*/
|
|
3163
|
-
audio: AudioHTMLAttributes<HTMLAudioElement>;
|
|
3264
|
+
audio: AudioHTMLAttributes<HTMLAudioElement> & Properties<HTMLAudioElement>;
|
|
3164
3265
|
/**
|
|
3165
3266
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
|
|
3166
3267
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3167
3268
|
*/
|
|
3168
|
-
b: HTMLAttributes<HTMLElement>;
|
|
3269
|
+
b: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3169
3270
|
/**
|
|
3170
3271
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
|
|
3171
3272
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBaseElement
|
|
3172
3273
|
*/
|
|
3173
|
-
base: BaseHTMLAttributes<HTMLBaseElement>;
|
|
3274
|
+
base: BaseHTMLAttributes<HTMLBaseElement> & Properties<HTMLBaseElement>;
|
|
3174
3275
|
/**
|
|
3175
3276
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
|
|
3176
3277
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3177
3278
|
*/
|
|
3178
|
-
bdi: HTMLAttributes<HTMLElement>;
|
|
3279
|
+
bdi: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3179
3280
|
/**
|
|
3180
3281
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
|
|
3181
3282
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3182
3283
|
*/
|
|
3183
|
-
bdo: BdoHTMLAttributes<HTMLElement>;
|
|
3284
|
+
bdo: BdoHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3184
3285
|
/**
|
|
3185
3286
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
|
|
3186
3287
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
|
|
3187
3288
|
*/
|
|
3188
|
-
blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
|
|
3289
|
+
blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
|
|
3189
3290
|
/**
|
|
3190
3291
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
|
|
3191
3292
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
|
|
3192
3293
|
*/
|
|
3193
|
-
body: BodyHTMLAttributes<HTMLBodyElement>;
|
|
3294
|
+
body: BodyHTMLAttributes<HTMLBodyElement> & Properties<HTMLBodyElement>;
|
|
3194
3295
|
/**
|
|
3195
3296
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
|
|
3196
3297
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBRElement
|
|
3197
3298
|
*/
|
|
3198
|
-
br: HTMLAttributes<HTMLBRElement>;
|
|
3299
|
+
br: HTMLAttributes<HTMLBRElement> & Properties<HTMLBRElement>;
|
|
3199
3300
|
/**
|
|
3200
3301
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
|
|
3201
3302
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement
|
|
3202
3303
|
*/
|
|
3203
|
-
button: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
3304
|
+
button: ButtonHTMLAttributes<HTMLButtonElement> & Properties<HTMLButtonElement>;
|
|
3204
3305
|
/**
|
|
3205
3306
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
|
|
3206
3307
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
|
|
3207
3308
|
*/
|
|
3208
|
-
canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
|
|
3309
|
+
canvas: CanvasHTMLAttributes<HTMLCanvasElement> & Properties<HTMLCanvasElement>;
|
|
3209
3310
|
/**
|
|
3210
3311
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
|
|
3211
3312
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement
|
|
3212
3313
|
*/
|
|
3213
|
-
caption: CaptionHTMLAttributes<HTMLTableCaptionElement>;
|
|
3314
|
+
caption: CaptionHTMLAttributes<HTMLTableCaptionElement> & Properties<HTMLTableCaptionElement>;
|
|
3214
3315
|
/**
|
|
3215
3316
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
|
|
3216
3317
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3217
3318
|
*/
|
|
3218
|
-
cite: HTMLAttributes<HTMLElement>;
|
|
3319
|
+
cite: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3219
3320
|
/**
|
|
3220
3321
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
|
|
3221
3322
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3222
3323
|
*/
|
|
3223
|
-
code: HTMLAttributes<HTMLElement>;
|
|
3324
|
+
code: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3224
3325
|
/**
|
|
3225
3326
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
|
|
3226
3327
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
|
|
3227
3328
|
*/
|
|
3228
|
-
col: ColHTMLAttributes<HTMLTableColElement>;
|
|
3329
|
+
col: ColHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
|
|
3229
3330
|
/**
|
|
3230
3331
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
|
|
3231
3332
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
|
|
3232
3333
|
*/
|
|
3233
|
-
colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
|
|
3334
|
+
colgroup: ColgroupHTMLAttributes<HTMLTableColElement> & Properties<HTMLTableColElement>;
|
|
3234
3335
|
/**
|
|
3235
3336
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
|
|
3236
3337
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
|
|
3237
3338
|
*/
|
|
3238
|
-
data: DataHTMLAttributes<HTMLDataElement>;
|
|
3339
|
+
data: DataHTMLAttributes<HTMLDataElement> & Properties<HTMLDataElement>;
|
|
3239
3340
|
/**
|
|
3240
3341
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
|
|
3241
3342
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement
|
|
3242
3343
|
*/
|
|
3243
|
-
datalist: HTMLAttributes<HTMLDataListElement>;
|
|
3344
|
+
datalist: HTMLAttributes<HTMLDataListElement> & Properties<HTMLDataListElement>;
|
|
3244
3345
|
/**
|
|
3245
3346
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
|
|
3246
3347
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3247
3348
|
*/
|
|
3248
|
-
dd: HTMLAttributes<HTMLElement>;
|
|
3349
|
+
dd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3249
3350
|
/**
|
|
3250
3351
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
|
|
3251
3352
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
|
|
3252
3353
|
*/
|
|
3253
|
-
del: ModHTMLAttributes<HTMLModElement>;
|
|
3354
|
+
del: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
|
|
3254
3355
|
/**
|
|
3255
3356
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
|
|
3256
3357
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement
|
|
3257
3358
|
*/
|
|
3258
|
-
details: DetailsHtmlAttributes<HTMLDetailsElement>;
|
|
3359
|
+
details: DetailsHtmlAttributes<HTMLDetailsElement> & Properties<HTMLDetailsElement>;
|
|
3259
3360
|
/**
|
|
3260
3361
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
|
|
3261
3362
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3262
3363
|
*/
|
|
3263
|
-
dfn: HTMLAttributes<HTMLElement>;
|
|
3364
|
+
dfn: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3264
3365
|
/**
|
|
3265
3366
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
|
|
3266
3367
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement
|
|
3267
3368
|
*/
|
|
3268
|
-
dialog: DialogHtmlAttributes<HTMLDialogElement>;
|
|
3369
|
+
dialog: DialogHtmlAttributes<HTMLDialogElement> & Properties<HTMLDialogElement>;
|
|
3269
3370
|
/**
|
|
3270
3371
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
|
|
3271
3372
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement
|
|
3272
3373
|
*/
|
|
3273
|
-
div: HTMLAttributes<HTMLDivElement>;
|
|
3374
|
+
div: HTMLAttributes<HTMLDivElement> & Properties<HTMLDivElement>;
|
|
3274
3375
|
/**
|
|
3275
3376
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
|
|
3276
3377
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDListElement
|
|
3277
3378
|
*/
|
|
3278
|
-
dl: HTMLAttributes<HTMLDListElement>;
|
|
3379
|
+
dl: HTMLAttributes<HTMLDListElement> & Properties<HTMLDListElement>;
|
|
3279
3380
|
/**
|
|
3280
3381
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
|
|
3281
3382
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3282
3383
|
*/
|
|
3283
|
-
dt: HTMLAttributes<HTMLElement>;
|
|
3384
|
+
dt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3284
3385
|
/**
|
|
3285
3386
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
|
|
3286
3387
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3287
3388
|
*/
|
|
3288
|
-
em: HTMLAttributes<HTMLElement>;
|
|
3389
|
+
em: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3289
3390
|
/**
|
|
3290
3391
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
|
|
3291
3392
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
|
|
3292
3393
|
*/
|
|
3293
|
-
embed: EmbedHTMLAttributes<HTMLEmbedElement>;
|
|
3394
|
+
embed: EmbedHTMLAttributes<HTMLEmbedElement> & Properties<HTMLEmbedElement>;
|
|
3294
3395
|
/**
|
|
3295
3396
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
|
|
3296
3397
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
|
|
3297
3398
|
*/
|
|
3298
|
-
fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
3399
|
+
fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement> & Properties<HTMLFieldSetElement>;
|
|
3299
3400
|
/**
|
|
3300
3401
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
|
|
3301
3402
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3302
3403
|
*/
|
|
3303
|
-
figcaption: HTMLAttributes<HTMLElement>;
|
|
3404
|
+
figcaption: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3304
3405
|
/**
|
|
3305
3406
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
|
|
3306
3407
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3307
3408
|
*/
|
|
3308
|
-
figure: HTMLAttributes<HTMLElement>;
|
|
3409
|
+
figure: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3309
3410
|
/**
|
|
3310
3411
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
|
|
3311
3412
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3312
3413
|
*/
|
|
3313
|
-
footer: HTMLAttributes<HTMLElement>;
|
|
3414
|
+
footer: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3314
3415
|
/**
|
|
3315
3416
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
|
|
3316
3417
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement
|
|
3317
3418
|
*/
|
|
3318
|
-
form: FormHTMLAttributes<HTMLFormElement>;
|
|
3419
|
+
form: FormHTMLAttributes<HTMLFormElement> & Properties<HTMLFormElement>;
|
|
3319
3420
|
/**
|
|
3320
3421
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
|
|
3321
3422
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3322
3423
|
*/
|
|
3323
|
-
h1: HTMLAttributes<HTMLHeadingElement>;
|
|
3424
|
+
h1: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
|
|
3324
3425
|
/**
|
|
3325
3426
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
|
|
3326
3427
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3327
3428
|
*/
|
|
3328
|
-
h2: HTMLAttributes<HTMLHeadingElement>;
|
|
3429
|
+
h2: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
|
|
3329
3430
|
/**
|
|
3330
3431
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
|
|
3331
3432
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3332
3433
|
*/
|
|
3333
|
-
h3: HTMLAttributes<HTMLHeadingElement>;
|
|
3434
|
+
h3: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
|
|
3334
3435
|
/**
|
|
3335
3436
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
|
|
3336
3437
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3337
3438
|
*/
|
|
3338
|
-
h4: HTMLAttributes<HTMLHeadingElement>;
|
|
3439
|
+
h4: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
|
|
3339
3440
|
/**
|
|
3340
3441
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
|
|
3341
3442
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3342
3443
|
*/
|
|
3343
|
-
h5: HTMLAttributes<HTMLHeadingElement>;
|
|
3444
|
+
h5: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
|
|
3344
3445
|
/**
|
|
3345
3446
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
|
|
3346
3447
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
|
|
3347
3448
|
*/
|
|
3348
|
-
h6: HTMLAttributes<HTMLHeadingElement>;
|
|
3449
|
+
h6: HTMLAttributes<HTMLHeadingElement> & Properties<HTMLHeadingElement>;
|
|
3349
3450
|
/**
|
|
3350
3451
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
|
|
3351
3452
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement
|
|
3352
3453
|
*/
|
|
3353
|
-
head: HTMLAttributes<HTMLHeadElement>;
|
|
3454
|
+
head: HTMLAttributes<HTMLHeadElement> & Properties<HTMLHeadElement>;
|
|
3354
3455
|
/**
|
|
3355
3456
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
|
|
3356
3457
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3357
3458
|
*/
|
|
3358
|
-
header: HTMLAttributes<HTMLElement>;
|
|
3459
|
+
header: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3359
3460
|
/**
|
|
3360
3461
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
|
|
3361
3462
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3362
3463
|
*/
|
|
3363
|
-
hgroup: HTMLAttributes<HTMLElement>;
|
|
3464
|
+
hgroup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3364
3465
|
/**
|
|
3365
3466
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
|
|
3366
3467
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHRElement
|
|
3367
3468
|
*/
|
|
3368
|
-
hr: HTMLAttributes<HTMLHRElement>;
|
|
3469
|
+
hr: HTMLAttributes<HTMLHRElement> & Properties<HTMLHRElement>;
|
|
3369
3470
|
/**
|
|
3370
3471
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
|
|
3371
3472
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement
|
|
3372
3473
|
*/
|
|
3373
|
-
html: HTMLAttributes<HTMLHtmlElement>;
|
|
3474
|
+
html: HTMLAttributes<HTMLHtmlElement> & Properties<HTMLHtmlElement>;
|
|
3374
3475
|
/**
|
|
3375
3476
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
|
|
3376
3477
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3377
3478
|
*/
|
|
3378
|
-
i: HTMLAttributes<HTMLElement>;
|
|
3479
|
+
i: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3379
3480
|
/**
|
|
3380
3481
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
|
|
3381
3482
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
|
|
3382
3483
|
*/
|
|
3383
|
-
iframe: IframeHTMLAttributes<HTMLIFrameElement>;
|
|
3484
|
+
iframe: IframeHTMLAttributes<HTMLIFrameElement> & Properties<HTMLIFrameElement>;
|
|
3384
3485
|
/**
|
|
3385
3486
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
|
|
3386
3487
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
|
|
3387
3488
|
*/
|
|
3388
|
-
img: ImgHTMLAttributes<HTMLImageElement>;
|
|
3489
|
+
img: ImgHTMLAttributes<HTMLImageElement> & Properties<HTMLImageElement>;
|
|
3389
3490
|
/**
|
|
3390
3491
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
|
|
3391
3492
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement
|
|
3392
3493
|
*/
|
|
3393
|
-
input: InputHTMLAttributes<HTMLInputElement>;
|
|
3494
|
+
input: InputHTMLAttributes<HTMLInputElement> & Properties<HTMLInputElement>;
|
|
3394
3495
|
/**
|
|
3395
3496
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
|
|
3396
3497
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
|
|
3397
3498
|
*/
|
|
3398
|
-
ins: ModHTMLAttributes<HTMLModElement>;
|
|
3499
|
+
ins: ModHTMLAttributes<HTMLModElement> & Properties<HTMLModElement>;
|
|
3399
3500
|
/**
|
|
3400
3501
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
|
|
3401
3502
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3402
3503
|
*/
|
|
3403
|
-
kbd: HTMLAttributes<HTMLElement>;
|
|
3504
|
+
kbd: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3404
3505
|
/**
|
|
3405
3506
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
|
|
3406
3507
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement
|
|
3407
3508
|
*/
|
|
3408
|
-
label: LabelHTMLAttributes<HTMLLabelElement>;
|
|
3509
|
+
label: LabelHTMLAttributes<HTMLLabelElement> & Properties<HTMLLabelElement>;
|
|
3409
3510
|
/**
|
|
3410
3511
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
|
|
3411
3512
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
|
|
3412
3513
|
*/
|
|
3413
|
-
legend: HTMLAttributes<HTMLLegendElement>;
|
|
3514
|
+
legend: HTMLAttributes<HTMLLegendElement> & Properties<HTMLLegendElement>;
|
|
3414
3515
|
/**
|
|
3415
3516
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
|
|
3416
3517
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
|
|
3417
3518
|
*/
|
|
3418
|
-
li: LiHTMLAttributes<HTMLLIElement>;
|
|
3519
|
+
li: LiHTMLAttributes<HTMLLIElement> & Properties<HTMLLIElement>;
|
|
3419
3520
|
/**
|
|
3420
3521
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
|
|
3421
3522
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement
|
|
3422
3523
|
*/
|
|
3423
|
-
link: LinkHTMLAttributes<HTMLLinkElement>;
|
|
3524
|
+
link: LinkHTMLAttributes<HTMLLinkElement> & Properties<HTMLLinkElement>;
|
|
3424
3525
|
/**
|
|
3425
3526
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
|
|
3426
3527
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3427
3528
|
*/
|
|
3428
|
-
main: HTMLAttributes<HTMLElement>;
|
|
3529
|
+
main: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3429
3530
|
/**
|
|
3430
3531
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
|
|
3431
3532
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMapElement
|
|
3432
3533
|
*/
|
|
3433
|
-
map: MapHTMLAttributes<HTMLMapElement>;
|
|
3534
|
+
map: MapHTMLAttributes<HTMLMapElement> & Properties<HTMLMapElement>;
|
|
3434
3535
|
/**
|
|
3435
3536
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
|
|
3436
3537
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3437
3538
|
*/
|
|
3438
|
-
mark: HTMLAttributes<HTMLElement>;
|
|
3539
|
+
mark: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3439
3540
|
/**
|
|
3440
3541
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
|
|
3441
3542
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMenuElement
|
|
3442
3543
|
*/
|
|
3443
|
-
menu: MenuHTMLAttributes<HTMLMenuElement>;
|
|
3544
|
+
menu: MenuHTMLAttributes<HTMLMenuElement> & Properties<HTMLMenuElement>;
|
|
3444
3545
|
/**
|
|
3445
3546
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
|
|
3446
3547
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement
|
|
3447
3548
|
*/
|
|
3448
|
-
meta: MetaHTMLAttributes<HTMLMetaElement>;
|
|
3549
|
+
meta: MetaHTMLAttributes<HTMLMetaElement> & Properties<HTMLMetaElement>;
|
|
3449
3550
|
/**
|
|
3450
3551
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
|
|
3451
3552
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement
|
|
3452
3553
|
*/
|
|
3453
|
-
meter: MeterHTMLAttributes<HTMLMeterElement>;
|
|
3554
|
+
meter: MeterHTMLAttributes<HTMLMeterElement> & Properties<HTMLMeterElement>;
|
|
3454
3555
|
/**
|
|
3455
3556
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
|
|
3456
3557
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3457
3558
|
*/
|
|
3458
|
-
nav: HTMLAttributes<HTMLElement>;
|
|
3559
|
+
nav: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3459
3560
|
/**
|
|
3460
3561
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
|
|
3461
3562
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3462
3563
|
*/
|
|
3463
|
-
noscript: HTMLAttributes<HTMLElement>;
|
|
3564
|
+
noscript: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3464
3565
|
/**
|
|
3465
3566
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
|
|
3466
3567
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement
|
|
3467
3568
|
*/
|
|
3468
|
-
object: ObjectHTMLAttributes<HTMLObjectElement>;
|
|
3569
|
+
object: ObjectHTMLAttributes<HTMLObjectElement> & Properties<HTMLObjectElement>;
|
|
3469
3570
|
/**
|
|
3470
3571
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
|
|
3471
3572
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
|
|
3472
3573
|
*/
|
|
3473
|
-
ol: OlHTMLAttributes<HTMLOListElement>;
|
|
3574
|
+
ol: OlHTMLAttributes<HTMLOListElement> & Properties<HTMLOListElement>;
|
|
3474
3575
|
/**
|
|
3475
3576
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
|
|
3476
3577
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement
|
|
3477
3578
|
*/
|
|
3478
|
-
optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
|
|
3579
|
+
optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement> & Properties<HTMLOptGroupElement>;
|
|
3479
3580
|
/**
|
|
3480
3581
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
|
3481
3582
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement
|
|
3482
3583
|
*/
|
|
3483
|
-
option: OptionHTMLAttributes<HTMLOptionElement>;
|
|
3584
|
+
option: OptionHTMLAttributes<HTMLOptionElement> & Properties<HTMLOptionElement>;
|
|
3484
3585
|
/**
|
|
3485
3586
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
|
|
3486
3587
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement
|
|
3487
3588
|
*/
|
|
3488
|
-
output: OutputHTMLAttributes<HTMLOutputElement>;
|
|
3589
|
+
output: OutputHTMLAttributes<HTMLOutputElement> & Properties<HTMLOutputElement>;
|
|
3489
3590
|
/**
|
|
3490
3591
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
|
|
3491
3592
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement
|
|
3492
3593
|
*/
|
|
3493
|
-
p: HTMLAttributes<HTMLParagraphElement>;
|
|
3594
|
+
p: HTMLAttributes<HTMLParagraphElement> & Properties<HTMLParagraphElement>;
|
|
3494
3595
|
/**
|
|
3495
3596
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
|
|
3496
3597
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement
|
|
3497
3598
|
*/
|
|
3498
|
-
picture: HTMLAttributes<HTMLPictureElement>;
|
|
3599
|
+
picture: HTMLAttributes<HTMLPictureElement> & Properties<HTMLPictureElement>;
|
|
3499
3600
|
/**
|
|
3500
3601
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
|
|
3501
3602
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement
|
|
3502
3603
|
*/
|
|
3503
|
-
pre: HTMLAttributes<HTMLPreElement>;
|
|
3604
|
+
pre: HTMLAttributes<HTMLPreElement> & Properties<HTMLPreElement>;
|
|
3504
3605
|
/**
|
|
3505
3606
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
|
|
3506
3607
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
|
|
3507
3608
|
*/
|
|
3508
|
-
progress: ProgressHTMLAttributes<HTMLProgressElement>;
|
|
3609
|
+
progress: ProgressHTMLAttributes<HTMLProgressElement> & Properties<HTMLProgressElement>;
|
|
3509
3610
|
/**
|
|
3510
3611
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
|
|
3511
3612
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
|
|
3512
3613
|
*/
|
|
3513
|
-
q: QuoteHTMLAttributes<HTMLQuoteElement>;
|
|
3614
|
+
q: QuoteHTMLAttributes<HTMLQuoteElement> & Properties<HTMLQuoteElement>;
|
|
3514
3615
|
/**
|
|
3515
3616
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
|
|
3516
3617
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3517
3618
|
*/
|
|
3518
|
-
rp: HTMLAttributes<HTMLElement>;
|
|
3619
|
+
rp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3519
3620
|
/**
|
|
3520
3621
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
|
|
3521
3622
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3522
3623
|
*/
|
|
3523
|
-
rt: HTMLAttributes<HTMLElement>;
|
|
3624
|
+
rt: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3524
3625
|
/**
|
|
3525
3626
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
|
|
3526
3627
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3527
3628
|
*/
|
|
3528
|
-
ruby: HTMLAttributes<HTMLElement>;
|
|
3629
|
+
ruby: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3529
3630
|
/**
|
|
3530
3631
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
|
|
3531
3632
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3532
3633
|
*/
|
|
3533
|
-
s: HTMLAttributes<HTMLElement>;
|
|
3634
|
+
s: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3534
3635
|
/**
|
|
3535
3636
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
|
|
3536
3637
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3537
3638
|
*/
|
|
3538
|
-
samp: HTMLAttributes<HTMLElement>;
|
|
3639
|
+
samp: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3539
3640
|
/**
|
|
3540
3641
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
|
|
3541
3642
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement
|
|
3542
3643
|
*/
|
|
3543
|
-
script: ScriptHTMLAttributes<HTMLScriptElement>;
|
|
3644
|
+
script: ScriptHTMLAttributes<HTMLScriptElement> & Properties<HTMLScriptElement>;
|
|
3544
3645
|
/**
|
|
3545
3646
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
|
|
3546
3647
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3547
3648
|
*/
|
|
3548
|
-
search: HTMLAttributes<HTMLElement>;
|
|
3649
|
+
search: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3549
3650
|
/**
|
|
3550
3651
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
|
|
3551
3652
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3552
3653
|
*/
|
|
3553
|
-
section: HTMLAttributes<HTMLElement>;
|
|
3654
|
+
section: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3554
3655
|
/**
|
|
3555
3656
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
|
|
3556
3657
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement
|
|
3557
3658
|
*/
|
|
3558
|
-
select: SelectHTMLAttributes<HTMLSelectElement>;
|
|
3659
|
+
select: SelectHTMLAttributes<HTMLSelectElement> & Properties<HTMLSelectElement>;
|
|
3559
3660
|
/**
|
|
3560
3661
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
|
|
3561
3662
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement
|
|
3562
3663
|
*/
|
|
3563
|
-
slot: HTMLSlotElementAttributes<HTMLSlotElement>;
|
|
3664
|
+
slot: HTMLSlotElementAttributes<HTMLSlotElement> & Properties<HTMLSlotElement>;
|
|
3564
3665
|
/**
|
|
3565
3666
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
|
|
3566
3667
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3567
3668
|
*/
|
|
3568
|
-
small: HTMLAttributes<HTMLElement>;
|
|
3669
|
+
small: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3569
3670
|
/**
|
|
3570
3671
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
|
|
3571
3672
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
|
|
3572
3673
|
*/
|
|
3573
|
-
source: SourceHTMLAttributes<HTMLSourceElement>;
|
|
3674
|
+
source: SourceHTMLAttributes<HTMLSourceElement> & Properties<HTMLSourceElement>;
|
|
3574
3675
|
/**
|
|
3575
3676
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
|
|
3576
3677
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement
|
|
3577
3678
|
*/
|
|
3578
|
-
span: HTMLAttributes<HTMLSpanElement>;
|
|
3679
|
+
span: HTMLAttributes<HTMLSpanElement> & Properties<HTMLSpanElement>;
|
|
3579
3680
|
/**
|
|
3580
3681
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
|
|
3581
3682
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3582
3683
|
*/
|
|
3583
|
-
strong: HTMLAttributes<HTMLElement>;
|
|
3684
|
+
strong: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3584
3685
|
/**
|
|
3585
3686
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
|
|
3586
3687
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement
|
|
3587
3688
|
*/
|
|
3588
|
-
style: StyleHTMLAttributes<HTMLStyleElement>;
|
|
3689
|
+
style: StyleHTMLAttributes<HTMLStyleElement> & Properties<HTMLStyleElement>;
|
|
3589
3690
|
/**
|
|
3590
3691
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
|
|
3591
3692
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3592
3693
|
*/
|
|
3593
|
-
sub: HTMLAttributes<HTMLElement>;
|
|
3694
|
+
sub: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3594
3695
|
/**
|
|
3595
3696
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
|
|
3596
3697
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3597
3698
|
*/
|
|
3598
|
-
summary: HTMLAttributes<HTMLElement>;
|
|
3699
|
+
summary: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3599
3700
|
/**
|
|
3600
3701
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
|
|
3601
3702
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3602
3703
|
*/
|
|
3603
|
-
sup: HTMLAttributes<HTMLElement>;
|
|
3704
|
+
sup: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3604
3705
|
/**
|
|
3605
3706
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
|
|
3606
3707
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement
|
|
3607
3708
|
*/
|
|
3608
|
-
table: HTMLAttributes<HTMLTableElement>;
|
|
3709
|
+
table: HTMLAttributes<HTMLTableElement> & Properties<HTMLTableElement>;
|
|
3609
3710
|
/**
|
|
3610
3711
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
|
|
3611
3712
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
|
|
3612
3713
|
*/
|
|
3613
|
-
tbody: HTMLAttributes<HTMLTableSectionElement>;
|
|
3714
|
+
tbody: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
|
|
3614
3715
|
/**
|
|
3615
3716
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
|
|
3616
3717
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
|
|
3617
3718
|
*/
|
|
3618
|
-
td: TdHTMLAttributes<HTMLTableCellElement>;
|
|
3719
|
+
td: TdHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
|
|
3619
3720
|
/**
|
|
3620
3721
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
|
|
3621
3722
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement
|
|
3622
3723
|
*/
|
|
3623
|
-
template: TemplateHTMLAttributes<HTMLTemplateElement>;
|
|
3724
|
+
template: TemplateHTMLAttributes<HTMLTemplateElement> & Properties<HTMLTemplateElement>;
|
|
3624
3725
|
/**
|
|
3625
3726
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
|
|
3626
3727
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
|
|
3627
3728
|
*/
|
|
3628
|
-
textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
3729
|
+
textarea: TextareaHTMLAttributes<HTMLTextAreaElement> & Properties<HTMLTextAreaElement>;
|
|
3629
3730
|
/**
|
|
3630
3731
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
|
|
3631
3732
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
|
|
3632
3733
|
*/
|
|
3633
|
-
tfoot: HTMLAttributes<HTMLTableSectionElement>;
|
|
3734
|
+
tfoot: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
|
|
3634
3735
|
/**
|
|
3635
3736
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
|
|
3636
3737
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
|
|
3637
3738
|
*/
|
|
3638
|
-
th: ThHTMLAttributes<HTMLTableCellElement>;
|
|
3739
|
+
th: ThHTMLAttributes<HTMLTableCellElement> & Properties<HTMLTableCellElement>;
|
|
3639
3740
|
/**
|
|
3640
3741
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
|
|
3641
3742
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
|
|
3642
3743
|
*/
|
|
3643
|
-
thead: HTMLAttributes<HTMLTableSectionElement>;
|
|
3744
|
+
thead: HTMLAttributes<HTMLTableSectionElement> & Properties<HTMLTableSectionElement>;
|
|
3644
3745
|
/**
|
|
3645
3746
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
|
|
3646
3747
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement
|
|
3647
3748
|
*/
|
|
3648
|
-
time: TimeHTMLAttributes<HTMLTimeElement>;
|
|
3749
|
+
time: TimeHTMLAttributes<HTMLTimeElement> & Properties<HTMLTimeElement>;
|
|
3649
3750
|
/**
|
|
3650
3751
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
|
|
3651
3752
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement
|
|
3652
3753
|
*/
|
|
3653
|
-
title: HTMLAttributes<HTMLTitleElement>;
|
|
3754
|
+
title: HTMLAttributes<HTMLTitleElement> & Properties<HTMLTitleElement>;
|
|
3654
3755
|
/**
|
|
3655
3756
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
|
|
3656
3757
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement
|
|
3657
3758
|
*/
|
|
3658
|
-
tr: HTMLAttributes<HTMLTableRowElement>;
|
|
3759
|
+
tr: HTMLAttributes<HTMLTableRowElement> & Properties<HTMLTableRowElement>;
|
|
3659
3760
|
/**
|
|
3660
3761
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
|
|
3661
3762
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTrackElement
|
|
3662
3763
|
*/
|
|
3663
|
-
track: TrackHTMLAttributes<HTMLTrackElement>;
|
|
3764
|
+
track: TrackHTMLAttributes<HTMLTrackElement> & Properties<HTMLTrackElement>;
|
|
3664
3765
|
/**
|
|
3665
3766
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
|
|
3666
3767
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3667
3768
|
*/
|
|
3668
|
-
u: HTMLAttributes<HTMLElement>;
|
|
3769
|
+
u: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3669
3770
|
/**
|
|
3670
3771
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
|
|
3671
3772
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement
|
|
3672
3773
|
*/
|
|
3673
|
-
ul: HTMLAttributes<HTMLUListElement>;
|
|
3774
|
+
ul: HTMLAttributes<HTMLUListElement> & Properties<HTMLUListElement>;
|
|
3674
3775
|
/**
|
|
3675
3776
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
|
|
3676
3777
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3677
3778
|
*/
|
|
3678
|
-
var: HTMLAttributes<HTMLElement>;
|
|
3779
|
+
var: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3679
3780
|
/**
|
|
3680
3781
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
|
|
3681
3782
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement
|
|
3682
3783
|
*/
|
|
3683
|
-
video: VideoHTMLAttributes<HTMLVideoElement>;
|
|
3784
|
+
video: VideoHTMLAttributes<HTMLVideoElement> & Properties<HTMLVideoElement>;
|
|
3684
3785
|
/**
|
|
3685
3786
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
|
|
3686
3787
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3687
3788
|
*/
|
|
3688
|
-
wbr: HTMLAttributes<HTMLElement>;
|
|
3789
|
+
wbr: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3689
3790
|
/** @url https://www.electronjs.org/docs/latest/api/webview-tag */
|
|
3690
|
-
webview: WebViewHTMLAttributes<HTMLElement>;
|
|
3791
|
+
webview: WebViewHTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3691
3792
|
}
|
|
3692
3793
|
/** @type {HTMLElementDeprecatedTagNameMap} */
|
|
3693
3794
|
interface HTMLElementDeprecatedTags {
|
|
@@ -3696,25 +3797,25 @@ export namespace JSX {
|
|
|
3696
3797
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
|
|
3697
3798
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
|
|
3698
3799
|
*/
|
|
3699
|
-
big: HTMLAttributes<HTMLElement>;
|
|
3800
|
+
big: HTMLAttributes<HTMLElement> & Properties<HTMLElement>;
|
|
3700
3801
|
/**
|
|
3701
3802
|
* @deprecated
|
|
3702
3803
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
|
|
3703
3804
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
|
|
3704
3805
|
*/
|
|
3705
|
-
keygen: KeygenHTMLAttributes<HTMLUnknownElement>;
|
|
3806
|
+
keygen: KeygenHTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
|
|
3706
3807
|
/**
|
|
3707
3808
|
* @deprecated
|
|
3708
3809
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
|
|
3709
3810
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
|
|
3710
3811
|
*/
|
|
3711
|
-
menuitem: HTMLAttributes<HTMLUnknownElement>;
|
|
3812
|
+
menuitem: HTMLAttributes<HTMLUnknownElement> & Properties<HTMLUnknownElement>;
|
|
3712
3813
|
/**
|
|
3713
3814
|
* @deprecated
|
|
3714
3815
|
* @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
|
|
3715
3816
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParamElement
|
|
3716
3817
|
*/
|
|
3717
|
-
param: ParamHTMLAttributes<HTMLParamElement>;
|
|
3818
|
+
param: ParamHTMLAttributes<HTMLParamElement> & Properties<HTMLParamElement>;
|
|
3718
3819
|
}
|
|
3719
3820
|
/** @type {SVGElementTagNameMap} */
|
|
3720
3821
|
interface SVGElementTags {
|
|
@@ -3722,297 +3823,317 @@ export namespace JSX {
|
|
|
3722
3823
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
|
|
3723
3824
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement
|
|
3724
3825
|
*/
|
|
3725
|
-
animate: AnimateSVGAttributes<SVGAnimateElement>;
|
|
3826
|
+
animate: AnimateSVGAttributes<SVGAnimateElement> & Properties<SVGAnimateElement>;
|
|
3726
3827
|
/**
|
|
3727
3828
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion
|
|
3728
3829
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement
|
|
3729
3830
|
*/
|
|
3730
|
-
animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement
|
|
3831
|
+
animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement> &
|
|
3832
|
+
Properties<SVGAnimateMotionElement>;
|
|
3731
3833
|
/**
|
|
3732
3834
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform
|
|
3733
3835
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement
|
|
3734
3836
|
*/
|
|
3735
|
-
animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement
|
|
3837
|
+
animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement> &
|
|
3838
|
+
Properties<SVGAnimateTransformElement>;
|
|
3736
3839
|
/**
|
|
3737
3840
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
|
|
3738
3841
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement
|
|
3739
3842
|
*/
|
|
3740
|
-
circle: CircleSVGAttributes<SVGCircleElement>;
|
|
3843
|
+
circle: CircleSVGAttributes<SVGCircleElement> & Properties<SVGCircleElement>;
|
|
3741
3844
|
/**
|
|
3742
3845
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath
|
|
3743
3846
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
|
|
3744
3847
|
*/
|
|
3745
|
-
clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
|
|
3848
|
+
clipPath: ClipPathSVGAttributes<SVGClipPathElement> & Properties<SVGClipPathElement>;
|
|
3746
3849
|
/**
|
|
3747
3850
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
|
|
3748
3851
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDefsElement
|
|
3749
3852
|
*/
|
|
3750
|
-
defs: DefsSVGAttributes<SVGDefsElement>;
|
|
3853
|
+
defs: DefsSVGAttributes<SVGDefsElement> & Properties<SVGDefsElement>;
|
|
3751
3854
|
/**
|
|
3752
3855
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
|
|
3753
3856
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDescElement
|
|
3754
3857
|
*/
|
|
3755
|
-
desc: DescSVGAttributes<SVGDescElement>;
|
|
3858
|
+
desc: DescSVGAttributes<SVGDescElement> & Properties<SVGDescElement>;
|
|
3756
3859
|
/**
|
|
3757
3860
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
|
|
3758
3861
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement
|
|
3759
3862
|
*/
|
|
3760
|
-
ellipse: EllipseSVGAttributes<SVGEllipseElement>;
|
|
3863
|
+
ellipse: EllipseSVGAttributes<SVGEllipseElement> & Properties<SVGEllipseElement>;
|
|
3761
3864
|
/**
|
|
3762
3865
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend
|
|
3763
3866
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
|
|
3764
3867
|
*/
|
|
3765
|
-
feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
|
|
3868
|
+
feBlend: FeBlendSVGAttributes<SVGFEBlendElement> & Properties<SVGFEBlendElement>;
|
|
3766
3869
|
/**
|
|
3767
3870
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix
|
|
3768
3871
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement
|
|
3769
3872
|
*/
|
|
3770
|
-
feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement
|
|
3873
|
+
feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement> &
|
|
3874
|
+
Properties<SVGFEColorMatrixElement>;
|
|
3771
3875
|
/**
|
|
3772
3876
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer
|
|
3773
3877
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElemen
|
|
3774
3878
|
*/
|
|
3775
|
-
feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement
|
|
3879
|
+
feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement> &
|
|
3880
|
+
Properties<SVGFEComponentTransferElement>;
|
|
3776
3881
|
/**
|
|
3777
3882
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite
|
|
3778
3883
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
|
|
3779
3884
|
*/
|
|
3780
|
-
feComposite: FeCompositeSVGAttributes<SVGFECompositeElement
|
|
3885
|
+
feComposite: FeCompositeSVGAttributes<SVGFECompositeElement> &
|
|
3886
|
+
Properties<SVGFECompositeElement>;
|
|
3781
3887
|
/**
|
|
3782
3888
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix
|
|
3783
3889
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEConvolveMatrixElement
|
|
3784
3890
|
*/
|
|
3785
|
-
feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement
|
|
3891
|
+
feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement> &
|
|
3892
|
+
Properties<SVGFEConvolveMatrixElement>;
|
|
3786
3893
|
/**
|
|
3787
3894
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting
|
|
3788
3895
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDiffuseLightingElement
|
|
3789
3896
|
*/
|
|
3790
|
-
feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement
|
|
3897
|
+
feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement> &
|
|
3898
|
+
Properties<SVGFEDiffuseLightingElement>;
|
|
3791
3899
|
/**
|
|
3792
3900
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap
|
|
3793
3901
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDisplacementMapElement
|
|
3794
3902
|
*/
|
|
3795
|
-
feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement
|
|
3903
|
+
feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement> &
|
|
3904
|
+
Properties<SVGFEDisplacementMapElement>;
|
|
3796
3905
|
/**
|
|
3797
3906
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight
|
|
3798
3907
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
|
|
3799
3908
|
*/
|
|
3800
|
-
feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement
|
|
3909
|
+
feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement> &
|
|
3910
|
+
Properties<SVGFEDistantLightElement>;
|
|
3801
3911
|
/**
|
|
3802
3912
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow
|
|
3803
3913
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDropShadowElement
|
|
3804
3914
|
*/
|
|
3805
|
-
feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement
|
|
3915
|
+
feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement> &
|
|
3916
|
+
Properties<SVGFEDropShadowElement>;
|
|
3806
3917
|
/**
|
|
3807
3918
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood
|
|
3808
3919
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFloodElement
|
|
3809
3920
|
*/
|
|
3810
|
-
feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
|
|
3921
|
+
feFlood: FeFloodSVGAttributes<SVGFEFloodElement> & Properties<SVGFEFloodElement>;
|
|
3811
3922
|
/**
|
|
3812
3923
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA
|
|
3813
3924
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncAElement
|
|
3814
3925
|
*/
|
|
3815
|
-
feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
|
|
3926
|
+
feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement> & Properties<SVGFEFuncAElement>;
|
|
3816
3927
|
/**
|
|
3817
3928
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB
|
|
3818
3929
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncBElement
|
|
3819
3930
|
*/
|
|
3820
|
-
feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
|
|
3931
|
+
feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement> & Properties<SVGFEFuncBElement>;
|
|
3821
3932
|
/**
|
|
3822
3933
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG
|
|
3823
3934
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncGElement
|
|
3824
3935
|
*/
|
|
3825
|
-
feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
|
|
3936
|
+
feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement> & Properties<SVGFEFuncGElement>;
|
|
3826
3937
|
/**
|
|
3827
3938
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR
|
|
3828
3939
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncRElement
|
|
3829
3940
|
*/
|
|
3830
|
-
feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
|
|
3941
|
+
feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement> & Properties<SVGFEFuncRElement>;
|
|
3831
3942
|
/**
|
|
3832
3943
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur
|
|
3833
3944
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEGaussianBlurElement
|
|
3834
3945
|
*/
|
|
3835
|
-
feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement
|
|
3946
|
+
feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement> &
|
|
3947
|
+
Properties<SVGFEGaussianBlurElement>;
|
|
3836
3948
|
/**
|
|
3837
3949
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage
|
|
3838
3950
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement
|
|
3839
3951
|
*/
|
|
3840
|
-
feImage: FeImageSVGAttributes<SVGFEImageElement>;
|
|
3952
|
+
feImage: FeImageSVGAttributes<SVGFEImageElement> & Properties<SVGFEImageElement>;
|
|
3841
3953
|
/**
|
|
3842
3954
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge
|
|
3843
3955
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement
|
|
3844
3956
|
*/
|
|
3845
|
-
feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
|
|
3957
|
+
feMerge: FeMergeSVGAttributes<SVGFEMergeElement> & Properties<SVGFEMergeElement>;
|
|
3846
3958
|
/**
|
|
3847
3959
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode
|
|
3848
3960
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
|
|
3849
3961
|
*/
|
|
3850
|
-
feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement
|
|
3962
|
+
feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement> &
|
|
3963
|
+
Properties<SVGFEMergeNodeElement>;
|
|
3851
3964
|
/**
|
|
3852
3965
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology
|
|
3853
3966
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMorphologyElement
|
|
3854
3967
|
*/
|
|
3855
|
-
feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement
|
|
3968
|
+
feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement> &
|
|
3969
|
+
Properties<SVGFEMorphologyElement>;
|
|
3856
3970
|
/**
|
|
3857
3971
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset
|
|
3858
3972
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEOffsetElement
|
|
3859
3973
|
*/
|
|
3860
|
-
feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
|
|
3974
|
+
feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement> & Properties<SVGFEOffsetElement>;
|
|
3861
3975
|
/**
|
|
3862
3976
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight
|
|
3863
3977
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
|
|
3864
3978
|
*/
|
|
3865
|
-
fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement
|
|
3979
|
+
fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement> &
|
|
3980
|
+
Properties<SVGFEPointLightElement>;
|
|
3866
3981
|
/**
|
|
3867
3982
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting
|
|
3868
3983
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
|
|
3869
3984
|
*/
|
|
3870
|
-
feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement
|
|
3985
|
+
feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement> &
|
|
3986
|
+
Properties<SVGFESpecularLightingElement>;
|
|
3871
3987
|
/**
|
|
3872
3988
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight
|
|
3873
3989
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
|
|
3874
3990
|
*/
|
|
3875
|
-
feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement
|
|
3991
|
+
feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement> &
|
|
3992
|
+
Properties<SVGFESpotLightElement>;
|
|
3876
3993
|
/**
|
|
3877
3994
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile
|
|
3878
3995
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETileElement
|
|
3879
3996
|
*/
|
|
3880
|
-
feTile: FeTileSVGAttributes<SVGFETileElement>;
|
|
3997
|
+
feTile: FeTileSVGAttributes<SVGFETileElement> & Properties<SVGFETileElement>;
|
|
3881
3998
|
/**
|
|
3882
3999
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence
|
|
3883
4000
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
|
|
3884
4001
|
*/
|
|
3885
|
-
feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement
|
|
4002
|
+
feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement> &
|
|
4003
|
+
Properties<SVGFETurbulenceElement>;
|
|
3886
4004
|
/**
|
|
3887
4005
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter
|
|
3888
4006
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFilterElement
|
|
3889
4007
|
*/
|
|
3890
|
-
filter: FilterSVGAttributes<SVGFilterElement>;
|
|
4008
|
+
filter: FilterSVGAttributes<SVGFilterElement> & Properties<SVGFilterElement>;
|
|
3891
4009
|
/**
|
|
3892
4010
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject
|
|
3893
4011
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGForeignObjectElement
|
|
3894
4012
|
*/
|
|
3895
|
-
foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement
|
|
4013
|
+
foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement> &
|
|
4014
|
+
Properties<SVGForeignObjectElement>;
|
|
3896
4015
|
/**
|
|
3897
4016
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
|
|
3898
4017
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGGElement
|
|
3899
4018
|
*/
|
|
3900
|
-
g: GSVGAttributes<SVGGElement>;
|
|
4019
|
+
g: GSVGAttributes<SVGGElement> & Properties<SVGGElement>;
|
|
3901
4020
|
/**
|
|
3902
4021
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
|
|
3903
4022
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGImageElement
|
|
3904
4023
|
*/
|
|
3905
|
-
image: ImageSVGAttributes<SVGImageElement>;
|
|
4024
|
+
image: ImageSVGAttributes<SVGImageElement> & Properties<SVGImageElement>;
|
|
3906
4025
|
/**
|
|
3907
4026
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
|
|
3908
4027
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
|
|
3909
4028
|
*/
|
|
3910
|
-
line: LineSVGAttributes<SVGLineElement>;
|
|
4029
|
+
line: LineSVGAttributes<SVGLineElement> & Properties<SVGLineElement>;
|
|
3911
4030
|
/**
|
|
3912
4031
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
|
|
3913
4032
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
|
|
3914
4033
|
*/
|
|
3915
|
-
linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement
|
|
4034
|
+
linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement> &
|
|
4035
|
+
Properties<SVGLinearGradientElement>;
|
|
3916
4036
|
/**
|
|
3917
4037
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker
|
|
3918
4038
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMarkerElement
|
|
3919
4039
|
*/
|
|
3920
|
-
marker: MarkerSVGAttributes<SVGMarkerElement>;
|
|
4040
|
+
marker: MarkerSVGAttributes<SVGMarkerElement> & Properties<SVGMarkerElement>;
|
|
3921
4041
|
/**
|
|
3922
4042
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask
|
|
3923
4043
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement
|
|
3924
4044
|
*/
|
|
3925
|
-
mask: MaskSVGAttributes<SVGMaskElement>;
|
|
4045
|
+
mask: MaskSVGAttributes<SVGMaskElement> & Properties<SVGMaskElement>;
|
|
3926
4046
|
/**
|
|
3927
4047
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata
|
|
3928
4048
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMetadataElement
|
|
3929
4049
|
*/
|
|
3930
|
-
metadata: MetadataSVGAttributes<SVGMetadataElement>;
|
|
4050
|
+
metadata: MetadataSVGAttributes<SVGMetadataElement> & Properties<SVGMetadataElement>;
|
|
3931
4051
|
/**
|
|
3932
4052
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath
|
|
3933
4053
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
|
|
3934
4054
|
*/
|
|
3935
|
-
mpath: MPathSVGAttributes<SVGMPathElement>;
|
|
4055
|
+
mpath: MPathSVGAttributes<SVGMPathElement> & Properties<SVGMPathElement>;
|
|
3936
4056
|
/**
|
|
3937
4057
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
|
|
3938
4058
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPathElement
|
|
3939
4059
|
*/
|
|
3940
|
-
path: PathSVGAttributes<SVGPathElement>;
|
|
4060
|
+
path: PathSVGAttributes<SVGPathElement> & Properties<SVGPathElement>;
|
|
3941
4061
|
/**
|
|
3942
4062
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern
|
|
3943
4063
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPatternElement
|
|
3944
4064
|
*/
|
|
3945
|
-
pattern: PatternSVGAttributes<SVGPatternElement>;
|
|
4065
|
+
pattern: PatternSVGAttributes<SVGPatternElement> & Properties<SVGPatternElement>;
|
|
3946
4066
|
/**
|
|
3947
4067
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
|
|
3948
4068
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolygonElement
|
|
3949
4069
|
*/
|
|
3950
|
-
polygon: PolygonSVGAttributes<SVGPolygonElement>;
|
|
4070
|
+
polygon: PolygonSVGAttributes<SVGPolygonElement> & Properties<SVGPolygonElement>;
|
|
3951
4071
|
/**
|
|
3952
4072
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
|
|
3953
4073
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolylineElement
|
|
3954
4074
|
*/
|
|
3955
|
-
polyline: PolylineSVGAttributes<SVGPolylineElement>;
|
|
4075
|
+
polyline: PolylineSVGAttributes<SVGPolylineElement> & Properties<SVGPolylineElement>;
|
|
3956
4076
|
/**
|
|
3957
4077
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
|
|
3958
4078
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
|
|
3959
4079
|
*/
|
|
3960
|
-
radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement
|
|
4080
|
+
radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement> &
|
|
4081
|
+
Properties<SVGRadialGradientElement>;
|
|
3961
4082
|
/**
|
|
3962
4083
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
|
|
3963
4084
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRectElement
|
|
3964
4085
|
*/
|
|
3965
|
-
rect: RectSVGAttributes<SVGRectElement>;
|
|
4086
|
+
rect: RectSVGAttributes<SVGRectElement> & Properties<SVGRectElement>;
|
|
3966
4087
|
/**
|
|
3967
4088
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set
|
|
3968
4089
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement
|
|
3969
4090
|
*/
|
|
3970
|
-
set: SetSVGAttributes<SVGSetElement>;
|
|
4091
|
+
set: SetSVGAttributes<SVGSetElement> & Properties<SVGSetElement>;
|
|
3971
4092
|
/**
|
|
3972
4093
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop
|
|
3973
4094
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGStopElement
|
|
3974
4095
|
*/
|
|
3975
|
-
stop: StopSVGAttributes<SVGStopElement>;
|
|
4096
|
+
stop: StopSVGAttributes<SVGStopElement> & Properties<SVGStopElement>;
|
|
3976
4097
|
/**
|
|
3977
4098
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
|
|
3978
4099
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSVGElement
|
|
3979
4100
|
*/
|
|
3980
|
-
svg: SvgSVGAttributes<SVGSVGElement>;
|
|
4101
|
+
svg: SvgSVGAttributes<SVGSVGElement> & Properties<SVGSVGElement>;
|
|
3981
4102
|
/**
|
|
3982
4103
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch
|
|
3983
4104
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSwitchElement
|
|
3984
4105
|
*/
|
|
3985
|
-
switch: SwitchSVGAttributes<SVGSwitchElement>;
|
|
4106
|
+
switch: SwitchSVGAttributes<SVGSwitchElement> & Properties<SVGSwitchElement>;
|
|
3986
4107
|
/**
|
|
3987
4108
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol
|
|
3988
4109
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement
|
|
3989
4110
|
*/
|
|
3990
|
-
symbol: SymbolSVGAttributes<SVGSymbolElement>;
|
|
4111
|
+
symbol: SymbolSVGAttributes<SVGSymbolElement> & Properties<SVGSymbolElement>;
|
|
3991
4112
|
/**
|
|
3992
4113
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
|
|
3993
4114
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextElement
|
|
3994
4115
|
*/
|
|
3995
|
-
text: TextSVGAttributes<SVGTextElement>;
|
|
4116
|
+
text: TextSVGAttributes<SVGTextElement> & Properties<SVGTextElement>;
|
|
3996
4117
|
/**
|
|
3997
4118
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath
|
|
3998
4119
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPathElement
|
|
3999
4120
|
*/
|
|
4000
|
-
textPath: TextPathSVGAttributes<SVGTextPathElement>;
|
|
4121
|
+
textPath: TextPathSVGAttributes<SVGTextPathElement> & Properties<SVGTextPathElement>;
|
|
4001
4122
|
/**
|
|
4002
4123
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan
|
|
4003
4124
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTSpanElement
|
|
4004
4125
|
*/
|
|
4005
|
-
tspan: TSpanSVGAttributes<SVGTSpanElement>;
|
|
4126
|
+
tspan: TSpanSVGAttributes<SVGTSpanElement> & Properties<SVGTSpanElement>;
|
|
4006
4127
|
/**
|
|
4007
4128
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
|
|
4008
4129
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGUseElement
|
|
4009
4130
|
*/
|
|
4010
|
-
use: UseSVGAttributes<SVGUseElement>;
|
|
4131
|
+
use: UseSVGAttributes<SVGUseElement> & Properties<SVGUseElement>;
|
|
4011
4132
|
/**
|
|
4012
4133
|
* @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view
|
|
4013
4134
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/SVGViewElement
|
|
4014
4135
|
*/
|
|
4015
|
-
view: ViewSVGAttributes<SVGViewElement>;
|
|
4136
|
+
view: ViewSVGAttributes<SVGViewElement> & Properties<SVGViewElement>;
|
|
4016
4137
|
}
|
|
4017
4138
|
|
|
4018
4139
|
interface MathMLElementTags {
|
|
@@ -4020,7 +4141,7 @@ export namespace JSX {
|
|
|
4020
4141
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation
|
|
4021
4142
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4022
4143
|
*/
|
|
4023
|
-
annotation: MathMLAnnotationElementAttributes<MathMLElement>;
|
|
4144
|
+
annotation: MathMLAnnotationElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4024
4145
|
/**
|
|
4025
4146
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation-xml
|
|
4026
4147
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
@@ -4030,156 +4151,156 @@ export namespace JSX {
|
|
|
4030
4151
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
|
|
4031
4152
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4032
4153
|
*/
|
|
4033
|
-
math: MathMLMathElementAttributes<MathMLElement>;
|
|
4154
|
+
math: MathMLMathElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4034
4155
|
/**
|
|
4035
4156
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror
|
|
4036
4157
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4037
4158
|
*/
|
|
4038
|
-
merror: MathMLMerrorElementAttributes<MathMLElement>;
|
|
4159
|
+
merror: MathMLMerrorElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4039
4160
|
/**
|
|
4040
4161
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac
|
|
4041
4162
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4042
4163
|
*/
|
|
4043
|
-
mfrac: MathMLMfracElementAttributes<MathMLElement>;
|
|
4164
|
+
mfrac: MathMLMfracElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4044
4165
|
/**
|
|
4045
4166
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi
|
|
4046
4167
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4047
4168
|
*/
|
|
4048
|
-
mi: MathMLMiElementAttributes<MathMLElement>;
|
|
4169
|
+
mi: MathMLMiElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4049
4170
|
/**
|
|
4050
4171
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts
|
|
4051
4172
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4052
4173
|
*/
|
|
4053
|
-
mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement>;
|
|
4174
|
+
mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4054
4175
|
/**
|
|
4055
4176
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn
|
|
4056
4177
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4057
4178
|
*/
|
|
4058
|
-
mn: MathMLMnElementAttributes<MathMLElement>;
|
|
4179
|
+
mn: MathMLMnElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4059
4180
|
/**
|
|
4060
4181
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo
|
|
4061
4182
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4062
4183
|
*/
|
|
4063
|
-
mo: MathMLMoElementAttributes<MathMLElement>;
|
|
4184
|
+
mo: MathMLMoElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4064
4185
|
/**
|
|
4065
4186
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover
|
|
4066
4187
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4067
4188
|
*/
|
|
4068
|
-
mover: MathMLMoverElementAttributes<MathMLElement>;
|
|
4189
|
+
mover: MathMLMoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4069
4190
|
/**
|
|
4070
4191
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded
|
|
4071
4192
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4072
4193
|
*/
|
|
4073
|
-
mpadded: MathMLMpaddedElementAttributes<MathMLElement>;
|
|
4194
|
+
mpadded: MathMLMpaddedElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4074
4195
|
/**
|
|
4075
4196
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom
|
|
4076
4197
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4077
4198
|
*/
|
|
4078
|
-
mphantom: MathMLMphantomElementAttributes<MathMLElement>;
|
|
4199
|
+
mphantom: MathMLMphantomElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4079
4200
|
/**
|
|
4080
4201
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mprescripts
|
|
4081
4202
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4082
4203
|
*/
|
|
4083
|
-
mprescripts: MathMLMprescriptsElementAttributes<MathMLElement>;
|
|
4204
|
+
mprescripts: MathMLMprescriptsElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4084
4205
|
/**
|
|
4085
4206
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot
|
|
4086
4207
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4087
4208
|
*/
|
|
4088
|
-
mroot: MathMLMrootElementAttributes<MathMLElement>;
|
|
4209
|
+
mroot: MathMLMrootElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4089
4210
|
/**
|
|
4090
4211
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow
|
|
4091
4212
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4092
4213
|
*/
|
|
4093
|
-
mrow: MathMLMrowElementAttributes<MathMLElement>;
|
|
4214
|
+
mrow: MathMLMrowElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4094
4215
|
/**
|
|
4095
4216
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms
|
|
4096
4217
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4097
4218
|
*/
|
|
4098
|
-
ms: MathMLMsElementAttributes<MathMLElement>;
|
|
4219
|
+
ms: MathMLMsElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4099
4220
|
/**
|
|
4100
4221
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace
|
|
4101
4222
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4102
4223
|
*/
|
|
4103
|
-
mspace: MathMLMspaceElementAttributes<MathMLElement>;
|
|
4224
|
+
mspace: MathMLMspaceElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4104
4225
|
/**
|
|
4105
4226
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt
|
|
4106
4227
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4107
4228
|
*/
|
|
4108
|
-
msqrt: MathMLMsqrtElementAttributes<MathMLElement>;
|
|
4229
|
+
msqrt: MathMLMsqrtElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4109
4230
|
/**
|
|
4110
4231
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
|
|
4111
4232
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4112
4233
|
*/
|
|
4113
|
-
mstyle: MathMLMstyleElementAttributes<MathMLElement>;
|
|
4234
|
+
mstyle: MathMLMstyleElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4114
4235
|
/**
|
|
4115
4236
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub
|
|
4116
4237
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4117
4238
|
*/
|
|
4118
|
-
msub: MathMLMsubElementAttributes<MathMLElement>;
|
|
4239
|
+
msub: MathMLMsubElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4119
4240
|
/**
|
|
4120
4241
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup
|
|
4121
4242
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4122
4243
|
*/
|
|
4123
|
-
msubsup: MathMLMsubsupElementAttributes<MathMLElement>;
|
|
4244
|
+
msubsup: MathMLMsubsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4124
4245
|
/**
|
|
4125
4246
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup
|
|
4126
4247
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4127
4248
|
*/
|
|
4128
|
-
msup: MathMLMsupElementAttributes<MathMLElement>;
|
|
4249
|
+
msup: MathMLMsupElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4129
4250
|
/**
|
|
4130
4251
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable
|
|
4131
4252
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4132
4253
|
*/
|
|
4133
|
-
mtable: MathMLMtableElementAttributes<MathMLElement>;
|
|
4254
|
+
mtable: MathMLMtableElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4134
4255
|
/**
|
|
4135
4256
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd
|
|
4136
4257
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4137
4258
|
*/
|
|
4138
|
-
mtd: MathMLMtdElementAttributes<MathMLElement>;
|
|
4259
|
+
mtd: MathMLMtdElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4139
4260
|
/**
|
|
4140
4261
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext
|
|
4141
4262
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4142
4263
|
*/
|
|
4143
|
-
mtext: MathMLMtextElementAttributes<MathMLElement>;
|
|
4264
|
+
mtext: MathMLMtextElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4144
4265
|
/**
|
|
4145
4266
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr
|
|
4146
4267
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4147
4268
|
*/
|
|
4148
|
-
mtr: MathMLMtrElementAttributes<MathMLElement>;
|
|
4269
|
+
mtr: MathMLMtrElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4149
4270
|
/**
|
|
4150
4271
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder
|
|
4151
4272
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4152
4273
|
*/
|
|
4153
|
-
munder: MathMLMunderElementAttributes<MathMLElement>;
|
|
4274
|
+
munder: MathMLMunderElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4154
4275
|
/**
|
|
4155
4276
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover
|
|
4156
4277
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4157
4278
|
*/
|
|
4158
|
-
munderover: MathMLMunderoverElementAttributes<MathMLElement>;
|
|
4279
|
+
munderover: MathMLMunderoverElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4159
4280
|
/**
|
|
4160
4281
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics
|
|
4161
4282
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4162
4283
|
*/
|
|
4163
|
-
semantics: MathMLSemanticsElementAttributes<MathMLElement>;
|
|
4284
|
+
semantics: MathMLSemanticsElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4164
4285
|
/**
|
|
4165
4286
|
* @non-standard
|
|
4166
4287
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose
|
|
4167
4288
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4168
4289
|
*/
|
|
4169
|
-
menclose: MathMLMencloseElementAttributes<MathMLElement>;
|
|
4290
|
+
menclose: MathMLMencloseElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4170
4291
|
/**
|
|
4171
4292
|
* @deprecated
|
|
4172
4293
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/maction
|
|
4173
4294
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4174
4295
|
*/
|
|
4175
|
-
maction: MathMLMactionElementAttributes<MathMLElement>;
|
|
4296
|
+
maction: MathMLMactionElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4176
4297
|
/**
|
|
4177
4298
|
* @deprecated
|
|
4178
4299
|
* @non-standard
|
|
4179
4300
|
* @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced
|
|
4180
4301
|
* @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
|
|
4181
4302
|
*/
|
|
4182
|
-
mfenced: MathMLMfencedElementAttributes<MathMLElement>;
|
|
4303
|
+
mfenced: MathMLMfencedElementAttributes<MathMLElement> & Properties<MathMLElement>;
|
|
4183
4304
|
}
|
|
4184
4305
|
|
|
4185
4306
|
interface IntrinsicElements
|