material-icon-theme 5.11.0 → 5.11.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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "material-icon-theme",
3
3
  "displayName": "Material Icon Theme",
4
4
  "description": "Material Design Icons for Visual Studio Code",
5
- "version": "5.11.0",
5
+ "version": "5.11.1",
6
6
  "license": "MIT",
7
7
  "scripts": {
8
8
  "precompile": "rimraf dist && bun run verify",
@@ -19,7 +19,7 @@
19
19
  "generateClones": "bun ./src/scripts/icons/generateClones.ts",
20
20
  "lint": "biome check --write ./src",
21
21
  "format": "biome format --write ./src",
22
- "preversion": "bun run contributors && bun run preview && bun run svgo && git add images/fileIcons.png images/contributors.png images/folderIcons.png icons/*.svg",
22
+ "preversion": "bun run contributors && bun run preview && bun run svgo && git add images/*.png icons/*.svg",
23
23
  "preview": "bun ./src/scripts/preview/run.ts",
24
24
  "svgo": "svgo -i icons -o icons -q",
25
25
  "test": "bun test",
@@ -39,6 +39,9 @@
39
39
  "sponsor": {
40
40
  "url": "https://github.com/sponsors/PKief"
41
41
  },
42
+ "engines": {
43
+ "vscode": "^1.55.0"
44
+ },
42
45
  "homepage": "https://github.com/material-extensions/vscode-material-icon-theme/blob/main/README.md",
43
46
  "repository": {
44
47
  "type": "git",
@@ -48,6 +51,10 @@
48
51
  "url": "https://github.com/material-extensions/vscode-material-icon-theme/issues"
49
52
  },
50
53
  "icon": "logo.png",
54
+ "galleryBanner": {
55
+ "color": "#1e1e1e",
56
+ "theme": "dark"
57
+ },
51
58
  "categories": [
52
59
  "Themes"
53
60
  ],
@@ -72,9 +79,288 @@
72
79
  "onStartupFinished"
73
80
  ],
74
81
  "main": "./dist/module/index.cjs",
82
+ "browser": "./dist/extension/web/extension.cjs",
75
83
  "module": "./dist/module/index.cjs",
76
84
  "types": "./dist/types/module/index.d.ts",
77
85
  "sideEffects": false,
