@tabler/icons-svelte 3.28.0 → 3.28.1

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.
@@ -3,11 +3,11 @@ import type { IconNode } from './types';
3
3
  declare const __propDef: {
4
4
  props: {
5
5
  [x: string]: any;
6
- type: 'outline' | 'filled';
6
+ type: "outline" | "filled";
7
7
  name: string;
8
8
  color?: string | undefined;
9
- size?: string | number | undefined;
10
- stroke?: string | number | undefined;
9
+ size?: number | string | undefined;
10
+ stroke?: number | string | undefined;
11
11
  iconNode: IconNode;
12
12
  };
13
13
  events: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabler/icons-svelte",
3
- "version": "3.28.0",
3
+ "version": "3.28.1",
4
4
  "license": "MIT",
5
5
  "author": "codecalm",
6
6
  "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
@@ -39,17 +39,8 @@
39
39
  "files": [
40
40
  "dist"
41
41
  ],
42
- "scripts": {
43
- "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:package",
44
- "build:icons": "node build.mjs",
45
- "build:package": "svelte-package --input ./src",
46
- "copy:license": "cp ../../LICENSE ./LICENSE",
47
- "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
48
- "test": "vitest run",
49
- "imports-check": "attw $(npm pack)"
50
- },
51
42
  "dependencies": {
52
- "@tabler/icons": "workspace:*"
43
+ "@tabler/icons": "3.28.1"
53
44
  },
54
45
  "devDependencies": {
55
46
  "@sveltejs/package": "^2.2.7",
@@ -62,5 +53,14 @@
62
53
  },
63
54
  "peerDependencies": {
64
55
  "svelte": ">=3 <6 || >=5.0.0-next.0"
56
+ },
57
+ "scripts": {
58
+ "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:package",
59
+ "build:icons": "node build.mjs",
60
+ "build:package": "svelte-package --input ./src",
61
+ "copy:license": "cp ../../LICENSE ./LICENSE",
62
+ "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
63
+ "test": "vitest run",
64
+ "imports-check": "attw $(npm pack)"
65
65
  }
66
- }
66
+ }