@types/web 0.0.118 → 0.0.120
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/README.md +1 -1
- package/index.d.ts +42 -31
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.120 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.120.
|
package/index.d.ts
CHANGED
|
@@ -4082,6 +4082,9 @@ interface CSSStyleDeclaration {
|
|
|
4082
4082
|
cssText: string;
|
|
4083
4083
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
|
|
4084
4084
|
cursor: string;
|
|
4085
|
+
cx: string;
|
|
4086
|
+
cy: string;
|
|
4087
|
+
d: string;
|
|
4085
4088
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/direction) */
|
|
4086
4089
|
direction: string;
|
|
4087
4090
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/display) */
|
|
@@ -4176,11 +4179,10 @@ interface CSSStyleDeclaration {
|
|
|
4176
4179
|
gridColumn: string;
|
|
4177
4180
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-end) */
|
|
4178
4181
|
gridColumnEnd: string;
|
|
4179
|
-
/** @deprecated This is a legacy alias of `columnGap`. */
|
|
4180
4182
|
gridColumnGap: string;
|
|
4181
4183
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-start) */
|
|
4182
4184
|
gridColumnStart: string;
|
|
4183
|
-
/**
|
|
4185
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/gap) */
|
|
4184
4186
|
gridGap: string;
|
|
4185
4187
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row) */
|
|
4186
4188
|
gridRow: string;
|
|
@@ -4335,6 +4337,8 @@ interface CSSStyleDeclaration {
|
|
|
4335
4337
|
offsetDistance: string;
|
|
4336
4338
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */
|
|
4337
4339
|
offsetPath: string;
|
|
4340
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-position) */
|
|
4341
|
+
offsetPosition: string;
|
|
4338
4342
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-rotate) */
|
|
4339
4343
|
offsetRotate: string;
|
|
4340
4344
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/opacity) */
|
|
@@ -4427,6 +4431,7 @@ interface CSSStyleDeclaration {
|
|
|
4427
4431
|
printColorAdjust: string;
|
|
4428
4432
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
|
|
4429
4433
|
quotes: string;
|
|
4434
|
+
r: string;
|
|
4430
4435
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/resize) */
|
|
4431
4436
|
resize: string;
|
|
4432
4437
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/right) */
|
|
@@ -4437,6 +4442,8 @@ interface CSSStyleDeclaration {
|
|
|
4437
4442
|
rowGap: string;
|
|
4438
4443
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-position) */
|
|
4439
4444
|
rubyPosition: string;
|
|
4445
|
+
rx: string;
|
|
4446
|
+
ry: string;
|
|
4440
4447
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scale) */
|
|
4441
4448
|
scale: string;
|
|
4442
4449
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-behavior) */
|
|
@@ -4491,8 +4498,12 @@ interface CSSStyleDeclaration {
|
|
|
4491
4498
|
scrollSnapStop: string;
|
|
4492
4499
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type) */
|
|
4493
4500
|
scrollSnapType: string;
|
|
4501
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-color) */
|
|
4502
|
+
scrollbarColor: string;
|
|
4494
4503
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter) */
|
|
4495
4504
|
scrollbarGutter: string;
|
|
4505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-width) */
|
|
4506
|
+
scrollbarWidth: string;
|
|
4496
4507
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold) */
|
|
4497
4508
|
shapeImageThreshold: string;
|
|
4498
4509
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-margin) */
|
|
@@ -4585,6 +4596,7 @@ interface CSSStyleDeclaration {
|
|
|
4585
4596
|
unicodeBidi: string;
|
|
4586
4597
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select) */
|
|
4587
4598
|
userSelect: string;
|
|
4599
|
+
vectorEffect: string;
|
|
4588
4600
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
|
|
4589
4601
|
verticalAlign: string;
|
|
4590
4602
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
|
|
@@ -4997,14 +5009,12 @@ interface CSSStyleDeclaration {
|
|
|
4997
5009
|
wordBreak: string;
|
|
4998
5010
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-spacing) */
|
|
4999
5011
|
wordSpacing: string;
|
|
5000
|
-
/**
|
|
5001
|
-
* @deprecated
|
|
5002
|
-
*
|
|
5003
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)
|
|
5004
|
-
*/
|
|
5012
|
+
/** @deprecated */
|
|
5005
5013
|
wordWrap: string;
|
|
5006
5014
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/writing-mode) */
|
|
5007
5015
|
writingMode: string;
|
|
5016
|
+
x: string;
|
|
5017
|
+
y: string;
|
|
5008
5018
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
|
|
5009
5019
|
zIndex: string;
|
|
5010
5020
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority) */
|
|
@@ -11014,11 +11024,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11014
11024
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/height)
|
|
11015
11025
|
*/
|
|
11016
11026
|
height: number;
|
|
11017
|
-
/**
|
|
11018
|
-
* When set, overrides the rendering of checkbox controls so that the current value is not visible.
|
|
11019
|
-
*
|
|
11020
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/indeterminate)
|
|
11021
|
-
*/
|
|
11027
|
+
/** When set, overrides the rendering of checkbox controls so that the current value is not visible. */
|
|
11022
11028
|
indeterminate: boolean;
|
|
11023
11029
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels) */
|
|
11024
11030
|
readonly labels: NodeListOf<HTMLLabelElement> | null;
|
|
@@ -20083,6 +20089,8 @@ declare var SVGGraphicsElement: {
|
|
|
20083
20089
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)
|
|
20084
20090
|
*/
|
|
20085
20091
|
interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
|
|
20092
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossorigin) */
|
|
20093
|
+
crossOrigin: string | null;
|
|
20086
20094
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height) */
|
|
20087
20095
|
readonly height: SVGAnimatedLength;
|
|
20088
20096
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio) */
|
|
@@ -26506,44 +26514,44 @@ declare var XSLTProcessor: {
|
|
|
26506
26514
|
|
|
26507
26515
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
|
|
26508
26516
|
interface Console {
|
|
26509
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26517
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
|
|
26510
26518
|
assert(condition?: boolean, ...data: any[]): void;
|
|
26511
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26519
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
|
|
26512
26520
|
clear(): void;
|
|
26513
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26521
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
26514
26522
|
count(label?: string): void;
|
|
26515
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26523
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
26516
26524
|
countReset(label?: string): void;
|
|
26517
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26525
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
26518
26526
|
debug(...data: any[]): void;
|
|
26519
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26527
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
|
|
26520
26528
|
dir(item?: any, options?: any): void;
|
|
26521
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26529
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
|
|
26522
26530
|
dirxml(...data: any[]): void;
|
|
26523
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26531
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
|
|
26524
26532
|
error(...data: any[]): void;
|
|
26525
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26533
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
26526
26534
|
group(...data: any[]): void;
|
|
26527
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26535
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
26528
26536
|
groupCollapsed(...data: any[]): void;
|
|
26529
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26537
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
26530
26538
|
groupEnd(): void;
|
|
26531
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26539
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
26532
26540
|
info(...data: any[]): void;
|
|
26533
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26541
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
|
|
26534
26542
|
log(...data: any[]): void;
|
|
26535
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26543
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
|
|
26536
26544
|
table(tabularData?: any, properties?: string[]): void;
|
|
26537
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26545
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
26538
26546
|
time(label?: string): void;
|
|
26539
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26547
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
26540
26548
|
timeEnd(label?: string): void;
|
|
26541
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26549
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
26542
26550
|
timeLog(label?: string, ...data: any[]): void;
|
|
26543
26551
|
timeStamp(label?: string): void;
|
|
26544
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26552
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
26545
26553
|
trace(...data: any[]): void;
|
|
26546
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26554
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
|
|
26547
26555
|
warn(...data: any[]): void;
|
|
26548
26556
|
}
|
|
26549
26557
|
|
|
@@ -26601,8 +26609,10 @@ declare namespace CSS {
|
|
|
26601
26609
|
function fr(value: number): CSSUnitValue;
|
|
26602
26610
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26603
26611
|
function grad(value: number): CSSUnitValue;
|
|
26612
|
+
function ic(value: number): CSSUnitValue;
|
|
26604
26613
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26605
26614
|
function kHz(value: number): CSSUnitValue;
|
|
26615
|
+
function lh(value: number): CSSUnitValue;
|
|
26606
26616
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26607
26617
|
function lvb(value: number): CSSUnitValue;
|
|
26608
26618
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
@@ -26635,6 +26645,7 @@ declare namespace CSS {
|
|
|
26635
26645
|
function registerProperty(definition: PropertyDefinition): void;
|
|
26636
26646
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26637
26647
|
function rem(value: number): CSSUnitValue;
|
|
26648
|
+
function rlh(value: number): CSSUnitValue;
|
|
26638
26649
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26639
26650
|
function s(value: number): CSSUnitValue;
|
|
26640
26651
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/supports_static) */
|