Skip to content

Commit 8177c48

Browse files
committed
Update the npm dependencies
1 parent adb459f commit 8177c48

File tree

7 files changed

+252
-416
lines changed

7 files changed

+252
-416
lines changed

package-lock.json

Lines changed: 234 additions & 407 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"bundle-web-components": "npx esbuild ts/WoltLabSuite/WebComponent/index.ts --minify --bundle --watch --outfile=wcfsetup/install/files/js/WoltLabSuite/WebComponent.min.js"
55
},
66
"devDependencies": {
7-
"@typescript-eslint/eslint-plugin": "^8.46.1",
8-
"@typescript-eslint/parser": "^8.46.1",
9-
"esbuild": "^0.25.11",
10-
"eslint": "^9.37.0",
7+
"@typescript-eslint/eslint-plugin": "^8.48.0",
8+
"@typescript-eslint/parser": "^8.48.0",
9+
"esbuild": "^0.27.0",
10+
"eslint": "^9.39.1",
1111
"eslint-config-prettier": "^10.1.8",
1212
"prettier": "^3.6.2",
1313
"typescript": "^5.9.3"
@@ -24,13 +24,13 @@
2424
"@woltlab/editor": "git+https://github.com/WoltLab/editor.git#v6.1.14",
2525
"@woltlab/visual-dom-diff": "git+https://github.com/WoltLab/visual-dom-diff.git#e5b51fce3157d1eda310566fc1f86101341d1fea",
2626
"@woltlab/zxcvbn": "git+https://github.com/WoltLab/zxcvbn.git#5b582b24e437f1883ccad3c37dae7c3c5f1e7da3",
27-
"focus-trap": "^7.6.5",
27+
"focus-trap": "^7.6.6",
2828
"hash-wasm": "^4.12.0",
2929
"html-parsed-element": "^0.4.1",
3030
"perfect-scrollbar": "^1.5.6",
3131
"qr-creator": "^1.0.0",
3232
"reflect-metadata": "^0.2.2",
33-
"tabbable": "^6.2.0",
33+
"tabbable": "^6.3.0",
3434
"tslib": "^2.8.1"
3535
}
3636
}

ts/WoltLabSuite/Core/Core.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const _clone = function (variable: any): any {
1414
return variable;
1515
};
1616

17+
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
1718
const _cloneObject = function (obj: object | any[]): object | any[] | null {
1819
if (!obj) {
1920
return null;
@@ -34,6 +35,7 @@ const _prefix = "wsc" + window.WCF_PATH.hashCode() + "-";
3435
/**
3536
* Deep clones an object.
3637
*/
38+
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
3739
export function clone(obj: object | any[]): object | any[] {
3840
return _clone(obj);
3941
}

ts/WoltLabSuite/Core/Ui/CloseOverlay.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export enum Origin {
1616
Search = "search",
1717
}
1818

19+
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
1920
type Callback = (origin?: string | Origin, identifier?: string) => void;
2021

2122
let hasGlobalListener = false;
@@ -36,8 +37,11 @@ export function remove(identifier: string): void {
3637
}
3738

3839
export function execute(): void;
40+
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
3941
export function execute(origin: string | Origin): void;
42+
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
4043
export function execute(origin: string | Origin, identifier: string): void;
44+
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
4145
export function execute(origin?: string | Origin, identifier?: string): void {
4246
_callbackList.forEach(null, (callback) => callback(origin, identifier));
4347
}

wcfsetup/install/files/js/WoltLabSuite/Core/Core.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wcfsetup/install/files/js/WoltLabSuite/Core/Ui/CloseOverlay.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wcfsetup/install/files/js/WoltLabSuite/WebComponent.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)