Skip to content

Commit 1aa6238

Browse files
authored
chore(deps): update dependency @types/jquery to v3.5.33 (#6748)
2 parents 4a19639 + c16c478 commit 1aa6238

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

apps/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"@ckeditor/ckeditor5-inspector": "5.0.0",
6363
"@preact/preset-vite": "2.10.2",
6464
"@types/bootstrap": "5.2.10",
65-
"@types/jquery": "3.5.32",
65+
"@types/jquery": "3.5.33",
6666
"@types/leaflet": "1.9.20",
6767
"@types/leaflet-gpx": "1.3.7",
6868
"@types/mark.js": "8.11.12",

apps/client/src/widgets/note_tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const TPL = /*html*/`
152152
const MAX_SEARCH_RESULTS_IN_TREE = 100;
153153

154154
// this has to be hanged on the actual elements to effectively intercept and stop click event
155-
const cancelClickPropagation: JQuery.TypeEventHandler<unknown, unknown, unknown, unknown, any> = (e) => e.stopPropagation();
155+
const cancelClickPropagation: (e: JQuery.ClickEvent) => void = (e) => e.stopPropagation();
156156

157157
// TODO: Fix once we remove Node.js API from public
158158
type Timeout = NodeJS.Timeout | string | number | undefined;

packages/ckeditor5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
"ckeditor5-premium-features": "46.0.2"
4040
},
4141
"devDependencies": {
42-
"@types/jquery": "3.5.32"
42+
"@types/jquery": "3.5.33"
4343
}
4444
}

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)