Skip to content

Commit a324ec9

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

File tree

3 files changed

+40
-12
lines changed

3 files changed

+40
-12
lines changed

baselines/dom.generated.d.ts

+14
Original file line numberDiff line numberDiff line change
@@ -2502,6 +2502,7 @@ interface ANGLE_instanced_arrays {
25022502
}
25032503

25042504
interface ARIAMixin {
2505+
ariaActiveDescendantElement: Element | null;
25052506
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) */
25062507
ariaAtomic: string | null;
25072508
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
@@ -2522,14 +2523,19 @@ interface ARIAMixin {
25222523
ariaColIndexText: string | null;
25232524
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */
25242525
ariaColSpan: string | null;
2526+
ariaControlsElements: ReadonlyArray<Element> | null;
25252527
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
25262528
ariaCurrent: string | null;
2529+
ariaDescribedByElements: ReadonlyArray<Element> | null;
25272530
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
25282531
ariaDescription: string | null;
2532+
ariaDetailsElements: ReadonlyArray<Element> | null;
25292533
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
25302534
ariaDisabled: string | null;
2535+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
25312536
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
25322537
ariaExpanded: string | null;
2538+
ariaFlowToElements: ReadonlyArray<Element> | null;
25332539
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) */
25342540
ariaHasPopup: string | null;
25352541
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHidden) */
@@ -2539,6 +2545,7 @@ interface ARIAMixin {
25392545
ariaKeyShortcuts: string | null;
25402546
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) */
25412547
ariaLabel: string | null;
2548+
ariaLabelledByElements: ReadonlyArray<Element> | null;
25422549
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) */
25432550
ariaLevel: string | null;
25442551
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLive) */
@@ -2551,6 +2558,7 @@ interface ARIAMixin {
25512558
ariaMultiSelectable: string | null;
25522559
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) */
25532560
ariaOrientation: string | null;
2561+
ariaOwnsElements: ReadonlyArray<Element> | null;
25542562
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) */
25552563
ariaPlaceholder: string | null;
25562564
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPosInSet) */
@@ -4712,6 +4720,8 @@ interface CSSStyleDeclaration {
47124720
height: string;
47134721
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-character) */
47144722
hyphenateCharacter: string;
4723+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-limit-chars) */
4724+
hyphenateLimitChars: string;
47154725
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphens) */
47164726
hyphens: string;
47174727
/**
@@ -4874,8 +4884,12 @@ interface CSSStyleDeclaration {
48744884
overflow: string;
48754885
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-anchor) */
48764886
overflowAnchor: string;
4887+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-block) */
4888+
overflowBlock: string;
48774889
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin) */
48784890
overflowClipMargin: string;
4891+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-inline) */
4892+
overflowInline: string;
48794893
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap) */
48804894
overflowWrap: string;
48814895
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-x) */

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

+14
Original file line numberDiff line numberDiff line change
@@ -2502,6 +2502,7 @@ interface ANGLE_instanced_arrays {
25022502
}
25032503

25042504
interface ARIAMixin {
2505+
ariaActiveDescendantElement: Element | null;
25052506
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) */
25062507
ariaAtomic: string | null;
25072508
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
@@ -2522,14 +2523,19 @@ interface ARIAMixin {
25222523
ariaColIndexText: string | null;
25232524
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */
25242525
ariaColSpan: string | null;
2526+
ariaControlsElements: ReadonlyArray<Element> | null;
25252527
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
25262528
ariaCurrent: string | null;
2529+
ariaDescribedByElements: ReadonlyArray<Element> | null;
25272530
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
25282531
ariaDescription: string | null;
2532+
ariaDetailsElements: ReadonlyArray<Element> | null;
25292533
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
25302534
ariaDisabled: string | null;
2535+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
25312536
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
25322537
ariaExpanded: string | null;
2538+
ariaFlowToElements: ReadonlyArray<Element> | null;
25332539
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) */
25342540
ariaHasPopup: string | null;
25352541
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHidden) */
@@ -2539,6 +2545,7 @@ interface ARIAMixin {
25392545
ariaKeyShortcuts: string | null;
25402546
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) */
25412547
ariaLabel: string | null;
2548+
ariaLabelledByElements: ReadonlyArray<Element> | null;
25422549
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) */
25432550
ariaLevel: string | null;
25442551
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLive) */
@@ -2551,6 +2558,7 @@ interface ARIAMixin {
25512558
ariaMultiSelectable: string | null;
25522559
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) */
25532560
ariaOrientation: string | null;
2561+
ariaOwnsElements: ReadonlyArray<Element> | null;
25542562
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) */
25552563
ariaPlaceholder: string | null;
25562564
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPosInSet) */
@@ -4706,6 +4714,8 @@ interface CSSStyleDeclaration {
47064714
height: string;
47074715
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-character) */
47084716
hyphenateCharacter: string;
4717+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-limit-chars) */
4718+
hyphenateLimitChars: string;
47094719
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphens) */
47104720
hyphens: string;
47114721
/**
@@ -4868,8 +4878,12 @@ interface CSSStyleDeclaration {
48684878
overflow: string;
48694879
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-anchor) */
48704880
overflowAnchor: string;
4881+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-block) */
4882+
overflowBlock: string;
48714883
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin) */
48724884
overflowClipMargin: string;
4885+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-inline) */
4886+
overflowInline: string;
48734887
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap) */
48744888
overflowWrap: string;
48754889
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-x) */

package-lock.json

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)