Skip to content

Commit bb3a20b

Browse files
saschanazorta
andauthored
🤖 Update core dependencies (#2097)
Co-authored-by: orta <[email protected]>
1 parent ddd8639 commit bb3a20b

16 files changed

+107
-76
lines changed

baselines/dom.generated.d.ts

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8119,11 +8119,23 @@ interface CanvasUserInterface {
81198119
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)
81208120
*/
81218121
interface CaretPosition {
8122-
/** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */
8122+
/**
8123+
* The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node.
8124+
*
8125+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offset)
8126+
*/
81238127
readonly offset: number;
8124-
/** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */
8128+
/**
8129+
* The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position.
8130+
*
8131+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offsetNode)
8132+
*/
81258133
readonly offsetNode: Node;
8126-
/** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */
8134+
/**
8135+
* The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range.
8136+
*
8137+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/getClientRect)
8138+
*/
81278139
getClientRect(): DOMRect | null;
81288140
}
81298141

@@ -18488,13 +18500,13 @@ interface IDBIndex {
1848818500
*
1848918501
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
1849018502
*/
18491-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18503+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
1849218504
/**
1849318505
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
1849418506
*
1849518507
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
1849618508
*/
18497-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18509+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
1849818510
/**
1849918511
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
1850018512
*
@@ -18670,13 +18682,13 @@ interface IDBObjectStore {
1867018682
*
1867118683
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
1867218684
*/
18673-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18685+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
1867418686
/**
1867518687
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
1867618688
*
1867718689
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
1867818690
*/
18679-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18691+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
1868018692
/**
1868118693
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
1868218694
*

baselines/serviceworker.generated.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4468,13 +4468,13 @@ interface IDBIndex {
44684468
*
44694469
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
44704470
*/
4471-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4471+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
44724472
/**
44734473
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
44744474
*
44754475
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
44764476
*/
4477-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4477+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
44784478
/**
44794479
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
44804480
*
@@ -4650,13 +4650,13 @@ interface IDBObjectStore {
46504650
*
46514651
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
46524652
*/
4653-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4653+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
46544654
/**
46554655
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
46564656
*
46574657
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
46584658
*/
4659-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4659+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
46604660
/**
46614661
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
46624662
*

baselines/sharedworker.generated.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4151,13 +4151,13 @@ interface IDBIndex {
41514151
*
41524152
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
41534153
*/
4154-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4154+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
41554155
/**
41564156
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
41574157
*
41584158
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
41594159
*/
4160-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4160+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
41614161
/**
41624162
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
41634163
*
@@ -4333,13 +4333,13 @@ interface IDBObjectStore {
43334333
*
43344334
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
43354335
*/
4336-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4336+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
43374337
/**
43384338
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
43394339
*
43404340
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
43414341
*/
4342-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4342+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
43434343
/**
43444344
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
43454345
*

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

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8111,11 +8111,23 @@ interface CanvasUserInterface {
81118111
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)
81128112
*/
81138113
interface CaretPosition {
8114-
/** The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node. */
8114+
/**
8115+
* The **`offset`** property of the CaretPosition interface returns an integer representing the offset of the selection in the caret position node.
8116+
*
8117+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offset)
8118+
*/
81158119
readonly offset: number;
8116-
/** The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position. */
8120+
/**
8121+
* The **`offsetNode`** property of the CaretPosition interface returns a Node containing the found node at the caret's position.
8122+
*
8123+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/offsetNode)
8124+
*/
81178125
readonly offsetNode: Node;
8118-
/** The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range. */
8126+
/**
8127+
* The `getClientRect()` method of the CaretPosition interface returns the client rectangle for the caret range.
8128+
*
8129+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition/getClientRect)
8130+
*/
81198131
getClientRect(): DOMRect | null;
81208132
}
81218133

@@ -18467,13 +18479,13 @@ interface IDBIndex {
1846718479
*
1846818480
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
1846918481
*/
18470-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18482+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
1847118483
/**
1847218484
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
1847318485
*
1847418486
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
1847518487
*/
18476-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18488+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
1847718489
/**
1847818490
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
1847918491
*
@@ -18649,13 +18661,13 @@ interface IDBObjectStore {
1864918661
*
1865018662
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
1865118663
*/
18652-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
18664+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
1865318665
/**
1865418666
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
1865518667
*
1865618668
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
1865718669
*/
18658-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18670+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
1865918671
/**
1866018672
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
1866118673
*

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4468,13 +4468,13 @@ interface IDBIndex {
44684468
*
44694469
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
44704470
*/
4471-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4471+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
44724472
/**
44734473
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
44744474
*
44754475
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
44764476
*/
4477-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4477+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
44784478
/**
44794479
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
44804480
*
@@ -4650,13 +4650,13 @@ interface IDBObjectStore {
46504650
*
46514651
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
46524652
*/
4653-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4653+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
46544654
/**
46554655
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
46564656
*
46574657
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
46584658
*/
4659-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4659+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
46604660
/**
46614661
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
46624662
*

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4151,13 +4151,13 @@ interface IDBIndex {
41514151
*
41524152
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
41534153
*/
4154-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4154+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
41554155
/**
41564156
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
41574157
*
41584158
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
41594159
*/
4160-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4160+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
41614161
/**
41624162
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
41634163
*
@@ -4333,13 +4333,13 @@ interface IDBObjectStore {
43334333
*
43344334
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
43354335
*/
4336-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
4336+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
43374337
/**
43384338
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
43394339
*
43404340
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
43414341
*/
4342-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
4342+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
43434343
/**
43444344
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
43454345
*

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5160,13 +5160,13 @@ interface IDBIndex {
51605160
*
51615161
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
51625162
*/
5163-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
5163+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
51645164
/**
51655165
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
51665166
*
51675167
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
51685168
*/
5169-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
5169+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
51705170
/**
51715171
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
51725172
*
@@ -5342,13 +5342,13 @@ interface IDBObjectStore {
53425342
*
53435343
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
53445344
*/
5345-
getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
5345+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
53465346
/**
53475347
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
53485348
*
53495349
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
53505350
*/
5351-
getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
5351+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
53525352
/**
53535353
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
53545354
*

0 commit comments

Comments
 (0)