@hoci/core 0.5.2 → 0.5.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/index.cjs CHANGED
@@ -538,7 +538,7 @@ const useIcon = shared.defineHookComponent({
538
538
  });
539
539
  const staticStyle = vue.computed(() => {
540
540
  return {
541
- "--icon-url": `url('${props.src}')`
541
+ "--icon-url": `url("${props.src}")`
542
542
  };
543
543
  });
544
544
  const style = vue.computed(() => {
package/dist/index.mjs CHANGED
@@ -537,7 +537,7 @@ const useIcon = defineHookComponent({
537
537
  });
538
538
  const staticStyle = computed(() => {
539
539
  return {
540
- "--icon-url": `url('${props.src}')`
540
+ "--icon-url": `url("${props.src}")`
541
541
  };
542
542
  });
543
543
  const style = computed(() => {
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@hoci/core",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "",
5
- "author": "chizuki",
5
+ "author": "Chizuki <chizukicn@outlook.com>",
6
6
  "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/chizukicn/hoci",
10
+ "directory": "packages/core"
11
+ },
7
12
  "exports": {
8
13
  ".": {
9
14
  "types": "./dist/index.d.ts",
@@ -25,7 +30,7 @@
25
30
  "@vueuse/core": ">=10.5.0",
26
31
  "maybe-types": "^0.1.0",
27
32
  "tslx": "^0.1.1",
28
- "@hoci/shared": "0.5.2"
33
+ "@hoci/shared": "0.5.3"
29
34
  },
30
35
  "scripts": {
31
36
  "build": "unbuild",