material-icon-theme 4.23.1 → 4.24.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.
Files changed (94) hide show
  1. package/.eslintrc.json +51 -51
  2. package/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +7 -0
  3. package/.github/workflows/build.yml +45 -45
  4. package/.github/workflows/color-check.yml +22 -22
  5. package/.github/workflows/release.yml +73 -73
  6. package/.vscodeignore +21 -21
  7. package/CHANGELOG.md +1305 -1292
  8. package/CONTRIBUTING.md +199 -29
  9. package/README.md +199 -199
  10. package/icons/craco.svg +45 -45
  11. package/icons/folder-changesets-open.svg +5 -5
  12. package/icons/folder-changesets.svg +2 -2
  13. package/icons/folder-decorators-open.svg +2 -2
  14. package/icons/folder-decorators.svg +5 -5
  15. package/icons/folder-supabase-open.svg +5 -5
  16. package/icons/folder-supabase.svg +2 -2
  17. package/icons/sonarcloud.svg +4 -4
  18. package/icons/stylable.svg +10 -10
  19. package/icons/supabase.svg +4 -4
  20. package/icons/vitest.svg +6 -6
  21. package/images/contributors.png +0 -0
  22. package/images/how-tos/folder-icon-parts.png +0 -0
  23. package/images/how-tos/pick-folder-colors.png +0 -0
  24. package/images/how-tos/pick-folder-colors.svg +301 -0
  25. package/images/how-tos/svg-folder-icon-with-correct-colors.png +0 -0
  26. package/images/how-tos/svg-folder-icon-with-wrong-colors.png +0 -0
  27. package/images/how-tos/svg-with-light-color.png +0 -0
  28. package/images/how-tos/svg-with-spacing.png +0 -0
  29. package/images/how-tos/svg-with-too-dark-color.png +0 -0
  30. package/images/how-tos/svg-with-wrong-color.png +0 -0
  31. package/images/how-tos/svg-without-spacing.png +0 -0
  32. package/package.json +252 -252
  33. package/package.nls.de.json +32 -32
  34. package/package.nls.es.json +29 -29
  35. package/package.nls.fr.json +29 -29
  36. package/package.nls.ja.json +32 -32
  37. package/package.nls.json +32 -32
  38. package/package.nls.nl.json +32 -32
  39. package/package.nls.pl.json +32 -32
  40. package/package.nls.pt-BR.json +29 -29
  41. package/package.nls.pt-PT.json +29 -29
  42. package/package.nls.ru.json +29 -29
  43. package/package.nls.zh-CN.json +29 -29
  44. package/package.nls.zh-TW.json +29 -29
  45. package/src/commands/activate.ts +28 -28
  46. package/src/commands/explorerArrows.ts +55 -55
  47. package/src/commands/folderColor.ts +96 -96
  48. package/src/commands/folders.ts +55 -55
  49. package/src/commands/grayscale.ts +55 -55
  50. package/src/commands/iconPacks.ts +64 -64
  51. package/src/commands/index.ts +30 -30
  52. package/src/commands/opacity.ts +46 -46
  53. package/src/commands/saturation.ts +46 -46
  54. package/src/extension.ts +37 -37
  55. package/src/helpers/customIcons.ts +8 -8
  56. package/src/helpers/index.ts +88 -88
  57. package/src/i18n/index.ts +78 -78
  58. package/src/i18n/lang-de.ts +43 -43
  59. package/src/i18n/lang-en.ts +43 -43
  60. package/src/i18n/lang-es.ts +43 -43
  61. package/src/i18n/lang-fr.ts +43 -43
  62. package/src/i18n/lang-ja.ts +43 -43
  63. package/src/i18n/lang-nl.ts +43 -43
  64. package/src/i18n/lang-pl.ts +43 -43
  65. package/src/i18n/lang-pt-br.ts +43 -43
  66. package/src/i18n/lang-pt-pt.ts +43 -43
  67. package/src/i18n/lang-ru.ts +43 -43
  68. package/src/i18n/lang-uk.ts +43 -43
  69. package/src/i18n/lang-zh-cn.ts +43 -43
  70. package/src/i18n/lang-zh-tw.ts +43 -43
  71. package/src/icons/fileIcons.ts +2206 -2197
  72. package/src/icons/folderIcons.ts +818 -806
  73. package/src/icons/generator/folderGenerator.ts +340 -340
  74. package/src/icons/generator/iconOpacity.ts +111 -111
  75. package/src/icons/generator/iconSaturation.ts +140 -140
  76. package/src/icons/generator/jsonGenerator.ts +191 -191
  77. package/src/icons/languageIcons.ts +141 -141
  78. package/src/models/i18n/translation.ts +41 -41
  79. package/src/models/iconConfiguration.ts +37 -37
  80. package/src/models/icons/iconJsonOptions.ts +21 -21
  81. package/src/models/index.ts +3 -3
  82. package/src/scripts/contributors/index.ts +138 -138
  83. package/src/scripts/helpers/screenshots.ts +32 -32
  84. package/src/scripts/icons/checks/checkIconAvailability.ts +215 -215
  85. package/src/scripts/icons/checks/checkIconConflicts.ts +152 -152
  86. package/src/scripts/icons/checks/checkIconUsage.ts +137 -137
  87. package/src/scripts/icons/checks/index.ts +7 -7
  88. package/src/scripts/preview/index.ts +40 -40
  89. package/src/scripts/preview/preview.ts +163 -163
  90. package/src/test/runTest.ts +26 -26
  91. package/src/test/spec/i18n/i18n.spec.ts +54 -54
  92. package/src/test/spec/icons/fileIcons.spec.ts +250 -250
  93. package/src/test/spec/icons/folderIcons.spec.ts +418 -418
  94. package/src/test/spec/icons/languageIcons.spec.ts +184 -184
