edvoyui-component-library-test-flight 0.0.45 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
@option:selected="change($event)"
|
|
43
43
|
@option:deselected="deselected($event)"
|
|
44
44
|
@option:created="handleOptionCreate"
|
|
45
|
+
@open="open"
|
|
45
46
|
>
|
|
46
47
|
<template v-if="inputFilled" #header>
|
|
47
48
|
<div
|
|
@@ -300,7 +301,7 @@ const emit = defineEmits([
|
|
|
300
301
|
"deselected",
|
|
301
302
|
"search",
|
|
302
303
|
"tag",
|
|
303
|
-
"selectedOption",
|
|
304
|
+
"selectedOption",'open'
|
|
304
305
|
]);
|
|
305
306
|
|
|
306
307
|
const selectAll = (e: Event) => {
|
|
@@ -503,6 +504,12 @@ const selectedLimit = () => {
|
|
|
503
504
|
}
|
|
504
505
|
};
|
|
505
506
|
|
|
507
|
+
|
|
508
|
+
const open=()=>{
|
|
509
|
+
emit('open')
|
|
510
|
+
|
|
511
|
+
}
|
|
512
|
+
|
|
506
513
|
// const handlers = (e: Event) => {
|
|
507
514
|
// console.log("@e", e);
|
|
508
515
|
// // e.preventDefault();
|