@tekkare/auriga 0.1.13 → 0.1.14

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/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.13"
7
+ "version": "0.1.14"
8
8
  }
@@ -8,7 +8,7 @@
8
8
  :show_amount="show_amount"
9
9
  :amount_value="del_table.length"
10
10
  id="simple-select-complex"
11
- @click.stop="changeDisplay()"
11
+ @click="changeDisplay()"
12
12
  :class="isDisplay ? 'open' : ''"
13
13
  >
14
14
  <span
@@ -200,7 +200,8 @@ import {
200
200
  ref,
201
201
  computed,
202
202
  watch,
203
- defineComponent
203
+ defineComponent,
204
+ onUnmounted
204
205
  } from "vue";
205
206
  export default defineComponent({
206
207
  name: "argComplexSelect",
@@ -472,6 +473,9 @@ export default defineComponent({
472
473
  save_table.value.add = add_table.value;
473
474
  save_table.value.del = del_table.value;
474
475
  }
476
+ onUnmounted(() => {
477
+ document?.removeEventListener("click", close);
478
+ });
475
479
  return {
476
480
  add_table,
477
481
  del_table,
@@ -5,7 +5,7 @@
5
5
  <p class="oip_filter_label">{{ dropdown_label }}</p>
6
6
  <arg-simple-label
7
7
  :disabled="disabled"
8
- @click.stop="changeDisplay()"
8
+ @click="changeDisplay()"
9
9
  :class="isDisplay ? 'open' : ''"
10
10
  >
11
11
  <arg-tooltip
@@ -8,7 +8,7 @@
8
8
  :disabled="disabled"
9
9
  :show_amount="show_amount"
10
10
  :amount_value="selected_items.length"
11
- @click.stop="changeDisplay()"
11
+ @click="changeDisplay()"
12
12
  :class="isDisplay ? 'open' : ''"
13
13
  >
14
14
  <p
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",