flameresttable 1.0.84 → 1.0.85
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/src/Table/Table.vue +4 -4
package/package.json
CHANGED
package/src/Table/Table.vue
CHANGED
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
column.Table.title : column.title !== '' ? column.title :
|
|
41
41
|
column.name }}</span>
|
|
42
42
|
</div>
|
|
43
|
-
<div v-if="opts.Edit.can" class="table-cell border-r border-r-slate-100 px-2">
|
|
43
|
+
<div v-if="opts.Edit.can" class="table-cell w-[93px] border-r border-r-slate-100 px-2">
|
|
44
44
|
<button class="bg-green-600 invisible">
|
|
45
45
|
Изменить
|
|
46
46
|
</button>
|
|
47
47
|
</div>
|
|
48
|
-
<div v-if="opts.Remove.can" class="table-cell border-r border-r-slate-100 px-2">
|
|
48
|
+
<div v-if="opts.Remove.can" class="table-cell w-[93px] border-r border-r-slate-100 px-2">
|
|
49
49
|
<button class="bg-green-600 invisible">
|
|
50
50
|
Удалить
|
|
51
51
|
</button>
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
column.Table.value(row, column) }}</span>
|
|
78
78
|
<span v-else v-html="column.Table.value(row, column)"></span>
|
|
79
79
|
</div>
|
|
80
|
-
<div v-if="opts.Edit.can" class="table-cell border-r border-r-slate-100 px-2 text-center">
|
|
80
|
+
<div v-if="opts.Edit.can" class="table-cell w-[93px] border-r border-r-slate-100 px-2 text-center">
|
|
81
81
|
<button class="px-2 py-1 bg-green-600 text-white my-1" @click="edit(row)">
|
|
82
82
|
Изменить
|
|
83
83
|
</button>
|
|
84
84
|
</div>
|
|
85
|
-
<div v-if="opts.Remove.can" class="table-cell border-r border-r-slate-100 px-2 text-center">
|
|
85
|
+
<div v-if="opts.Remove.can" class="table-cell w-[93px] border-r border-r-slate-100 px-2 text-center">
|
|
86
86
|
<button class="px-2 py-1 bg-gray-600 opacity-30 text-white my-1" @click="deleteRow(row)">
|
|
87
87
|
Удалить
|
|
88
88
|
</button>
|