@maz-ui/nuxt 4.4.0-beta.0 → 4.5.0
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 +4 -1
- package/package.json +5 -5
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -14,6 +14,7 @@ const COMPONENT_NAMES = {
|
|
|
14
14
|
MazBadge: true,
|
|
15
15
|
MazBottomSheet: true,
|
|
16
16
|
MazBtn: true,
|
|
17
|
+
MazBtnGroup: true,
|
|
17
18
|
MazCard: true,
|
|
18
19
|
MazCardSpotlight: true,
|
|
19
20
|
MazCarousel: true,
|
|
@@ -44,9 +45,11 @@ const COMPONENT_NAMES = {
|
|
|
44
45
|
MazPullToRefresh: true,
|
|
45
46
|
MazRadio: true,
|
|
46
47
|
MazRadioButtons: true,
|
|
48
|
+
MazReadMore: true,
|
|
47
49
|
MazReadingProgressBar: true,
|
|
48
50
|
MazSelect: true,
|
|
49
51
|
MazSelectCountry: true,
|
|
52
|
+
MazSkeleton: true,
|
|
50
53
|
MazSlider: true,
|
|
51
54
|
MazSpinner: true,
|
|
52
55
|
MazStepper: true,
|
|
@@ -159,7 +162,7 @@ const module$1 = defineNuxtModule({
|
|
|
159
162
|
);
|
|
160
163
|
nuxt.options.runtimeConfig.public.mazUi = moduleOptions;
|
|
161
164
|
if (moduleOptions.css.injectMainCss) {
|
|
162
|
-
nuxt.options.css
|
|
165
|
+
nuxt.options.css.unshift("maz-ui/dist/css/main.css");
|
|
163
166
|
}
|
|
164
167
|
addPlugin(resolve(_dirname, "./runtime/plugins/theme"));
|
|
165
168
|
addPlugin(resolve(_dirname, "./runtime/plugins/translations"));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maz-ui/nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.5.0",
|
|
5
5
|
"description": "Nuxt module for Maz-UI",
|
|
6
6
|
"author": "Louis Mazel <me@loicmazuel.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@nuxt/kit": "^4.2.2",
|
|
51
51
|
"defu": "^6.1.4",
|
|
52
|
-
"@maz-ui/themes": "4.
|
|
53
|
-
"maz-ui": "4.
|
|
54
|
-
"
|
|
52
|
+
"@maz-ui/themes": "4.4.0",
|
|
53
|
+
"@maz-ui/translations": "4.5.0",
|
|
54
|
+
"maz-ui": "4.5.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@nuxt/devtools": "^3.1.1",
|
|
58
58
|
"@nuxt/module-builder": "^1.0.2",
|
|
59
59
|
"@nuxt/schema": "^4.2.2",
|
|
60
|
-
"@nuxt/test-utils": "^3.
|
|
60
|
+
"@nuxt/test-utils": "^3.23.0",
|
|
61
61
|
"nuxt": "^4.2.2"
|
|
62
62
|
},
|
|
63
63
|
"lint-staged": {
|