@invopop/ui-icons 0.0.81 → 0.0.82

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.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { IconSource } from "./types.js";
2
- export { IconSource };
2
+ export type { IconSource };
3
3
  export declare const AddCircle: IconSource;
4
4
  export declare const Add: IconSource;
5
5
  export declare const Alert: IconSource;
package/dist/index.js CHANGED
@@ -1,4 +1,3 @@
1
- export { IconSource };
2
1
  export const AddCircle = { "default": { "a": { "fill": "none", "viewBox": "0 0 16 16" }, "path": [{ "fill": "currentColor", "d": "M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm0 1a6 6 0 1 0 0 12A6 6 0 0 0 8 2Zm0 2.5a.5.5 0 0 1 .5.5v2.505H11a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V8.505H5a.5.5 0 1 1 0-1h2.5V5a.5.5 0 0 1 .5-.5Z" }] } };
3
2
  export const Add = { "default": { "a": { "fill": "none", "viewBox": "0 0 16 16" }, "path": [{ "fill": "currentColor", "d": "M8 2.5a.5.5 0 0 1 .5.5v4.5H13a.5.5 0 0 1 0 1H8.5V13a.5.5 0 0 1-1 0V8.5H3a.5.5 0 0 1 0-1h4.5V3a.5.5 0 0 1 .5-.5Z" }] } };
4
3
  export const Alert = { "default": { "a": { "fill": "none", "viewBox": "0 0 16 16" }, "path": [{ "fill": "currentColor", "d": "M8 15.005a7 7 0 1 1 0-14 7 7 0 0 1 0 14Zm.5-6v-5h-1v5h1Zm-.5 3a.75.75 0 1 0-.002-1.502A.75.75 0 0 0 8 12.005Z" }] } };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@invopop/ui-icons",
3
3
  "description": "Icon Sources (based on template) built for @steeze-ui/icons",
4
- "version": "0.0.81",
4
+ "version": "0.0.82",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "npm run package && vite build",
@@ -12,7 +12,7 @@
12
12
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
13
13
  "lint": "prettier --plugin-search-dir . --check .",
14
14
  "format": "prettier --plugin-search-dir . --write .",
15
- "build:icons": "node build.js"
15
+ "build:icons": "node build.js && node fix-exports.js"
16
16
  },
17
17
  "svelte": "./dist/index.js",
18
18
  "types": "./dist/index.d.ts",