jupyterlab_vscode_icons_extension 1.0.98 → 1.0.102
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/lib/index.js +4 -4
- package/package.json +1 -1
- package/src/index.ts +4 -4
package/lib/index.js
CHANGED
|
@@ -269,7 +269,7 @@ const fileTypeConfigs = [
|
|
|
269
269
|
group: 'enableConfigIcons'
|
|
270
270
|
},
|
|
271
271
|
{
|
|
272
|
-
pattern: '^\\.git(ignore|modules|attributes)?$',
|
|
272
|
+
pattern: '^\\.git(ignore|modules|attributes|keep)?$',
|
|
273
273
|
extensions: [],
|
|
274
274
|
iconName: 'file-type-git',
|
|
275
275
|
group: 'enableConfigIcons'
|
|
@@ -815,9 +815,9 @@ const plugin = {
|
|
|
815
815
|
// Register Draw.io files with custom orange diagram icon
|
|
816
816
|
if (settings.enableConfigIcons) {
|
|
817
817
|
const drawioSvg = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 161.6 161.6">
|
|
818
|
-
<path fill="#
|
|
819
|
-
<path fill="#
|
|
820
|
-
<path fill="#
|
|
818
|
+
<path fill="#D07005" d="M161.6,154.7c0,3.9-3.2,6.9-6.9,6.9H6.9c-3.9,0-6.9-3.2-6.9-6.9V6.9C0,3,3.2,0,6.9,0h147.8c3.9,0,6.9,3.2,6.9,6.9L161.6,154.7z"/>
|
|
819
|
+
<path fill="#B85A0A" d="M161.6,154.7c0,3.9-3.2,6.9-6.9,6.9H55.3l-32.2-32.7l20-32.7l59.4-73.8l58.9,60.7L161.6,154.7z"/>
|
|
820
|
+
<path fill="#e0e0e0" d="M132.7,90.3h-17l-18-30.6c4-0.8,7-4.4,7-8.6V28c0-4.9-3.9-8.8-8.8-8.8h-30c-4.9,0-8.8,3.9-8.8,8.8v23.1c0,4.3,3,7.8,6.9,8.6L46,90.4H29c-4.9,0-8.8,3.9-8.8,8.8v23.1c0,4.9,3.9,8.8,8.8,8.8h30c4.9,0,8.8-3.9,8.8-8.8V99.2c0-4.9-3.9-8.8-8.8-8.8h-2.9L73.9,60h13.9l17.9,30.4h-3c-4.9,0-8.8,3.9-8.8,8.8v23.1c0,4.9,3.9,8.8,8.8,8.8h30c4.9,0,8.8-3.9,8.8-8.8V99.2C141.5,94.3,137.6,90.3,132.7,90.3z"/>
|
|
821
821
|
</svg>`;
|
|
822
822
|
const drawioIcon = new LabIcon({
|
|
823
823
|
name: 'drawio-icon',
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -302,7 +302,7 @@ const fileTypeConfigs: IFileTypeConfig[] = [
|
|
|
302
302
|
group: 'enableConfigIcons'
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
|
-
pattern: '^\\.git(ignore|modules|attributes)?$',
|
|
305
|
+
pattern: '^\\.git(ignore|modules|attributes|keep)?$',
|
|
306
306
|
extensions: [],
|
|
307
307
|
iconName: 'file-type-git',
|
|
308
308
|
group: 'enableConfigIcons'
|
|
@@ -892,9 +892,9 @@ const plugin: JupyterFrontEndPlugin<void> = {
|
|
|
892
892
|
// Register Draw.io files with custom orange diagram icon
|
|
893
893
|
if (settings.enableConfigIcons) {
|
|
894
894
|
const drawioSvg = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 161.6 161.6">
|
|
895
|
-
<path fill="#
|
|
896
|
-
<path fill="#
|
|
897
|
-
<path fill="#
|
|
895
|
+
<path fill="#D07005" d="M161.6,154.7c0,3.9-3.2,6.9-6.9,6.9H6.9c-3.9,0-6.9-3.2-6.9-6.9V6.9C0,3,3.2,0,6.9,0h147.8c3.9,0,6.9,3.2,6.9,6.9L161.6,154.7z"/>
|
|
896
|
+
<path fill="#B85A0A" d="M161.6,154.7c0,3.9-3.2,6.9-6.9,6.9H55.3l-32.2-32.7l20-32.7l59.4-73.8l58.9,60.7L161.6,154.7z"/>
|
|
897
|
+
<path fill="#e0e0e0" d="M132.7,90.3h-17l-18-30.6c4-0.8,7-4.4,7-8.6V28c0-4.9-3.9-8.8-8.8-8.8h-30c-4.9,0-8.8,3.9-8.8,8.8v23.1c0,4.3,3,7.8,6.9,8.6L46,90.4H29c-4.9,0-8.8,3.9-8.8,8.8v23.1c0,4.9,3.9,8.8,8.8,8.8h30c4.9,0,8.8-3.9,8.8-8.8V99.2c0-4.9-3.9-8.8-8.8-8.8h-2.9L73.9,60h13.9l17.9,30.4h-3c-4.9,0-8.8,3.9-8.8,8.8v23.1c0,4.9,3.9,8.8,8.8,8.8h30c4.9,0,8.8-3.9,8.8-8.8V99.2C141.5,94.3,137.6,90.3,132.7,90.3z"/>
|
|
898
898
|
</svg>`;
|
|
899
899
|
|
|
900
900
|
const drawioIcon = new LabIcon({
|