adminforth 2.4.0-next.75 → 2.4.0-next.76
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 +1 -0
- package/package.json +1 -1
package/dist/spa/src/App.vue
CHANGED
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
">{{ item.label }}</div>
|
|
96
96
|
<li v-else-if="item.children" class="af-sidebar-expand-container">
|
|
97
97
|
<button @click="clickOnMenuItem(i)" type="button" class="af-sidebar-expand-button flex items-center w-full p-2 text-base text-lightSidebarText rounded-default transition duration-75 group hover:bg-lightSidebarItemHover hover:text-lightSidebarTextHover dark:text-darkSidebarText dark:hover:bg-darkSidebarHover dark:hover:text-darkSidebarTextHover"
|
|
98
|
+
:class="opened.includes(i) ? 'af-sidebar-dropdown-expanded' : 'af-sidebar-dropdown-collapsed'"
|
|
98
99
|
:aria-controls="`dropdown-example${i}`"
|
|
99
100
|
:data-collapse-toggle="`dropdown-example${i}`"
|
|
100
101
|
>
|