Skip to content

Commit c0293c9

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent c91b223 commit c0293c9

14 files changed

+178
-20
lines changed

baselines/dom.generated.d.ts

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ interface CookieChangeEventInit extends EventInit {
432432
interface CookieInit {
433433
domain?: string | null;
434434
expires?: DOMHighResTimeStamp | null;
435+
maxAge?: number | null;
435436
name: string;
436437
partitioned?: boolean;
437438
path?: string;
@@ -6350,7 +6351,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63506351
*/
63516352
backgroundSize: string;
63526353
baselineShift: string;
6353-
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
6354+
/**
6355+
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
6356+
*
6357+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6358+
*/
63546359
baselineSource: string;
63556360
/**
63566361
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8772,7 +8777,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
87728777
*/
87738778
viewTimelineInset: string;
87748779
/**
8775-
* The view-timeline-name CSS property is used to define the name of a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.
8780+
* The view-timeline-name CSS property specifies the names of one or more named view progress timelines associated with the element.
87768781
*
87778782
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline-name)
87788783
*/
@@ -9623,8 +9628,23 @@ declare var CSSVariableReferenceValue: {
96239628
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96249629
};
96259630

9631+
/**
9632+
* The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule.
9633+
*
9634+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule)
9635+
*/
96269636
interface CSSViewTransitionRule extends CSSRule {
9637+
/**
9638+
* The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value.
9639+
*
9640+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/navigation)
9641+
*/
96279642
readonly navigation: string;
9643+
/**
9644+
* The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values.
9645+
*
9646+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/types)
9647+
*/
96289648
readonly types: ReadonlyArray<string>;
96299649
}
96309650

@@ -36349,6 +36369,11 @@ interface ViewTransition {
3634936369
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3635036370
*/
3635136371
readonly ready: Promise<void>;
36372+
/**
36373+
* The **`types`** read-only property of the ViewTransition interface is a ViewTransitionTypeSet that allows the types set on the view transition to be accessed and modified.
36374+
*
36375+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36376+
*/
3635236377
types: ViewTransitionTypeSet;
3635336378
/**
3635436379
* The **`updateCallbackDone`** read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the document.startViewTransition() method's callback fulfills, or rejects when it rejects.
@@ -36369,6 +36394,11 @@ declare var ViewTransition: {
3636936394
new(): ViewTransition;
3637036395
};
3637136396

36397+
/**
36398+
* The **`ViewTransitionTypeSet`** interface of the View Transition API is a set-like object representing the types of an active view transition. This enables the types to be queried or modified on-the-fly during a transition.
36399+
*
36400+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36401+
*/
3637236402
interface ViewTransitionTypeSet {
3637336403
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637436404
}

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ interface CloseEventInit extends EventInit {
9090
interface CookieInit {
9191
domain?: string | null;
9292
expires?: DOMHighResTimeStamp | null;
93+
maxAge?: number | null;
9394
name: string;
9495
partitioned?: boolean;
9596
path?: string;

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

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ interface CookieChangeEventInit extends EventInit {
429429
interface CookieInit {
430430
domain?: string | null;
431431
expires?: DOMHighResTimeStamp | null;
432+
maxAge?: number | null;
432433
name: string;
433434
partitioned?: boolean;
434435
path?: string;
@@ -6340,7 +6341,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63406341
*/
63416342
backgroundSize: string;
63426343
baselineShift: string;
6343-
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
6344+
/**
6345+
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
6346+
*
6347+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6348+
*/
63446349
baselineSource: string;
63456350
/**
63466351
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8762,7 +8767,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
87628767
*/
87638768
viewTimelineInset: string;
87648769
/**
8765-
* The view-timeline-name CSS property is used to define the name of a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.
8770+
* The view-timeline-name CSS property specifies the names of one or more named view progress timelines associated with the element.
87668771
*
87678772
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline-name)
87688773
*/
@@ -9612,8 +9617,23 @@ declare var CSSVariableReferenceValue: {
96129617
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96139618
};
96149619

9620+
/**
9621+
* The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule.
9622+
*
9623+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule)
9624+
*/
96159625
interface CSSViewTransitionRule extends CSSRule {
9626+
/**
9627+
* The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value.
9628+
*
9629+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/navigation)
9630+
*/
96169631
readonly navigation: string;
9632+
/**
9633+
* The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values.
9634+
*
9635+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/types)
9636+
*/
96179637
readonly types: ReadonlyArray<string>;
96189638
}
96199639

@@ -36323,6 +36343,11 @@ interface ViewTransition {
3632336343
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3632436344
*/
3632536345
readonly ready: Promise<void>;
36346+
/**
36347+
* The **`types`** read-only property of the ViewTransition interface is a ViewTransitionTypeSet that allows the types set on the view transition to be accessed and modified.
36348+
*
36349+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36350+
*/
3632636351
types: ViewTransitionTypeSet;
3632736352
/**
3632836353
* The **`updateCallbackDone`** read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the document.startViewTransition() method's callback fulfills, or rejects when it rejects.
@@ -36343,6 +36368,11 @@ declare var ViewTransition: {
3634336368
new(): ViewTransition;
3634436369
};
3634536370

36371+
/**
36372+
* The **`ViewTransitionTypeSet`** interface of the View Transition API is a set-like object representing the types of an active view transition. This enables the types to be queried or modified on-the-fly during a transition.
36373+
*
36374+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36375+
*/
3634636376
interface ViewTransitionTypeSet {
3634736377
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3634836378
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ interface CloseEventInit extends EventInit {
8787
interface CookieInit {
8888
domain?: string | null;
8989
expires?: DOMHighResTimeStamp | null;
90+
maxAge?: number | null;
9091
name: string;
9192
partitioned?: boolean;
9293
path?: string;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ interface CloseEventInit extends EventInit {
144144
interface CookieInit {
145145
domain?: string | null;
146146
expires?: DOMHighResTimeStamp | null;
147+
maxAge?: number | null;
147148
name: string;
148149
partitioned?: boolean;
149150
path?: string;

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

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ interface CookieChangeEventInit extends EventInit {
429429
interface CookieInit {
430430
domain?: string | null;
431431
expires?: DOMHighResTimeStamp | null;
432+
maxAge?: number | null;
432433
name: string;
433434
partitioned?: boolean;
434435
path?: string;
@@ -6347,7 +6348,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63476348
*/
63486349
backgroundSize: string;
63496350
baselineShift: string;
6350-
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
6351+
/**
6352+
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
6353+
*
6354+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6355+
*/
63516356
baselineSource: string;
63526357
/**
63536358
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8769,7 +8774,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
87698774
*/
87708775
viewTimelineInset: string;
87718776
/**
8772-
* The view-timeline-name CSS property is used to define the name of a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.
8777+
* The view-timeline-name CSS property specifies the names of one or more named view progress timelines associated with the element.
87738778
*
87748779
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline-name)
87758780
*/
@@ -9620,8 +9625,23 @@ declare var CSSVariableReferenceValue: {
96209625
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96219626
};
96229627

9628+
/**
9629+
* The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule.
9630+
*
9631+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule)
9632+
*/
96239633
interface CSSViewTransitionRule extends CSSRule {
9634+
/**
9635+
* The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value.
9636+
*
9637+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/navigation)
9638+
*/
96249639
readonly navigation: string;
9640+
/**
9641+
* The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values.
9642+
*
9643+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/types)
9644+
*/
96259645
readonly types: ReadonlyArray<string>;
96269646
}
96279647

@@ -36346,6 +36366,11 @@ interface ViewTransition {
3634636366
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3634736367
*/
3634836368
readonly ready: Promise<void>;
36369+
/**
36370+
* The **`types`** read-only property of the ViewTransition interface is a ViewTransitionTypeSet that allows the types set on the view transition to be accessed and modified.
36371+
*
36372+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36373+
*/
3634936374
types: ViewTransitionTypeSet;
3635036375
/**
3635136376
* The **`updateCallbackDone`** read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the document.startViewTransition() method's callback fulfills, or rejects when it rejects.
@@ -36366,6 +36391,11 @@ declare var ViewTransition: {
3636636391
new(): ViewTransition;
3636736392
};
3636836393

36394+
/**
36395+
* The **`ViewTransitionTypeSet`** interface of the View Transition API is a set-like object representing the types of an active view transition. This enables the types to be queried or modified on-the-fly during a transition.
36396+
*
36397+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36398+
*/
3636936399
interface ViewTransitionTypeSet {
3637036400
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637136401
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ interface CloseEventInit extends EventInit {
8787
interface CookieInit {
8888
domain?: string | null;
8989
expires?: DOMHighResTimeStamp | null;
90+
maxAge?: number | null;
9091
name: string;
9192
partitioned?: boolean;
9293
path?: string;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ interface CloseEventInit extends EventInit {
144144
interface CookieInit {
145145
domain?: string | null;
146146
expires?: DOMHighResTimeStamp | null;
147+
maxAge?: number | null;
147148
name: string;
148149
partitioned?: boolean;
149150
path?: string;

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

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ interface CookieChangeEventInit extends EventInit {
429429
interface CookieInit {
430430
domain?: string | null;
431431
expires?: DOMHighResTimeStamp | null;
432+
maxAge?: number | null;
432433
name: string;
433434
partitioned?: boolean;
434435
path?: string;
@@ -6347,7 +6348,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63476348
*/
63486349
backgroundSize: string;
63496350
baselineShift: string;
6350-
/** The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type. */
6351+
/**
6352+
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
6353+
*
6354+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6355+
*/
63516356
baselineSource: string;
63526357
/**
63536358
* The block-size CSS property defines the size of an element's block along the block axis. If the writing-mode is horizontal, it corresponds to the height; if the writing mode is vertical, it corresponds to the width. A related property is inline-size, which defines the other dimension of the element.
@@ -8769,7 +8774,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
87698774
*/
87708775
viewTimelineInset: string;
87718776
/**
8772-
* The view-timeline-name CSS property is used to define the name of a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.
8777+
* The view-timeline-name CSS property specifies the names of one or more named view progress timelines associated with the element.
87738778
*
87748779
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline-name)
87758780
*/
@@ -9620,8 +9625,23 @@ declare var CSSVariableReferenceValue: {
96209625
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96219626
};
96229627

9628+
/**
9629+
* The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule.
9630+
*
9631+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule)
9632+
*/
96239633
interface CSSViewTransitionRule extends CSSRule {
9634+
/**
9635+
* The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value.
9636+
*
9637+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/navigation)
9638+
*/
96249639
readonly navigation: string;
9640+
/**
9641+
* The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values.
9642+
*
9643+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSViewTransitionRule/types)
9644+
*/
96259645
readonly types: ReadonlyArray<string>;
96269646
}
96279647

@@ -36346,6 +36366,11 @@ interface ViewTransition {
3634636366
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3634736367
*/
3634836368
readonly ready: Promise<void>;
36369+
/**
36370+
* The **`types`** read-only property of the ViewTransition interface is a ViewTransitionTypeSet that allows the types set on the view transition to be accessed and modified.
36371+
*
36372+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36373+
*/
3634936374
types: ViewTransitionTypeSet;
3635036375
/**
3635136376
* The **`updateCallbackDone`** read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the document.startViewTransition() method's callback fulfills, or rejects when it rejects.
@@ -36366,6 +36391,11 @@ declare var ViewTransition: {
3636636391
new(): ViewTransition;
3636736392
};
3636836393

36394+
/**
36395+
* The **`ViewTransitionTypeSet`** interface of the View Transition API is a set-like object representing the types of an active view transition. This enables the types to be queried or modified on-the-fly during a transition.
36396+
*
36397+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36398+
*/
3636936399
interface ViewTransitionTypeSet {
3637036400
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637136401
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ interface CloseEventInit extends EventInit {
8787
interface CookieInit {
8888
domain?: string | null;
8989
expires?: DOMHighResTimeStamp | null;
90+
maxAge?: number | null;
9091
name: string;
9192
partitioned?: boolean;
9293
path?: string;

0 commit comments

Comments
 (0)