@@ -1,141 +1,141 @@
1
- import { LanguageIcon } from '../models';
2
-
3
- /**
4
- * Defines icons for language ids
5
- */
6
- export const languageIcons: LanguageIcon[] = [
7
- { icon: { name: 'git' }, ids: ['git', 'git-commit', 'git-rebase', 'ignore'] },
8
- { icon: { name: 'c' }, ids: ['c', 'objective-c', 'objective-cpp'] },
9
- { icon: { name: 'yaml' }, ids: ['yaml'] },
10
- { icon: { name: 'xml' }, ids: ['xml', 'xquery', 'xsl'] },
11
- { icon: { name: 'matlab' }, ids: ['matlab'] },
12
- {
13
- icon: { name: 'settings' },
14
- ids: ['makefile', 'toml', 'ini', 'properties'],
15
- },
16
- { icon: { name: 'shaderlab' }, ids: ['shaderlab'] },
17
- { icon: { name: 'diff' }, ids: ['diff'] },
18
- { icon: { name: 'json' }, ids: ['json', 'jsonc', 'json5'] },
19
- { icon: { name: 'blink' }, ids: ['blink'] },
20
- { icon: { name: 'java' }, ids: ['java'] },
21
- { icon: { name: 'razor' }, ids: ['razor', 'aspnetcorerazor'] },
22
- { icon: { name: 'python' }, ids: ['python'] },
23
- { icon: { name: 'javascript' }, ids: ['javascript'] },
24
- { icon: { name: 'typescript' }, ids: ['typescript'] },
25
- { icon: { name: 'scala' }, ids: ['scala'] },
26
- { icon: { name: 'handlebars' }, ids: ['handlebars'] },
27
- { icon: { name: 'perl' }, ids: ['perl', 'perl6'] },
28
- { icon: { name: 'haxe' }, ids: ['haxe', 'hxml'] },
29
- { icon: { name: 'puppet' }, ids: ['puppet'] },
30
- { icon: { name: 'elixir' }, ids: ['elixir'] },
31
- { icon: { name: 'livescript' }, ids: ['livescript'] },
32
- { icon: { name: 'erlang' }, ids: ['erlang'] },
33
- { icon: { name: 'twig' }, ids: ['twig'] },
34
- { icon: { name: 'julia' }, ids: ['julia'] },
35
- { icon: { name: 'elm' }, ids: ['elm'] },
36
- { icon: { name: 'purescript' }, ids: ['purescript'] },
37
- { icon: { name: 'stylus' }, ids: ['stylus'] },
38
- { icon: { name: 'nunjucks' }, ids: ['nunjucks'] },
39
- { icon: { name: 'pug' }, ids: ['pug'] },
40
- { icon: { name: 'robot' }, ids: ['robotframework'] },
41
- { icon: { name: 'sass' }, ids: ['sass', 'scss'] },
42
- { icon: { name: 'less' }, ids: ['less'] },
43
- { icon: { name: 'css' }, ids: ['css'] },
44
- { icon: { name: 'visualstudio' }, ids: ['testOutput', 'vb'] },
45
- { icon: { name: 'angular' }, ids: ['ng-template'] },
46
- { icon: { name: 'graphql' }, ids: ['graphql'] },
47
- { icon: { name: 'solidity' }, ids: ['solidity'] },
48
- { icon: { name: 'autoit' }, ids: ['autoit'] },
49
- { icon: { name: 'haml' }, ids: ['haml'] },
50
- { icon: { name: 'yang' }, ids: ['yang'] },
51
- { icon: { name: 'terraform' }, ids: ['terraform'] },
52
- { icon: { name: 'applescript' }, ids: ['applescript'] },
53
- { icon: { name: 'cake' }, ids: ['cake'] },
54
- { icon: { name: 'cucumber' }, ids: ['cucumber'] },
55
- { icon: { name: 'nim' }, ids: ['nim', 'nimble'] },
56
- { icon: { name: 'apiblueprint' }, ids: ['apiblueprint'] },
57
- { icon: { name: 'riot' }, ids: ['riot'] },
58
- { icon: { name: 'postcss' }, ids: ['postcss'] },
59
- { icon: { name: 'coldfusion' }, ids: ['lang-cfml'] },
60
- { icon: { name: 'haskell' }, ids: ['haskell'] },
61
- { icon: { name: 'dhall' }, ids: ['dhall'] },
62
- { icon: { name: 'cabal' }, ids: ['cabal'] },
63
- { icon: { name: 'nix' }, ids: ['nix'] },
64
- { icon: { name: 'ruby' }, ids: ['ruby'] },
65
- { icon: { name: 'slim' }, ids: ['slim'] },
66
- { icon: { name: 'php' }, ids: ['php'] },
67
- { icon: { name: 'php_elephant' }, ids: [] },
68
- { icon: { name: 'php_elephant_pink' }, ids: [] },
69
- { icon: { name: 'hack' }, ids: ['hack'] },
70
- { icon: { name: 'react' }, ids: ['javascriptreact'] },
71
- { icon: { name: 'mjml' }, ids: ['mjml'] },
72
- { icon: { name: 'processing' }, ids: ['processing'] },
73
- { icon: { name: 'hcl' }, ids: ['hcl'] },
74
- { icon: { name: 'go' }, ids: ['go'] },
75
- { icon: { name: 'go_gopher' }, ids: [] },
76
- { icon: { name: 'nodejs_alt' }, ids: [] },
77
- { icon: { name: 'django' }, ids: ['django-html', 'django-txt'] },
78
- { icon: { name: 'html' }, ids: ['html'] },
79
- { icon: { name: 'godot' }, ids: ['gdscript'] },
80
- { icon: { name: 'vim' }, ids: ['viml'] },
81
- { icon: { name: 'silverstripe' }, ids: [] },
82
- { icon: { name: 'prolog' }, ids: ['prolog'] },
83
- { icon: { name: 'pawn' }, ids: ['pawn'] },
84
- { icon: { name: 'reason' }, ids: ['reason', 'reason_lisp'] },
85
- { icon: { name: 'sml' }, ids: ['sml'] },
86
- { icon: { name: 'tex' }, ids: ['tex', 'doctex', 'latex', 'latex-expl3'] },
87
- { icon: { name: 'salesforce' }, ids: ['apex'] },
88
- { icon: { name: 'sas' }, ids: ['sas'] },
89
- { icon: { name: 'docker' }, ids: ['dockerfile'] },
90
- { icon: { name: 'table' }, ids: ['csv', 'tsv', 'psv'] },
91
- { icon: { name: 'csharp' }, ids: ['csharp'] },
92
- { icon: { name: 'console' }, ids: ['bat', 'awk', 'shellscript'] },
93
- { icon: { name: 'cpp' }, ids: ['cpp'] },
94
- { icon: { name: 'coffee' }, ids: ['coffeescript'] },
95
- { icon: { name: 'fsharp' }, ids: ['fsharp'] },
96
- { icon: { name: 'editorconfig' }, ids: ['editorconfig'] },
97
- { icon: { name: 'clojure' }, ids: ['clojure'] },
98
- { icon: { name: 'groovy' }, ids: ['groovy'] },
99
- { icon: { name: 'markdown' }, ids: ['markdown'] },
100
- { icon: { name: 'jinja' }, ids: ['jinja'] },
101
- { icon: { name: 'proto' }, ids: ['proto'] },
102
- { icon: { name: 'python-misc' }, ids: ['pip-requirements'] },
103
- { icon: { name: 'vue' }, ids: ['vue', 'vue-postcss', 'vue-html'] },
104
- { icon: { name: 'lua' }, ids: ['lua'] },
105
- { icon: { name: 'lib' }, ids: ['bibtex', 'bibtex-style'] },
106
- { icon: { name: 'log' }, ids: ['log'] },
107
- { icon: { name: 'jupyter' }, ids: ['jupyter'] },
108
- { icon: { name: 'document' }, ids: ['plaintext'] },
109
- { icon: { name: 'pdf' }, ids: ['pdf'] },
110
- { icon: { name: 'powershell' }, ids: ['powershell'] },
111
- { icon: { name: 'pug' }, ids: ['jade'] },
112
- { icon: { name: 'r' }, ids: ['r', 'rsweave'] },
113
- { icon: { name: 'rust' }, ids: ['rust'] },
114
- { icon: { name: 'database' }, ids: ['sql'] },
115
- { icon: { name: 'kusto' }, ids: ['kql'] },
116
- { icon: { name: 'lock' }, ids: ['ssh_config'] },
117
- { icon: { name: 'svg' }, ids: ['svg'] },
118
- { icon: { name: 'swift' }, ids: ['swift'] },
119
- { icon: { name: 'react_ts' }, ids: ['typescriptreact'] },
120
- { icon: { name: 'search' }, ids: ['search-result'] },
121
- { icon: { name: 'minecraft' }, ids: ['mcfunction'] },
122
- { icon: { name: 'rescript' }, ids: ['rescript'] },
123
- { icon: { name: 'otne' }, ids: ['otne'] },
124
- {
125
- icon: { name: 'twine' },
126
- ids: ['twee3', 'twee3-harlowe-3', 'twee3-chapbook-1', 'twee3-sugarcube-2'],
127
- },
128
- { icon: { name: 'grain' }, ids: ['grain'] },
129
- { icon: { name: 'lolcode' }, ids: ['lolcode'] },
130
- { icon: { name: 'idris' }, ids: ['idris'] },
131
- { icon: { name: 'chess' }, ids: ['pgn'] },
132
- { icon: { name: 'gemini' }, ids: ['gemini', 'text-gemini'] },
133
- { icon: { name: 'vlang' }, ids: ['v'] },
134
- { icon: { name: 'wolframlanguage' }, ids: ['wolfram'] },
135
- { icon: { name: 'shader' }, ids: ['hlsl', 'glsl', 'wgsl'] },
136
- { icon: { name: 'tree' }, ids: ['tree'] },
137
- { icon: { name: 'svelte' }, ids: ['svelte'] },
138
- { icon: { name: 'dart' }, ids: ['dart'] },
139
- { icon: { name: 'cadence' }, ids: ['cadence'] },
140
- { icon: { name: 'stylable' }, ids: ['stylable'] },
141
- ];
1
+ import { LanguageIcon } from '../models';
2
+
3
+ /**
4
+ * Defines icons for language ids
5
+ */
6
+ export const languageIcons: LanguageIcon[] = [
7
+ { icon: { name: 'git' }, ids: ['git', 'git-commit', 'git-rebase', 'ignore'] },
8
+ { icon: { name: 'c' }, ids: ['c', 'objective-c', 'objective-cpp'] },
9
+ { icon: { name: 'yaml' }, ids: ['yaml'] },
10
+ { icon: { name: 'xml' }, ids: ['xml', 'xquery', 'xsl'] },
11
+ { icon: { name: 'matlab' }, ids: ['matlab'] },
12
+ {
13
+ icon: { name: 'settings' },
14
+ ids: ['makefile', 'toml', 'ini', 'properties'],
15
+ },
16
+ { icon: { name: 'shaderlab' }, ids: ['shaderlab'] },
17
+ { icon: { name: 'diff' }, ids: ['diff'] },
18
+ { icon: { name: 'json' }, ids: ['json', 'jsonc', 'json5'] },
19
+ { icon: { name: 'blink' }, ids: ['blink'] },
20
+ { icon: { name: 'java' }, ids: ['java'] },
21
+ { icon: { name: 'razor' }, ids: ['razor', 'aspnetcorerazor'] },
22
+ { icon: { name: 'python' }, ids: ['python'] },
23
+ { icon: { name: 'javascript' }, ids: ['javascript'] },
24
+ { icon: { name: 'typescript' }, ids: ['typescript'] },
25
+ { icon: { name: 'scala' }, ids: ['scala'] },
26
+ { icon: { name: 'handlebars' }, ids: ['handlebars'] },
27
+ { icon: { name: 'perl' }, ids: ['perl', 'perl6'] },
28
+ { icon: { name: 'haxe' }, ids: ['haxe', 'hxml'] },
29
+ { icon: { name: 'puppet' }, ids: ['puppet'] },
30
+ { icon: { name: 'elixir' }, ids: ['elixir'] },
31
+ { icon: { name: 'livescript' }, ids: ['livescript'] },
32
+ { icon: { name: 'erlang' }, ids: ['erlang'] },
33
+ { icon: { name: 'twig' }, ids: ['twig'] },
34
+ { icon: { name: 'julia' }, ids: ['julia'] },
35
+ { icon: { name: 'elm' }, ids: ['elm'] },
36
+ { icon: { name: 'purescript' }, ids: ['purescript'] },
37
+ { icon: { name: 'stylus' }, ids: ['stylus'] },
38
+ { icon: { name: 'nunjucks' }, ids: ['nunjucks'] },
39
+ { icon: { name: 'pug' }, ids: ['pug'] },
40
+ { icon: { name: 'robot' }, ids: ['robotframework'] },
41
+ { icon: { name: 'sass' }, ids: ['sass', 'scss'] },
42
+ { icon: { name: 'less' }, ids: ['less'] },
43
+ { icon: { name: 'css' }, ids: ['css'] },
44
+ { icon: { name: 'visualstudio' }, ids: ['testOutput', 'vb'] },
45
+ { icon: { name: 'angular' }, ids: ['ng-template'] },
46
+ { icon: { name: 'graphql' }, ids: ['graphql'] },
47
+ { icon: { name: 'solidity' }, ids: ['solidity'] },
48
+ { icon: { name: 'autoit' }, ids: ['autoit'] },
49
+ { icon: { name: 'haml' }, ids: ['haml'] },
50
+ { icon: { name: 'yang' }, ids: ['yang'] },
51
+ { icon: { name: 'terraform' }, ids: ['terraform'] },
52
+ { icon: { name: 'applescript' }, ids: ['applescript'] },
53
+ { icon: { name: 'cake' }, ids: ['cake'] },
54
+ { icon: { name: 'cucumber' }, ids: ['cucumber'] },
55
+ { icon: { name: 'nim' }, ids: ['nim', 'nimble'] },
56
+ { icon: { name: 'apiblueprint' }, ids: ['apiblueprint'] },
57
+ { icon: { name: 'riot' }, ids: ['riot'] },
58
+ { icon: { name: 'postcss' }, ids: ['postcss'] },
59
+ { icon: { name: 'coldfusion' }, ids: ['lang-cfml'] },
60
+ { icon: { name: 'haskell' }, ids: ['haskell'] },
61
+ { icon: { name: 'dhall' }, ids: ['dhall'] },
62
+ { icon: { name: 'cabal' }, ids: ['cabal'] },
63
+ { icon: { name: 'nix' }, ids: ['nix'] },
64
+ { icon: { name: 'ruby' }, ids: ['ruby'] },
65
+ { icon: { name: 'slim' }, ids: ['slim'] },
66
+ { icon: { name: 'php' }, ids: ['php'] },
67
+ { icon: { name: 'php_elephant' }, ids: [] },
68
+ { icon: { name: 'php_elephant_pink' }, ids: [] },
69
+ { icon: { name: 'hack' }, ids: ['hack'] },
70
+ { icon: { name: 'react' }, ids: ['javascriptreact'] },
71
+ { icon: { name: 'mjml' }, ids: ['mjml'] },
72
+ { icon: { name: 'processing' }, ids: ['processing'] },
73
+ { icon: { name: 'hcl' }, ids: ['hcl'] },
74
+ { icon: { name: 'go' }, ids: ['go'] },
75
+ { icon: { name: 'go_gopher' }, ids: [] },
76
+ { icon: { name: 'nodejs_alt' }, ids: [] },
77
+ { icon: { name: 'django' }, ids: ['django-html', 'django-txt'] },
78
+ { icon: { name: 'html' }, ids: ['html'] },
79
+ { icon: { name: 'godot' }, ids: ['gdscript'] },
80
+ { icon: { name: 'vim' }, ids: ['viml'] },
81
+ { icon: { name: 'silverstripe' }, ids: [] },
82
+ { icon: { name: 'prolog' }, ids: ['prolog'] },
83
+ { icon: { name: 'pawn' }, ids: ['pawn'] },
84
+ { icon: { name: 'reason' }, ids: ['reason', 'reason_lisp'] },
85
+ { icon: { name: 'sml' }, ids: ['sml'] },
86
+ { icon: { name: 'tex' }, ids: ['tex', 'doctex', 'latex', 'latex-expl3'] },
87
+ { icon: { name: 'salesforce' }, ids: ['apex'] },
88
+ { icon: { name: 'sas' }, ids: ['sas'] },
89
+ { icon: { name: 'docker' }, ids: ['dockerfile'] },
90
+ { icon: { name: 'table' }, ids: ['csv', 'tsv', 'psv'] },
91
+ { icon: { name: 'csharp' }, ids: ['csharp'] },
92
+ { icon: { name: 'console' }, ids: ['bat', 'awk', 'shellscript'] },
93
+ { icon: { name: 'cpp' }, ids: ['cpp'] },
94
+ { icon: { name: 'coffee' }, ids: ['coffeescript'] },
95
+ { icon: { name: 'fsharp' }, ids: ['fsharp'] },
96
+ { icon: { name: 'editorconfig' }, ids: ['editorconfig'] },
97
+ { icon: { name: 'clojure' }, ids: ['clojure'] },
98
+ { icon: { name: 'groovy' }, ids: ['groovy'] },
99
+ { icon: { name: 'markdown' }, ids: ['markdown'] },
100
+ { icon: { name: 'jinja' }, ids: ['jinja'] },
101
+ { icon: { name: 'proto' }, ids: ['proto'] },
102
+ { icon: { name: 'python-misc' }, ids: ['pip-requirements'] },
103
+ { icon: { name: 'vue' }, ids: ['vue', 'vue-postcss', 'vue-html'] },
104
+ { icon: { name: 'lua' }, ids: ['lua'] },
105
+ { icon: { name: 'lib' }, ids: ['bibtex', 'bibtex-style'] },
106
+ { icon: { name: 'log' }, ids: ['log'] },
107
+ { icon: { name: 'jupyter' }, ids: ['jupyter'] },
108
+ { icon: { name: 'document' }, ids: ['plaintext'] },
109
+ { icon: { name: 'pdf' }, ids: ['pdf'] },
110
+ { icon: { name: 'powershell' }, ids: ['powershell'] },
111
+ { icon: { name: 'pug' }, ids: ['jade'] },
112
+ { icon: { name: 'r' }, ids: ['r', 'rsweave'] },
113
+ { icon: { name: 'rust' }, ids: ['rust'] },
114
+ { icon: { name: 'database' }, ids: ['sql'] },
115
+ { icon: { name: 'kusto' }, ids: ['kql'] },
116
+ { icon: { name: 'lock' }, ids: ['ssh_config'] },
117
+ { icon: { name: 'svg' }, ids: ['svg'] },
118
+ { icon: { name: 'swift' }, ids: ['swift'] },
119
+ { icon: { name: 'react_ts' }, ids: ['typescriptreact'] },
120
+ { icon: { name: 'search' }, ids: ['search-result'] },
121
+ { icon: { name: 'minecraft' }, ids: ['mcfunction'] },
122
+ { icon: { name: 'rescript' }, ids: ['rescript'] },
123
+ { icon: { name: 'otne' }, ids: ['otne'] },
124
+ {
125
+ icon: { name: 'twine' },
126
+ ids: ['twee3', 'twee3-harlowe-3', 'twee3-chapbook-1', 'twee3-sugarcube-2'],
127
+ },
128
+ { icon: { name: 'grain' }, ids: ['grain'] },
129
+ { icon: { name: 'lolcode' }, ids: ['lolcode'] },
130
+ { icon: { name: 'idris' }, ids: ['idris'] },
131
+ { icon: { name: 'chess' }, ids: ['pgn'] },
132
+ { icon: { name: 'gemini' }, ids: ['gemini', 'text-gemini'] },
133
+ { icon: { name: 'vlang' }, ids: ['v'] },
134
+ { icon: { name: 'wolframlanguage' }, ids: ['wolfram'] },
135
+ { icon: { name: 'shader' }, ids: ['hlsl', 'glsl', 'wgsl'] },
136
+ { icon: { name: 'tree' }, ids: ['tree'] },
137
+ { icon: { name: 'svelte' }, ids: ['svelte'] },
138
+ { icon: { name: 'dart' }, ids: ['dart'] },
139
+ { icon: { name: 'cadence' }, ids: ['cadence'] },
140
+ { icon: { name: 'stylable' }, ids: ['stylable'] },
141
+ ];
@@ -1,41 +1,41 @@
1
- export interface Translation {
2
- activate: string;
3
- activated: string;
4
- iconPacks: {
5
- selectPack: string;
6
- description: string;
7
- disabled: string;
8
- };
9
- folders: {
10
- toggleIcons: string;
11
- color: string;
12
- hexCode: string;
13
- wrongHexCode: string;
14
- disabled: string;
15
- theme: {
16
- description: string;
17
- };
18
- };
19
- opacity: {
20
- inputPlaceholder: string;
21
- wrongValue: string;
22
- };
23
- toggleSwitch: {
24
- on: string;
25
- off: string;
26
- };
27
- explorerArrows: {
28
- toggle: string;
29
- enable: string;
30
- disable: string;
31
- };
32
- grayscale: {
33
- toggle: string;
34
- enable: string;
35
- disable: string;
36
- };
37
- saturation: {
38
- inputPlaceholder: string;
39
- wrongValue: string;
40
- };
41
- }
1
+ export interface Translation {
2
+ activate: string;
3
+ activated: string;
4
+ iconPacks: {
5
+ selectPack: string;
6
+ description: string;
7
+ disabled: string;
8
+ };
9
+ folders: {
10
+ toggleIcons: string;
11
+ color: string;
12
+ hexCode: string;
13
+ wrongHexCode: string;
14
+ disabled: string;
15
+ theme: {
16
+ description: string;
17
+ };
18
+ };
19
+ opacity: {
20
+ inputPlaceholder: string;
21
+ wrongValue: string;
22
+ };
23
+ toggleSwitch: {
24
+ on: string;
25
+ off: string;
26
+ };
27
+ explorerArrows: {
28
+ toggle: string;
29
+ enable: string;
30
+ disable: string;
31
+ };
32
+ grayscale: {
33
+ toggle: string;
34
+ enable: string;
35
+ disable: string;
36
+ };
37
+ saturation: {
38
+ inputPlaceholder: string;
39
+ wrongValue: string;
40
+ };
41
+ }
@@ -1,37 +1,37 @@
1
- import { IconJsonOptions } from './';
2
-
3
- export class IconConfiguration {
4
- file?: string;
5
- folder?: string;
6
- folderExpanded?: string;
7
- folderNames?: Record<string, string>;
8
- folderNamesExpanded?: Record<string, string>;
9
- rootFolder?: string;
10
- rootFolderExpanded?: string;
11
- fileExtensions?: Record<string, string>;
12
- fileNames?: Record<string, string>;
13
- languageIds?: Record<string, string>;
14
- iconDefinitions?: Record<string, any>;
15
- light?: IconConfiguration;
16
- highContrast?: IconConfiguration;
17
- options?: IconJsonOptions;
18
- hidesExplorerArrows?: boolean;
19
-
20
- constructor() {
21
- this.iconDefinitions = {};
22
- this.folderNames = {};
23
- this.folderNamesExpanded = {};
24
- this.fileExtensions = {};
25
- this.fileNames = {};
26
- this.languageIds = {};
27
- this.light = {
28
- fileExtensions: {},
29
- fileNames: {},
30
- };
31
- this.highContrast = {
32
- fileExtensions: {},
33
- fileNames: {},
34
- };
35
- this.options = {};
36
- }
37
- }
1
+ import { IconJsonOptions } from './';
2
+
3
+ export class IconConfiguration {
4
+ file?: string;
5
+ folder?: string;
6
+ folderExpanded?: string;
7
+ folderNames?: Record<string, string>;
8
+ folderNamesExpanded?: Record<string, string>;
9
+ rootFolder?: string;
10
+ rootFolderExpanded?: string;
11
+ fileExtensions?: Record<string, string>;
12
+ fileNames?: Record<string, string>;
13
+ languageIds?: Record<string, string>;
14
+ iconDefinitions?: Record<string, any>;
15
+ light?: IconConfiguration;
16
+ highContrast?: IconConfiguration;
17
+ options?: IconJsonOptions;
18
+ hidesExplorerArrows?: boolean;
19
+
20
+ constructor() {
21
+ this.iconDefinitions = {};
22
+ this.folderNames = {};
23
+ this.folderNamesExpanded = {};
24
+ this.fileExtensions = {};
25
+ this.fileNames = {};
26
+ this.languageIds = {};
27
+ this.light = {
28
+ fileExtensions: {},
29
+ fileNames: {},
30
+ };
31
+ this.highContrast = {
32
+ fileExtensions: {},
33
+ fileNames: {},
34
+ };
35
+ this.options = {};
36
+ }
37
+ }
@@ -1,21 +1,21 @@
1
- export interface IconJsonOptions {
2
- activeIconPack?: string;
3
- hidesExplorerArrows?: boolean;
4
- opacity?: number;
5
- saturation?: number;
6
- folders?: {
7
- theme?: string;
8
- color?: string;
9
- associations?: IconAssociations;
10
- };
11
- files?: {
12
- associations?: IconAssociations;
13
- };
14
- languages?: {
15
- associations?: IconAssociations;
16
- };
17
- }
18
-
19
- export interface IconAssociations {
20
- [pattern: string]: string;
21
- }
1
+ export interface IconJsonOptions {
2
+ activeIconPack?: string;
3
+ hidesExplorerArrows?: boolean;
4
+ opacity?: number;
5
+ saturation?: number;
6
+ folders?: {
7
+ theme?: string;
8
+ color?: string;
9
+ associations?: IconAssociations;
10
+ };
11
+ files?: {
12
+ associations?: IconAssociations;
13
+ };
14
+ languages?: {
15
+ associations?: IconAssociations;
16
+ };
17
+ }
18
+
19
+ export interface IconAssociations {
20
+ [pattern: string]: string;
21
+ }
@@ -1,3 +1,3 @@
1
- export * from './icons';
2
- export * from './i18n';
3
- export * from './iconConfiguration';
1
+ export * from './icons';
2
+ export * from './i18n';
3
+ export * from './iconConfiguration';