Skip to content

Commit 465d76c

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

File tree

6 files changed

+155
-9
lines changed

6 files changed

+155
-9
lines changed

baselines/dom.generated.d.ts

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6350,7 +6350,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63506350
*/
63516351
backgroundSize: string;
63526352
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. */
6353+
/**
6354+
* 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.
6355+
*
6356+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6357+
*/
63546358
baselineSource: string;
63556359
/**
63566360
* 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.
@@ -9623,8 +9627,23 @@ declare var CSSVariableReferenceValue: {
96239627
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96249628
};
96259629

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

@@ -36349,6 +36368,11 @@ interface ViewTransition {
3634936368
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3635036369
*/
3635136370
readonly ready: Promise<void>;
36371+
/**
36372+
* 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.
36373+
*
36374+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36375+
*/
3635236376
types: ViewTransitionTypeSet;
3635336377
/**
3635436378
* 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 +36393,11 @@ declare var ViewTransition: {
3636936393
new(): ViewTransition;
3637036394
};
3637136395

36396+
/**
36397+
* 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.
36398+
*
36399+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36400+
*/
3637236401
interface ViewTransitionTypeSet {
3637336402
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637436403
}

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

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6340,7 +6340,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63406340
*/
63416341
backgroundSize: string;
63426342
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. */
6343+
/**
6344+
* 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.
6345+
*
6346+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6347+
*/
63446348
baselineSource: string;
63456349
/**
63466350
* 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.
@@ -9612,8 +9616,23 @@ declare var CSSVariableReferenceValue: {
96129616
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96139617
};
96149618

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

@@ -36323,6 +36342,11 @@ interface ViewTransition {
3632336342
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3632436343
*/
3632536344
readonly ready: Promise<void>;
36345+
/**
36346+
* 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.
36347+
*
36348+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36349+
*/
3632636350
types: ViewTransitionTypeSet;
3632736351
/**
3632836352
* 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 +36367,11 @@ declare var ViewTransition: {
3634336367
new(): ViewTransition;
3634436368
};
3634536369

36370+
/**
36371+
* 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.
36372+
*
36373+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36374+
*/
3634636375
interface ViewTransitionTypeSet {
3634736376
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3634836377
}

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

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6347,7 +6347,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63476347
*/
63486348
backgroundSize: string;
63496349
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. */
6350+
/**
6351+
* 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.
6352+
*
6353+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6354+
*/
63516355
baselineSource: string;
63526356
/**
63536357
* 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.
@@ -9620,8 +9624,23 @@ declare var CSSVariableReferenceValue: {
96209624
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96219625
};
96229626

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

@@ -36346,6 +36365,11 @@ interface ViewTransition {
3634636365
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3634736366
*/
3634836367
readonly ready: Promise<void>;
36368+
/**
36369+
* 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.
36370+
*
36371+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36372+
*/
3634936373
types: ViewTransitionTypeSet;
3635036374
/**
3635136375
* 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 +36390,11 @@ declare var ViewTransition: {
3636636390
new(): ViewTransition;
3636736391
};
3636836392

36393+
/**
36394+
* 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.
36395+
*
36396+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36397+
*/
3636936398
interface ViewTransitionTypeSet {
3637036399
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637136400
}

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

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6347,7 +6347,11 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
63476347
*/
63486348
backgroundSize: string;
63496349
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. */
6350+
/**
6351+
* 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.
6352+
*
6353+
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/baseline-source)
6354+
*/
63516355
baselineSource: string;
63526356
/**
63536357
* 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.
@@ -9620,8 +9624,23 @@ declare var CSSVariableReferenceValue: {
96209624
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96219625
};
96229626

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

@@ -36346,6 +36365,11 @@ interface ViewTransition {
3634636365
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3634736366
*/
3634836367
readonly ready: Promise<void>;
36368+
/**
36369+
* 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.
36370+
*
36371+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/types)
36372+
*/
3634936373
types: ViewTransitionTypeSet;
3635036374
/**
3635136375
* 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 +36390,11 @@ declare var ViewTransition: {
3636636390
new(): ViewTransition;
3636736391
};
3636836392

36393+
/**
36394+
* 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.
36395+
*
36396+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransitionTypeSet)
36397+
*/
3636936398
interface ViewTransitionTypeSet {
3637036399
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637136400
}

