@finema/core 2.25.0 → 2.26.1
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/module.json +1 -1
- package/dist/module.mjs +14 -4
- package/dist/runtime/components/App.vue +1 -5
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import * as lodash from 'lodash-es';
|
|
|
4
4
|
import * as theme from '../dist/runtime/theme/index.js';
|
|
5
5
|
|
|
6
6
|
const name = "@finema/core";
|
|
7
|
-
const version = "2.
|
|
7
|
+
const version = "2.26.1";
|
|
8
8
|
|
|
9
9
|
const nuxtAppOptions = {
|
|
10
10
|
head: {
|
|
@@ -111,7 +111,8 @@ const module = defineNuxtModule({
|
|
|
111
111
|
"date-fns",
|
|
112
112
|
"date-fns-tz",
|
|
113
113
|
"@vuepic/vue-datepicker",
|
|
114
|
-
"defu"
|
|
114
|
+
"defu",
|
|
115
|
+
"form-data"
|
|
115
116
|
]
|
|
116
117
|
},
|
|
117
118
|
_nuxt.options.build
|
|
@@ -119,7 +120,15 @@ const module = defineNuxtModule({
|
|
|
119
120
|
_nuxt.options.vite = defu(
|
|
120
121
|
{
|
|
121
122
|
optimizeDeps: {
|
|
122
|
-
include: [
|
|
123
|
+
include: [
|
|
124
|
+
..._nuxt.options.vite?.optimizeDeps?.include || [],
|
|
125
|
+
"@wdns/vue-code-block",
|
|
126
|
+
"valibot",
|
|
127
|
+
"@vee-validate/valibot",
|
|
128
|
+
"axios",
|
|
129
|
+
"tailwind-variants",
|
|
130
|
+
"@vueuse/core"
|
|
131
|
+
]
|
|
123
132
|
}
|
|
124
133
|
},
|
|
125
134
|
_nuxt.options.vite
|
|
@@ -169,7 +178,8 @@ const module = defineNuxtModule({
|
|
|
169
178
|
"default",
|
|
170
179
|
"commit",
|
|
171
180
|
"head",
|
|
172
|
-
"get"
|
|
181
|
+
"get",
|
|
182
|
+
"isEmpty"
|
|
173
183
|
];
|
|
174
184
|
for (const name2 of Object.keys(lodash)) {
|
|
175
185
|
if (!excludes.includes(name2)) {
|
|
@@ -23,11 +23,7 @@ defineProps({
|
|
|
23
23
|
const coreConfig = useCoreConfig();
|
|
24
24
|
useHead({
|
|
25
25
|
titleTemplate: (titleChunk) => {
|
|
26
|
-
return titleChunk ? `${titleChunk}
|
|
27
|
-
},
|
|
28
|
-
templateParams: {
|
|
29
|
-
siteName: coreConfig.site_name,
|
|
30
|
-
separator: "-"
|
|
26
|
+
return titleChunk ? `${titleChunk} - ${coreConfig.site_name}` : coreConfig.site_name;
|
|
31
27
|
}
|
|
32
28
|
});
|
|
33
29
|
</script>
|