@maz-ui/nuxt 4.0.0-beta.35 → 4.0.0-beta.37
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 +1 -2
- package/package.json +3 -3
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -135,7 +135,6 @@ function addMazUiComposableImport({
|
|
|
135
135
|
addImports({
|
|
136
136
|
from,
|
|
137
137
|
name,
|
|
138
|
-
typeFrom: `maz-ui/composables`,
|
|
139
138
|
as: `use${capitalize(prefix)}${name.replace("use", "")}`
|
|
140
139
|
});
|
|
141
140
|
}
|
|
@@ -227,7 +226,7 @@ const module = defineNuxtModule({
|
|
|
227
226
|
for (const composable of allowedMazUiComposables) {
|
|
228
227
|
addMazUiComposableImport({
|
|
229
228
|
name: composable,
|
|
230
|
-
from: `maz-ui/composables`,
|
|
229
|
+
from: `maz-ui/composables/${composable}`,
|
|
231
230
|
prefix: autoImportPrefix
|
|
232
231
|
});
|
|
233
232
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maz-ui/nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.0.0-beta.
|
|
4
|
+
"version": "4.0.0-beta.37",
|
|
5
5
|
"description": "Nuxt module for Maz-UI",
|
|
6
6
|
"author": "Louis Mazel <me@loicmazuel.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@maz-ui/translations": "4.0.0-beta.35",
|
|
60
60
|
"@nuxt/kit": "^4.0.3",
|
|
61
61
|
"defu": "^6.1.4",
|
|
62
|
-
"maz-ui": "4.0.0-beta.
|
|
62
|
+
"maz-ui": "4.0.0-beta.37"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@nuxt/devtools": "^2.6.2",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"lint-staged": {
|
|
74
74
|
"*.{js,ts,mjs,mts,cjs,md,yml,json}": "cross-env NODE_ENV=production eslint --fix"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "4ba58cdf19ea8b450292a3c9a8136e51d3a15857"
|
|
77
77
|
}
|