vueless 0.0.129 → 0.0.131

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.131",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -235,7 +235,7 @@ onMounted(() => {
235
235
  });
236
236
  </script>
237
237
 
238
- <style lang="postcss" scoped>
238
+ <!--style lang="postcss" scoped>
239
239
  /**
240
240
  * TODO: Move this styles to global vueless config using tailwind group class and remove footer classes
241
241
  *
@@ -258,7 +258,7 @@ onMounted(() => {
258
258
  }
259
259
 
260
260
  .dropdown-list {
261
- @apply mb-[calc(theme("spacing.mobile-menu-height")+3rem)];
261
+ @apply xmb-[calc(theme("spacing.mobile-menu-height")+3rem)];
262
262
  }
263
263
  }
264
264
 
@@ -289,4 +289,4 @@ onMounted(() => {
289
289
  }
290
290
  }
291
291
  */
292
- </style>
292
+ </style-->
@@ -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.131",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",