@kamod-ch/icons 1.0.0
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/ATTRIBUTION.md +35 -0
- package/LICENSE +21 -0
- package/README.md +194 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +24090 -0
- package/dist/index.js.map +1 -0
- package/dist/meta.d.ts +94 -0
- package/dist/meta.js +88 -0
- package/dist/meta.js.map +1 -0
- package/dist/sets/heroicons/outline/index.d.ts +652 -0
- package/dist/sets/heroicons/outline/index.js +8763 -0
- package/dist/sets/heroicons/outline/index.js.map +1 -0
- package/dist/sets/heroicons/solid/index.d.ts +652 -0
- package/dist/sets/heroicons/solid/index.js +8509 -0
- package/dist/sets/heroicons/solid/index.js.map +1 -0
- package/dist/sets/iconoir/regular/index.d.ts +2770 -0
- package/dist/sets/iconoir/regular/index.js +38439 -0
- package/dist/sets/iconoir/regular/index.js.map +1 -0
- package/dist/sets/iconoir/solid/index.d.ts +580 -0
- package/dist/sets/iconoir/solid/index.js +7663 -0
- package/dist/sets/iconoir/solid/index.js.map +1 -0
- package/dist/sets/lucide/index.d.ts +3492 -0
- package/dist/sets/lucide/index.js +48652 -0
- package/dist/sets/lucide/index.js.map +1 -0
- package/dist/sets/shadcn/index.d.ts +1758 -0
- package/dist/sets/shadcn/index.js +24090 -0
- package/dist/sets/shadcn/index.js.map +1 -0
- package/dist/sets/tabler/filled/index.d.ts +2110 -0
- package/dist/sets/tabler/filled/index.js +27476 -0
- package/dist/sets/tabler/filled/index.js.map +1 -0
- package/dist/sets/tabler/outline/index.d.ts +10190 -0
- package/dist/sets/tabler/outline/index.js +140037 -0
- package/dist/sets/tabler/outline/index.js.map +1 -0
- package/dist/types-DQL76FNw.d.ts +8 -0
- package/icon-sources.json +85 -0
- package/package.json +125 -0
package/dist/meta.d.ts
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
type IconSourceUpstream = {
|
|
2
|
+
type: "npm";
|
|
3
|
+
package: string;
|
|
4
|
+
version: string;
|
|
5
|
+
versionPackage?: string;
|
|
6
|
+
repository: string;
|
|
7
|
+
license: string;
|
|
8
|
+
note?: string;
|
|
9
|
+
};
|
|
10
|
+
type IconSourceSet = {
|
|
11
|
+
label: string;
|
|
12
|
+
exportPath: string;
|
|
13
|
+
variants?: string[];
|
|
14
|
+
upstream: IconSourceUpstream;
|
|
15
|
+
syncedAt: string | null;
|
|
16
|
+
iconCount: number;
|
|
17
|
+
};
|
|
18
|
+
declare const iconSources: {
|
|
19
|
+
readonly shadcn: {
|
|
20
|
+
readonly label: "shadcn/ui";
|
|
21
|
+
readonly exportPath: "@kamod/icons/shadcn";
|
|
22
|
+
readonly upstream: {
|
|
23
|
+
readonly type: "npm";
|
|
24
|
+
readonly package: "lucide-static";
|
|
25
|
+
readonly versionPackage: "lucide";
|
|
26
|
+
readonly version: "1.23.0";
|
|
27
|
+
readonly repository: "https://github.com/lucide-icons/lucide";
|
|
28
|
+
readonly license: "ISC";
|
|
29
|
+
readonly note: "Lucide subset with legacy icon names used by shadcn/ui. There is no separate shadcn icons npm package.";
|
|
30
|
+
};
|
|
31
|
+
readonly syncedAt: "2026-07-03";
|
|
32
|
+
readonly iconCount: 877;
|
|
33
|
+
};
|
|
34
|
+
readonly lucide: {
|
|
35
|
+
readonly label: "Lucide";
|
|
36
|
+
readonly exportPath: "@kamod/icons/lucide";
|
|
37
|
+
readonly upstream: {
|
|
38
|
+
readonly type: "npm";
|
|
39
|
+
readonly package: "lucide-static";
|
|
40
|
+
readonly versionPackage: "lucide";
|
|
41
|
+
readonly version: "1.23.0";
|
|
42
|
+
readonly repository: "https://github.com/lucide-icons/lucide";
|
|
43
|
+
readonly license: "ISC";
|
|
44
|
+
};
|
|
45
|
+
readonly syncedAt: "2026-07-03";
|
|
46
|
+
readonly iconCount: 1994;
|
|
47
|
+
};
|
|
48
|
+
readonly heroicons: {
|
|
49
|
+
readonly label: "Heroicons";
|
|
50
|
+
readonly exportPath: "@kamod/icons/heroicons/{variant}";
|
|
51
|
+
readonly variants: ["outline", "solid"];
|
|
52
|
+
readonly upstream: {
|
|
53
|
+
readonly type: "npm";
|
|
54
|
+
readonly package: "heroicons";
|
|
55
|
+
readonly versionPackage: "@heroicons/react";
|
|
56
|
+
readonly version: "2.2.0";
|
|
57
|
+
readonly repository: "https://github.com/tailwindlabs/heroicons";
|
|
58
|
+
readonly license: "MIT";
|
|
59
|
+
};
|
|
60
|
+
readonly syncedAt: "2026-07-03";
|
|
61
|
+
readonly iconCount: 648;
|
|
62
|
+
};
|
|
63
|
+
readonly tabler: {
|
|
64
|
+
readonly label: "Tabler Icons";
|
|
65
|
+
readonly exportPath: "@kamod/icons/tabler/{variant}";
|
|
66
|
+
readonly variants: ["outline", "filled"];
|
|
67
|
+
readonly upstream: {
|
|
68
|
+
readonly type: "npm";
|
|
69
|
+
readonly package: "@tabler/icons";
|
|
70
|
+
readonly version: "3.44.0";
|
|
71
|
+
readonly repository: "https://github.com/tabler/tabler-icons";
|
|
72
|
+
readonly license: "MIT";
|
|
73
|
+
};
|
|
74
|
+
readonly syncedAt: "2026-07-03";
|
|
75
|
+
readonly iconCount: 6146;
|
|
76
|
+
};
|
|
77
|
+
readonly iconoir: {
|
|
78
|
+
readonly label: "Iconoir";
|
|
79
|
+
readonly exportPath: "@kamod/icons/iconoir/{variant}";
|
|
80
|
+
readonly variants: ["regular", "solid"];
|
|
81
|
+
readonly upstream: {
|
|
82
|
+
readonly type: "npm";
|
|
83
|
+
readonly package: "iconoir";
|
|
84
|
+
readonly version: "7.11.1";
|
|
85
|
+
readonly repository: "https://github.com/iconoir-icons/iconoir";
|
|
86
|
+
readonly license: "MIT";
|
|
87
|
+
};
|
|
88
|
+
readonly syncedAt: "2026-07-03";
|
|
89
|
+
readonly iconCount: 1671;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
type IconSourceName = keyof typeof iconSources;
|
|
93
|
+
|
|
94
|
+
export { type IconSourceName, type IconSourceSet, type IconSourceUpstream, iconSources };
|
package/dist/meta.js
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
// src/meta.ts
|
|
2
|
+
var iconSources = {
|
|
3
|
+
"shadcn": {
|
|
4
|
+
"label": "shadcn/ui",
|
|
5
|
+
"exportPath": "@kamod/icons/shadcn",
|
|
6
|
+
"upstream": {
|
|
7
|
+
"type": "npm",
|
|
8
|
+
"package": "lucide-static",
|
|
9
|
+
"versionPackage": "lucide",
|
|
10
|
+
"version": "1.23.0",
|
|
11
|
+
"repository": "https://github.com/lucide-icons/lucide",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"note": "Lucide subset with legacy icon names used by shadcn/ui. There is no separate shadcn icons npm package."
|
|
14
|
+
},
|
|
15
|
+
"syncedAt": "2026-07-03",
|
|
16
|
+
"iconCount": 877
|
|
17
|
+
},
|
|
18
|
+
"lucide": {
|
|
19
|
+
"label": "Lucide",
|
|
20
|
+
"exportPath": "@kamod/icons/lucide",
|
|
21
|
+
"upstream": {
|
|
22
|
+
"type": "npm",
|
|
23
|
+
"package": "lucide-static",
|
|
24
|
+
"versionPackage": "lucide",
|
|
25
|
+
"version": "1.23.0",
|
|
26
|
+
"repository": "https://github.com/lucide-icons/lucide",
|
|
27
|
+
"license": "ISC"
|
|
28
|
+
},
|
|
29
|
+
"syncedAt": "2026-07-03",
|
|
30
|
+
"iconCount": 1994
|
|
31
|
+
},
|
|
32
|
+
"heroicons": {
|
|
33
|
+
"label": "Heroicons",
|
|
34
|
+
"exportPath": "@kamod/icons/heroicons/{variant}",
|
|
35
|
+
"variants": [
|
|
36
|
+
"outline",
|
|
37
|
+
"solid"
|
|
38
|
+
],
|
|
39
|
+
"upstream": {
|
|
40
|
+
"type": "npm",
|
|
41
|
+
"package": "heroicons",
|
|
42
|
+
"versionPackage": "@heroicons/react",
|
|
43
|
+
"version": "2.2.0",
|
|
44
|
+
"repository": "https://github.com/tailwindlabs/heroicons",
|
|
45
|
+
"license": "MIT"
|
|
46
|
+
},
|
|
47
|
+
"syncedAt": "2026-07-03",
|
|
48
|
+
"iconCount": 648
|
|
49
|
+
},
|
|
50
|
+
"tabler": {
|
|
51
|
+
"label": "Tabler Icons",
|
|
52
|
+
"exportPath": "@kamod/icons/tabler/{variant}",
|
|
53
|
+
"variants": [
|
|
54
|
+
"outline",
|
|
55
|
+
"filled"
|
|
56
|
+
],
|
|
57
|
+
"upstream": {
|
|
58
|
+
"type": "npm",
|
|
59
|
+
"package": "@tabler/icons",
|
|
60
|
+
"version": "3.44.0",
|
|
61
|
+
"repository": "https://github.com/tabler/tabler-icons",
|
|
62
|
+
"license": "MIT"
|
|
63
|
+
},
|
|
64
|
+
"syncedAt": "2026-07-03",
|
|
65
|
+
"iconCount": 6146
|
|
66
|
+
},
|
|
67
|
+
"iconoir": {
|
|
68
|
+
"label": "Iconoir",
|
|
69
|
+
"exportPath": "@kamod/icons/iconoir/{variant}",
|
|
70
|
+
"variants": [
|
|
71
|
+
"regular",
|
|
72
|
+
"solid"
|
|
73
|
+
],
|
|
74
|
+
"upstream": {
|
|
75
|
+
"type": "npm",
|
|
76
|
+
"package": "iconoir",
|
|
77
|
+
"version": "7.11.1",
|
|
78
|
+
"repository": "https://github.com/iconoir-icons/iconoir",
|
|
79
|
+
"license": "MIT"
|
|
80
|
+
},
|
|
81
|
+
"syncedAt": "2026-07-03",
|
|
82
|
+
"iconCount": 1671
|
|
83
|
+
}
|
|
84
|
+
};
|
|
85
|
+
export {
|
|
86
|
+
iconSources
|
|
87
|
+
};
|
|
88
|
+
//# sourceMappingURL=meta.js.map
|
package/dist/meta.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/meta.ts"],"sourcesContent":["/* eslint-disable */\n// Generated by scripts/generate-meta.ts. Do not edit manually.\n\nexport type IconSourceUpstream = {\n type: \"npm\";\n package: string;\n version: string;\n versionPackage?: string;\n repository: string;\n license: string;\n note?: string;\n};\n\nexport type IconSourceSet = {\n label: string;\n exportPath: string;\n variants?: string[];\n upstream: IconSourceUpstream;\n syncedAt: string | null;\n iconCount: number;\n};\n\nexport const iconSources = {\n \"shadcn\": {\n \"label\": \"shadcn/ui\",\n \"exportPath\": \"@kamod/icons/shadcn\",\n \"upstream\": {\n \"type\": \"npm\",\n \"package\": \"lucide-static\",\n \"versionPackage\": \"lucide\",\n \"version\": \"1.23.0\",\n \"repository\": \"https://github.com/lucide-icons/lucide\",\n \"license\": \"ISC\",\n \"note\": \"Lucide subset with legacy icon names used by shadcn/ui. There is no separate shadcn icons npm package.\"\n },\n \"syncedAt\": \"2026-07-03\",\n \"iconCount\": 877\n },\n \"lucide\": {\n \"label\": \"Lucide\",\n \"exportPath\": \"@kamod/icons/lucide\",\n \"upstream\": {\n \"type\": \"npm\",\n \"package\": \"lucide-static\",\n \"versionPackage\": \"lucide\",\n \"version\": \"1.23.0\",\n \"repository\": \"https://github.com/lucide-icons/lucide\",\n \"license\": \"ISC\"\n },\n \"syncedAt\": \"2026-07-03\",\n \"iconCount\": 1994\n },\n \"heroicons\": {\n \"label\": \"Heroicons\",\n \"exportPath\": \"@kamod/icons/heroicons/{variant}\",\n \"variants\": [\n \"outline\",\n \"solid\"\n ],\n \"upstream\": {\n \"type\": \"npm\",\n \"package\": \"heroicons\",\n \"versionPackage\": \"@heroicons/react\",\n \"version\": \"2.2.0\",\n \"repository\": \"https://github.com/tailwindlabs/heroicons\",\n \"license\": \"MIT\"\n },\n \"syncedAt\": \"2026-07-03\",\n \"iconCount\": 648\n },\n \"tabler\": {\n \"label\": \"Tabler Icons\",\n \"exportPath\": \"@kamod/icons/tabler/{variant}\",\n \"variants\": [\n \"outline\",\n \"filled\"\n ],\n \"upstream\": {\n \"type\": \"npm\",\n \"package\": \"@tabler/icons\",\n \"version\": \"3.44.0\",\n \"repository\": \"https://github.com/tabler/tabler-icons\",\n \"license\": \"MIT\"\n },\n \"syncedAt\": \"2026-07-03\",\n \"iconCount\": 6146\n },\n \"iconoir\": {\n \"label\": \"Iconoir\",\n \"exportPath\": \"@kamod/icons/iconoir/{variant}\",\n \"variants\": [\n \"regular\",\n \"solid\"\n ],\n \"upstream\": {\n \"type\": \"npm\",\n \"package\": \"iconoir\",\n \"version\": \"7.11.1\",\n \"repository\": \"https://github.com/iconoir-icons/iconoir\",\n \"license\": \"MIT\"\n },\n \"syncedAt\": \"2026-07-03\",\n \"iconCount\": 1671\n }\n} as const satisfies Record<string, IconSourceSet>;\n\nexport type IconSourceName = keyof typeof iconSources;\n"],"mappings":";AAsBO,IAAM,cAAc;AAAA,EACzB,UAAU;AAAA,IACR,SAAS;AAAA,IACT,cAAc;AAAA,IACd,YAAY;AAAA,MACV,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,kBAAkB;AAAA,MAClB,WAAW;AAAA,MACX,cAAc;AAAA,MACd,WAAW;AAAA,MACX,QAAQ;AAAA,IACV;AAAA,IACA,YAAY;AAAA,IACZ,aAAa;AAAA,EACf;AAAA,EACA,UAAU;AAAA,IACR,SAAS;AAAA,IACT,cAAc;AAAA,IACd,YAAY;AAAA,MACV,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,kBAAkB;AAAA,MAClB,WAAW;AAAA,MACX,cAAc;AAAA,MACd,WAAW;AAAA,IACb;AAAA,IACA,YAAY;AAAA,IACZ,aAAa;AAAA,EACf;AAAA,EACA,aAAa;AAAA,IACX,SAAS;AAAA,IACT,cAAc;AAAA,IACd,YAAY;AAAA,MACV;AAAA,MACA;AAAA,IACF;AAAA,IACA,YAAY;AAAA,MACV,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,kBAAkB;AAAA,MAClB,WAAW;AAAA,MACX,cAAc;AAAA,MACd,WAAW;AAAA,IACb;AAAA,IACA,YAAY;AAAA,IACZ,aAAa;AAAA,EACf;AAAA,EACA,UAAU;AAAA,IACR,SAAS;AAAA,IACT,cAAc;AAAA,IACd,YAAY;AAAA,MACV;AAAA,MACA;AAAA,IACF;AAAA,IACA,YAAY;AAAA,MACV,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,WAAW;AAAA,MACX,cAAc;AAAA,MACd,WAAW;AAAA,IACb;AAAA,IACA,YAAY;AAAA,IACZ,aAAa;AAAA,EACf;AAAA,EACA,WAAW;AAAA,IACT,SAAS;AAAA,IACT,cAAc;AAAA,IACd,YAAY;AAAA,MACV;AAAA,MACA;AAAA,IACF;AAAA,IACA,YAAY;AAAA,MACV,QAAQ;AAAA,MACR,WAAW;AAAA,MACX,WAAW;AAAA,MACX,cAAc;AAAA,MACd,WAAW;AAAA,IACb;AAAA,IACA,YAAY;AAAA,IACZ,aAAa;AAAA,EACf;AACF;","names":[]}
|