@types/web 0.0.119 → 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 +38 -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;
|
|
@@ -4429,6 +4431,7 @@ interface CSSStyleDeclaration {
|
|
|
4429
4431
|
printColorAdjust: string;
|
|
4430
4432
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
|
|
4431
4433
|
quotes: string;
|
|
4434
|
+
r: string;
|
|
4432
4435
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/resize) */
|
|
4433
4436
|
resize: string;
|
|
4434
4437
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/right) */
|
|
@@ -4439,6 +4442,8 @@ interface CSSStyleDeclaration {
|
|
|
4439
4442
|
rowGap: string;
|
|
4440
4443
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-position) */
|
|
4441
4444
|
rubyPosition: string;
|
|
4445
|
+
rx: string;
|
|
4446
|
+
ry: string;
|
|
4442
4447
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scale) */
|
|
4443
4448
|
scale: string;
|
|
4444
4449
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-behavior) */
|
|
@@ -4493,8 +4498,12 @@ interface CSSStyleDeclaration {
|
|
|
4493
4498
|
scrollSnapStop: string;
|
|
4494
4499
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type) */
|
|
4495
4500
|
scrollSnapType: string;
|
|
4501
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-color) */
|
|
4502
|
+
scrollbarColor: string;
|
|
4496
4503
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter) */
|
|
4497
4504
|
scrollbarGutter: string;
|
|
4505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-width) */
|
|
4506
|
+
scrollbarWidth: string;
|
|
4498
4507
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold) */
|
|
4499
4508
|
shapeImageThreshold: string;
|
|
4500
4509
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-margin) */
|
|
@@ -4587,6 +4596,7 @@ interface CSSStyleDeclaration {
|
|
|
4587
4596
|
unicodeBidi: string;
|
|
4588
4597
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select) */
|
|
4589
4598
|
userSelect: string;
|
|
4599
|
+
vectorEffect: string;
|
|
4590
4600
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
|
|
4591
4601
|
verticalAlign: string;
|
|
4592
4602
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
|
|
@@ -4999,14 +5009,12 @@ interface CSSStyleDeclaration {
|
|
|
4999
5009
|
wordBreak: string;
|
|
5000
5010
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-spacing) */
|
|
5001
5011
|
wordSpacing: string;
|
|
5002
|
-
/**
|
|
5003
|
-
* @deprecated
|
|
5004
|
-
*
|
|
5005
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)
|
|
5006
|
-
*/
|
|
5012
|
+
/** @deprecated */
|
|
5007
5013
|
wordWrap: string;
|
|
5008
5014
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/writing-mode) */
|
|
5009
5015
|
writingMode: string;
|
|
5016
|
+
x: string;
|
|
5017
|
+
y: string;
|
|
5010
5018
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
|
|
5011
5019
|
zIndex: string;
|
|
5012
5020
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority) */
|
|
@@ -11016,11 +11024,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
11016
11024
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/height)
|
|
11017
11025
|
*/
|
|
11018
11026
|
height: number;
|
|
11019
|
-
/**
|
|
11020
|
-
* When set, overrides the rendering of checkbox controls so that the current value is not visible.
|
|
11021
|
-
*
|
|
11022
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/indeterminate)
|
|
11023
|
-
*/
|
|
11027
|
+
/** When set, overrides the rendering of checkbox controls so that the current value is not visible. */
|
|
11024
11028
|
indeterminate: boolean;
|
|
11025
11029
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels) */
|
|
11026
11030
|
readonly labels: NodeListOf<HTMLLabelElement> | null;
|
|
@@ -26510,44 +26514,44 @@ declare var XSLTProcessor: {
|
|
|
26510
26514
|
|
|
26511
26515
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
|
|
26512
26516
|
interface Console {
|
|
26513
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26517
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
|
|
26514
26518
|
assert(condition?: boolean, ...data: any[]): void;
|
|
26515
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26519
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
|
|
26516
26520
|
clear(): void;
|
|
26517
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26521
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
26518
26522
|
count(label?: string): void;
|
|
26519
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26523
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
26520
26524
|
countReset(label?: string): void;
|
|
26521
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26525
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
26522
26526
|
debug(...data: any[]): void;
|
|
26523
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26527
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
|
|
26524
26528
|
dir(item?: any, options?: any): void;
|
|
26525
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26529
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
|
|
26526
26530
|
dirxml(...data: any[]): void;
|
|
26527
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26531
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
|
|
26528
26532
|
error(...data: any[]): void;
|
|
26529
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26533
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
26530
26534
|
group(...data: any[]): void;
|
|
26531
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26535
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
26532
26536
|
groupCollapsed(...data: any[]): void;
|
|
26533
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26537
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
26534
26538
|
groupEnd(): void;
|
|
26535
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26539
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
26536
26540
|
info(...data: any[]): void;
|
|
26537
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26541
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
|
|
26538
26542
|
log(...data: any[]): void;
|
|
26539
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26543
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
|
|
26540
26544
|
table(tabularData?: any, properties?: string[]): void;
|
|
26541
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26545
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
26542
26546
|
time(label?: string): void;
|
|
26543
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26547
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
26544
26548
|
timeEnd(label?: string): void;
|
|
26545
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26549
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
26546
26550
|
timeLog(label?: string, ...data: any[]): void;
|
|
26547
26551
|
timeStamp(label?: string): void;
|
|
26548
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26552
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
26549
26553
|
trace(...data: any[]): void;
|
|
26550
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
26554
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
|
|
26551
26555
|
warn(...data: any[]): void;
|
|
26552
26556
|
}
|
|
26553
26557
|
|
|
@@ -26605,8 +26609,10 @@ declare namespace CSS {
|
|
|
26605
26609
|
function fr(value: number): CSSUnitValue;
|
|
26606
26610
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26607
26611
|
function grad(value: number): CSSUnitValue;
|
|
26612
|
+
function ic(value: number): CSSUnitValue;
|
|
26608
26613
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26609
26614
|
function kHz(value: number): CSSUnitValue;
|
|
26615
|
+
function lh(value: number): CSSUnitValue;
|
|
26610
26616
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26611
26617
|
function lvb(value: number): CSSUnitValue;
|
|
26612
26618
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
@@ -26639,6 +26645,7 @@ declare namespace CSS {
|
|
|
26639
26645
|
function registerProperty(definition: PropertyDefinition): void;
|
|
26640
26646
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26641
26647
|
function rem(value: number): CSSUnitValue;
|
|
26648
|
+
function rlh(value: number): CSSUnitValue;
|
|
26642
26649
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */
|
|
26643
26650
|
function s(value: number): CSSUnitValue;
|
|
26644
26651
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/supports_static) */
|