chore: update dependencies (#10763)
This commit is contained in:
parent
8f9388f2ce
commit
ce9e2df04d
2388
package-lock.json
generated
2388
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
36
package.json
36
package.json
@ -105,12 +105,12 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@actions/core": "1.10.0",
|
||||
"@microsoft/api-documenter": "7.22.32",
|
||||
"@microsoft/api-extractor": "7.36.3",
|
||||
"@microsoft/api-extractor-model": "7.27.5",
|
||||
"@microsoft/api-documenter": "7.22.33",
|
||||
"@microsoft/api-extractor": "7.36.4",
|
||||
"@microsoft/api-extractor-model": "7.27.6",
|
||||
"@pptr/testserver": "file:packages/testserver",
|
||||
"@prettier/sync": "0.2.1",
|
||||
"@rollup/plugin-node-resolve": "15.1.0",
|
||||
"@prettier/sync": "0.3.0",
|
||||
"@rollup/plugin-node-resolve": "15.2.0",
|
||||
"@rollup/plugin-terser": "0.4.3",
|
||||
"@types/debug": "4.1.8",
|
||||
"@types/diff": "5.0.3",
|
||||
@ -121,30 +121,30 @@
|
||||
"@types/pngjs": "6.0.1",
|
||||
"@types/progress": "2.0.5",
|
||||
"@types/semver": "7.5.0",
|
||||
"@types/sinon": "10.0.15",
|
||||
"@types/sinon": "10.0.16",
|
||||
"@types/tar-fs": "2.0.1",
|
||||
"@types/unbzip2-stream": "1.4.0",
|
||||
"@types/ws": "8.5.5",
|
||||
"@typescript-eslint/eslint-plugin": "6.0.0",
|
||||
"@typescript-eslint/parser": "6.0.0",
|
||||
"c8": "8.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "6.4.0",
|
||||
"@typescript-eslint/parser": "6.4.0",
|
||||
"c8": "8.0.1",
|
||||
"commonmark": "0.30.0",
|
||||
"cross-env": "7.0.3",
|
||||
"diff": "5.1.0",
|
||||
"esbuild": "0.18.12",
|
||||
"eslint": "8.44.0",
|
||||
"eslint-config-prettier": "8.8.0",
|
||||
"esbuild": "0.19.2",
|
||||
"eslint": "8.47.0",
|
||||
"eslint-config-prettier": "9.0.0",
|
||||
"eslint-formatter-codeframe": "7.32.1",
|
||||
"eslint-plugin-import": "2.27.5",
|
||||
"eslint-plugin-import": "2.28.1",
|
||||
"eslint-plugin-local": "1.0.0",
|
||||
"eslint-plugin-mocha": "10.1.0",
|
||||
"eslint-plugin-prettier": "5.0.0",
|
||||
"eslint-plugin-tsdoc": "0.2.17",
|
||||
"eslint-plugin-unused-imports": "3.0.0",
|
||||
"esprima": "4.0.1",
|
||||
"expect": "29.6.1",
|
||||
"expect": "29.6.3",
|
||||
"glob": "10.3.3",
|
||||
"gts": "4.0.1",
|
||||
"gts": "5.0.0",
|
||||
"jpeg-js": "0.4.4",
|
||||
"license-checker": "25.0.1",
|
||||
"mime": "3.0.0",
|
||||
@ -154,10 +154,10 @@
|
||||
"npm-run-all": "4.1.5",
|
||||
"pixelmatch": "5.3.0",
|
||||
"pngjs": "7.0.0",
|
||||
"prettier": "3.0.0",
|
||||
"prettier": "3.0.2",
|
||||
"puppeteer": "file:packages/puppeteer",
|
||||
"rimraf": "5.0.1",
|
||||
"rollup": "3.26.2",
|
||||
"rollup": "3.28.0",
|
||||
"semver": "7.5.4",
|
||||
"sinon": "15.2.0",
|
||||
"source-map-support": "0.5.21",
|
||||
@ -167,7 +167,7 @@
|
||||
"tsx": "3.12.7",
|
||||
"typescript": "5.1.6",
|
||||
"wireit": "0.10.0",
|
||||
"zod": "3.21.4"
|
||||
"zod": "3.22.2"
|
||||
},
|
||||
"workspaces": [
|
||||
"packages/*",
|
||||
|
@ -144,7 +144,7 @@
|
||||
"author": "The Chromium Authors",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"chromium-bidi": "0.4.20",
|
||||
"chromium-bidi": "0.4.21",
|
||||
"cross-fetch": "4.0.0",
|
||||
"debug": "4.3.4",
|
||||
"devtools-protocol": "0.0.1159816",
|
||||
@ -153,7 +153,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"rxjs": "7.8.1",
|
||||
"mitt": "3.0.0",
|
||||
"parsel-js": "1.1.0"
|
||||
"mitt": "3.0.1",
|
||||
"parsel-js": "1.1.2"
|
||||
}
|
||||
}
|
||||
|
@ -599,9 +599,8 @@ export class ElementHandle<
|
||||
* '.class-name-of-anchor'
|
||||
* );
|
||||
* // DO NOT DISPOSE `element`, this will be always be the same handle.
|
||||
* const anchor: ElementHandle<HTMLAnchorElement> = await element.toElement(
|
||||
* 'a'
|
||||
* );
|
||||
* const anchor: ElementHandle<HTMLAnchorElement> =
|
||||
* await element.toElement('a');
|
||||
* ```
|
||||
*
|
||||
* @param tagName - The tag name of the desired element type.
|
||||
|
@ -559,9 +559,8 @@ export class Page extends PageBase {
|
||||
this.#viewport = viewport;
|
||||
return;
|
||||
}
|
||||
const needsReload = await this.#cdpEmulationManager.emulateViewport(
|
||||
viewport
|
||||
);
|
||||
const needsReload =
|
||||
await this.#cdpEmulationManager.emulateViewport(viewport);
|
||||
this.#viewport = viewport;
|
||||
if (needsReload) {
|
||||
// TODO: reload seems to hang in BiDi.
|
||||
|
@ -3971,6 +3971,12 @@
|
||||
"parameters": ["firefox", "webDriverBiDi"],
|
||||
"expectations": ["PASS"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[accessibility.spec] Accessibility filtering children of leaf nodes rich text editable fields should have children",
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
"parameters": ["chrome", "webDriverBiDi"],
|
||||
"expectations": ["FAIL"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[CDPSession.spec] Target.createCDPSession should send events",
|
||||
"platforms": ["win32"],
|
||||
|
Loading…
Reference in New Issue
Block a user