material-icon-theme 5.7.0 → 5.9.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/dist/material-icons.json +1 -10671
- package/dist/module/index.cjs +1 -4248
- package/dist/types/core/generator/applyConfigToIcons.d.ts +10 -0
- package/dist/types/core/generator/applyConfigToIcons.d.ts.map +1 -0
- package/dist/types/core/generator/clones/clonesGenerator.d.ts +3 -3
- package/dist/types/core/generator/clones/clonesGenerator.d.ts.map +1 -1
- package/dist/types/core/generator/clones/utils/cloneData.d.ts +2 -2
- package/dist/types/core/generator/clones/utils/cloneData.d.ts.map +1 -1
- package/dist/types/core/generator/clones/utils/cloning.d.ts +7 -7
- package/dist/types/core/generator/clones/utils/cloning.d.ts.map +1 -1
- package/dist/types/core/generator/clones/utils/color/colors.d.ts +4 -4
- package/dist/types/core/generator/clones/utils/color/colors.d.ts.map +1 -1
- package/dist/types/core/generator/clones/utils/color/materialPalette.d.ts +2 -2
- package/dist/types/core/generator/clones/utils/color/materialPalette.d.ts.map +1 -1
- package/dist/types/core/generator/config/defaultConfig.d.ts +1 -1
- package/dist/types/core/generator/config/defaultConfig.d.ts.map +1 -1
- package/dist/types/core/generator/constants.d.ts +8 -0
- package/dist/types/core/generator/constants.d.ts.map +1 -1
- package/dist/types/core/generator/fileGenerator.d.ts +1 -1
- package/dist/types/core/generator/fileGenerator.d.ts.map +1 -1
- package/dist/types/core/generator/folderGenerator.d.ts +1 -1
- package/dist/types/core/generator/folderGenerator.d.ts.map +1 -1
- package/dist/types/core/generator/generateManifest.d.ts +6 -0
- package/dist/types/core/generator/generateManifest.d.ts.map +1 -0
- 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/iconSaturation.d.ts +1 -1
- package/dist/types/core/generator/iconSaturation.d.ts.map +1 -1
- package/dist/types/core/generator/renameIconFiles.d.ts +9 -0
- package/dist/types/core/generator/renameIconFiles.d.ts.map +1 -0
- package/dist/types/core/generator/shared/svg.d.ts +1 -1
- package/dist/types/core/generator/shared/svg.d.ts.map +1 -1
- package/dist/types/core/helpers/configHash.d.ts.map +1 -1
- package/dist/types/core/helpers/writeFile.d.ts +8 -0
- package/dist/types/core/helpers/writeFile.d.ts.map +1 -0
- package/dist/types/core/i18n/translate.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 +9 -4
- package/dist/types/core/index.d.ts.map +1 -1
- package/dist/types/core/logging/logger.d.ts +19 -0
- package/dist/types/core/logging/logger.d.ts.map +1 -0
- package/dist/types/core/models/icons/config.d.ts +4 -0
- package/dist/types/core/models/icons/config.d.ts.map +1 -1
- package/dist/types/core/models/icons/defaultIcon.d.ts +1 -1
- package/dist/types/core/models/icons/files/fileIcon.d.ts +4 -4
- package/dist/types/core/models/icons/folders/folderIcon.d.ts +2 -2
- package/dist/types/core/models/icons/languages/languageIdentifier.d.ts +1 -1
- package/dist/types/core/models/icons/patterns/patterns.d.ts +1 -1
- package/dist/types/core/models/icons/patterns/patterns.d.ts.map +1 -1
- package/dist/types/core/models/manifest.d.ts +10 -0
- package/dist/types/core/models/manifest.d.ts.map +1 -1
- package/icons/angular-interceptor.clone.svg +1 -0
- package/icons/cds.svg +1 -0
- package/icons/clangd.svg +1 -0
- package/icons/drizzle.svg +1 -0
- package/icons/folder-development-open.clone.svg +1 -0
- package/icons/folder-development.clone.svg +1 -0
- package/icons/folder-drizzle-open.svg +1 -0
- package/icons/folder-drizzle.svg +1 -0
- package/icons/folder-flutter-open.svg +1 -0
- package/icons/folder-flutter.svg +1 -0
- package/icons/folder-snippet-open.svg +1 -0
- package/icons/folder-snippet.svg +1 -0
- package/icons/folder-store-open.svg +1 -0
- package/icons/folder-store.svg +1 -0
- package/icons/hurl.svg +1 -0
- package/icons/image.svg +1 -1
- package/icons/jsr.svg +1 -0
- package/icons/jsr_light.svg +1 -0
- package/icons/just.svg +1 -0
- package/icons/readme.svg +1 -1
- package/icons/remark.svg +1 -0
- package/icons/rocket.svg +1 -0
- package/icons/rust.svg +1 -1
- package/icons/slint.svg +1 -0
- package/icons/tape.clone.svg +1 -0
- package/package.json +63 -14
- package/dist/types/core/generator/jsonGenerator.d.ts +0 -31
- package/dist/types/core/generator/jsonGenerator.d.ts.map +0 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Config } from '../models/icons/config';
|
|
2
|
+
/**
|
|
3
|
+
* Apply the configuration to the icons. But only if the configuration has changed.
|
|
4
|
+
* If the affectedConfig is not set then all icons will be updated.
|
|
5
|
+
*
|
|
6
|
+
* @param config Configuration that customizes the icons and the manifest.
|
|
7
|
+
* @param affectedConfig Set of configuration keys that have changed so that not all functions need to be executed.
|
|
8
|
+
*/
|
|
9
|
+
export declare const applyConfigToIcons: (config: Config, oldConfig: Config) => Promise<void>;
|
|
10
|
+
//# sourceMappingURL=applyConfigToIcons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"applyConfigToIcons.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/applyConfigToIcons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAMrD;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB,WAAkB,MAAM,aAAa,MAAM,kBAsBzE,CAAC"}
|
|
@@ -6,13 +6,13 @@ import type { Manifest } from '../../models/manifest';
|
|
|
6
6
|
* Creates custom icons by cloning already existing icons and changing
|
|
7
7
|
* their colors, based on the user's provided configurations.
|
|
8
8
|
*/
|
|
9
|
-
export declare
|
|
9
|
+
export declare const customClonesIcons: (manifest: Manifest, config: Config) => Promise<Manifest>;
|
|
10
10
|
/**
|
|
11
11
|
* Creates custom icons by cloning already existing icons and changing
|
|
12
12
|
* their colors, based on the configurations provided by the extension.
|
|
13
13
|
* (this is meant to be called at build time)
|
|
14
14
|
*/
|
|
15
|
-
export declare
|
|
15
|
+
export declare const generateConfiguredClones: (iconsList: FolderTheme[] | FileIcons, manifest: Manifest) => Promise<void>;
|
|
16
16
|
/** Checks if there are any custom clones to be created */
|
|
17
|
-
export declare
|
|
17
|
+
export declare const hasCustomClones: (config: Config) => boolean;
|
|
18
18
|
//# sourceMappingURL=clonesGenerator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clonesGenerator.d.ts","sourceRoot":"","sources":["../../../../../src/core/generator/clones/clonesGenerator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"clonesGenerator.d.ts","sourceRoot":"","sources":["../../../../../src/core/generator/clones/clonesGenerator.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,MAAM,EAIP,MAAM,2BAA2B,CAAC;AACnC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAC1E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAKtD;;;GAGG;AACH,eAAO,MAAM,iBAAiB,aAClB,QAAQ,UACV,MAAM,KACb,OAAO,CAAC,QAAQ,CA2BlB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,cACxB,WAAW,EAAE,GAAG,SAAS,YAC1B,QAAQ,kBA+CnB,CAAC;AAEF,0DAA0D;AAC1D,eAAO,MAAM,eAAe,WAAY,MAAM,KAAG,OAKhD,CAAC"}
|
|
@@ -29,10 +29,10 @@ export declare const isFolder: (clone: CustomClone) => clone is FolderIconClone;
|
|
|
29
29
|
* @param manifest the current configuration of the extension
|
|
30
30
|
* @param hash the current hash being applied to the icons
|
|
31
31
|
*/
|
|
32
|
-
export declare
|
|
32
|
+
export declare const getCloneData: (cloneOpts: CustomClone, manifest: Manifest, subFolder: string, hash: string, ext?: string) => CloneData[] | undefined;
|
|
33
33
|
/**
|
|
34
34
|
* removes the clones folder if it exists
|
|
35
35
|
* and creates a new one if `keep` is true
|
|
36
36
|
*/
|
|
37
|
-
export declare
|
|
37
|
+
export declare const clearCloneFolder: (keep?: boolean) => Promise<void>;
|
|
38
38
|
//# sourceMappingURL=cloneData.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloneData.d.ts","sourceRoot":"","sources":["../../../../../../src/core/generator/clones/utils/cloneData.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cloneData.d.ts","sourceRoot":"","sources":["../../../../../../src/core/generator/clones/utils/cloneData.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,WAAW,EAEX,eAAe,EAChB,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAOzD,oBAAY,OAAO;IACjB,IAAI,IAAA;IACJ,IAAI,IAAA;IACJ,KAAK,IAAA;IACL,SAAS,IAAA;CACV;AAED,oBAAY,IAAI;IACd,MAAM,IAAA;IACN,IAAI,IAAA;CACL;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,IAAI,EAAE,IAAI,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,QAAQ,GAAG;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,QAAQ,CAAC;CAChB,CAAC;AAEF,qEAAqE;AACrE,eAAO,MAAM,QAAQ,UAAW,WAAW,KAAG,KAAK,IAAI,eAEtD,CAAC;AAMF;;;;;GAKG;AACH,eAAO,MAAM,YAAY,cACZ,WAAW,YACZ,QAAQ,aACP,MAAM,QACX,MAAM,QACN,MAAM,KACX,SAAS,EAAE,GAAG,SAwBhB,CAAC;AAgIF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,sBAAwB,OAAO,CAAC,IAAI,CAUhE,CAAC"}
|
|
@@ -3,17 +3,17 @@ import { type INode } from 'svgson';
|
|
|
3
3
|
* Recursively walks through an SVG node tree and its children,
|
|
4
4
|
* calling a callback on each node.
|
|
5
5
|
*/
|
|
6
|
-
export declare
|
|
6
|
+
export declare const traverse: (node: INode, callback: (node: INode) => void, filter?: boolean) => void;
|
|
7
7
|
/** Reads an icon from the file system and returns its content. */
|
|
8
|
-
export declare
|
|
8
|
+
export declare const readIcon: (path: string, hash: string) => Promise<string>;
|
|
9
9
|
/** Clones an icon and changes its colors according to the clone options. */
|
|
10
|
-
export declare
|
|
10
|
+
export declare const cloneIcon: (path: string, color: string, hash?: string) => Promise<string>;
|
|
11
11
|
/** Gets the style attribute of an SVG node if it exists. */
|
|
12
|
-
export declare
|
|
12
|
+
export declare const getStyle: (node: INode) => Record<string, string>;
|
|
13
13
|
/** Converts object to css style string. */
|
|
14
|
-
export declare
|
|
14
|
+
export declare const stringifyStyle: (css: Record<string, string>) => string;
|
|
15
15
|
/** Replaces colors in an SVG node using a replacement map. */
|
|
16
|
-
export declare
|
|
16
|
+
export declare const replaceColors: (node: INode, replacements: Map<string, string>) => void;
|
|
17
17
|
/** Creates a clone configuration with empty light object. */
|
|
18
|
-
export declare
|
|
18
|
+
export declare const createCloneConfig: () => import("../../../models/manifest").Manifest;
|
|
19
19
|
//# sourceMappingURL=cloning.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloning.d.ts","sourceRoot":"","sources":["../../../../../../src/core/generator/clones/utils/cloning.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"cloning.d.ts","sourceRoot":"","sources":["../../../../../../src/core/generator/clones/utils/cloning.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,KAAK,EAAoB,MAAM,QAAQ,CAAC;AAItD;;;GAGG;AACH,eAAO,MAAM,QAAQ,SACb,KAAK,YACD,CAAC,IAAI,EAAE,KAAK,KAAK,IAAI,2BAUhC,CAAC;AAEF,kEAAkE;AAClE,eAAO,MAAM,QAAQ,SAAgB,MAAM,QAAQ,MAAM,KAAG,OAAO,CAAC,MAAM,CAOzE,CAAC;AAEF,4EAA4E;AAC5E,eAAO,MAAM,SAAS,SACd,MAAM,SACL,MAAM,oBAEZ,OAAO,CAAC,MAAM,CAMhB,CAAC;AAEF,4DAA4D;AAC5D,eAAO,MAAM,QAAQ,SAAU,KAAK,2BAKnC,CAAC;AAaF,2CAA2C;AAC3C,eAAO,MAAM,cAAc,QAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,WAIzD,CAAC;AAEF,8DAA8D;AAC9D,eAAO,MAAM,aAAa,SAClB,KAAK,gBACG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,SAqClC,CAAC;AAEF,6DAA6D;AAC7D,eAAO,MAAM,iBAAiB,mDAU7B,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { type INode } from 'svgson';
|
|
2
2
|
/** Get all the colors used in the SVG node as a `Set` list. **/
|
|
3
|
-
export declare
|
|
3
|
+
export declare const getColorList: (node: INode) => Set<string>;
|
|
4
4
|
/** given a set of colors, orders them from dark to light. **/
|
|
5
|
-
export declare
|
|
5
|
+
export declare const orderDarkToLight: (colors: Set<string>) => string[];
|
|
6
6
|
/** checks if a string is a valid color. **/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const isValidColor: (color: string | undefined) => boolean;
|
|
8
8
|
/**
|
|
9
9
|
* Creates a map of color replacements based on the base color and
|
|
10
10
|
* the list of colors.
|
|
@@ -14,5 +14,5 @@ export declare function isValidColor(color: string | undefined): boolean;
|
|
|
14
14
|
* the material palette to find the most appropriate color for the rest
|
|
15
15
|
* in the list.
|
|
16
16
|
*/
|
|
17
|
-
export declare
|
|
17
|
+
export declare const replacementMap: (baseColor: string, colors: Set<string>) => Map<string, string>;
|
|
18
18
|
//# sourceMappingURL=colors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../../../../src/core/generator/clones/utils/color/colors.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,QAAQ,CAAC;AAOpC,gEAAgE;AAChE,
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../../../../src/core/generator/clones/utils/color/colors.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,QAAQ,CAAC;AAOpC,gEAAgE;AAChE,eAAO,MAAM,YAAY,SAAU,KAAK,gBAoCvC,CAAC;AAEF,8DAA8D;AAC9D,eAAO,MAAM,gBAAgB,WAAY,GAAG,CAAC,MAAM,CAAC,aAenD,CAAC;AAMF,4CAA4C;AAC5C,eAAO,MAAM,YAAY,UAAW,MAAM,GAAG,SAAS,KAAG,OAKxD,CAAC;AAEF;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc,cAAe,MAAM,UAAU,GAAG,CAAC,MAAM,CAAC,wBA0CpE,CAAC"}
|
|
@@ -260,10 +260,10 @@ export declare const materialPalette: {
|
|
|
260
260
|
* Gets the material color from the material palette
|
|
261
261
|
* @param key the key of the material color e.g. 'blue-grey-500'
|
|
262
262
|
*/
|
|
263
|
-
export declare
|
|
263
|
+
export declare const getMaterialColorByKey: (key: string) => string | undefined;
|
|
264
264
|
/**
|
|
265
265
|
* Given a color, returns the closest material color from the
|
|
266
266
|
* material palette.
|
|
267
267
|
*/
|
|
268
|
-
export declare
|
|
268
|
+
export declare const closerMaterialColorTo: (color: string) => string;
|
|
269
269
|
//# sourceMappingURL=materialPalette.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"materialPalette.d.ts","sourceRoot":"","sources":["../../../../../../../src/core/generator/clones/utils/color/materialPalette.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiQ3B,CAAC;AAEF;;;GAGG;AACH,
|
|
1
|
+
{"version":3,"file":"materialPalette.d.ts","sourceRoot":"","sources":["../../../../../../../src/core/generator/clones/utils/color/materialPalette.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiQ3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,QAAS,MAAM,KAAG,MAAM,GAAG,SAM5D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,UAAW,MAAM,KAAG,MAkBrD,CAAC"}
|
|
@@ -3,7 +3,7 @@ import type { RecursivePartial } from '../../types/recursivePartial';
|
|
|
3
3
|
/**
|
|
4
4
|
* The options control the generator and decide which icons are disabled or not.
|
|
5
5
|
*/
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const getDefaultConfig: () => Required<Config>;
|
|
7
7
|
/**
|
|
8
8
|
* Fill in missing configuration values with the default values.
|
|
9
9
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultConfig.d.ts","sourceRoot":"","sources":["../../../../../src/core/generator/config/defaultConfig.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAErE;;GAEG;AACH,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"defaultConfig.d.ts","sourceRoot":"","sources":["../../../../../src/core/generator/config/defaultConfig.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAErE;;GAEG;AACH,eAAO,MAAM,gBAAgB,QAAO,QAAQ,CAAC,MAAM,CAmBjD,CAAC;AAEH;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,YACtB,gBAAgB,CAAC,MAAM,CAAC,KAChC,MAIF,CAAC"}
|
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
* Name of the VS Code extension.
|
|
3
3
|
*/
|
|
4
4
|
export declare const extensionName = "material-icon-theme";
|
|
5
|
+
/**
|
|
6
|
+
* Name of the extension publisher.
|
|
7
|
+
*/
|
|
8
|
+
export declare const extensionPublisher = "PKief";
|
|
9
|
+
/**
|
|
10
|
+
* Key to identify the log event.
|
|
11
|
+
*/
|
|
12
|
+
export declare const logEventKey = "material-icon-theme-log-event";
|
|
5
13
|
/**
|
|
6
14
|
* Path where the icons are located.
|
|
7
15
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/constants.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,aAAa,wBAAwB,CAAC;AAEnD;;GAEG;AACH,eAAO,MAAM,cAAc,gBAAgB,CAAC;AAE5C;;GAEG;AACH,eAAO,MAAM,YAAY,wBAAwB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,YAAY,UAAU,CAAC;AAEpC;;GAEG;AACH,eAAO,MAAM,oBAAoB,WAAW,CAAC;AAE7C;;GAEG;AACH,eAAO,MAAM,2BAA2B,kBAAkB,CAAC;AAE3D;;GAEG;AACH,eAAO,MAAM,kBAAkB,eAAe,CAAC;AAE/C;;GAEG;AACH,eAAO,MAAM,YAAY,YAAY,CAAC;AAEtC;;GAEG;AACH,eAAO,MAAM,eAAe,QAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/constants.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,aAAa,wBAAwB,CAAC;AAEnD;;GAEG;AACH,eAAO,MAAM,kBAAkB,UAAU,CAAC;AAE1C;;GAEG;AACH,eAAO,MAAM,WAAW,kCAA+B,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,cAAc,gBAAgB,CAAC;AAE5C;;GAEG;AACH,eAAO,MAAM,YAAY,wBAAwB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,YAAY,UAAU,CAAC;AAEpC;;GAEG;AACH,eAAO,MAAM,oBAAoB,WAAW,CAAC;AAE7C;;GAEG;AACH,eAAO,MAAM,2BAA2B,kBAAkB,CAAC;AAE3D;;GAEG;AACH,eAAO,MAAM,kBAAkB,eAAe,CAAC;AAE/C;;GAEG;AACH,eAAO,MAAM,YAAY,YAAY,CAAC;AAEtC;;GAEG;AACH,eAAO,MAAM,eAAe,QAA2B,CAAC"}
|
|
@@ -5,5 +5,5 @@ import type { Manifest } from '../models/manifest';
|
|
|
5
5
|
* Get all file icons that can be used in this theme.
|
|
6
6
|
*/
|
|
7
7
|
export declare const loadFileIconDefinitions: (fileIcons: FileIcons, config: Config, manifest: Manifest) => Manifest;
|
|
8
|
-
export declare const generateFileIcons: (color: string, opacity: number, saturation: number) => void
|
|
8
|
+
export declare const generateFileIcons: (color: string, opacity: number, saturation: number) => Promise<void>;
|
|
9
9
|
//# sourceMappingURL=fileGenerator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fileGenerator.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/fileGenerator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"fileGenerator.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/fileGenerator.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAoB,MAAM,wBAAwB,CAAC;AAEvE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAEjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAWnD;;GAEG;AACH,eAAO,MAAM,uBAAuB,cACvB,SAAS,UACZ,MAAM,YACJ,QAAQ,KACjB,QAmFF,CAAC;AAuFF,eAAO,MAAM,iBAAiB,UACrB,MAAM,WACJ,MAAM,cACH,MAAM,kBAenB,CAAC"}
|
|
@@ -5,5 +5,5 @@ import type { Manifest } from '../models/manifest';
|
|
|
5
5
|
* Get the folder icon definitions as object.
|
|
6
6
|
*/
|
|
7
7
|
export declare const loadFolderIconDefinitions: (folderIcons: FolderTheme[], config: Config, manifest: Manifest) => Manifest;
|
|
8
|
-
export declare const generateFolderIcons: (color: string, opacity: number, saturation: number) => void
|
|
8
|
+
export declare const generateFolderIcons: (color: string, opacity: number, saturation: number) => Promise<void>;
|
|
9
9
|
//# sourceMappingURL=folderGenerator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"folderGenerator.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/folderGenerator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"folderGenerator.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/folderGenerator.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,MAAM,EAAoB,MAAM,wBAAwB,CAAC;AAGvE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AAEvE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAWnD;;GAEG;AACH,eAAO,MAAM,yBAAyB,gBACvB,WAAW,EAAE,UAClB,MAAM,YACJ,QAAQ,KACjB,QAmCF,CAAC;AA4PF,eAAO,MAAM,mBAAmB,UACvB,MAAM,WACJ,MAAM,cACH,MAAM,kBAuCnB,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type Manifest, type ManifestConfig } from '../models/manifest';
|
|
2
|
+
/**
|
|
3
|
+
* Generate the manifest that will be written as JSON file.
|
|
4
|
+
*/
|
|
5
|
+
export declare const generateManifest: (config?: ManifestConfig) => Manifest;
|
|
6
|
+
//# sourceMappingURL=generateManifest.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generateManifest.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/generateManifest.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,KAAK,QAAQ,EACb,KAAK,cAAc,EAEpB,MAAM,oBAAoB,CAAC;AAM5B;;GAEG;AACH,eAAO,MAAM,gBAAgB,YAAa,cAAc,KAAG,QAwB1D,CAAC"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Changes the opacity of all icons in the set.
|
|
3
3
|
* @param config Icon JSON options which include the opacity value.
|
|
4
4
|
*/
|
|
5
|
-
export declare const setIconOpacity: (opacity: number, filesAssociations: Record<string, string>) => void
|
|
5
|
+
export declare const setIconOpacity: (opacity: number, filesAssociations: Record<string, string>) => Promise<void>;
|
|
6
6
|
/**
|
|
7
7
|
* Validate the opacity value.
|
|
8
8
|
* @param opacity Opacity value
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iconOpacity.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/iconOpacity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"iconOpacity.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/iconOpacity.ts"],"names":[],"mappings":"AAQA;;;GAGG;AACH,eAAO,MAAM,cAAc,YAChB,MAAM,qBACI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,kBA6B1C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,YAAa,MAAM,GAAG,SAAS,YAE/D,CAAC;AAmCF,gEAAgE;AAChE,eAAO,MAAM,gBAAgB,QAAS,MAAM,WAAW,MAAM,KAAG,MAW/D,CAAC"}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @param config Icon JSON options which include the saturation value.
|
|
4
4
|
* @param fileNames Only change the saturation of certain file names.
|
|
5
5
|
*/
|
|
6
|
-
export declare const setIconSaturation: (saturation: number, filesAssociations: Record<string, string>) => void
|
|
6
|
+
export declare const setIconSaturation: (saturation: number, filesAssociations: Record<string, string>) => Promise<void>;
|
|
7
7
|
/**
|
|
8
8
|
* Validate the saturation value.
|
|
9
9
|
* @param saturation Saturation value
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iconSaturation.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/iconSaturation.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"iconSaturation.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/iconSaturation.ts"],"names":[],"mappings":"AAQA;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,eAChB,MAAM,qBACC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,kBA6B1C,CAAC;AAyDF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,eAAgB,MAAM,GAAG,SAAS,YAErE,CAAC;AAEF,8DAA8D;AAC9D,eAAO,MAAM,mBAAmB,QACzB,MAAM,cACC,MAAM,KACjB,MAsBF,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Config } from '../models/icons/config';
|
|
2
|
+
/**
|
|
3
|
+
* Rename all icon files according their respective config.
|
|
4
|
+
*
|
|
5
|
+
* The rename triggers a change event in VS Code, which will update the icons in the UI.
|
|
6
|
+
* @param config Icon Json Options
|
|
7
|
+
*/
|
|
8
|
+
export declare const renameIconFiles: (config: Config) => void;
|
|
9
|
+
//# sourceMappingURL=renameIconFiles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"renameIconFiles.d.ts","sourceRoot":"","sources":["../../../../src/core/generator/renameIconFiles.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAGrD;;;;;GAKG;AACH,eAAO,MAAM,eAAe,WAAY,MAAM,SAsC7C,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const writeSVGFiles: (iconName: string, svg: string, opacity: number, saturation: number) => void
|
|
1
|
+
export declare const writeSVGFiles: (iconName: string, svg: string, opacity: number, saturation: number) => Promise<void>;
|
|
2
2
|
export declare const getPath: (d: string, color: string) => string;
|
|
3
3
|
export declare const getSVG: (path: string, viewBoxSize?: number) => string;
|
|
4
4
|
//# sourceMappingURL=svg.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"svg.d.ts","sourceRoot":"","sources":["../../../../../src/core/generator/shared/svg.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"svg.d.ts","sourceRoot":"","sources":["../../../../../src/core/generator/shared/svg.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,aAAa,aACd,MAAM,OACX,MAAM,WACF,MAAM,cACH,MAAM,kBAanB,CAAC;AAEF,eAAO,MAAM,OAAO,MAAO,MAAM,SAAS,MAAM,WACX,CAAC;AAEtC,eAAO,MAAM,MAAM,SAAU,MAAM,iCACkE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configHash.d.ts","sourceRoot":"","sources":["../../../../src/core/helpers/configHash.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"configHash.d.ts","sourceRoot":"","sources":["../../../../src/core/helpers/configHash.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAErD;;;GAGG;AACH,eAAO,MAAM,iBAAiB,WAAY,OAAO,CAAC,MAAM,CAAC,KAAG,MA6B3D,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Write content to a file.
|
|
3
|
+
*
|
|
4
|
+
* @param filePath File path to write to
|
|
5
|
+
* @param data Content to write to the file
|
|
6
|
+
*/
|
|
7
|
+
export declare const writeToFile: (filePath: string, data: string, encoding?: BufferEncoding) => Promise<void>;
|
|
8
|
+
//# sourceMappingURL=writeFile.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"writeFile.d.ts","sourceRoot":"","sources":["../../../../src/core/helpers/writeFile.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,eAAO,MAAM,WAAW,aACZ,MAAM,QACV,MAAM,aACD,cAAc,kBAQ1B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translate.d.ts","sourceRoot":"","sources":["../../../../src/core/i18n/translate.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"translate.d.ts","sourceRoot":"","sources":["../../../../src/core/i18n/translate.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAsB9D,kCAAkC;AAClC,eAAO,MAAM,gBAAgB,aAAoB,MAAM,kBAQtD,CAAC;AAiDF;;;;;KAKK;AACL,eAAO,MAAM,mBAAmB,QACzB,MAAM,yDAGV,MAAM,GAAG,SAEX,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,SAAS,QAAS,MAAM,gBAAgB,MAAM,EAAE,KAAG,MAK/D,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,OAAO,WAAW,MAAM,gBAAqB,MAAM,EAAE,WAOjE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fileIcons.d.ts","sourceRoot":"","sources":["../../../../src/core/icons/fileIcons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAKjE;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,
|
|
1
|
+
{"version":3,"file":"fileIcons.d.ts","sourceRoot":"","sources":["../../../../src/core/icons/fileIcons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAKjE;;GAEG;AACH,eAAO,MAAM,SAAS,EAAE,SA6gFvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"folderIcons.d.ts","sourceRoot":"","sources":["../../../../src/core/icons/folderIcons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AAGvE;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,WAAW,
|
|
1
|
+
{"version":3,"file":"folderIcons.d.ts","sourceRoot":"","sources":["../../../../src/core/icons/folderIcons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AAGvE;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,WAAW,EAy5BpC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"languageIcons.d.ts","sourceRoot":"","sources":["../../../../src/core/icons/languageIcons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAC;AAEjF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"languageIcons.d.ts","sourceRoot":"","sources":["../../../../src/core/icons/languageIcons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAC;AAEjF;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,YAAY,EA+JvC,CAAC"}
|
|
@@ -1,20 +1,25 @@
|
|
|
1
|
+
export { applyConfigToIcons } from './generator/applyConfigToIcons';
|
|
1
2
|
export { customClonesIcons, generateConfiguredClones, hasCustomClones, } from './generator/clones/clonesGenerator';
|
|
2
3
|
export { clearCloneFolder } from './generator/clones/utils/cloneData';
|
|
3
|
-
export {
|
|
4
|
-
export { extensionName, highContrastColorFileEnding, lightColorFileEnding, manifestName, openedFolder, } from './generator/constants';
|
|
4
|
+
export { getDefaultConfig, padWithDefaultConfig, } from './generator/config/defaultConfig';
|
|
5
|
+
export { extensionName, extensionPublisher, highContrastColorFileEnding, lightColorFileEnding, logEventKey, manifestName, openedFolder, } from './generator/constants';
|
|
5
6
|
export { generateFileIcons } from './generator/fileGenerator';
|
|
6
7
|
export { generateFolderIcons } from './generator/folderGenerator';
|
|
8
|
+
export { generateManifest } from './generator/generateManifest';
|
|
7
9
|
export { validateOpacityValue } from './generator/iconOpacity';
|
|
8
10
|
export { validateSaturationValue } from './generator/iconSaturation';
|
|
9
|
-
export {
|
|
11
|
+
export { renameIconFiles } from './generator/renameIconFiles';
|
|
10
12
|
export { validateHEXColorCode } from './generator/shared/validation';
|
|
11
13
|
export { availableIconPacks } from './helpers/iconPacks';
|
|
14
|
+
export { get, merge, set } from './helpers/object';
|
|
12
15
|
export { resolvePath } from './helpers/resolvePath';
|
|
13
16
|
export { capitalizeFirstLetter, toTitleCase } from './helpers/titlecase';
|
|
17
|
+
export { writeToFile } from './helpers/writeFile';
|
|
14
18
|
export { initTranslations, translate } from './i18n/translate';
|
|
15
19
|
export { fileIcons } from './icons/fileIcons';
|
|
16
20
|
export { folderIcons } from './icons/folderIcons';
|
|
17
21
|
export { languageIcons } from './icons/languageIcons';
|
|
22
|
+
export { createLoggingObserver, logger, type LogEvent, type LogLevel, } from './logging/logger';
|
|
18
23
|
export type { CloneOptions } from './models/icons/cloneOptions';
|
|
19
24
|
export type { Config, IconAssociations } from './models/icons/config';
|
|
20
25
|
export type { DefaultIcon } from './models/icons/defaultIcon';
|
|
@@ -25,6 +30,6 @@ export type { FolderTheme, FolderThemeName, } from './models/icons/folders/folde
|
|
|
25
30
|
export { IconPack, type IconPackValue } from './models/icons/iconPack';
|
|
26
31
|
export type { LanguageIcon } from './models/icons/languages/languageIdentifier';
|
|
27
32
|
export { FileNamePattern } from './models/icons/patterns/patterns';
|
|
28
|
-
export { type Manifest } from './models/manifest';
|
|
33
|
+
export { type Manifest, type ManifestConfig } from './models/manifest';
|
|
29
34
|
export { parseByPattern } from './patterns/patterns';
|
|
30
35
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,wBAAwB,EACxB,eAAe,GAChB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EACL,iBAAiB,EACjB,wBAAwB,EACxB,eAAe,GAChB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,EACL,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EACL,aAAa,EACb,kBAAkB,EAClB,2BAA2B,EAC3B,oBAAoB,EACpB,WAAW,EACX,YAAY,EACZ,YAAY,GACb,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAClE,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAChE,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,qBAAqB,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC/D,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EACL,qBAAqB,EACrB,MAAM,EACN,KAAK,QAAQ,EACb,KAAK,QAAQ,GACd,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,YAAY,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACtE,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,YAAY,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAC9D,YAAY,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAChE,YAAY,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,YAAY,EACV,WAAW,EACX,eAAe,GAChB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACvE,YAAY,EAAE,YAAY,EAAE,MAAM,6CAA6C,CAAC;AAChF,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,OAAO,EAAE,KAAK,QAAQ,EAAE,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from 'node:events';
|
|
2
|
+
export type LogLevel = 'info' | 'error' | 'debug';
|
|
3
|
+
export type LogEvent = {
|
|
4
|
+
level: LogLevel;
|
|
5
|
+
message: string;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Create a logging observer that listens to log events and calls a callback function when a log event is emitted.
|
|
9
|
+
*
|
|
10
|
+
* @param minLogLevel Minimum log level to observe
|
|
11
|
+
* @param callback Callback function to be called when a log event is emitted
|
|
12
|
+
*/
|
|
13
|
+
export declare const createLoggingObserver: (minLogLevel: LogLevel, callback: (event: LogEvent) => void) => EventEmitter;
|
|
14
|
+
export declare const logger: {
|
|
15
|
+
info: (message: unknown) => void;
|
|
16
|
+
error: (message: unknown) => void;
|
|
17
|
+
debug: (message: unknown) => void;
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=logger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../../src/core/logging/logger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAG3C,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;AAYlD,MAAM,MAAM,QAAQ,GAAG;IACrB,KAAK,EAAE,QAAQ,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAsBF;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,gBACnB,QAAQ,YACX,CAAC,KAAK,EAAE,QAAQ,KAAK,IAAI,KAClC,YAQF,CAAC;AAEF,eAAO,MAAM,MAAM;oBAzBC,OAAO;qBACN,OAAO;qBACP,OAAO;CAuBQ,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { LogLevel } from '../../logging/logger';
|
|
1
2
|
import type { FolderThemeName } from './folders/folderTheme';
|
|
2
3
|
import type { IconPackValue } from './iconPack';
|
|
3
4
|
export type Config = {
|
|
@@ -19,6 +20,8 @@ export type Config = {
|
|
|
19
20
|
languages: {
|
|
20
21
|
associations: IconAssociations;
|
|
21
22
|
};
|
|
23
|
+
enableLogging: boolean;
|
|
24
|
+
logLevel: LogLevel;
|
|
22
25
|
};
|
|
23
26
|
export type IconAssociations = {
|
|
24
27
|
[pattern: string]: string;
|
|
@@ -28,6 +31,7 @@ export type CustomClone = {
|
|
|
28
31
|
base: string;
|
|
29
32
|
color: string;
|
|
30
33
|
lightColor?: string;
|
|
34
|
+
activeForPacks?: IconPackValue[];
|
|
31
35
|
};
|
|
32
36
|
export type FileIconClone = CustomClone & {
|
|
33
37
|
fileExtensions?: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../src/core/models/icons/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAEhD,MAAM,MAAM,MAAM,GAAG;IACnB,cAAc,EAAE,aAAa,CAAC;IAC9B,mBAAmB,EAAE,OAAO,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE;QACP,KAAK,EAAE,eAAe,CAAC;QACvB,KAAK,EAAE,MAAM,CAAC;QACd,YAAY,EAAE,gBAAgB,CAAC;QAC/B,YAAY,EAAE,eAAe,EAAE,CAAC;KACjC,CAAC;IACF,KAAK,EAAE;QACL,KAAK,EAAE,MAAM,CAAC;QACd,YAAY,EAAE,gBAAgB,CAAC;QAC/B,YAAY,EAAE,aAAa,EAAE,CAAC;KAC/B,CAAC;IACF,SAAS,EAAE;QACT,YAAY,EAAE,gBAAgB,CAAC;KAChC,CAAC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../src/core/models/icons/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAEhD,MAAM,MAAM,MAAM,GAAG;IACnB,cAAc,EAAE,aAAa,CAAC;IAC9B,mBAAmB,EAAE,OAAO,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE;QACP,KAAK,EAAE,eAAe,CAAC;QACvB,KAAK,EAAE,MAAM,CAAC;QACd,YAAY,EAAE,gBAAgB,CAAC;QAC/B,YAAY,EAAE,eAAe,EAAE,CAAC;KACjC,CAAC;IACF,KAAK,EAAE;QACL,KAAK,EAAE,MAAM,CAAC;QACd,YAAY,EAAE,gBAAgB,CAAC;QAC/B,YAAY,EAAE,aAAa,EAAE,CAAC;KAC/B,CAAC;IACF,SAAS,EAAE;QACT,YAAY,EAAE,gBAAgB,CAAC;KAChC,CAAC;IACF,aAAa,EAAE,OAAO,CAAC;IACvB,QAAQ,EAAE,QAAQ,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,aAAa,EAAE,CAAC;CAClC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,WAAW,GAAG;IACxC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,WAAW,GAAG;IAC1C,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB,CAAC"}
|
|
@@ -4,17 +4,17 @@ import type { IconPack } from '../iconPack';
|
|
|
4
4
|
import type { Patterns } from '../patterns/patterns';
|
|
5
5
|
type BasicFileIcon = {
|
|
6
6
|
/**
|
|
7
|
-
* Name of the icon, e.g.
|
|
7
|
+
* Name of the icon, e.g. `javascript`
|
|
8
8
|
*/
|
|
9
9
|
name: string;
|
|
10
10
|
/**
|
|
11
11
|
* Define the file extensions that should use this icon.
|
|
12
|
-
* E.g. ['js']
|
|
12
|
+
* E.g. `['js']`
|
|
13
13
|
*/
|
|
14
14
|
fileExtensions?: string[];
|
|
15
15
|
/**
|
|
16
16
|
* Define if there are some static file names that should apply this icon.
|
|
17
|
-
* E.g. ['sample.js']
|
|
17
|
+
* E.g. `['sample.js']`
|
|
18
18
|
*/
|
|
19
19
|
fileNames?: string[];
|
|
20
20
|
/**
|
|
@@ -43,7 +43,7 @@ type BasicFileIcon = {
|
|
|
43
43
|
clone?: CloneOptions;
|
|
44
44
|
};
|
|
45
45
|
/**
|
|
46
|
-
* Type for a FileIcon
|
|
46
|
+
* Type for a `FileIcon`. In addition to the `name` property, either a `fileExtensions` or `fileNames` property is required.
|
|
47
47
|
*/
|
|
48
48
|
export type FileIcon = RequireAtLeastOne<BasicFileIcon, 'fileExtensions' | 'fileNames' | 'patterns'>;
|
|
49
49
|
export {};
|
|
@@ -2,12 +2,12 @@ import { type CloneOptions } from '../cloneOptions';
|
|
|
2
2
|
import type { IconPack } from '../iconPack';
|
|
3
3
|
export type FolderIcon = {
|
|
4
4
|
/**
|
|
5
|
-
* Name of the icon, e.g.
|
|
5
|
+
* Name of the icon, e.g. `src`
|
|
6
6
|
*/
|
|
7
7
|
name: string;
|
|
8
8
|
/**
|
|
9
9
|
* Define the folder names that should apply the icon.
|
|
10
|
-
* E.g. ['src', 'source']
|
|
10
|
+
* E.g. `['src', 'source']`
|
|
11
11
|
*/
|
|
12
12
|
folderNames: string[];
|
|
13
13
|
/**
|
|
@@ -6,7 +6,7 @@ export declare enum FileNamePattern {
|
|
|
6
6
|
Configuration = "configuration",
|
|
7
7
|
/** Adds the following extensions to the file name: `js`, `mjs`, `cjs`, `ts`, `mts`, `cts`, `json`, `jsonc`, `json5`, `yaml`, `yml`, `toml`. */
|
|
8
8
|
NodeEcosystem = "nodeEcosystem",
|
|
9
|
-
/** It adjusts the name with the following patterns:
|
|
9
|
+
/** It adjusts the name with the following patterns: `.fileNamerc`, `.config/fileNamerc`, `fileName.config` and combines that with the pattern `NodeEcosystem` */
|
|
10
10
|
Cosmiconfig = "cosmiconfig"
|
|
11
11
|
}
|
|
12
12
|
export type Patterns = Record<string, FileNamePattern>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patterns.d.ts","sourceRoot":"","sources":["../../../../../../src/core/models/icons/patterns/patterns.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAElD,oBAAY,eAAe;IACzB,8FAA8F;IAC9F,UAAU,eAAe;IAEzB,uGAAuG;IACvG,aAAa,kBAAkB;IAE/B,+IAA+I;IAC/I,aAAa,kBAAkB;IAE/B
|
|
1
|
+
{"version":3,"file":"patterns.d.ts","sourceRoot":"","sources":["../../../../../../src/core/models/icons/patterns/patterns.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAElD,oBAAY,eAAe;IACzB,8FAA8F;IAC9F,UAAU,eAAe;IAEzB,uGAAuG;IACvG,aAAa,kBAAkB;IAE/B,+IAA+I;IAC/I,aAAa,kBAAkB;IAE/B,iKAAiK;IACjK,WAAW,gBAAgB;CAC5B;AAED,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;AACvD,MAAM,MAAM,oBAAoB,GAAG,CAAC,QAAQ,GAAG;IAAE,QAAQ,CAAC,EAAE,QAAQ,CAAA;CAAE,CAAC,EAAE,CAAC"}
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
import type { RecursivePartial } from '../types/recursivePartial';
|
|
2
|
+
import type { Config } from './icons/config';
|
|
3
|
+
/**
|
|
4
|
+
* Configuration for the manifest. It contains the configuration which is used to generate the manifest.
|
|
5
|
+
*/
|
|
6
|
+
export type ManifestConfig = RecursivePartial<Pick<Config, 'activeIconPack' | 'hidesExplorerArrows' | 'languages'> & {
|
|
7
|
+
files: Pick<Config['files'], 'associations'>;
|
|
8
|
+
} & {
|
|
9
|
+
folders: Pick<Config['folders'], 'associations' | 'theme'>;
|
|
10
|
+
}>;
|
|
1
11
|
export type Manifest = {
|
|
2
12
|
file?: string;
|
|
3
13
|
folder?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../../src/core/models/manifest.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,QAAQ,GAAG;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,mBAAmB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvD,KAAK,CAAC,EAAE,QAAQ,CAAC;IACjB,YAAY,CAAC,EAAE,QAAQ,CAAC;IACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AAEF,eAAO,MAAM,mBAAmB,QAAO,QAerC,CAAC"}
|
|
1
|
+
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../../src/core/models/manifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAE7C;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,gBAAgB,CAC3C,IAAI,CAAC,MAAM,EAAE,gBAAgB,GAAG,qBAAqB,GAAG,WAAW,CAAC,GAAG;IACrE,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC;CAC9C,GAAG;IACF,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,cAAc,GAAG,OAAO,CAAC,CAAC;CAC5D,CACF,CAAC;AAEF,MAAM,MAAM,QAAQ,GAAG;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,mBAAmB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvD,KAAK,CAAC,EAAE,QAAQ,CAAC;IACjB,YAAY,CAAC,EAAE,QAAQ,CAAC;IACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AAEF,eAAO,MAAM,mBAAmB,QAAO,QAerC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 24 24"><path fill="#FF9800" d="M9.87 2.5 3.022 5.666l.645 10.178zm4.26 0 6.202 13.344.645-10.178zM12 7.563l-2.451 5.964h4.906zm-3.73 8.959-.954 2.308L12 21.5l4.683-2.67-.953-2.308z"/></svg>
|
package/icons/cds.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g fill="#0288d1"><rect width="4" height="1" x="7" y="9" ry=".5"/><rect width="3" height="1" x="8" y="11" ry=".5"/><rect width="4" height="1" x="7" y="13" ry=".5"/><path d="m5 9-1 1 1.5 1.5L4 13l1 1 2.5-2.5L5 9z"/><path d="M6 2a3 3 0 0 0-2.598 1.5 3 3 0 0 0-.187 2.607 3 3 0 0 0-1.514.965 3 3 0 0 0-.42 3.196A3 3 0 0 0 4 12v-1a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 .515.076l.159-.591A2 2 0 0 1 4 5a2 2 0 0 1 2-2 2 2 0 0 1 2 2l.594.594A2 2 0 0 1 10 5a2 2 0 0 1 2 2 2 2 0 0 1 2 2 2 2 0 0 1-2 2v1a3 3 0 0 0 2.898-2.223A3 3 0 0 0 13.5 6.402a3 3 0 0 0-.63-.267 3 3 0 0 0-1.722-1.906 3 3 0 0 0-2.252-.014 3 3 0 0 0-2.119-2.113A3 3 0 0 0 6 2z"/></g></svg>
|
package/icons/clangd.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#4caf50" d="M10 4H7.5C4.75 4 2 5.379 2 9.5c0 4.12 2.75 5.51 5.53 5.5H10v-3H7.667C7.665 11.973 5 12.289 5 9.478 5 6.672 7.395 7.028 7.52 7H10z"/><path fill="#2979ff" d="M10 1v6H7.52C7.452 7.03 5 6.659 5 9.478 5 12.295 7.618 11.97 7.668 12H13V1h-2.725z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#4caf50" d="m5.22 23.118 3.647-6.593a1.712 1.712 0 1 0-2.996-1.657L2.224 21.46a1.712 1.712 0 0 0 2.996 1.658Zm12.02 0 3.648-6.593a1.712 1.712 0 1 0-2.996-1.657l-3.648 6.592a1.712 1.712 0 0 0 2.996 1.658Zm-3.378-5.96 3.88-6.588a1.706 1.706 0 0 0-2.94-1.73l-3.88 6.588a1.706 1.706 0 0 0 2.94 1.73Zm12.028 0 3.88-6.588a1.706 1.706 0 0 0-2.94-1.73l-3.88 6.588a1.706 1.706 0 0 0 2.94 1.73Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#0288D1" d="M28.967 12H9.442a2 2 0 0 0-1.898 1.368L4 24V10h24a2 2 0 0 0-2-2H15.124a2 2 0 0 1-1.28-.464l-1.288-1.072A2 2 0 0 0 11.276 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h22l4.805-11.212A2 2 0 0 0 28.967 12Z"/><path fill="#CFD8DC" d="M18.473 30a1.075 1.075 0 0 1-.238-.028 1.137 1.137 0 0 1-.828-1.323L20.5 12.905a1.13 1.13 0 0 1 .507-.744 1.057 1.057 0 0 1 .8-.134 1.139 1.139 0 0 1 .828 1.324l-3.101 15.744a1.124 1.124 0 0 1-.504.743 1.055 1.055 0 0 1-.557.162Zm6.2-2h-.077a1.075 1.075 0 0 1-.762-.412 1.164 1.164 0 0 1 .113-1.548l5.319-4.967-5.296-4.623a1.165 1.165 0 0 1-.162-1.544 1.08 1.08 0 0 1 .754-.437 1.058 1.058 0 0 1 .81.258l6.244 5.455a1.156 1.156 0 0 1 .003 1.723l-6.218 5.808a1.069 1.069 0 0 1-.729.289Zm-9.31 0a1.072 1.072 0 0 1-.728-.292l-6.226-5.811a1.159 1.159 0 0 1-.01-1.692l.02-.018 6.246-5.454a1.035 1.035 0 0 1 .8-.26 1.08 1.08 0 0 1 .76.436 1.165 1.165 0 0 1-.16 1.547l-5.294 4.62 5.32 4.964a1.156 1.156 0 0 1 .112 1.548 1.072 1.072 0 0 1-.762.412Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#0288D1" d="m13.844 7.536-1.288-1.072A2 2 0 0 0 11.276 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2H15.124a2 2 0 0 1-1.28-.464Z"/><path fill="#CFD8DC" d="M18.435 30a1.075 1.075 0 0 1-.238-.028 1.137 1.137 0 0 1-.828-1.323l3.093-15.744a1.13 1.13 0 0 1 .507-.744 1.057 1.057 0 0 1 .8-.134 1.139 1.139 0 0 1 .828 1.324l-3.1 15.744a1.124 1.124 0 0 1-.505.743 1.055 1.055 0 0 1-.557.162Zm6.2-2h-.077a1.075 1.075 0 0 1-.762-.412 1.164 1.164 0 0 1 .113-1.548l5.32-4.967-5.297-4.623a1.165 1.165 0 0 1-.162-1.544 1.08 1.08 0 0 1 .754-.437 1.058 1.058 0 0 1 .81.258l6.244 5.455a1.156 1.156 0 0 1 .004 1.723l-6.22 5.808a1.069 1.069 0 0 1-.728.289Zm-9.31 0a1.072 1.072 0 0 1-.728-.292l-6.225-5.811a1.159 1.159 0 0 1-.01-1.692l.02-.018 6.246-5.454a1.035 1.035 0 0 1 .8-.26 1.08 1.08 0 0 1 .758.436 1.165 1.165 0 0 1-.16 1.547l-5.293 4.62 5.32 4.964a1.156 1.156 0 0 1 .112 1.548 1.072 1.072 0 0 1-.762.412Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#4caf50" d="M28.967 12H9.442a2 2 0 0 0-1.898 1.368L4 24V10h24a2 2 0 0 0-2-2H15.124a2 2 0 0 1-1.28-.464l-1.288-1.072A2 2 0 0 0 11.276 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h22l4.805-11.212A2 2 0 0 0 28.967 12Z"/><path fill="#c8e6c9" d="m10.752 27.217 3.127-5.764a1.512 1.512 0 0 0-.573-2.034 1.452 1.452 0 0 0-1.995.586l-3.127 5.763a1.512 1.512 0 0 0 .573 2.034 1.437 1.437 0 0 0 .71.187 1.462 1.462 0 0 0 1.285-.772Zm10.305 0 3.127-5.764a1.512 1.512 0 0 0-.574-2.034 1.452 1.452 0 0 0-1.995.586l-3.127 5.763a1.512 1.512 0 0 0 .574 2.034 1.437 1.437 0 0 0 .709.187 1.462 1.462 0 0 0 1.286-.772Zm-2.896-5.21 3.326-5.76a1.507 1.507 0 0 0-.518-2.04 1.447 1.447 0 0 0-2.002.527l-3.326 5.76a1.508 1.508 0 0 0 .519 2.041 1.43 1.43 0 0 0 .74.206 1.456 1.456 0 0 0 1.261-.734Zm10.31 0 3.327-5.76a1.507 1.507 0 0 0-.518-2.04 1.447 1.447 0 0 0-2.002.527l-3.326 5.76a1.508 1.508 0 0 0 .518 2.041 1.43 1.43 0 0 0 .74.206 1.456 1.456 0 0 0 1.262-.734Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#4caf50" d="m13.844 7.536-1.288-1.072A2 2 0 0 0 11.276 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2H15.124a2 2 0 0 1-1.28-.464Z"/><path fill="#c8e6c9" d="m10.752 27.217 3.127-5.764a1.512 1.512 0 0 0-.573-2.034 1.452 1.452 0 0 0-1.995.586l-3.127 5.763a1.512 1.512 0 0 0 .573 2.034 1.437 1.437 0 0 0 .71.187 1.462 1.462 0 0 0 1.285-.772Zm10.305 0 3.127-5.764a1.512 1.512 0 0 0-.574-2.034 1.452 1.452 0 0 0-1.995.586l-3.127 5.763a1.512 1.512 0 0 0 .574 2.034 1.437 1.437 0 0 0 .709.187 1.462 1.462 0 0 0 1.286-.772Zm-2.896-5.21 3.326-5.76a1.507 1.507 0 0 0-.518-2.04 1.447 1.447 0 0 0-2.002.527l-3.326 5.76a1.508 1.508 0 0 0 .519 2.041 1.43 1.43 0 0 0 .74.206 1.456 1.456 0 0 0 1.261-.734Zm10.31 0 3.327-5.76a1.507 1.507 0 0 0-.518-2.04 1.447 1.447 0 0 0-2.002.527l-3.326 5.76a1.508 1.508 0 0 0 .518 2.041 1.43 1.43 0 0 0 .74.206 1.456 1.456 0 0 0 1.262-.734Z"/></svg>
|