@witchcraft/nuxt-electron 0.0.2 → 0.0.3

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.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "electron",
3
3
  "configKey": "electron",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -33,7 +33,7 @@
33
33
  )
34
34
  "
35
35
  >
36
- <i-octicon-pin-16/>
36
+ <iOcticonPin16/>
37
37
  </WIcon>
38
38
  </slot>
39
39
  </WButton>
@@ -41,6 +41,7 @@
41
41
 
42
42
  <script setup>
43
43
  import { twMerge } from "#imports";
44
+ import iOcticonPin16 from "~icons/octicon/pin-16";
44
45
  const emit = defineEmits(["action"]);
45
46
  const alwaysOnTop = defineModel({ type: Boolean, ...{ default: false } });
46
47
  if (import.meta.client && window?.electron?.on) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@witchcraft/nuxt-electron",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Nuxt module for working with electron.",
5
5
  "repository": "witchcraftjs/nuxt-electron",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  )
32
32
  "
33
33
  >
34
- <i-octicon-pin-16/>
34
+ <iOcticonPin16/>
35
35
  </WIcon>
36
36
  </slot>
37
37
  </WButton>
@@ -39,6 +39,7 @@
39
39
 
40
40
  <script lang="ts" setup>
41
41
  import { twMerge } from "#imports"
42
+ import iOcticonPin16 from "~icons/octicon/pin-16"
42
43
 
43
44
  const emit = defineEmits<{
44
45
  (e: "action", action: "togglePin"): void