adminforth 2.4.0-next.166 → 2.4.0-next.168

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.
@@ -289,7 +289,7 @@ function getFilterItem({ column, operator }) {
289
289
  }
290
290
 
291
291
  async function clear() {
292
- filtersStore.clearFilters();
292
+ filtersStore.filters = [...filtersStore.filters.filter(f => filtersStore.shouldFilterBeHidden(f.field))];
293
293
  emits('update:filters', [...filtersStore.filters]);
294
294
  }
295
295
 
@@ -7,7 +7,7 @@
7
7
  'hover:bg-lightSidebarItemHover hover:text-lightSidebarTextHover dark:hover:bg-darkSidebarItemHover dark:hover:text-darkSidebarTextHover active:bg-lightSidebarActive dark:active:bg-darkSidebarHover': !['divider', 'gap', 'heading'].includes(item.type),
8
8
  'px-6': (isChild && !isSidebarIconOnly && !isSidebarHovering) || (isChild && isSidebarIconOnly && isSidebarHovering),
9
9
  'px-3.5': !isChild || (isSidebarIconOnly && !isSidebarHovering),
10
- 'max-w-13': isSidebarIconOnly && !isSidebarHovering,
10
+ 'max-w-12': isSidebarIconOnly && !isSidebarHovering,
11
11
  'bg-lightSidebarItemActive dark:bg-darkSidebarItemActive': item.resourceId ?
12
12
  ($route.params.resourceId === item.resourceId && $route.name === 'resource-list') :
13
13
  ($route.name === item.path)
@@ -21,7 +21,7 @@
21
21
  }" >
22
22
  </component>
23
23
  <span
24
- class="overflow-hidden block relative ms-3 text-left rtl:text-right transition-all duration-200 ease-in-out"
24
+ class="overflow-hidden block ms-3 text-left rtl:text-right transition-all duration-200 ease-in-out"
25
25
  :class="{
26
26
  'opacity-0 ms-0 translate-x-4 flex-none': isSidebarIconOnly && !isSidebarHovering,
27
27
  'opacity-100 ms-3 translate-x-0 flex-none': isSidebarIconOnly && isSidebarHovering,
@@ -39,14 +39,14 @@
39
39
  {{ item.label }}
40
40
  <template v-if="item.badge && (!isSidebarIconOnly || (isSidebarIconOnly && isSidebarHovering))">
41
41
  <Tooltip v-if="item.badgeTooltip">
42
- <div class="af-badge inline-flex items-center justify-center absolute top-1/2 -translate-y-1/2 h-3 py-3 px-1 ms-3 text-sm font-medium rounded-full bg-lightAnnouncementBG dark:bg-darkAnnouncementBG
42
+ <div class="af-badge inline-flex items-center justify-center h-3 py-2.5 px-1 ms-3 text-xs font-medium rounded-full bg-lightAnnouncementBG dark:bg-darkAnnouncementBG
43
43
  fill-lightAnnouncementText dark:fill-darkAccent text-lightAnnouncementText dark:text-darkAccent min-w-[1.5rem] max-w-[3rem]">{{ item.badge }}</div>
44
44
  <template #tooltip>
45
45
  {{ item.badgeTooltip }}
46
46
  </template>
47
47
  </Tooltip>
48
48
  <template v-else>
49
- <div class="af-badge inline-flex items-center justify-center absolute top-1/2 -translate-y-1/2 h-3 py-3 px-1 ms-3 text-sm font-medium rounded-full bg-lightAnnouncementBG dark:bg-darkAnnouncementBG
49
+ <div class="af-badge inline-flex items-center justify-center h-3 py-2.5 px-1 ms-3 text-xs font-medium rounded-full bg-lightAnnouncementBG dark:bg-darkAnnouncementBG
50
50
  fill-lightAnnouncementText dark:fill-darkAccent text-lightAnnouncementText dark:text-darkAccent min-w-[1.5rem] max-w-[3rem]">{{ item.badge }}</div>
51
51
  </template>
52
52
  </template>
@@ -48,6 +48,7 @@ export const useFiltersStore = defineStore('filters', () => {
48
48
  setFilters,
49
49
  setSort,
50
50
  getSort,
51
- visibleFiltersCount
51
+ visibleFiltersCount,
52
+ shouldFilterBeHidden
52
53
  }
53
54
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.166",
3
+ "version": "2.4.0-next.168",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",