inputfiles/mdn.json

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5149,6 +5149,21 @@
51495149
"pageType": "web-api-instance-property",
51505150
"summary": "The variable property of the\nCSSVariableReferenceValue interface returns the custom property name of the\nCSSVariableReferenceValue."
51515151
},
5152+
{
5153+
"mdn_url": "/en-US/docs/Web/API/CSSViewTransitionRule",
5154+
"pageType": "web-api-interface",
5155+
"summary": "The CSSViewTransitionRule interface represents a CSS @view-transition at-rule."
5156+
},
5157+
{
5158+
"mdn_url": "/en-US/docs/Web/API/CSSViewTransitionRule/navigation",
5159+
"pageType": "web-api-instance-property",
5160+
"summary": "The navigation read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value."
5161+
},
5162+
{
5163+
"mdn_url": "/en-US/docs/Web/API/CSSViewTransitionRule/types",
5164+
"pageType": "web-api-instance-property",
5165+
"summary": "The types read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values."
5166+
},
51525167
{
51535168
"mdn_url": "/en-US/docs/Web/API/CustomElementRegistry",
51545169
"pageType": "web-api-interface",
@@ -33589,6 +33604,11 @@
3358933604
"pageType": "guide",
3359033605
"summary": "This article explains the theory behind how the View Transition API works, how to create view transitions and customize the transition animations, and how to manipulate active view transitions. This covers view transitions for both DOM state updates in a single-page app (SPA), and navigating between documents in a multi-page app (MPA)."
3359133606
},
33607+
{
33608+
"mdn_url": "/en-US/docs/Web/API/View_Transition_API/Using_types",
33609+
"pageType": "guide",
33610+
"summary": "View transition types provide a mechanism by which different types can be specified for active view transitions. CSS can then be used to apply different animations to DOM elements when their content updates, depending on the transition type specified. For example, you might want to apply different animations to an <img> element in an image gallery app as the displayed image changes depending on whether you are moving forward or backward in the sequence, deleting an image, or adding an image into the sequence."
33611+
},
3359233612
{
3359333613
"mdn_url": "/en-US/docs/Web/API/Viewport",
3359433614
"pageType": "web-api-interface",
@@ -33654,11 +33674,21 @@
3365433674
"pageType": "web-api-instance-method",
3365533675
"summary": "The skipTransition() method of the\nViewTransition interface skips the animation part of the view transition, but doesn't skip running the associated view update."
3365633676
},
33677+
{
33678+
"mdn_url": "/en-US/docs/Web/API/ViewTransition/types",
33679+
"pageType": "web-api-instance-property",
33680+
"summary": "The types read-only property of the\nViewTransition interface is a ViewTransitionTypeSet that allows the types set on the view transition to be accessed and modified."
33681+
},
3365733682
{
3365833683
"mdn_url": "/en-US/docs/Web/API/ViewTransition/updateCallbackDone",
3365933684
"pageType": "web-api-instance-property",
3366033685
"summary": "The updateCallbackDone read-only property of the\nViewTransition interface is a Promise that fulfills when the promise returned by the document.startViewTransition() method's callback fulfills, or rejects when it rejects."
3366133686
},
33687+
{
33688+
"mdn_url": "/en-US/docs/Web/API/ViewTransitionTypeSet",
33689+
"pageType": "web-api-interface",
33690+
"summary": "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."
33691+
},
3366233692
{
3366333693
"mdn_url": "/en-US/docs/Web/API/VirtualKeyboard",
3366433694
"pageType": "web-api-interface",
@@ -39482,12 +39512,12 @@
3948239512
{
3948339513
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/animation-timeline/scroll",
3948439514
"pageType": "css-function",
39485-
"summary": "The scroll() CSS function can be used to define the scroller and axis of an anonymous scroll progress timeline."
39515+
"summary": "The scroll() CSS function can be used with the animation-timeline property to create an anonymous scroll progress timeline, defining the scroller and axis of the timeline."
3948639516
},
3948739517
{
3948839518
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/animation-timeline/view",
3948939519
"pageType": "css-function",
39490-
"summary": "The view() CSS function can be used with animation-timeline to indicate a subject element that will provide an anonymous view progress timeline to animate. The view progress timeline is progressed through by a change in visibility of the subject element inside the nearest ancestor scroller. The visibility of the subject inside the scroller is tracked — by default, the timeline is at 0% when the subject is first visible at one edge of the scroller, and 100% when it reaches the opposite edge."
39520+
"summary": "The view() CSS function is used with the animation-timeline property to create an anonymous view progress timeline based on when an element comes into view inside its nearest scroll container. You can adjust the tracking axis and the optional insets to control when the element is considered \"in view\"."
3949139521
},
3949239522
{
3949339523
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/animation-timing-function",

0 commit comments

Comments
 (0)