material-icon-theme 5.17.0 → 5.18.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/LICENSE +1 -1
- package/README.md +2 -2
- package/dist/material-icons.json +1 -1
- package/dist/module/index.cjs +1 -1
- package/dist/types/core/generator/applyConfigToIcons.d.ts.map +1 -1
- package/dist/types/core/generator/clones/clonesGenerator.d.ts +4 -9
- package/dist/types/core/generator/clones/clonesGenerator.d.ts.map +1 -1
- package/dist/types/core/generator/clones/utils/cloneData.d.ts +3 -1
- package/dist/types/core/generator/clones/utils/cloneData.d.ts.map +1 -1
- package/dist/types/core/generator/clones/utils/cloning.d.ts +2 -2
- package/dist/types/core/generator/clones/utils/cloning.d.ts.map +1 -1
- package/dist/types/core/generator/clones/utils/color/colors.d.ts +1 -1
- package/dist/types/core/generator/clones/utils/color/colors.d.ts.map +1 -1
- package/dist/types/core/generator/config/defaultConfig.d.ts.map +1 -1
- package/dist/types/core/generator/folderGenerator.d.ts +8 -0
- package/dist/types/core/generator/folderGenerator.d.ts.map +1 -1
- package/dist/types/core/generator/iconOpacity.d.ts +1 -1
- package/dist/types/core/generator/iconOpacity.d.ts.map +1 -1
- package/dist/types/core/generator/languageGenerator.d.ts.map +1 -1
- package/dist/types/core/helpers/configHash.d.ts.map +1 -1
- package/dist/types/core/helpers/resolvePath.d.ts +7 -1
- package/dist/types/core/helpers/resolvePath.d.ts.map +1 -1
- package/dist/types/core/icons/fileIcons.d.ts.map +1 -1
- package/dist/types/core/icons/folderIcons.d.ts.map +1 -1
- package/dist/types/core/icons/languageIcons.d.ts.map +1 -1
- package/dist/types/core/index.d.ts +2 -2
- package/dist/types/core/index.d.ts.map +1 -1
- package/dist/types/core/models/icons/config.d.ts +13 -11
- package/dist/types/core/models/icons/config.d.ts.map +1 -1
- package/dist/types/core/models/icons/files/fileIcon.d.ts +6 -20
- package/dist/types/core/models/icons/files/fileIcon.d.ts.map +1 -1
- package/dist/types/core/models/icons/folders/folderIcon.d.ts +13 -16
- package/dist/types/core/models/icons/folders/folderIcon.d.ts.map +1 -1
- package/dist/types/core/models/icons/languages/languageIdentifier.d.ts +2 -5
- package/dist/types/core/models/icons/languages/languageIdentifier.d.ts.map +1 -1
- package/dist/types/core/models/icons/lightSettings.d.ts +27 -0
- package/dist/types/core/models/icons/lightSettings.d.ts.map +1 -0
- package/dist/types/core/models/manifest.d.ts +2 -0
- package/dist/types/core/models/manifest.d.ts.map +1 -1
- package/icons/ahk2.clone.svg +1 -0
- package/icons/beancount.svg +1 -0
- package/icons/contentlayer.svg +1 -0
- package/icons/epub.svg +1 -0
- package/icons/folder-bloc-open.svg +1 -0
- package/icons/folder-bloc.svg +1 -0
- package/icons/folder-repository-open.svg +1 -0
- package/icons/folder-repository.svg +1 -0
- package/icons/folder-rust-open.svg +1 -0
- package/icons/folder-rust.svg +1 -0
- package/icons/folder-scons-open.svg +1 -0
- package/icons/folder-scons.svg +1 -0
- package/icons/folder-unity-open.svg +1 -1
- package/icons/folder-unity.svg +1 -1
- package/icons/github-sponsors.svg +1 -1
- package/icons/scons.svg +1 -0
- package/icons/scons_light.svg +1 -0
- package/icons/unity.svg +1 -0
- package/icons/wrangler.svg +1 -0
- package/package.json +96 -6
- package/icons/shaderlab.svg +0 -1
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.
|
|
5
|
+
"version": "5.18.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"precompile": "rimraf dist && bun run verify",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
},
|
|
32
32
|
"publisher": "PKief",
|
|
33
33
|
"author": {
|
|
34
|
-
"name": "
|
|
35
|
-
"email": "
|
|
36
|
-
"url": "https://
|
|
34
|
+
"name": "Material Extensions",
|
|
35
|
+
"email": "material-icons-extensions@googlegroups.com",
|
|
36
|
+
"url": "https://github.com/material-extensions"
|
|
37
37
|
},
|
|
38
|
-
"funding": "https://github.com/sponsors/
|
|
38
|
+
"funding": "https://github.com/sponsors/material-extensions",
|
|
39
39
|
"sponsor": {
|
|
40
|
-
"url": "https://github.com/sponsors/
|
|
40
|
+
"url": "https://github.com/sponsors/material-extensions"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"vscode": "^1.55.0"
|
|
@@ -112,6 +112,11 @@
|
|
|
112
112
|
"title": "%command.changeFolderColor%",
|
|
113
113
|
"enablement": "!isWeb"
|
|
114
114
|
},
|
|
115
|
+
{
|
|
116
|
+
"command": "material-icon-theme.changeRootFolderColor",
|
|
117
|
+
"title": "%command.changeRootFolderColor%",
|
|
118
|
+
"enablement": "!isWeb"
|
|
119
|
+
},
|
|
115
120
|
{
|
|
116
121
|
"command": "material-icon-theme.changeFileColor",
|
|
117
122
|
"title": "%command.changeFileColor%",
|
|
@@ -186,6 +191,11 @@
|
|
|
186
191
|
"default": {},
|
|
187
192
|
"description": "%configuration.folders.associations%"
|
|
188
193
|
},
|
|
194
|
+
"material-icon-theme.rootFolders.associations": {
|
|
195
|
+
"type": "object",
|
|
196
|
+
"default": {},
|
|
197
|
+
"description": "%configuration.rootFolders.associations%"
|
|
198
|
+
},
|
|
189
199
|
"material-icon-theme.languages.associations": {
|
|
190
200
|
"type": "object",
|
|
191
201
|
"default": {},
|
|
@@ -266,6 +276,73 @@
|
|
|
266
276
|
},
|
|
267
277
|
"description": "%configuration.customClones%"
|
|
268
278
|
},
|
|
279
|
+
"material-icon-theme.languages.customClones": {
|
|
280
|
+
"type": "array",
|
|
281
|
+
"default": [],
|
|
282
|
+
"items": {
|
|
283
|
+
"type": "object",
|
|
284
|
+
"properties": {
|
|
285
|
+
"name": {
|
|
286
|
+
"type": "string",
|
|
287
|
+
"description": "%configuration.customClones.name%"
|
|
288
|
+
},
|
|
289
|
+
"base": {
|
|
290
|
+
"type": "string",
|
|
291
|
+
"description": "%configuration.customClones.base%"
|
|
292
|
+
},
|
|
293
|
+
"color": {
|
|
294
|
+
"type": "string",
|
|
295
|
+
"description": "%configuration.customClones.color%"
|
|
296
|
+
},
|
|
297
|
+
"lightColor": {
|
|
298
|
+
"type": "string",
|
|
299
|
+
"description": "%configuration.customClones.lightColor%"
|
|
300
|
+
},
|
|
301
|
+
"ids": {
|
|
302
|
+
"type": "array",
|
|
303
|
+
"default": [],
|
|
304
|
+
"description": "%configuration.customClones.ids%",
|
|
305
|
+
"items": {
|
|
306
|
+
"type": "string"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"activeForPacks": {
|
|
310
|
+
"type": "array",
|
|
311
|
+
"default": [
|
|
312
|
+
"angular"
|
|
313
|
+
],
|
|
314
|
+
"description": "%configuration.customClones.activeForPacks%",
|
|
315
|
+
"items": {
|
|
316
|
+
"type": "string",
|
|
317
|
+
"enumDescriptions": [
|
|
318
|
+
"%configuration.activeIconPack.angular%",
|
|
319
|
+
"%configuration.activeIconPack.angular_ngrx%",
|
|
320
|
+
"%configuration.activeIconPack.react%",
|
|
321
|
+
"%configuration.activeIconPack.react_redux%",
|
|
322
|
+
"%configuration.activeIconPack.roblox%",
|
|
323
|
+
"%configuration.activeIconPack.qwik%",
|
|
324
|
+
"%configuration.activeIconPack.vue%",
|
|
325
|
+
"%configuration.activeIconPack.vue_vuex%",
|
|
326
|
+
"%configuration.activeIconPack.nest%",
|
|
327
|
+
"%configuration.activeIconPack.none%"
|
|
328
|
+
],
|
|
329
|
+
"enum": [
|
|
330
|
+
"angular",
|
|
331
|
+
"angular_ngrx",
|
|
332
|
+
"react",
|
|
333
|
+
"react_redux",
|
|
334
|
+
"qwik",
|
|
335
|
+
"vue",
|
|
336
|
+
"vue_vuex",
|
|
337
|
+
"nest",
|
|
338
|
+
"none"
|
|
339
|
+
]
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"description": "%configuration.customClones%"
|
|
345
|
+
},
|
|
269
346
|
"material-icon-theme.folders.customClones": {
|
|
270
347
|
"type": "array",
|
|
271
348
|
"default": [],
|
|
@@ -294,6 +371,13 @@
|
|
|
294
371
|
"items": {
|
|
295
372
|
"type": "string"
|
|
296
373
|
}
|
|
374
|
+
},
|
|
375
|
+
"rootFolderNames": {
|
|
376
|
+
"type": "array",
|
|
377
|
+
"description": "%configuration.customClones.rootFolderNames%",
|
|
378
|
+
"items": {
|
|
379
|
+
"type": "string"
|
|
380
|
+
}
|
|
297
381
|
}
|
|
298
382
|
}
|
|
299
383
|
},
|
|
@@ -320,6 +404,12 @@
|
|
|
320
404
|
"pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
|
|
321
405
|
"description": "%configuration.folders.color%"
|
|
322
406
|
},
|
|
407
|
+
"material-icon-theme.rootFolders.color": {
|
|
408
|
+
"type": "string",
|
|
409
|
+
"default": "#90a4ae",
|
|
410
|
+
"pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
|
|
411
|
+
"description": "%configuration.rootFolders.color%"
|
|
412
|
+
},
|
|
323
413
|
"material-icon-theme.files.color": {
|
|
324
414
|
"type": "string",
|
|
325
415
|
"default": "#90a4ae",
|
package/icons/shaderlab.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="#1976d2" d="M9.961 17h-2.61l-4.91-5 4.91-5h2.61l1.31-2.26L18.061 3l1.87 6.74-1.31 2.26 1.31 2.26-1.87 6.74-6.79-1.74zm.14-.25 5.13 1.38-2.96-5.13h-5.92zm6.87.38 1.38-5.13-1.38-5.13-2.97 5.13zm-6.87-9.88L6.351 11h5.92l2.96-5.13z"/></svg>
|