adminforth 1.2.64 → 1.2.66
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,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="rounded-default">
|
|
3
3
|
<div
|
|
4
|
-
class="relative shadow-resourseFormShadow dark:shadow-darkResourseFormShadow sm:rounded-lg dark:shadow-2xl rounded-default"
|
|
4
|
+
class="relative overflow-hidden shadow-resourseFormShadow dark:shadow-darkResourseFormShadow sm:rounded-lg dark:shadow-2xl rounded-default"
|
|
5
5
|
>
|
|
6
6
|
<form autocomplete="off" @submit.prevent>
|
|
7
7
|
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 ">
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
<tbody>
|
|
21
21
|
<tr v-for="column, i in editableColumns" :key="column.name"
|
|
22
22
|
v-if="currentValues !== null"
|
|
23
|
-
class="bg-ligftForm dark:bg-gray-800
|
|
23
|
+
class="bg-ligftForm dark:bg-gray-800 dark:border-gray-700 block md:table-row"
|
|
24
|
+
:class="{ 'border-b': i !== editableColumns.length - 1 }"
|
|
24
25
|
>
|
|
25
26
|
<td class="px-6 py-4 sm:pb-0 whitespace-nowrap flex items-center block md:table-cell"> <!--align-top-->
|
|
26
27
|
{{ column.label }}
|
|
@@ -58,8 +58,9 @@
|
|
|
58
58
|
</tr>
|
|
59
59
|
</thead>
|
|
60
60
|
<tbody>
|
|
61
|
-
<tr v-for="column in coreStore.resource?.columns.filter(c => c.showIn.includes('show'))" :key="column.name"
|
|
62
|
-
|
|
61
|
+
<tr v-for="column,i in coreStore.resource?.columns.filter(c => c.showIn.includes('show'))" :key="column.name"
|
|
62
|
+
class="bg-lightForm bg-darkForm odd:dark:bg-gray-900 even:dark:bg-gray-800 dark:border-gray-700"
|
|
63
|
+
:class="{ 'border-b': i !== coreStore.resource.columns.filter(c => c.showIn.includes('show')).length - 1 }"
|
|
63
64
|
>
|
|
64
65
|
<component
|
|
65
66
|
v-if="column.components?.showRow"
|