@pinegrow/vite-plugin 3.0.0-beta.143 → 3.0.0-beta.145
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/README.md +105 -5
- package/dist/index.cjs +1 -1
- package/package.json +3 -6
- package/types.d.ts +15 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinegrow/vite-plugin",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.145",
|
|
4
4
|
"description": "Pinegrow Vite Plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"types": "./types.d.ts",
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
|
+
"types": "./types.d.ts",
|
|
15
16
|
"import": "./dist/index.cjs",
|
|
16
|
-
"require": "./dist/index.cjs"
|
|
17
|
-
"types": "./types.d.ts"
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
18
18
|
},
|
|
19
19
|
"./dev": {
|
|
20
20
|
"import": "./src/index.js",
|
|
@@ -22,9 +22,6 @@
|
|
|
22
22
|
},
|
|
23
23
|
"./vue": {
|
|
24
24
|
"import": "./dist/vue/index.js"
|
|
25
|
-
},
|
|
26
|
-
"./pgia": {
|
|
27
|
-
"import": "./dist/pgia/index.js"
|
|
28
25
|
}
|
|
29
26
|
},
|
|
30
27
|
"keywords": [
|
package/types.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// https://pinegrow.com/vue-designer
|
|
2
|
+
|
|
1
3
|
import type { PinegrowTailwindCSSModuleOptions } from '@pinegrow/tailwindcss-plugin'
|
|
2
4
|
import type { PluginOption as VitePluginOption } from 'vite'
|
|
3
5
|
|
|
@@ -20,46 +22,50 @@ interface PinegrowExternalPlugin {
|
|
|
20
22
|
* Must return an absolute path
|
|
21
23
|
*
|
|
22
24
|
* Use path functions according to the project module type (commonjs/module)
|
|
23
|
-
* For eg, path.resolve(__dirname, '../
|
|
25
|
+
* For eg, path.resolve(__dirname, '../my-awesome-lib/web-types.json')
|
|
24
26
|
* (or)
|
|
25
27
|
* import { fileURLToPath, URL } from 'node:url'
|
|
26
28
|
* fileURLToPath(new URL('./relative-path/web-types.json', import.meta.url)) // web-types of component library
|
|
27
|
-
* fileURLToPath(new URL('./
|
|
29
|
+
* fileURLToPath(new URL('./my-awesome-lib/web-types.json', import.meta.url)) // pinegrow commonjs plugin
|
|
28
30
|
*/
|
|
29
31
|
pluginPath: string
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
export interface LiveDesignerOptions {
|
|
33
35
|
/**
|
|
34
|
-
*
|
|
36
|
+
* When your project is part of a mono-repo
|
|
37
|
+
* Absolute path to the root of a monorepo (or)
|
|
35
38
|
* Relative path from the project root to the root of a monorepo.
|
|
36
39
|
*/
|
|
37
40
|
repoRoot?: string
|
|
38
41
|
|
|
39
42
|
/**
|
|
40
|
-
*
|
|
43
|
+
* When using a custom config file (for eg, vite-dev.config.js)
|
|
44
|
+
* Absolute path to a custom config file (for eg, vite-dev.config.js) (or)
|
|
41
45
|
* Relative path from the project root to a custom config file (for eg, vite-dev.config.js).
|
|
42
46
|
*/
|
|
43
47
|
configPath?: string
|
|
44
48
|
|
|
45
49
|
/**
|
|
46
50
|
* Key of the devtools exposed on the window object.
|
|
47
|
-
* For instructions, check Config Panel in Vue Designer
|
|
51
|
+
* For instructions, check Config Panel > Devtools tab in Vue Designer
|
|
48
52
|
*/
|
|
49
53
|
devtoolsKey?: string
|
|
50
54
|
|
|
51
55
|
/**
|
|
52
56
|
* Preferred format for icons in icon-picker - https://github.com/antfu/icones/blob/main/src/utils/case.ts
|
|
53
|
-
* To see the different formats, go to https://icones.js.org/collection/mdi, turn off name copying mode if active, select an icon. In the bottom drawer, next to the icon-name & copy icon, there is dropup icon. Click the drop-up to see the different formats.
|
|
54
57
|
* * @default 'unocss' // For eg, i-material-symbols-home
|
|
58
|
+
* * When using Nuxt-Icon, you need to change this to 'iconify'
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
iconPreferredCase?:
|
|
58
62
|
| 'unocss'
|
|
63
|
+
| 'iconify'
|
|
59
64
|
| 'bare'
|
|
60
65
|
| 'barePascal'
|
|
61
|
-
| 'iconify'
|
|
62
66
|
| 'dash'
|
|
67
|
+
| 'slash'
|
|
68
|
+
| 'doubleHyphen'
|
|
63
69
|
| 'camel'
|
|
64
70
|
| 'pascal'
|
|
65
71
|
| 'component'
|
|
@@ -70,7 +76,7 @@ export interface LiveDesignerOptions {
|
|
|
70
76
|
* @default 'html5'
|
|
71
77
|
*/
|
|
72
78
|
|
|
73
|
-
routerHistoryMode?: string
|
|
79
|
+
routerHistoryMode?: string
|
|
74
80
|
|
|
75
81
|
/**
|
|
76
82
|
* Array of Pinegrow plugins (npm package names)
|
|
@@ -80,6 +86,7 @@ export interface LiveDesignerOptions {
|
|
|
80
86
|
|
|
81
87
|
/**
|
|
82
88
|
* Pinegrow TailwindCSS plugin options
|
|
89
|
+
* For options, refer to https://www.npmjs.com/package/@pinegrow/tailwindcss-plugin
|
|
83
90
|
*/
|
|
84
91
|
tailwindcss?: PinegrowTailwindCSSModuleOptions
|
|
85
92
|
}
|
|
@@ -87,7 +94,6 @@ export interface LiveDesignerOptions {
|
|
|
87
94
|
interface PinegrowVitePlugin<VitePluginOption> {
|
|
88
95
|
/**
|
|
89
96
|
* Pinegrow Live Designer options
|
|
90
|
-
* For details, check https://pinegrow.com/vue-designer
|
|
91
97
|
*/
|
|
92
98
|
liveDesigner?: {
|
|
93
99
|
[key in string]?: any
|