Skip to content

Commit 70ba5e0

Browse files
chore(package): update core dependencies (microsoft#98)
Co-authored-by: saschanaz <[email protected]>
1 parent 33caefc commit 70ba5e0

File tree

6 files changed

+80
-24
lines changed

6 files changed

+80
-24
lines changed

baselines/dom.generated.d.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2783,6 +2783,7 @@ interface CSSStyleDeclaration {
27832783
fontStyle: string;
27842784
fontSynthesis: string;
27852785
fontVariant: string;
2786+
fontVariantAlternates: string;
27862787
fontVariantCaps: string;
27872788
fontVariantEastAsian: string;
27882789
fontVariantLigatures: string;
@@ -10835,20 +10836,33 @@ declare var Path2D: {
1083510836
};
1083610837

1083710838
/** This Payment Request API interface is used to store shipping or payment address information. */
10839+
/** @deprecated */
1083810840
interface PaymentAddress {
10841+
/** @deprecated */
1083910842
readonly addressLine: ReadonlyArray<string>;
10843+
/** @deprecated */
1084010844
readonly city: string;
10845+
/** @deprecated */
1084110846
readonly country: string;
10847+
/** @deprecated */
1084210848
readonly dependentLocality: string;
10849+
/** @deprecated */
1084310850
readonly organization: string;
10851+
/** @deprecated */
1084410852
readonly phone: string;
10853+
/** @deprecated */
1084510854
readonly postalCode: string;
10855+
/** @deprecated */
1084610856
readonly recipient: string;
10857+
/** @deprecated */
1084710858
readonly region: string;
10859+
/** @deprecated */
1084810860
readonly sortingCode: string;
10861+
/** @deprecated */
1084910862
toJSON(): any;
1085010863
}
1085110864

10865+
/** @deprecated */
1085210866
declare var PaymentAddress: {
1085310867
readonly prototype: PaymentAddress;
1085410868
new(): PaymentAddress;
@@ -10959,6 +10973,18 @@ declare var PerformanceEntry: {
1095910973
new(): PerformanceEntry;
1096010974
};
1096110975

10976+
interface PerformanceEventTiming extends PerformanceEntry {
10977+
readonly cancelable: boolean;
10978+
readonly processingEnd: DOMHighResTimeStamp;
10979+
readonly processingStart: DOMHighResTimeStamp;
10980+
readonly target: Node | null;
10981+
}
10982+
10983+
declare var PerformanceEventTiming: {
10984+
readonly prototype: PerformanceEventTiming;
10985+
new(): PerformanceEventTiming;
10986+
};
10987+
1096210988
/** PerformanceMark is an abstract interface for PerformanceEntry objects with an entryType of "mark". Entries of this type are created by calling performance.mark() to add a named DOMHighResTimeStamp (the mark) to the browser's performance timeline. */
1096310989
interface PerformanceMark extends PerformanceEntry {
1096410990
readonly detail: any;

baselines/serviceworker.generated.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5274,6 +5274,16 @@ declare var WorkerGlobalScope: {
52745274

52755275
/** The absolute location of the script executed by the Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.location property obtained by calling self.location. */
52765276
interface WorkerLocation {
5277+
readonly hash: string;
5278+
readonly host: string;
5279+
readonly hostname: string;
5280+
readonly href: string;
5281+
toString(): string;
5282+
readonly origin: string;
5283+
readonly pathname: string;
5284+
readonly port: string;
5285+
readonly protocol: string;
5286+
readonly search: string;
52775287
}
52785288

52795289
declare var WorkerLocation: {

baselines/sharedworker.generated.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5168,6 +5168,16 @@ declare var WorkerGlobalScope: {
51685168

51695169
/** The absolute location of the script executed by the Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.location property obtained by calling self.location. */
51705170
interface WorkerLocation {
5171+
readonly hash: string;
5172+
readonly host: string;
5173+
readonly hostname: string;
5174+
readonly href: string;
5175+
toString(): string;
5176+
readonly origin: string;
5177+
readonly pathname: string;
5178+
readonly port: string;
5179+
readonly protocol: string;
5180+
readonly search: string;
51715181
}
51725182

51735183
declare var WorkerLocation: {

baselines/webworker.generated.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5387,6 +5387,16 @@ declare var WorkerGlobalScope: {
53875387

53885388
/** The absolute location of the script executed by the Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.location property obtained by calling self.location. */
53895389
interface WorkerLocation {
5390+
readonly hash: string;
5391+
readonly host: string;
5392+
readonly hostname: string;
5393+
readonly href: string;
5394+
toString(): string;
5395+
readonly origin: string;
5396+
readonly pathname: string;
5397+
readonly port: string;
5398+
readonly protocol: string;
5399+
readonly search: string;
53905400
}
53915401

53925402
declare var WorkerLocation: {

package-lock.json

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232
"license": "Apache-2.0",
3333
"type": "module",
3434
"devDependencies": {
35-
"@mdn/browser-compat-data": "3.3.3",
35+
"@mdn/browser-compat-data": "^3.3.4",
3636
"@types/jsdom": "^16.2.10",
3737
"@types/node": "^15.0.2",
3838
"@types/node-fetch": "^2.5.10",
3939
"@types/webidl2": "^23.13.5",
4040
"@typescript-eslint/eslint-plugin": "^4.22.1",
4141
"@typescript-eslint/parser": "^4.22.1",
42-
"@webref/css": "^1.0.0",
43-
"@webref/idl": "^2.1.3",
42+
"@webref/css": "^1.0.1",
43+
"@webref/idl": "^2.1.4",
4444
"browser-specs": "^1.37.0",
4545
"cpx2": "^3.0.0",
4646
"eslint": "^7.25.0",

0 commit comments

Comments
 (0)