Skip to content

Commit

Permalink
Update to primevue 4.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Dec 13, 2024
1 parent 8138922 commit 026f23b
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 71 deletions.
4 changes: 2 additions & 2 deletions dashboard/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"dependencies": {
"@fontsource/inter": "5.1.0",
"@fontsource/jetbrains-mono": "5.1.1",
"@primevue/themes": "^4.2.1",
"@primevue/themes": "^4.2.5",
"echarts": "5.5.1",
"new-dashboard": "workspace:*",
"pinia": "^2.3.0",
"primevue": "4.2.1",
"primevue": "4.2.5",
"rxjs": "8.0.0-alpha.14",
"vue": "3.5.13",
"vue-router": "4.5.0"
Expand Down
4 changes: 2 additions & 2 deletions dashboard/new-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"private": true,
"dependencies": {
"@heroicons/vue": "2.2.0",
"@primevue/core": "^4.2.3",
"@primevue/core": "^4.2.5",
"@vueuse/core": "^12.0.0",
"echarts": "5.5.1",
"fast-equals": "5.0.1",
"humanize-duration": "3.32.1",
"p-limit": "^6.1.0",
"pinia": "^2.3.0",
"primevue": "4.2.1",
"primevue": "4.2.5",
"rxjs": "8.0.0-alpha.14",
"vue": "3.5.13",
"vue-router": "4.5.0"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"test": "vitest run"
},
"devDependencies": {
"@primevue/auto-import-resolver": "^4.2.1",
"@primevue/auto-import-resolver": "^4.2.5",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@typescript-eslint/eslint-plugin": "^8.18.0",
Expand Down Expand Up @@ -48,7 +48,7 @@
]
},
"patchedDependencies": {
"[email protected].1": "patches/[email protected].1.patch"
"[email protected].5": "patches/[email protected].5.patch"
}
},
"engines": {
Expand Down
Binary file removed patches/[email protected]
Binary file not shown.
14 changes: 14 additions & 0 deletions patches/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
diff --git a/multiselect/index.mjs b/multiselect/index.mjs
index 8ba9a8d407b3c6324561eb18510a9a73f9543262..2d3f2b0d2de3f3e9e9f18ee48eab6e10cc5022da 100644
--- a/multiselect/index.mjs
+++ b/multiselect/index.mjs
@@ -746,7 +746,8 @@ var script = {
}
},
isOutsideClicked: function isOutsideClicked(event) {
- return !(this.$el.isSameNode(event.target) || this.$el.contains(event.target) || this.overlay && this.overlay.contains(event.target));
+ const path = event.composedPath();
+ return !(path.includes(this.$el) || (this.overlay && path.includes(this.overlay)));
},
getLabelByValue: function getLabelByValue(value) {
var _this9 = this;
104 changes: 39 additions & 65 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 026f23b

Please sign in to comment.