adminforth 2.4.0-next.254 → 2.4.0-next.255

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.
@@ -10,7 +10,7 @@
10
10
  </Teleport>
11
11
 
12
12
  <component
13
- v-if="!coreStore.isResourceFetching"
13
+ v-if="!coreStore.isResourceFetching && !initInProcess"
14
14
  v-for="c in coreStore?.resourceOptions?.pageInjections?.list?.beforeBreadcrumbs || []"
15
15
  :is="getCustomComponent(c)"
16
16
  :meta="(c as AdminForthComponentDeclarationFull).meta"
@@ -20,7 +20,7 @@
20
20
 
21
21
  <BreadcrumbsWithButtons>
22
22
  <component
23
- v-if="!coreStore.isResourceFetching"
23
+ v-if="!coreStore.isResourceFetching && !initInProcess"
24
24
  v-for="c in coreStore?.resourceOptions?.pageInjections?.list?.beforeActionButtons || []"
25
25
  :is="getCustomComponent(c)"
26
26
  :meta="(c as AdminForthComponentDeclarationFull).meta"
@@ -100,7 +100,7 @@
100
100
  </button>
101
101
 
102
102
  <ThreeDotsMenu
103
- v-if="!coreStore.isResourceFetching"
103
+ v-if="!coreStore.isResourceFetching && !initInProcess"
104
104
  :threeDotsDropdownItems="(coreStore.resourceOptions?.pageInjections?.list?.threeDotsDropdownItems as [])"
105
105
  :bulkActions="coreStore.resource?.options?.bulkActions"
106
106
  :checkboxes="checkboxes"
@@ -111,7 +111,7 @@
111
111
  </BreadcrumbsWithButtons>
112
112
 
113
113
  <component
114
- v-if="!coreStore.isResourceFetching"
114
+ v-if="!coreStore.isResourceFetching && !initInProcess"
115
115
  v-for="c in coreStore?.resourceOptions?.pageInjections?.list?.afterBreadcrumbs || []"
116
116
  :is="getCustomComponent(c)"
117
117
  :meta="(c as AdminForthComponentDeclarationFull).meta"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.254",
3
+ "version": "2.4.0-next.255",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",