@tekkare/auriga 0.2.120 → 0.2.121

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.2.120"
7
+ "version": "0.2.121"
8
8
  }
@@ -419,7 +419,7 @@ export default defineComponent({
419
419
  ...new Set(element_table_copy.value.concat(props.default_select))
420
420
  ];
421
421
  }
422
- selected_items.value = props.default_select;
422
+ selected_items.value = [...new Set(props.default_select)];
423
423
  }
424
424
  }
425
425
  );
@@ -427,7 +427,7 @@ export default defineComponent({
427
427
  () => props.default_select,
428
428
  (new_selected) => {
429
429
  if (new_selected && new_selected.length > 0) {
430
- selected_items.value = new_selected;
430
+ selected_items.value = [...new Set(props.default_select)];
431
431
  }
432
432
  }
433
433
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.120",
3
+ "version": "0.2.121",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",