Skip to content

Commit 2f98880

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 43d4792 commit 2f98880

File tree

6 files changed

+217
-38
lines changed

6 files changed

+217
-38
lines changed

baselines/dom.generated.d.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2701,6 +2701,11 @@ interface ShareData {
27012701
url?: string;
27022702
}
27032703

2704+
interface SharedWorkerOptions extends WorkerOptions {
2705+
extendedLifetime?: boolean;
2706+
sameSiteCookies?: SameSiteCookiesType;
2707+
}
2708+
27042709
interface ShowPopoverOptions {
27052710
source?: HTMLElement;
27062711
}
@@ -7997,7 +8002,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
79978002
*/
79988003
left: string;
79998004
/**
8000-
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8005+
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
80018006
*
80028007
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
80038008
*/
@@ -9762,7 +9767,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
97629767
*/
97639768
wordBreak: string;
97649769
/**
9765-
* The word-spacing CSS property sets the length of space between words and between tags.
9770+
* The word-spacing CSS property sets the spacing between words and between tags.
97669771
*
97679772
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
97689773
*/
@@ -34714,7 +34719,7 @@ interface Sanitizer {
3471434719
*/
3471534720
removeElement(element: SanitizerElement): boolean;
3471634721
/**
34717-
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34722+
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
3471834723
*
3471934724
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
3472034725
*/
@@ -35470,7 +35475,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {
3547035475

3547135476
declare var SharedWorker: {
3547235477
prototype: SharedWorker;
35473-
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
35478+
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
3547435479
};
3547535480

3547635481
interface Slottable {
@@ -44619,6 +44624,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
4461944624
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
4462044625
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
4462144626
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
44627+
type SameSiteCookiesType = "all" | "none";
4462244628
type SanitizerPresets = "default";
4462344629
type ScrollAxis = "block" | "inline" | "x" | "y";
4462444630
type ScrollBehavior = "auto" | "instant" | "smooth";

baselines/ts5.5/dom.generated.d.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2698,6 +2698,11 @@ interface ShareData {
26982698
url?: string;
26992699
}
27002700

2701+
interface SharedWorkerOptions extends WorkerOptions {
2702+
extendedLifetime?: boolean;
2703+
sameSiteCookies?: SameSiteCookiesType;
2704+
}
2705+
27012706
interface ShowPopoverOptions {
27022707
source?: HTMLElement;
27032708
}
@@ -7987,7 +7992,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
79877992
*/
79887993
left: string;
79897994
/**
7990-
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
7995+
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
79917996
*
79927997
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
79937998
*/
@@ -9752,7 +9757,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
97529757
*/
97539758
wordBreak: string;
97549759
/**
9755-
* The word-spacing CSS property sets the length of space between words and between tags.
9760+
* The word-spacing CSS property sets the spacing between words and between tags.
97569761
*
97579762
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
97589763
*/
@@ -34689,7 +34694,7 @@ interface Sanitizer {
3468934694
*/
3469034695
removeElement(element: SanitizerElement): boolean;
3469134696
/**
34692-
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34697+
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
3469334698
*
3469434699
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
3469534700
*/
@@ -35445,7 +35450,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {
3544535450

3544635451
declare var SharedWorker: {
3544735452
prototype: SharedWorker;
35448-
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
35453+
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
3544935454
};
3545035455

3545135456
interface Slottable {
@@ -44593,6 +44598,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
4459344598
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
4459444599
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
4459544600
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
44601+
type SameSiteCookiesType = "all" | "none";
4459644602
type SanitizerPresets = "default";
4459744603
type ScrollAxis = "block" | "inline" | "x" | "y";
4459844604
type ScrollBehavior = "auto" | "instant" | "smooth";

baselines/ts5.6/dom.generated.d.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2698,6 +2698,11 @@ interface ShareData {
26982698
url?: string;
26992699
}
27002700

2701+
interface SharedWorkerOptions extends WorkerOptions {
2702+
extendedLifetime?: boolean;
2703+
sameSiteCookies?: SameSiteCookiesType;
2704+
}
2705+
27012706
interface ShowPopoverOptions {
27022707
source?: HTMLElement;
27032708
}
@@ -7994,7 +7999,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
79947999
*/
79958000
left: string;
79968001
/**
7997-
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8002+
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
79988003
*
79998004
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
80008005
*/
@@ -9759,7 +9764,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
97599764
*/
97609765
wordBreak: string;
97619766
/**
9762-
* The word-spacing CSS property sets the length of space between words and between tags.
9767+
* The word-spacing CSS property sets the spacing between words and between tags.
97639768
*
97649769
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
97659770
*/
@@ -34711,7 +34716,7 @@ interface Sanitizer {
3471134716
*/
3471234717
removeElement(element: SanitizerElement): boolean;
3471334718
/**
34714-
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34719+
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
3471534720
*
3471634721
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
3471734722
*/
@@ -35467,7 +35472,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {
3546735472

3546835473
declare var SharedWorker: {
3546935474
prototype: SharedWorker;
35470-
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
35475+
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
3547135476
};
3547235477

3547335478
interface Slottable {
@@ -44616,6 +44621,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
4461644621
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
4461744622
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
4461844623
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
44624+
type SameSiteCookiesType = "all" | "none";
4461944625
type SanitizerPresets = "default";
4462044626
type ScrollAxis = "block" | "inline" | "x" | "y";
4462144627
type ScrollBehavior = "auto" | "instant" | "smooth";

baselines/ts5.9/dom.generated.d.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2698,6 +2698,11 @@ interface ShareData {
26982698
url?: string;
26992699
}
27002700

2701+
interface SharedWorkerOptions extends WorkerOptions {
2702+
extendedLifetime?: boolean;
2703+
sameSiteCookies?: SameSiteCookiesType;
2704+
}
2705+
27012706
interface ShowPopoverOptions {
27022707
source?: HTMLElement;
27032708
}
@@ -7994,7 +7999,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
79947999
*/
79958000
left: string;
79968001
/**
7997-
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
8002+
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
79988003
*
79998004
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
80008005
*/
@@ -9759,7 +9764,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
97599764
*/
97609765
wordBreak: string;
97619766
/**
9762-
* The word-spacing CSS property sets the length of space between words and between tags.
9767+
* The word-spacing CSS property sets the spacing between words and between tags.
97639768
*
97649769
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
97659770
*/
@@ -34711,7 +34716,7 @@ interface Sanitizer {
3471134716
*/
3471234717
removeElement(element: SanitizerElement): boolean;
3471334718
/**
34714-
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer configuration so that it will remove all elements, attributes, and event handler content attributes that are considered XSS-unsafe by the browser.
34719+
* The **`removeUnsafe()`** method of the Sanitizer interface configures the sanitizer so that it will remove all elements and attributes that are considered XSS-unsafe by the browser.
3471534720
*
3471634721
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Sanitizer/removeUnsafe)
3471734722
*/
@@ -35467,7 +35472,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {
3546735472

3546835473
declare var SharedWorker: {
3546935474
prototype: SharedWorker;
35470-
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
35475+
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
3547135476
};
3547235477

3547335478
interface Slottable {
@@ -44616,6 +44621,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
4461644621
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
4461744622
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
4461844623
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
44624+
type SameSiteCookiesType = "all" | "none";
4461944625
type SanitizerPresets = "default";
4462044626
type ScrollAxis = "block" | "inline" | "x" | "y";
4462144627
type ScrollBehavior = "auto" | "instant" | "smooth";

0 commit comments

Comments
 (0)