vueless 0.0.129 → 0.0.130

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.129",
3
+ "version": "0.0.130",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -266,10 +266,11 @@ import {
266
266
  ref,
267
267
  computed,
268
268
  watch,
269
+ toValue,
269
270
  useSlots,
271
+ nextTick,
270
272
  onMounted,
271
273
  onUpdated,
272
- nextTick,
273
274
  onBeforeUnmount,
274
275
  } from "vue";
275
276
  import { merge } from "lodash-es";
@@ -535,7 +536,7 @@ const {
535
536
 
536
537
  watch(selectAll, onChangeSelectAll, { deep: true });
537
538
  watch(selectedRows, onChangeSelectedRows, { deep: true });
538
- watch(tableRows, () => emit("update:rows", tableRows), { deep: true });
539
+ watch(tableRows, () => emit("update:rows", toValue(tableRows)), { deep: true });
539
540
  watch(() => tableRows.value.length, updateSelectedRows);
540
541
  watch(() => props.rows, synchronizeTableItemsWithProps, { deep: true });
541
542
  watch(isHeaderSticky, setHeaderItemsWidth);
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.129",
4
+ "version": "0.0.130",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",