86
+ "contributes": {
87
+ "iconThemes": [
88
+ {
89
+ "id": "material-icon-theme",
90
+ "label": "Material Icon Theme",
91
+ "path": "./dist/material-icons.json",
92
+ "_watch": true
93
+ }
94
+ ],
95
+ "commands": [
96
+ {
97
+ "command": "material-icon-theme.activateIcons",
98
+ "title": "%command.activateIcons%",
99
+ "enablement": "!isWeb"
100
+ },
101
+ {
102
+ "command": "material-icon-theme.toggleIconPacks",
103
+ "title": "%command.toggleIconPacks%",
104
+ "enablement": "!isWeb"
105
+ },
106
+ {
107
+ "command": "material-icon-theme.changeFolderTheme",
108
+ "title": "%command.changeFolderTheme%",
109
+ "enablement": "!isWeb"
110
+ },
111
+ {
112
+ "command": "material-icon-theme.changeFolderColor",
113
+ "title": "%command.changeFolderColor%",
114
+ "enablement": "!isWeb"
115
+ },
116
+ {
117
+ "command": "material-icon-theme.changeFileColor",
118
+ "title": "%command.changeFileColor%",
119
+ "enablement": "!isWeb"
120
+ },
121
+ {
122
+ "command": "material-icon-theme.restoreDefaultConfig",
123
+ "title": "%command.restoreDefaultConfig%",
124
+ "enablement": "!isWeb"
125
+ },
126
+ {
127
+ "command": "material-icon-theme.toggleExplorerArrows",
128
+ "title": "%command.toggleExplorerArrows%",
129
+ "enablement": "!isWeb"
130
+ },
131
+ {
132
+ "command": "material-icon-theme.changeOpacity",
133
+ "title": "%command.changeOpacity%",
134
+ "enablement": "!isWeb"
135
+ },
136
+ {
137
+ "command": "material-icon-theme.toggleGrayscale",
138
+ "title": "%command.toggleGrayscale%",
139
+ "enablement": "!isWeb"
140
+ },
141
+ {
142
+ "command": "material-icon-theme.changeSaturation",
143
+ "title": "%command.changeSaturation%",
144
+ "enablement": "!isWeb"
145
+ }
146
+ ],
147
+ "configuration": {
148
+ "type": "object",
149
+ "title": "%configuration.title%",
150
+ "properties": {
151
+ "material-icon-theme.activeIconPack": {
152
+ "type": "string",
153
+ "default": "angular",
154
+ "description": "%configuration.activeIconPack%",
155
+ "enumDescriptions": [
156
+ "%configuration.activeIconPack.angular%",
157
+ "%configuration.activeIconPack.angular_ngrx%",
158
+ "%configuration.activeIconPack.react%",
159
+ "%configuration.activeIconPack.react_redux%",
160
+ "%configuration.activeIconPack.qwik%",
161
+ "%configuration.activeIconPack.vue%",
162
+ "%configuration.activeIconPack.vue_vuex%",
163
+ "%configuration.activeIconPack.nest%",
164
+ "%configuration.activeIconPack.none%"
165
+ ],
166
+ "enum": [
167
+ "angular",
168
+ "angular_ngrx",
169
+ "react",
170
+ "react_redux",
171
+ "qwik",
172
+ "vue",
173
+ "vue_vuex",
174
+ "nest",
175
+ "none"
176
+ ]
177
+ },
178
+ "material-icon-theme.files.associations": {
179
+ "type": "object",
180
+ "default": {},
181
+ "description": "%configuration.files.associations%"
182
+ },
183
+ "material-icon-theme.folders.associations": {
184
+ "type": "object",
185
+ "default": {},
186
+ "description": "%configuration.folders.associations%"
187
+ },
188
+ "material-icon-theme.languages.associations": {
189
+ "type": "object",
190
+ "default": {},
191
+ "description": "%configuration.languages.associations%"
192
+ },
193
+ "material-icon-theme.files.customClones": {
194
+ "type": "array",
195
+ "default": [],
196
+ "items": {
197
+ "type": "object",
198
+ "properties": {
199
+ "name": {
200
+ "type": "string",
201
+ "description": "%configuration.customClones.name%"
202
+ },
203
+ "base": {
204
+ "type": "string",
205
+ "description": "%configuration.customClones.base%"
206
+ },
207
+ "color": {
208
+ "type": "string",
209
+ "description": "%configuration.customClones.color%"
210
+ },
211
+ "lightColor": {
212
+ "type": "string",
213
+ "description": "%configuration.customClones.lightColor%"
214
+ },
215
+ "fileNames": {
216
+ "type": "array",
217
+ "default": [],
218
+ "description": "%configuration.customClones.fileNames%",
219
+ "items": {
220
+ "type": "string"
221
+ }
222
+ },
223
+ "fileExtensions": {
224
+ "type": "array",
225
+ "default": [],
226
+ "description": "%configuration.customClones.fileExtensions%",
227
+ "items": {
228
+ "type": "string"
229
+ }
230
+ },
231
+ "activeForPacks": {
232
+ "type": "array",
233
+ "default": [
234
+ "angular"
235
+ ],
236
+ "description": "%configuration.customClones.activeForPacks%",
237
+ "items": {
238
+ "type": "string",
239
+ "enumDescriptions": [
240
+ "%configuration.activeIconPack.angular%",
241
+ "%configuration.activeIconPack.angular_ngrx%",
242
+ "%configuration.activeIconPack.react%",
243
+ "%configuration.activeIconPack.react_redux%",
244
+ "%configuration.activeIconPack.qwik%",
245
+ "%configuration.activeIconPack.vue%",
246
+ "%configuration.activeIconPack.vue_vuex%",
247
+ "%configuration.activeIconPack.nest%",
248
+ "%configuration.activeIconPack.none%"
249
+ ],
250
+ "enum": [
251
+ "angular",
252
+ "angular_ngrx",
253
+ "react",
254
+ "react_redux",
255
+ "qwik",
256
+ "vue",
257
+ "vue_vuex",
258
+ "nest",
259
+ "none"
260
+ ]
261
+ }
262
+ }
263
+ }
264
+ },
265
+ "description": "%configuration.customClones%"
266
+ },
267
+ "material-icon-theme.folders.customClones": {
268
+ "type": "array",
269
+ "default": [],
270
+ "items": {
271
+ "type": "object",
272
+ "properties": {
273
+ "name": {
274
+ "type": "string",
275
+ "description": "%configuration.customClones.name%"
276
+ },
277
+ "base": {
278
+ "type": "string",
279
+ "description": "%configuration.customClones.base%"
280
+ },
281
+ "color": {
282
+ "type": "string",
283
+ "description": "%configuration.customClones.color%"
284
+ },
285
+ "lightColor": {
286
+ "type": "string",
287
+ "description": "%configuration.customClones.lightColor%"
288
+ },
289
+ "folderNames": {
290
+ "type": "array",
291
+ "description": "%configuration.customClones.folderNames%",
292
+ "items": {
293
+ "type": "string"
294
+ }
295
+ }
296
+ }
297
+ },
298
+ "description": "%configuration.customClones%"
299
+ },
300
+ "material-icon-theme.folders.theme": {
301
+ "type": "string",
302
+ "default": "specific",
303
+ "description": "%configuration.folders.theme%",
304
+ "enumDescriptions": [
305
+ "%configuration.folders.theme.specific%",
306
+ "%configuration.folders.theme.classic%",
307
+ "%configuration.folders.theme.none%"
308
+ ],
309
+ "enum": [
310
+ "specific",
311
+ "classic",
312
+ "none"
313
+ ]
314
+ },
315
+ "material-icon-theme.folders.color": {
316
+ "type": "string",
317
+ "default": "#90a4ae",
318
+ "pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
319
+ "description": "%configuration.folders.color%"
320
+ },
321
+ "material-icon-theme.files.color": {
322
+ "type": "string",
323
+ "default": "#90a4ae",
324
+ "pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
325
+ "description": "%configuration.files.color%"
326
+ },
327
+ "material-icon-theme.opacity": {
328
+ "type": "number",
329
+ "default": 1,
330
+ "minimum": 0,
331
+ "maximum": 1,
332
+ "description": "%configuration.opacity%"
333
+ },
334
+ "material-icon-theme.hidesExplorerArrows": {
335
+ "type": "boolean",
336
+ "default": false,
337
+ "description": "%configuration.hidesExplorerArrows%"
338
+ },
339
+ "material-icon-theme.saturation": {
340
+ "type": "number",
341
+ "default": 1,
342
+ "minimum": 0,
343
+ "maximum": 1,
344
+ "description": "%configuration.saturation%"
345
+ },
346
+ "material-icon-theme.enableLogging": {
347
+ "type": "boolean",
348
+ "default": false,
349
+ "description": "%configuration.enableLogging%"
350
+ },
351
+ "material-icon-theme.logLevel": {
352
+ "type": "string",
353
+ "default": "info",
354
+ "enum": [
355
+ "info",
356
+ "error",
357
+ "debug"
358
+ ],
359
+ "description": "%configuration.logLevel%"
360
+ }
361
+ }
362
+ }
363
+ },
78
364
  "dependencies": {
79
365
  "chroma-js": "^2.4.2",
80
366
  "fast-deep-equal": "^3.1.3",