@ramathibodi/nuxt-commons 0.1.67 → 0.1.68
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 +1 -1
- package/dist/runtime/components/form/ActionPad.vue +1 -1
- package/dist/runtime/components/form/Dialog.vue +1 -1
- package/dist/runtime/components/form/EditPad.vue +1 -1
- package/dist/runtime/components/form/Iterator.vue +0 -2
- package/dist/runtime/components/form/Pad.vue +1 -0
- package/dist/runtime/components/label/DateCount.vue +4 -3
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -85,7 +85,7 @@ const loadFormData = () => {
|
|
|
85
85
|
formDataOriginalValue.value = cloneDeep(props.formData)
|
|
86
86
|
}
|
|
87
87
|
else {
|
|
88
|
-
formData.value = Object.assign({}, props.initialData)
|
|
88
|
+
formData.value = Object.assign({}, cloneDeep(props.initialData))
|
|
89
89
|
}
|
|
90
90
|
isSavedAndStay.value = false
|
|
91
91
|
}
|
|
@@ -497,8 +497,6 @@ defineExpose({
|
|
|
497
497
|
show-first-last-page
|
|
498
498
|
@first="footerProps.setPage(1)"
|
|
499
499
|
@last="footerProps.setPage(footerProps.pageCount)"
|
|
500
|
-
@next="footerProps.nextPage"
|
|
501
|
-
@prev="footerProps.prevPage"
|
|
502
500
|
@update:model-value="footerProps.setPage"
|
|
503
501
|
/>
|
|
504
502
|
</v-row>
|
|
@@ -137,7 +137,8 @@ const outputText = computed(() => {
|
|
|
137
137
|
</script>
|
|
138
138
|
|
|
139
139
|
<template>
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
140
|
+
<span>
|
|
141
|
+
<i v-if="props.zeroBase" class="mdi mdi-clock-time-twelve-outline"></i>
|
|
142
|
+
<span v-if="props.zeroBase"> </span>{{ outputText }}
|
|
143
|
+
</span>
|
|
143
144
|
</template>
|