@tekkare/auriga 0.1.6 → 0.1.8

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.6"
7
+ "version": "0.1.8"
8
8
  }
@@ -193,7 +193,7 @@ import argBtn from "./argBtn.vue";
193
193
  import argIcon from "./argIcon.vue";
194
194
  import argDataLoader from "./argDataLoader.vue";
195
195
  import {
196
- onBeforeMount,
196
+ onMounted,
197
197
  ref,
198
198
  computed,
199
199
  watch,
@@ -239,7 +239,7 @@ export default defineComponent({
239
239
  const hoverAdd = ref(null);
240
240
  const hoverRemove = ref(null);
241
241
  const reachMax = ref(false);
242
- onBeforeMount(() => {
242
+ onMounted(() => {
243
243
  del_table.value = Object.assign([], [...new Set(props.already_selected)]);
244
244
  add_table.value = Object.assign(
245
245
  [],
@@ -279,9 +279,6 @@ export default defineComponent({
279
279
  (item) => !del_table.value.includes(item)
280
280
  )
281
281
  );
282
- if (!props.need_apply) {
283
- apply_function();
284
- }
285
282
  }
286
283
  );
287
284
  watch(
@@ -300,9 +297,6 @@ export default defineComponent({
300
297
  (item) => !del_table.value.includes(item)
301
298
  )
302
299
  );
303
- if (!props.need_apply) {
304
- apply_function();
305
- }
306
300
  }
307
301
  );
308
302
  const getAllSelect = computed(() => {
@@ -180,7 +180,7 @@
180
180
  <div class="show_full_table">
181
181
  <arg-btn
182
182
  v-if="
183
- (saveTable.length > savePageSize || this.showFull) &&
183
+ (saveTable.length > savePageSize || showFull) &&
184
184
  finalTable.length > 0 &&
185
185
  showToggle
186
186
  "
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",