adminforth 2.26.0-next.33 → 2.26.0-next.35

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.
@@ -3,8 +3,8 @@
3
3
  <component
4
4
  v-if="!loading"
5
5
  v-for="c in coreStore?.resourceOptions?.pageInjections?.show?.beforeBreadcrumbs || []"
6
- :is="getCustomComponent(c)"
7
- :meta="(c as AdminForthComponentDeclarationFull).meta"
6
+ :is="getCustomComponent(formatComponent(c as AdminForthComponentDeclarationFull))"
7
+ :meta="formatComponent(c as AdminForthComponentDeclarationFull).meta"
8
8
  :record="coreStore.record"
9
9
  :resource="coreStore.resource"
10
10
  :adminUser="coreStore.adminUser"
@@ -65,8 +65,8 @@
65
65
  <component
66
66
  v-if="!loading"
67
67
  v-for="c in coreStore?.resourceOptions?.pageInjections?.show?.afterBreadcrumbs || []"
68
- :is="getCustomComponent(c)"
69
- :meta="(c as AdminForthComponentDeclarationFull).meta"
68
+ :is="getCustomComponent(formatComponent(c as AdminForthComponentDeclarationFull))"
69
+ :meta="formatComponent(c as AdminForthComponentDeclarationFull).meta"
70
70
  :record="coreStore.record"
71
71
  :resource="coreStore.resource"
72
72
  :adminUser="coreStore.adminUser"
@@ -120,8 +120,8 @@
120
120
  <component
121
121
  v-if="!loading"
122
122
  v-for="c in coreStore?.resourceOptions?.pageInjections?.show?.bottom || []"
123
- :is="getCustomComponent(c)"
124
- :meta="(c as AdminForthComponentDeclarationFull).meta"
123
+ :is="getCustomComponent(formatComponent(c as AdminForthComponentDeclarationFull))"
124
+ :meta="formatComponent(c as AdminForthComponentDeclarationFull).meta"
125
125
  :record="coreStore.record"
126
126
  :resource="coreStore.resource"
127
127
  :adminUser="coreStore.adminUser"
@@ -5,7 +5,7 @@
5
5
  "compilerOptions": {
6
6
  "composite": true,
7
7
  "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
8
-
8
+ "ignoreDeprecations": "6.0",
9
9
  "baseUrl": ".",
10
10
  "paths": {
11
11
  "@/*": ["./src/*"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.26.0-next.33",
3
+ "version": "2.26.0-next.35",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",