adminforth 3.13.9 → 3.13.11
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.
|
@@ -24,16 +24,16 @@
|
|
|
24
24
|
/>
|
|
25
25
|
</div>
|
|
26
26
|
<div class="flex items-center">
|
|
27
|
-
<
|
|
27
|
+
<Button
|
|
28
28
|
v-if="!column.editReadonly"
|
|
29
29
|
type="button"
|
|
30
30
|
@click="addArrayItem"
|
|
31
31
|
class="flex items-center py-1 px-3 me-2 text-sm font-medium rounded-default text-lightInputText focus:outline-none bg-lightInputBackground rounded border border-lightInputBorder hover:bg-lightInputBackgroundHover hover:text-lightInputTextHover hover:border-lightInputBorderHover focus:z-10 focus:ring-4 focus:ring-lightInputFocusRing dark:focus:ring-darkInputFocusRing dark:bg-darkInputBackground dark:text-darkInputText dark:border-darkInputBorder dark:hover:darkInputTextHover dark:hover:bg-darkInputHover"
|
|
32
32
|
:class="{'mt-2': currentValues[column.name].length}"
|
|
33
33
|
>
|
|
34
|
-
<IconPlusOutline class="w-4 h-4
|
|
34
|
+
<IconPlusOutline class="w-4 h-4"/>
|
|
35
35
|
{{ $t('Add') }}
|
|
36
|
-
</
|
|
36
|
+
</Button>
|
|
37
37
|
</div>
|
|
38
38
|
</template>
|
|
39
39
|
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
import { IconPlusOutline } from '@iconify-prerendered/vue-flowbite';
|
|
63
63
|
import ColumnValueInput from "./ColumnValueInput.vue";
|
|
64
64
|
import { ref, watch, nextTick } from 'vue';
|
|
65
|
-
import { Spinner } from '@/afcl';
|
|
65
|
+
import { Spinner, Button } from '@/afcl';
|
|
66
66
|
|
|
67
67
|
const props = defineProps<{
|
|
68
68
|
source: 'create' | 'edit',
|