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 +1 -1
- package/ui.container-page/index.vue +3 -3
- package/ui.data-table/index.vue +3 -2
- package/web-types.json +1 -1
package/package.json
CHANGED
|
@@ -235,7 +235,7 @@ onMounted(() => {
|
|
|
235
235
|
});
|
|
236
236
|
</script>
|
|
237
237
|
|
|
238
|
-
|
|
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
|
-
|
|
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-->
|
package/ui.data-table/index.vue
CHANGED
|
@@ -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);
|