adminforth 3.8.3-next.1 → 3.8.3-next.3
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.
|
@@ -364,7 +364,7 @@
|
|
|
364
364
|
:placeholder="pageSizeInternal?.toString()"
|
|
365
365
|
class="text-sm min-w-20 af-page-size-button"
|
|
366
366
|
classesForInput="
|
|
367
|
-
af-page-size-btn h-[
|
|
367
|
+
af-page-size-btn h-[2.125rem] min-h-0 py-1 pl-2 pr-6 text-left text-sm font-medium transition-all
|
|
368
368
|
outline-none cursor-pointer af-button-shadow rounded-default bg-lightListViewButtonBackground
|
|
369
369
|
text-lightListViewButtonText border-lightListViewButtonBorder
|
|
370
370
|
dark:bg-darkListViewButtonBackground dark:text-darkListViewButtonText dark:border-darkListViewButtonBorder
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
dark:hover:text-darkListViewButtonTextHover dark:hover:bg-darkListViewButtonBackgroundHover rounded-default gap-1"
|
|
122
122
|
>
|
|
123
123
|
<IconPlusOutline class="w-4 h-4"/>
|
|
124
|
-
{{ $t('Create') }}
|
|
124
|
+
<span>{{ $t('Create') }}</span>
|
|
125
125
|
</RouterLink>
|
|
126
126
|
|
|
127
127
|
<button
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
v-if="coreStore.resource?.options?.allowedActions?.filter"
|
|
136
136
|
>
|
|
137
137
|
<IconFilterOutline class="w-4 h-4"/>
|
|
138
|
-
{{ $t('Filter') }}
|
|
138
|
+
<span>{{ $t('Filter') }}</span>
|
|
139
139
|
<div v-if="filtersStore.visibleFiltersCount" class="flex items-center gap-1 ms-1">
|
|
140
140
|
<span class="bg-red-100 text-red-800 text-xs font-medium px-2.5 py-0.5 rounded dark:bg-gray-700 dark:text-red-400 border border-red-400">
|
|
141
141
|
{{ filtersStore.visibleFiltersCount }}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
:to="nextRecordRoute ?? $route"
|
|
16
16
|
@click="handleNextClick()"
|
|
17
17
|
:class="!nextRecordRoute ? 'opacity-50 pointer-events-none cursor-not-allowed' : ''"
|
|
18
|
-
class="af-button-shadow h-[
|
|
18
|
+
class="af-button-shadow h-[2.125rem] inline-flex items-center gap-1 px-3 py-2 text-sm font-medium transition-all border outline-none bg-lightListViewButtonBackground text-lightListViewButtonText border-lightListViewButtonBorder dark:bg-darkListViewButtonBackground dark:text-darkListViewButtonText dark:border-darkListViewButtonBorder hover:bg-lightListViewButtonBackgroundHover hover:text-lightListViewButtonTextHover rounded-default dark:hover:text-darkListViewButtonTextHover dark:hover:bg-darkListViewButtonBackgroundHover"
|
|
19
19
|
>
|
|
20
20
|
<Spinner v-if="isFetchingNextPage" class="w-4 h-4 text-gray-200 dark:text-gray-500 fill-gray-500 dark:fill-gray-300" />
|
|
21
21
|
{{ $t('Next') }}
|