@pinegrow/nuxt-module 3.0.0-beta.121 → 3.0.0-beta.123
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/chunks/live-designer.mjs +1 -0
- package/dist/module.d.ts +9 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -42
- package/dist/types.d.ts +1 -0
- package/package.json +2 -2
package/dist/module.d.ts
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
-
import { PinegrowVitePlugin } from '@pinegrow/vite-plugin';
|
|
3
2
|
|
|
4
|
-
declare const _default: _nuxt_schema.NuxtModule<
|
|
3
|
+
declare const _default: _nuxt_schema.NuxtModule<{
|
|
4
|
+
liveDesigner: {
|
|
5
|
+
plugins: never[];
|
|
6
|
+
tailwindcss: {
|
|
7
|
+
configPath: string;
|
|
8
|
+
cssPath: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
}>;
|
|
5
12
|
|
|
6
13
|
export { _default as default };
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -43,50 +43,9 @@ const module = defineNuxtModule({
|
|
|
43
43
|
liveDesigner: {
|
|
44
44
|
// repoRoot: './',
|
|
45
45
|
// configPath: './',
|
|
46
|
-
plugins: [],
|
|
47
46
|
// devtoolsKey: 'devtools',
|
|
48
|
-
// vscodeTunnelUrl: 'https://vscode.dev/tunnel/hostname',
|
|
49
|
-
// iconsets: [],
|
|
50
47
|
// routerHistoryMode: 'html5',
|
|
51
|
-
|
|
52
|
-
// dependencies: {},
|
|
53
|
-
// devDependencies: {},
|
|
54
|
-
// },
|
|
55
|
-
customTypes: {
|
|
56
|
-
// To apply type overrides to a specific component (overrides above default fn),
|
|
57
|
-
// ComponentName: { prop: { customType: 'icon' } },
|
|
58
|
-
// VRating: {
|
|
59
|
-
// ripple: {
|
|
60
|
-
// customType: "boolean",
|
|
61
|
-
// },
|
|
62
|
-
// },
|
|
63
|
-
// VSelect: {
|
|
64
|
-
// variant: {
|
|
65
|
-
// customType: 'select',
|
|
66
|
-
// options: ['plain', 'outlined', 'underlined', 'solo'],
|
|
67
|
-
// default: ''
|
|
68
|
-
// },
|
|
69
|
-
// density: {
|
|
70
|
-
// customType: 'select',
|
|
71
|
-
// options: ['default', 'compact', 'comfortable']
|
|
72
|
-
// },
|
|
73
|
-
// disabled: {
|
|
74
|
-
// customType: 'boolean'
|
|
75
|
-
// },
|
|
76
|
-
// appendIcon: {
|
|
77
|
-
// customType: 'icon'
|
|
78
|
-
// },
|
|
79
|
-
// }
|
|
80
|
-
// To apply type overrides to all components,
|
|
81
|
-
// all: { prop: { customType: 'icon' } },
|
|
82
|
-
defaultTypes: {
|
|
83
|
-
// density: {
|
|
84
|
-
// customType: "select",
|
|
85
|
-
// // add options when customType is 'select'
|
|
86
|
-
// options: ["default", "compact", "comfortable"],
|
|
87
|
-
// },
|
|
88
|
-
}
|
|
89
|
-
},
|
|
48
|
+
plugins: [],
|
|
90
49
|
tailwindcss: {
|
|
91
50
|
configPath: "@/tailwind.config.js",
|
|
92
51
|
cssPath: "@/assets/css/tailwind.css"
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinegrow/nuxt-module",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.123",
|
|
4
4
|
"description": "Pinegrow Nuxt Module",
|
|
5
5
|
"author": "Pinegrow (http://pinegrow.com/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@nuxt/kit": "latest",
|
|
40
|
-
"@pinegrow/vite-plugin": "3.0.0-beta.
|
|
40
|
+
"@pinegrow/vite-plugin": "3.0.0-beta.125"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@nuxt/module-builder": "latest",
|