-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
59 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -48,7 +48,7 @@ | |
] | ||
}, | ||
"patchedDependencies": { | ||
"[email protected].1": "patches/[email protected].1.patch" | ||
"[email protected].5": "patches/[email protected].5.patch" | ||
} | ||
}, | ||
"engines": { | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.