Skip to content

Commit e8005ae

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

File tree

5 files changed

+52
-2
lines changed

5 files changed

+52
-2
lines changed

baselines/dom.generated.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9623,8 +9623,11 @@ declare var CSSVariableReferenceValue: {
96239623
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96249624
};
96259625

9626+
/** The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule. */
96269627
interface CSSViewTransitionRule extends CSSRule {
9628+
/** The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value. */
96279629
readonly navigation: string;
9630+
/** The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values. */
96289631
readonly types: ReadonlyArray<string>;
96299632
}
96309633

@@ -36349,6 +36352,7 @@ interface ViewTransition {
3634936352
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3635036353
*/
3635136354
readonly ready: Promise<void>;
36355+
/** 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. */
3635236356
types: ViewTransitionTypeSet;
3635336357
/**
3635436358
* 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 +36373,7 @@ declare var ViewTransition: {
3636936373
new(): ViewTransition;
3637036374
};
3637136375

36376+
/** 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. */
3637236377
interface ViewTransitionTypeSet {
3637336378
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637436379
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9612,8 +9612,11 @@ declare var CSSVariableReferenceValue: {
96129612
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96139613
};
96149614

9615+
/** The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule. */
96159616
interface CSSViewTransitionRule extends CSSRule {
9617+
/** The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value. */
96169618
readonly navigation: string;
9619+
/** The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values. */
96179620
readonly types: ReadonlyArray<string>;
96189621
}
96199622

@@ -36323,6 +36326,7 @@ interface ViewTransition {
3632336326
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3632436327
*/
3632536328
readonly ready: Promise<void>;
36329+
/** 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. */
3632636330
types: ViewTransitionTypeSet;
3632736331
/**
3632836332
* 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 +36347,7 @@ declare var ViewTransition: {
3634336347
new(): ViewTransition;
3634436348
};
3634536349

36350+
/** 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. */
3634636351
interface ViewTransitionTypeSet {
3634736352
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3634836353
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9620,8 +9620,11 @@ declare var CSSVariableReferenceValue: {
96209620
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96219621
};
96229622

9623+
/** The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule. */
96239624
interface CSSViewTransitionRule extends CSSRule {
9625+
/** The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value. */
96249626
readonly navigation: string;
9627+
/** The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values. */
96259628
readonly types: ReadonlyArray<string>;
96269629
}
96279630

@@ -36346,6 +36349,7 @@ interface ViewTransition {
3634636349
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3634736350
*/
3634836351
readonly ready: Promise<void>;
36352+
/** 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. */
3634936353
types: ViewTransitionTypeSet;
3635036354
/**
3635136355
* 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 +36370,7 @@ declare var ViewTransition: {
3636636370
new(): ViewTransition;
3636736371
};
3636836372

36373+
/** 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. */
3636936374
interface ViewTransitionTypeSet {
3637036375
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637136376
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9620,8 +9620,11 @@ declare var CSSVariableReferenceValue: {
96209620
new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
96219621
};
96229622

9623+
/** The **`CSSViewTransitionRule`** interface represents a CSS @view-transition at-rule. */
96239624
interface CSSViewTransitionRule extends CSSRule {
9625+
/** The **`navigation`** read-only property of the CSSViewTransitionRule interface returns the associated @view-transition at-rule's navigation descriptor value. */
96249626
readonly navigation: string;
9627+
/** The **`types`** read-only property of the CSSViewTransitionRule interface returns an array containing the associated @view-transition at-rule's types descriptor values. */
96259628
readonly types: ReadonlyArray<string>;
96269629
}
96279630

@@ -36346,6 +36349,7 @@ interface ViewTransition {
3634636349
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
3634736350
*/
3634836351
readonly ready: Promise<void>;
36352+
/** 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. */
3634936353
types: ViewTransitionTypeSet;
3635036354
/**
3635136355
* 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 +36370,7 @@ declare var ViewTransition: {
3636636370
new(): ViewTransition;
3636736371
};
3636836372

36373+
/** 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. */
3636936374
interface ViewTransitionTypeSet {
3637036375
forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
3637136376
}

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)