adminforth 2.72.2-next.5 → 2.72.2-next.7
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/dist/spa/src/App.vue
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
</button>
|
|
56
56
|
</div>
|
|
57
57
|
<Teleport to="body">
|
|
58
|
-
<div class="z-50 hidden my-4 text-base list-none bg-lightUserMenuBackground divide-y divide-lightUserMenuBorder text-lightUserMenuText rounded-default shadow dark:shadow-black dark:bg-darkUserMenuBackground dark:divide-darkUserMenuBorder text-darkUserMenuText dark:shadow-black" id="dropdown-user">
|
|
58
|
+
<div class="af-settings-popup z-50 hidden my-4 text-base list-none bg-lightUserMenuBackground divide-y divide-lightUserMenuBorder text-lightUserMenuText rounded-default shadow dark:shadow-black dark:bg-darkUserMenuBackground dark:divide-darkUserMenuBorder text-darkUserMenuText dark:shadow-black" id="dropdown-user">
|
|
59
59
|
<div class="px-4 py-3" role="none">
|
|
60
60
|
<p class="text-sm text-gray-900 dark:text-darkNavbarText" role="none" v-if="coreStore.userFullname">
|
|
61
61
|
{{ coreStore.userFullname }}
|
|
@@ -10,13 +10,9 @@
|
|
|
10
10
|
v-model="search"
|
|
11
11
|
@click="inputClick"
|
|
12
12
|
@input="inputInput"
|
|
13
|
-
class="
|
|
14
|
-
text-sm
|
|
15
|
-
|
|
16
|
-
placeholder-lightDropdownButtonsPlaceholderText dark:placeholder-darkDropdownButtonsPlaceholderText
|
|
17
|
-
dark:bg-darkListViewButtonBackground dark:text-darkListViewButtonText dark:border-darkListViewButtonBorder
|
|
18
|
-
dark:hover:text-darkListViewButtonTextHover dark:hover:bg-darkListViewButtonBackgroundHover
|
|
19
|
-
hover:bg-lightListViewButtonBackgroundHover hover:text-lightListViewButtonTextHover"
|
|
13
|
+
class="block w-full pl-3 pr-10 py-2.5 border border-lightDropownButtonsBorder rounded-md leading-5 bg-lightDropdownButtonsBackground
|
|
14
|
+
placeholder-lightDropdownButtonsPlaceholderText text-lightDropdownButtonsText sm:text-sm transition duration-150 ease-in-out dark:bg-darkDropdownButtonsBackground dark:border-darkDropdownButtonsBorder dark:placeholder-darkDropdownButtonsPlaceholderText
|
|
15
|
+
dark:text-darkDropdownButtonsText focus:ring-lightPrimary focus:border-lightPrimary dark:focus:ring-darkPrimary dark:focus:border-darkPrimary"
|
|
20
16
|
:class="[{'cursor-pointer': searchDisabled}, classesForInput]"
|
|
21
17
|
autocomplete="off" data-custom="no-autofill"
|
|
22
18
|
:placeholder="
|
|
@@ -67,7 +63,7 @@
|
|
|
67
63
|
</teleport>
|
|
68
64
|
|
|
69
65
|
<div v-if="!teleportToBody && !teleportToTop && showDropdown" ref="dropdownEl" :style="dropdownStyle" :class="{'shadow-none': isTop}"
|
|
70
|
-
class="absolute z-10 mt-1 w-full bg-lightDropdownOptionsBackground shadow-lg text-lightDropdownButtonsText dark:shadow-black dark:bg-darkDropdownOptionsBackground
|
|
66
|
+
class="afcl-select-content absolute z-10 mt-1 w-full bg-lightDropdownOptionsBackground shadow-lg text-lightDropdownButtonsText dark:shadow-black dark:bg-darkDropdownOptionsBackground
|
|
71
67
|
dark:border-gray-600 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm max-h-48"
|
|
72
68
|
@scroll="handleDropdownScroll">
|
|
73
69
|
<div
|
|
@@ -353,7 +353,13 @@
|
|
|
353
353
|
:style="{ width: selectDynamicWidth }"
|
|
354
354
|
:placeholder="pageSizeInternal?.toString()"
|
|
355
355
|
class="text-sm min-w-20 af-page-size-button"
|
|
356
|
-
classesForInput="
|
|
356
|
+
classesForInput="
|
|
357
|
+
af-page-size-btn h-[34px] min-h-0 py-1 pl-2 pr-6 text-left text-sm font-medium transition-all
|
|
358
|
+
outline-none cursor-pointer af-button-shadow rounded-default bg-lightListViewButtonBackground
|
|
359
|
+
text-lightListViewButtonText border-lightListViewButtonBorder
|
|
360
|
+
dark:bg-darkListViewButtonBackground dark:text-darkListViewButtonText dark:border-darkListViewButtonBorder
|
|
361
|
+
hover:bg-lightListViewButtonBackgroundHover hover:text-lightListViewButtonTextHover
|
|
362
|
+
dark:hover:bg-darkListViewButtonBackgroundHover dark:hover:text-darkListViewButtonTextHover"
|
|
357
363
|
/>
|
|
358
364
|
</div>
|
|
359
365
|
</div>
|