@pinegrow/nuxt-module 3.0.16 → 3.0.17
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.d.mts +15 -0
- package/dist/module.d.ts +1 -1
- package/dist/module.json +1 -1
- package/dist/types.d.mts +7 -0
- package/package.json +2 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
+
import { LiveDesignerOptions } from '@pinegrow/vite-plugin';
|
|
3
|
+
|
|
4
|
+
interface PinegrowNuxtModuleOptions {
|
|
5
|
+
/**
|
|
6
|
+
* Pinegrow Live Designer options
|
|
7
|
+
* For details, check https://vuedesigner.com
|
|
8
|
+
*/
|
|
9
|
+
liveDesigner?: {
|
|
10
|
+
[key in string]?: any;
|
|
11
|
+
} & LiveDesignerOptions;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: _nuxt_schema.NuxtModule<PinegrowNuxtModuleOptions>;
|
|
14
|
+
|
|
15
|
+
export { type PinegrowNuxtModuleOptions, _default as default };
|
package/dist/module.d.ts
CHANGED
package/dist/module.json
CHANGED
package/dist/types.d.mts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinegrow/nuxt-module",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.17",
|
|
4
4
|
"description": "Pinegrow Nuxt Module",
|
|
5
5
|
"author": "Pinegrow (http://pinegrow.com/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@nuxt/kit": "latest",
|
|
45
|
-
"@pinegrow/vite-plugin": "3.0.
|
|
45
|
+
"@pinegrow/vite-plugin": "3.0.17"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@nuxt/module-builder": "latest",
|