flameresttable 1.0.71 → 1.0.72
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
|
@@ -49,6 +49,11 @@
|
|
|
49
49
|
<!-- ДЕЙСТВИЯ С ОТМЕЧЕННЫМИ -->
|
|
50
50
|
<div class="fc">
|
|
51
51
|
<div>
|
|
52
|
+
<div class="inline-block">
|
|
53
|
+
<span v-if="state.exportStatus === 'exportprocess'" class="text-green-600 bg-green-50 px-2 py-1 mx-2">
|
|
54
|
+
{{ props.table.opts.lang === 'ru' ? 'Загрузка...' : 'Loading...' }}
|
|
55
|
+
</span>
|
|
56
|
+
</div>
|
|
52
57
|
<label>
|
|
53
58
|
<select class="minimal text-xs text-center text-slate-500" v-model="state.selectModel" @change="selectAction">
|
|
54
59
|
<option :value="0">{{ state.opts.lang === 'ru' ? 'ДЕЙСТВИЯ' : 'ACTIONS' }}</option>
|
|
@@ -106,7 +111,8 @@ const emit = defineEmits(['add'])
|
|
|
106
111
|
const state = reactive({
|
|
107
112
|
opts: props.table.opts,
|
|
108
113
|
Table: props.table,
|
|
109
|
-
selectModel: 0
|
|
114
|
+
selectModel: 0,
|
|
115
|
+
exportStatus: 'completed' as 'completed' | 'exportprocess' | 'error'
|
|
110
116
|
})
|
|
111
117
|
|
|
112
118
|
const selectAction = () => {
|