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