@pinegrow/nuxt-module 3.0.0-beta.124 → 3.0.0-beta.128
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.ts +12 -10
- package/dist/module.json +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
package/dist/module.d.ts
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
+
import { LiveDesignerOptions } from '@pinegrow/vite-plugin';
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
};
|
|
11
|
-
}
|
|
4
|
+
interface PinegrowNuxtModuleOptions {
|
|
5
|
+
/**
|
|
6
|
+
* Pinegrow Live Designer options
|
|
7
|
+
* For details, check https://pinegrow.com/vue-designer
|
|
8
|
+
*/
|
|
9
|
+
liveDesigner?: {
|
|
10
|
+
[key in string]?: any;
|
|
11
|
+
} & LiveDesignerOptions;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: _nuxt_schema.NuxtModule<PinegrowNuxtModuleOptions>;
|
|
12
14
|
|
|
13
|
-
export { _default as default };
|
|
15
|
+
export { PinegrowNuxtModuleOptions, _default as default };
|
package/dist/module.json
CHANGED
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.128",
|
|
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.128"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@nuxt/module-builder": "latest",
|