adminforth 2.17.0-next.53 → 2.17.0-next.55

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.
@@ -55,7 +55,7 @@
55
55
  <!-- Confirmation Modal -->
56
56
  <div
57
57
  v-if="showConfirmationOnClose"
58
- class="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50 z-60"
58
+ class="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50 z-[60]"
59
59
  >
60
60
  <div class="bg-white dark:bg-gray-800 p-6 rounded-lg shadow-lg max-w-sm w-full">
61
61
  <h2 class="text-lg font-semibold mb-4 text-lightDialogHeaderText dark:text-darkDialogHeaderText">Confirm Close</h2>
@@ -38,7 +38,7 @@
38
38
  </div>
39
39
  </div>
40
40
  <teleport to="body" v-if="(teleportToBody || teleportToTop) && showDropdown">
41
- <div ref="dropdownEl" :style="getDropdownPosition" :class="{'shadow-none': isTop, 'z-10': teleportToBody, 'z-[1000]': teleportToTop}"
41
+ <div ref="dropdownEl" :style="getDropdownPosition" :class="{'shadow-none': isTop, 'z-30': teleportToBody, 'z-[1000]': teleportToTop}"
42
42
  class="fixed w-full bg-lightDropdownOptionsBackground shadow-lg dark:shadow-black dark:bg-darkDropdownOptionsBackground
43
43
  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"
44
44
  @scroll="handleDropdownScroll">
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="afcl-table-container relative overflow-x-auto overflow-y-auto shadow-md rounded-lg">
3
3
  <table class="afcl-table w-full text-sm text-left rtl:text-right text-lightTableText dark:text-darkTableText overflow-x-auto">
4
- <thead class="afcl-table-thread z-50 text-xs text-lightTableHeadingText uppercase bg-lightTableHeadingBackground dark:bg-darkTableHeadingBackground dark:text-darkTableHeadingText" :class="makeHeaderSticky ? 'sticky top-0' : ''">
4
+ <thead class="afcl-table-thread z-40 text-xs text-lightTableHeadingText uppercase bg-lightTableHeadingBackground dark:bg-darkTableHeadingBackground dark:text-darkTableHeadingText" :class="makeHeaderSticky ? 'sticky top-0' : ''">
5
5
  <tr>
6
6
  <th
7
7
  scope="col"
@@ -81,7 +81,7 @@
81
81
  <nav class="afcl-table-pagination-container bg-lightTableBackground dark:bg-darkTableBackground mt-2 flex flex-col gap-2 items-center sm:flex-row justify-center sm:justify-between px-4 pb-4"
82
82
  v-if="totalPages > 1"
83
83
  :aria-label="$t('Table navigation')"
84
- :class="makePaginationSticky ? 'sticky bottom-0' : ''"
84
+ :class="makePaginationSticky ? 'sticky bottom-0 pt-4' : ''"
85
85
  >
86
86
  <i18n-t
87
87
  keypath="Showing {from} to {to} of {total}" tag="span" class="afcl-table-pagination-text text-sm font-normal text-center text-lightTablePaginationText dark:text-darkTablePaginationText sm:mb-4 md:mb-0 block w-full md:inline md:w-auto"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.17.0-next.53",
3
+ "version": "2.17.0-next.55",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",