@pinegrow/vite-plugin 3.0.0-beta.131 → 3.0.0-beta.133

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +17 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinegrow/vite-plugin",
3
- "version": "3.0.0-beta.131",
3
+ "version": "3.0.0-beta.133",
4
4
  "description": "Pinegrow Vite Plugin",
5
5
  "type": "module",
6
6
  "files": [
package/types.d.ts CHANGED
@@ -20,6 +20,23 @@ export interface LiveDesignerOptions {
20
20
  */
21
21
  devtoolsKey?: string
22
22
 
23
+ /**
24
+ * Preferred format for icons in icon-picker - https://github.com/antfu/icones/blob/main/src/utils/case.ts
25
+ * 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.
26
+ * * @default 'unocss' // For eg, i-material-symbols-home
27
+ *
28
+ */
29
+ iconPreferredCase?:
30
+ | 'unocss'
31
+ | 'bare'
32
+ | 'barePascal'
33
+ | 'iconify'
34
+ | 'dash'
35
+ | 'camel'
36
+ | 'pascal'
37
+ | 'component'
38
+ | 'componentKebab'
39
+
23
40
  /**
24
41
  * Router history modes - 'html5', 'hash'
25
42
  * @default 'html5'