@iservice365/layer-common 1.0.1 → 1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @iservice365/layer-common
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - e9ca53e: Add icones.js
8
+
9
+ ## 1.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - e7832f9: Remove nuxt signature pad
14
+
3
15
  ## 1.0.1
4
16
 
5
17
  ### Patch Changes
package/nuxt.config.ts CHANGED
@@ -4,7 +4,7 @@ export default defineNuxtConfig({
4
4
  ssr: false,
5
5
  devtools: { enabled: true },
6
6
  build: {
7
- transpile: ["vuetify", "nuxt-signature-pad"],
7
+ transpile: ["vuetify"],
8
8
  },
9
9
 
10
10
  runtimeConfig: {
@@ -39,7 +39,6 @@ export default defineNuxtConfig({
39
39
  config.plugins.push(vuetify({ autoImport: true }));
40
40
  });
41
41
  },
42
- "nuxt-signature-pad",
43
42
  ],
44
43
 
45
44
  vite: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iservice365/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "1.0.1",
5
+ "version": "1.0.3",
6
6
  "main": "./nuxt.config.ts",
7
7
  "scripts": {
8
8
  "dev": "nuxi dev .playground",
@@ -17,7 +17,6 @@
17
17
  "@nuxt/eslint": "latest",
18
18
  "eslint": "^9.14.0",
19
19
  "nuxt": "^3.13.2",
20
- "nuxt-signature-pad": "1.3.0",
21
20
  "typescript": "^5.8.3",
22
21
  "vite-plugin-vuetify": "^2.0.4",
23
22
  "vue": "latest",
@@ -3,6 +3,7 @@ import "@mdi/font/css/materialdesignicons.css";
3
3
 
4
4
  import "vuetify/styles";
5
5
  import { createVuetify } from "vuetify";
6
+ import { Icon } from "@iconify/vue";
6
7
 
7
8
  export default defineNuxtPlugin((app) => {
8
9
  const vuetify = createVuetify({
@@ -37,6 +38,14 @@ export default defineNuxtPlugin((app) => {
37
38
  },
38
39
  },
39
40
  },
41
+ icons: {
42
+ defaultSet: "iconify",
43
+ sets: {
44
+ iconify: {
45
+ component: (props: any) => h(Icon, { icon: props.icon }),
46
+ },
47
+ },
48
+ },
40
49
  });
41
50
 
42
51
  app.vueApp.use(vuetify);