adminforth 2.4.0-next.227 → 2.4.0-next.229

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.
@@ -2,7 +2,7 @@
2
2
  <div>
3
3
  <nav
4
4
  v-if="loggedIn && routerIsReady && loginRedirectCheckIsReady && defaultLayout"
5
- class="fixed h-14 top-0 z-20 w-full border-b shadow-sm bg-lightNavbar shadow-headerShadow dark:bg-darkNavbar dark:border-darkSidebarDevider"
5
+ class="fixed h-14 top-0 z-30 w-full border-b shadow-sm bg-lightNavbar shadow-headerShadow dark:bg-darkNavbar dark:border-darkSidebarDevider"
6
6
  >
7
7
  <div class="af-header px-3 lg:px-5 lg:pl-3 flex items-center justify-between h-full w-full" >
8
8
  <div class="flex items-center justify-start rtl:justify-end">
@@ -4,7 +4,7 @@
4
4
  @mouseover="!isTogglingSidebar && (isSidebarHovering = true)"
5
5
  @mouseleave="!isTogglingSidebar && (isSidebarHovering = false)"
6
6
  id="logo-lightSidebar"
7
- class="sidebar-container fixed border-none top-0 left-0 z-30 h-screen transition-all duration-300 ease-in-out bg-lightSidebar dark:bg-darkSidebar border-r border-lightSidebarBorder sm:translate-x-0 dark:border-darkSidebarBorder"
7
+ class="sidebar-container fixed border-none top-0 left-0 z-40 h-screen transition-all duration-300 ease-in-out bg-lightSidebar dark:bg-darkSidebar border-r border-lightSidebarBorder sm:translate-x-0 dark:border-darkSidebarBorder"
8
8
  :class="{
9
9
  '-translate-x-full': !sideBarOpen,
10
10
  'transform-none': sideBarOpen,
@@ -12,7 +12,7 @@
12
12
  <!-- Dropdown menu -->
13
13
  <div
14
14
  id="listThreeDotsDropdown"
15
- class="z-20 hidden bg-lightThreeDotsMenuBodyBackground divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-darkThreeDotsMenuBodyBackground dark:divide-gray-600">
15
+ class="z-30 hidden bg-lightThreeDotsMenuBodyBackground divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-darkThreeDotsMenuBodyBackground dark:divide-gray-600">
16
16
  <ul class="py-2 text-sm text-lightThreeDotsMenuBodyText dark:text-darkThreeDotsMenuBodyText" aria-labelledby="dropdownMenuIconButton">
17
17
  <li v-for="(item, i) in threeDotsDropdownItems" :key="`dropdown-item-${i}`">
18
18
  <a href="#"
@@ -23,7 +23,7 @@
23
23
  'cursor-not-allowed': checkboxes && checkboxes.length === 0 && item.meta?.disabledWhenNoCheckboxes,
24
24
  }"
25
25
  @click="injectedComponentClick(i)">
26
- <component :ref="(el: any) => setComponentRef(el, i)" :is="getCustomComponent(item)"
26
+ <component :ref="(el: any) => setComponentRef(el, i)" :is="getCustomComponent(item)"
27
27
  :meta="item.meta"
28
28
  :resource="coreStore.resource"
29
29
  :adminUser="coreStore.adminUser"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.227",
3
+ "version": "2.4.0-next.229",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",