@mdwrk/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/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # mdwrk/icons
2
+
3
+ Shared icon identifiers and icon metadata for Markdown Workspace applications and packages.
4
+
5
+ This package does not force a rendering library. Instead it provides a stable icon identifier and metadata catalog so applications and reusable packages can render icons with Lucide, SVG assets, or another adapter while keeping semantic IDs stable.
6
+
7
+ ## Example
8
+
9
+ ```ts
10
+ import { getWorkspaceIconDefinition } from "@mdwrk/icons";
11
+
12
+ const icon = getWorkspaceIconDefinition("extension.manager");
13
+ // => { id: "extension.manager", lucideName: "Puzzle", ... }
14
+ ```
@@ -0,0 +1,181 @@
1
+ export declare const WORKSPACE_ICON_IDS: readonly ["workspace.project", "workspace.project.create", "workspace.file", "workspace.file.create", "workspace.file.download", "workspace.git.branch", "workspace.git.diff", "workspace.sync.refresh", "workspace.settings", "workspace.layout.grid", "workspace.layout.columns", "workspace.preview.eye", "workspace.theme.palette", "workspace.theme.sun", "workspace.theme.moon", "workspace.status.warning", "workspace.status.ok", "workspace.status.error", "workspace.network.cloud.off", "workspace.network.wifi.off", "workspace.search", "workspace.close", "workspace.add", "workspace.remove", "workspace.download", "workspace.upload", "workspace.save", "workspace.terminal", "workspace.code", "workspace.book", "extension.manager", "extension.runtime", "extension.gemini-agent", "extension.theme-studio"];
2
+ export type WorkspaceIconId = typeof WORKSPACE_ICON_IDS[number];
3
+ export interface WorkspaceIconDefinition {
4
+ readonly id: WorkspaceIconId;
5
+ readonly lucideName: string;
6
+ readonly category: "workspace" | "file" | "git" | "theme" | "status" | "network" | "extension" | "navigation";
7
+ readonly description: string;
8
+ }
9
+ export declare const WORKSPACE_ICON_CATALOG: readonly [{
10
+ readonly id: "workspace.project";
11
+ readonly lucideName: "Folder";
12
+ readonly category: "workspace";
13
+ readonly description: "Project or folder icon.";
14
+ }, {
15
+ readonly id: "workspace.project.create";
16
+ readonly lucideName: "FolderPlus";
17
+ readonly category: "workspace";
18
+ readonly description: "Create-project or create-folder icon.";
19
+ }, {
20
+ readonly id: "workspace.file";
21
+ readonly lucideName: "FileText";
22
+ readonly category: "file";
23
+ readonly description: "Markdown file icon.";
24
+ }, {
25
+ readonly id: "workspace.file.create";
26
+ readonly lucideName: "FilePlus";
27
+ readonly category: "file";
28
+ readonly description: "Create-file icon.";
29
+ }, {
30
+ readonly id: "workspace.file.download";
31
+ readonly lucideName: "FileDown";
32
+ readonly category: "file";
33
+ readonly description: "Export or download-file icon.";
34
+ }, {
35
+ readonly id: "workspace.git.branch";
36
+ readonly lucideName: "GitBranch";
37
+ readonly category: "git";
38
+ readonly description: "Git branch icon.";
39
+ }, {
40
+ readonly id: "workspace.git.diff";
41
+ readonly lucideName: "FileDiff";
42
+ readonly category: "git";
43
+ readonly description: "Git diff icon.";
44
+ }, {
45
+ readonly id: "workspace.sync.refresh";
46
+ readonly lucideName: "RefreshCw";
47
+ readonly category: "workspace";
48
+ readonly description: "Refresh or sync icon.";
49
+ }, {
50
+ readonly id: "workspace.settings";
51
+ readonly lucideName: "Settings";
52
+ readonly category: "workspace";
53
+ readonly description: "Settings icon.";
54
+ }, {
55
+ readonly id: "workspace.layout.grid";
56
+ readonly lucideName: "LayoutGrid";
57
+ readonly category: "workspace";
58
+ readonly description: "Grid layout icon.";
59
+ }, {
60
+ readonly id: "workspace.layout.columns";
61
+ readonly lucideName: "Columns";
62
+ readonly category: "workspace";
63
+ readonly description: "Columns layout icon.";
64
+ }, {
65
+ readonly id: "workspace.preview.eye";
66
+ readonly lucideName: "Eye";
67
+ readonly category: "workspace";
68
+ readonly description: "Preview or visibility icon.";
69
+ }, {
70
+ readonly id: "workspace.theme.palette";
71
+ readonly lucideName: "Palette";
72
+ readonly category: "theme";
73
+ readonly description: "Theme or palette icon.";
74
+ }, {
75
+ readonly id: "workspace.theme.sun";
76
+ readonly lucideName: "Sun";
77
+ readonly category: "theme";
78
+ readonly description: "Light theme icon.";
79
+ }, {
80
+ readonly id: "workspace.theme.moon";
81
+ readonly lucideName: "Moon";
82
+ readonly category: "theme";
83
+ readonly description: "Dark theme icon.";
84
+ }, {
85
+ readonly id: "workspace.status.warning";
86
+ readonly lucideName: "AlertTriangle";
87
+ readonly category: "status";
88
+ readonly description: "Warning status icon.";
89
+ }, {
90
+ readonly id: "workspace.status.ok";
91
+ readonly lucideName: "CheckCircle";
92
+ readonly category: "status";
93
+ readonly description: "Success status icon.";
94
+ }, {
95
+ readonly id: "workspace.status.error";
96
+ readonly lucideName: "XCircle";
97
+ readonly category: "status";
98
+ readonly description: "Error status icon.";
99
+ }, {
100
+ readonly id: "workspace.network.cloud.off";
101
+ readonly lucideName: "CloudOff";
102
+ readonly category: "network";
103
+ readonly description: "Disconnected cloud icon.";
104
+ }, {
105
+ readonly id: "workspace.network.wifi.off";
106
+ readonly lucideName: "WifiOff";
107
+ readonly category: "network";
108
+ readonly description: "Disconnected network icon.";
109
+ }, {
110
+ readonly id: "workspace.search";
111
+ readonly lucideName: "Search";
112
+ readonly category: "navigation";
113
+ readonly description: "Search icon.";
114
+ }, {
115
+ readonly id: "workspace.close";
116
+ readonly lucideName: "X";
117
+ readonly category: "navigation";
118
+ readonly description: "Close icon.";
119
+ }, {
120
+ readonly id: "workspace.add";
121
+ readonly lucideName: "Plus";
122
+ readonly category: "navigation";
123
+ readonly description: "Add icon.";
124
+ }, {
125
+ readonly id: "workspace.remove";
126
+ readonly lucideName: "Minus";
127
+ readonly category: "navigation";
128
+ readonly description: "Remove icon.";
129
+ }, {
130
+ readonly id: "workspace.download";
131
+ readonly lucideName: "Download";
132
+ readonly category: "navigation";
133
+ readonly description: "Download icon.";
134
+ }, {
135
+ readonly id: "workspace.upload";
136
+ readonly lucideName: "ArrowUpCircle";
137
+ readonly category: "navigation";
138
+ readonly description: "Upload icon.";
139
+ }, {
140
+ readonly id: "workspace.save";
141
+ readonly lucideName: "Save";
142
+ readonly category: "navigation";
143
+ readonly description: "Save icon.";
144
+ }, {
145
+ readonly id: "workspace.terminal";
146
+ readonly lucideName: "Terminal";
147
+ readonly category: "workspace";
148
+ readonly description: "Terminal icon.";
149
+ }, {
150
+ readonly id: "workspace.code";
151
+ readonly lucideName: "Code";
152
+ readonly category: "workspace";
153
+ readonly description: "Code icon.";
154
+ }, {
155
+ readonly id: "workspace.book";
156
+ readonly lucideName: "Book";
157
+ readonly category: "workspace";
158
+ readonly description: "Documentation icon.";
159
+ }, {
160
+ readonly id: "extension.manager";
161
+ readonly lucideName: "Puzzle";
162
+ readonly category: "extension";
163
+ readonly description: "Extension Manager icon.";
164
+ }, {
165
+ readonly id: "extension.runtime";
166
+ readonly lucideName: "Plug";
167
+ readonly category: "extension";
168
+ readonly description: "Extension runtime icon.";
169
+ }, {
170
+ readonly id: "extension.gemini-agent";
171
+ readonly lucideName: "Bot";
172
+ readonly category: "extension";
173
+ readonly description: "Gemini Agent extension icon.";
174
+ }, {
175
+ readonly id: "extension.theme-studio";
176
+ readonly lucideName: "Brush";
177
+ readonly category: "extension";
178
+ readonly description: "Theme Studio extension icon.";
179
+ }];
180
+ export declare function getWorkspaceIconDefinition(id: WorkspaceIconId): WorkspaceIconDefinition | undefined;
181
+ //# sourceMappingURL=catalog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.ts","sourceRoot":"","sources":["../src/catalog.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,kyBAmCrB,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAEhE,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,EAAE,EAAE,eAAe,CAAC;IAC7B,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EACb,WAAW,GACX,MAAM,GACN,KAAK,GACL,OAAO,GACP,QAAQ,GACR,SAAS,GACT,WAAW,GACX,YAAY,CAAC;IACjB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAED,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmCoB,CAAC;AAExD,wBAAgB,0BAA0B,CAAC,EAAE,EAAE,eAAe,GAAG,uBAAuB,GAAG,SAAS,CAEnG"}
@@ -0,0 +1,76 @@
1
+ export const WORKSPACE_ICON_IDS = [
2
+ "workspace.project",
3
+ "workspace.project.create",
4
+ "workspace.file",
5
+ "workspace.file.create",
6
+ "workspace.file.download",
7
+ "workspace.git.branch",
8
+ "workspace.git.diff",
9
+ "workspace.sync.refresh",
10
+ "workspace.settings",
11
+ "workspace.layout.grid",
12
+ "workspace.layout.columns",
13
+ "workspace.preview.eye",
14
+ "workspace.theme.palette",
15
+ "workspace.theme.sun",
16
+ "workspace.theme.moon",
17
+ "workspace.status.warning",
18
+ "workspace.status.ok",
19
+ "workspace.status.error",
20
+ "workspace.network.cloud.off",
21
+ "workspace.network.wifi.off",
22
+ "workspace.search",
23
+ "workspace.close",
24
+ "workspace.add",
25
+ "workspace.remove",
26
+ "workspace.download",
27
+ "workspace.upload",
28
+ "workspace.save",
29
+ "workspace.terminal",
30
+ "workspace.code",
31
+ "workspace.book",
32
+ "extension.manager",
33
+ "extension.runtime",
34
+ "extension.gemini-agent",
35
+ "extension.theme-studio",
36
+ ];
37
+ export const WORKSPACE_ICON_CATALOG = [
38
+ { id: "workspace.project", lucideName: "Folder", category: "workspace", description: "Project or folder icon." },
39
+ { id: "workspace.project.create", lucideName: "FolderPlus", category: "workspace", description: "Create-project or create-folder icon." },
40
+ { id: "workspace.file", lucideName: "FileText", category: "file", description: "Markdown file icon." },
41
+ { id: "workspace.file.create", lucideName: "FilePlus", category: "file", description: "Create-file icon." },
42
+ { id: "workspace.file.download", lucideName: "FileDown", category: "file", description: "Export or download-file icon." },
43
+ { id: "workspace.git.branch", lucideName: "GitBranch", category: "git", description: "Git branch icon." },
44
+ { id: "workspace.git.diff", lucideName: "FileDiff", category: "git", description: "Git diff icon." },
45
+ { id: "workspace.sync.refresh", lucideName: "RefreshCw", category: "workspace", description: "Refresh or sync icon." },
46
+ { id: "workspace.settings", lucideName: "Settings", category: "workspace", description: "Settings icon." },
47
+ { id: "workspace.layout.grid", lucideName: "LayoutGrid", category: "workspace", description: "Grid layout icon." },
48
+ { id: "workspace.layout.columns", lucideName: "Columns", category: "workspace", description: "Columns layout icon." },
49
+ { id: "workspace.preview.eye", lucideName: "Eye", category: "workspace", description: "Preview or visibility icon." },
50
+ { id: "workspace.theme.palette", lucideName: "Palette", category: "theme", description: "Theme or palette icon." },
51
+ { id: "workspace.theme.sun", lucideName: "Sun", category: "theme", description: "Light theme icon." },
52
+ { id: "workspace.theme.moon", lucideName: "Moon", category: "theme", description: "Dark theme icon." },
53
+ { id: "workspace.status.warning", lucideName: "AlertTriangle", category: "status", description: "Warning status icon." },
54
+ { id: "workspace.status.ok", lucideName: "CheckCircle", category: "status", description: "Success status icon." },
55
+ { id: "workspace.status.error", lucideName: "XCircle", category: "status", description: "Error status icon." },
56
+ { id: "workspace.network.cloud.off", lucideName: "CloudOff", category: "network", description: "Disconnected cloud icon." },
57
+ { id: "workspace.network.wifi.off", lucideName: "WifiOff", category: "network", description: "Disconnected network icon." },
58
+ { id: "workspace.search", lucideName: "Search", category: "navigation", description: "Search icon." },
59
+ { id: "workspace.close", lucideName: "X", category: "navigation", description: "Close icon." },
60
+ { id: "workspace.add", lucideName: "Plus", category: "navigation", description: "Add icon." },
61
+ { id: "workspace.remove", lucideName: "Minus", category: "navigation", description: "Remove icon." },
62
+ { id: "workspace.download", lucideName: "Download", category: "navigation", description: "Download icon." },
63
+ { id: "workspace.upload", lucideName: "ArrowUpCircle", category: "navigation", description: "Upload icon." },
64
+ { id: "workspace.save", lucideName: "Save", category: "navigation", description: "Save icon." },
65
+ { id: "workspace.terminal", lucideName: "Terminal", category: "workspace", description: "Terminal icon." },
66
+ { id: "workspace.code", lucideName: "Code", category: "workspace", description: "Code icon." },
67
+ { id: "workspace.book", lucideName: "Book", category: "workspace", description: "Documentation icon." },
68
+ { id: "extension.manager", lucideName: "Puzzle", category: "extension", description: "Extension Manager icon." },
69
+ { id: "extension.runtime", lucideName: "Plug", category: "extension", description: "Extension runtime icon." },
70
+ { id: "extension.gemini-agent", lucideName: "Bot", category: "extension", description: "Gemini Agent extension icon." },
71
+ { id: "extension.theme-studio", lucideName: "Brush", category: "extension", description: "Theme Studio extension icon." },
72
+ ];
73
+ export function getWorkspaceIconDefinition(id) {
74
+ return WORKSPACE_ICON_CATALOG.find((definition) => definition.id === id);
75
+ }
76
+ //# sourceMappingURL=catalog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.js","sourceRoot":"","sources":["../src/catalog.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ export * from "./version.js";
2
+ export * from "./catalog.js";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * from "./version.js";
2
+ export * from "./catalog.js";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const ICONS_PACKAGE_VERSION: "1.0.0";
2
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,EAAG,OAAgB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export const ICONS_PACKAGE_VERSION = "1.0.0";
2
+ //# sourceMappingURL=version.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qBAAqB,GAAG,OAAgB,CAAC"}
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "type": "module",
4
+ "license": "Apache-2.0",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "engines": {
9
+ "node": ">=20 <23"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md"
14
+ ],
15
+ "name": "@mdwrk/icons",
16
+ "description": "Shared icon identifiers and icon metadata for Markdown Workspace applications and packages.",
17
+ "sideEffects": false,
18
+ "keywords": [
19
+ "markdown-workspace",
20
+ "shared",
21
+ "icons"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsc -p tsconfig.json",
25
+ "typecheck": "tsc --noEmit -p tsconfig.json",
26
+ "lint": "npm run typecheck",
27
+ "test": "npm run typecheck",
28
+ "prepack": "npm run build"
29
+ },
30
+ "exports": {
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "import": "./dist/index.js"
34
+ },
35
+ "./version": {
36
+ "types": "./dist/version.d.ts",
37
+ "import": "./dist/version.js"
38
+ },
39
+ "./catalog": {
40
+ "types": "./dist/catalog.d.ts",
41
+ "import": "./dist/catalog.js"
42
+ }
43
+ },
44
+ "main": "./dist/index.js",
45
+ "types": "./dist/index.d.ts",
46
+ "author": "Jacob Stewart <jacob@swarmauri.com>",
47
+ "homepage": "https://mdwrk.com"
48
+ }