@hestia-earth/ui-components 0.23.13 → 0.23.15
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/common/common.light.module.d.ts +2 -1
- package/common/maps-utils.d.ts +21 -0
- package/engine/engine.service.d.ts +2 -1
- package/esm2022/common/common.light.module.mjs +6 -5
- package/esm2022/common/maps-utils.mjs +30 -1
- package/esm2022/engine/engine.service.mjs +5 -2
- package/esm2022/node/node-logs-models/node-logs-models.component.mjs +20 -12
- package/esm2022/public-api.mjs +2 -1
- package/esm2022/search/search.model.mjs +2 -1
- package/esm2022/sites/sites-maps/sites-maps.component.mjs +17 -21
- package/esm2022/svg-icons/index.mjs +2 -0
- package/esm2022/svg-icons/svg-icons.module.mjs +30 -0
- package/fesm2022/hestia-earth-ui-components.mjs +181 -121
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/package.json +3 -1
- package/public-api.d.ts +1 -0
- package/search/search.model.d.ts +8 -0
- package/sites/sites-maps/sites-maps.component.d.ts +9 -11
- package/svg-icons/far-arrow-down-to-bracket.svg +8 -0
- package/svg-icons/far-arrow-left.svg +3 -0
- package/svg-icons/far-arrow-right.svg +3 -0
- package/svg-icons/far-circle-info.svg +8 -0
- package/svg-icons/far-down-arrow.svg +3 -0
- package/svg-icons/far-download.svg +9 -0
- package/svg-icons/far-filter.svg +5 -0
- package/svg-icons/far-home.svg +11 -0
- package/svg-icons/far-info-circle.svg +5 -0
- package/svg-icons/far-magnifier.svg +5 -0
- package/svg-icons/far-question-circle-thin.svg +9 -0
- package/svg-icons/far-question-circle.svg +17 -0
- package/svg-icons/far-search.svg +5 -0
- package/svg-icons/far-share-nodes.svg +15 -0
- package/svg-icons/far-share.svg +15 -0
- package/svg-icons/file-csv.svg +18 -0
- package/svg-icons/icons.json +82 -0
- package/svg-icons/index.d.ts +1 -0
- package/svg-icons/svg-icons.module.d.ts +9 -0
- package/svg-icons/turn-phone.svg +27 -0
- package/svg-icons/xmark.svg +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/ui-components",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.15",
|
|
4
4
|
"description": "Hestia reusable components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
"@hestia-earth/utils": ">=0.12.0",
|
|
32
32
|
"@ng-bootstrap/ng-bootstrap": ">=15.0.0",
|
|
33
33
|
"@ngrx/component-store": "^16.2.0",
|
|
34
|
+
"angular-svg-icon": "^16.1.0",
|
|
35
|
+
"angular-svg-icon-preloader": "^6.0.0",
|
|
34
36
|
"bulma": "^0.9.4",
|
|
35
37
|
"bulma-switch": "^2.0.4",
|
|
36
38
|
"chart.js": "^2.9.4",
|
package/public-api.d.ts
CHANGED
package/search/search.model.d.ts
CHANGED
|
@@ -260,6 +260,14 @@ export declare const matchAggregatedQuery: Readonly<{
|
|
|
260
260
|
};
|
|
261
261
|
};
|
|
262
262
|
}>;
|
|
263
|
+
export declare const matchAggregatedValidatedQuery: Readonly<{
|
|
264
|
+
match: {
|
|
265
|
+
[x: string]: {
|
|
266
|
+
boost?: number;
|
|
267
|
+
query: any;
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
}>;
|
|
263
271
|
export declare const matchNestedKey: (key: string, query: any) => any;
|
|
264
272
|
export declare const matchPrimaryProductQuery: (product: string) => any;
|
|
265
273
|
export {};
|
|
@@ -1,25 +1,22 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
1
|
import { JSONLD, NodeType } from '@hestia-earth/schema';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
3
|
import { HeNodeService } from '../../node/node.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SitesMapsComponent<C extends JSONLD<T>, T extends NodeType>
|
|
5
|
+
export declare class SitesMapsComponent<C extends JSONLD<T>, T extends NodeType> {
|
|
6
|
+
protected mapLoaded$: Observable<boolean>;
|
|
6
7
|
private nodeService;
|
|
7
|
-
loaded: boolean;
|
|
8
8
|
private map?;
|
|
9
9
|
private loadPolygons;
|
|
10
10
|
private sites;
|
|
11
11
|
private nodes;
|
|
12
|
-
center: {
|
|
12
|
+
protected center: {
|
|
13
13
|
lat: number;
|
|
14
14
|
lng: number;
|
|
15
15
|
};
|
|
16
|
-
zoom: number;
|
|
17
|
-
showNotice: boolean;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
constructor(nodeService: HeNodeService);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
ngAfterViewInit(): Promise<void>;
|
|
16
|
+
protected zoom: number;
|
|
17
|
+
protected showNotice: boolean;
|
|
18
|
+
protected showNoLocation: boolean;
|
|
19
|
+
constructor(mapLoaded$: Observable<boolean>, nodeService: HeNodeService);
|
|
23
20
|
private loadData;
|
|
24
21
|
private addMarkers;
|
|
25
22
|
private addTermsPolygons;
|
|
@@ -30,6 +27,7 @@ export declare class SitesMapsComponent<C extends JSONLD<T>, T extends NodeType>
|
|
|
30
27
|
private siteData;
|
|
31
28
|
private getSites;
|
|
32
29
|
private termPolygons;
|
|
30
|
+
protected mapLoaded(): void;
|
|
33
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<SitesMapsComponent<any, any>, never>;
|
|
34
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<SitesMapsComponent<any, any>, "he-sites-maps", never, { "loadPolygons": { "alias": "loadPolygons"; "required": false; }; "sites": { "alias": "sites"; "required": false; }; "nodes": { "alias": "nodes"; "required": false; }; "center": { "alias": "center"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "showNotice": { "alias": "showNotice"; "required": false; }; }, {}, never, never, false, never>;
|
|
35
33
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M21.5 15V19C21.5 19.5304 21.2893 20.0391 20.9142 20.4142C20.5391 20.7893 20.0304 21 19.5 21H5.5C4.96957 21 4.46086 20.7893 4.08579 20.4142C3.71071 20.0391 3.5 19.5304 3.5 19V15"
|
|
4
|
+
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M7.5 10L12.5 15L17.5 10" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
6
|
+
stroke-linejoin="round"/>
|
|
7
|
+
<path d="M12.5 15V3" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="29" height="28" viewBox="0 0 29 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M28 14C28 21.1469 21.9892 27 14.5 27C7.01079 27 1 21.1469 1 14C1 6.85308 7.01079 1 14.5 1C21.9892 1 28 6.85308 28 14Z"
|
|
4
|
+
stroke="currentColor" stroke-width="2"/>
|
|
5
|
+
<path
|
|
6
|
+
d="M15.16 11.792V20H13.184V11.792H15.16ZM15.456 9.4C15.456 9.57067 15.4213 9.73067 15.352 9.88C15.2827 10.0293 15.1893 10.16 15.072 10.272C14.96 10.384 14.8267 10.4747 14.672 10.544C14.5173 10.608 14.352 10.64 14.176 10.64C14.0053 10.64 13.8427 10.608 13.688 10.544C13.5387 10.4747 13.408 10.384 13.296 10.272C13.184 10.16 13.0933 10.0293 13.024 9.88C12.96 9.73067 12.928 9.57067 12.928 9.4C12.928 9.224 12.96 9.05867 13.024 8.904C13.0933 8.74933 13.184 8.616 13.296 8.504C13.408 8.392 13.5387 8.304 13.688 8.24C13.8427 8.17067 14.0053 8.136 14.176 8.136C14.352 8.136 14.5173 8.17067 14.672 8.24C14.8267 8.304 14.96 8.392 15.072 8.504C15.1893 8.616 15.2827 8.74933 15.352 8.904C15.4213 9.05867 15.456 9.224 15.456 9.4Z"
|
|
7
|
+
fill="currentColor"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M21 15.1191V19.151C21 19.6856 20.7893 20.1984 20.4142 20.5764C20.0391 20.9545 19.5304 21.1669 19 21.1669H5C4.46957 21.1669 3.96086 20.9545 3.58579 20.5764C3.21071 20.1984 3 19.6856 3 19.151V15.1191"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M7 10.0796L12 15.1194L17 10.0796" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
6
|
+
stroke-linejoin="round"/>
|
|
7
|
+
<path d="M12 15.1194V3.02393" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
8
|
+
stroke-linejoin="round"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M20.6083 4.64573C21.1579 3.99575 20.6959 3 19.8447 3H4.1553C3.30408 3 2.84207 3.99575 3.39173 4.64573L10 12.46V18.382C10 18.7607 10.214 19.107 10.5528 19.2764L12.5528 20.2764C13.2177 20.6088 14 20.1253 14 19.382V12.46L20.6083 4.64573Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="22" viewBox="0 0 24 22" fill="none">
|
|
2
|
+
<mask id="path-1-inside-1_1699_14017" fill="white">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M20.9381 6.01786C20.8913 5.99058 20.844 5.96422 20.7996 5.93326L12.5753 0.196892C12.2316 -0.0428437 11.7748 -0.0428441 11.4311 0.19689L3.20663 5.93335C3.16227 5.96429 3.11493 5.99063 3.06823 6.01789C3.01625 6.04823 2.96726 6.08312 2.9218 6.12202C2.88987 6.14935 2.85783 6.17663 2.82336 6.20067C2.42392 6.47928 2.32138 6.93139 2.43977 7.31531C2.49864 7.50624 2.57162 7.69767 2.57162 7.89747V20.1534C2.57162 20.7057 3.01934 21.1534 3.57162 21.1534H9.11705C9.66934 21.1534 10.1171 20.7057 10.1171 20.1534V11.8402C10.1171 11.2879 10.5648 10.8402 11.1171 10.8402H12.8897C13.442 10.8402 13.8897 11.2879 13.8897 11.8402V20.1534C13.8897 20.7057 14.3374 21.1534 14.8897 21.1534H20.4347C20.987 21.1534 21.4347 20.7057 21.4347 20.1534V7.89736C21.4347 7.69759 21.5077 7.50618 21.5666 7.31527C21.6849 6.93136 21.5824 6.47927 21.183 6.20067C21.1486 6.17669 21.1166 6.14948 21.0848 6.12221C21.0392 6.08322 20.9902 6.04826 20.9381 6.01786Z"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<path
|
|
7
|
+
d="M21.5666 7.31527L20.1332 6.8733L21.5666 7.31527ZM2.82336 6.20067L3.68148 7.43097L2.82336 6.20067ZM3.20663 5.93335L2.34851 4.70305L3.20663 5.93335ZM3.06823 6.01789L3.82441 7.31334L3.06823 6.01789ZM20.7996 5.93326L21.6577 4.70296L20.7996 5.93326ZM20.9381 6.01786L21.6942 4.72236L20.9381 6.01786ZM21.183 6.20067L20.3248 7.43097L20.3249 7.43097L21.183 6.20067ZM21.0848 6.12221L22.0604 4.9828L21.0848 6.12221ZM2.43977 7.31531L1.00637 7.75732L2.43977 7.31531ZM11.7171 1.42719L19.9415 7.16356L21.6577 4.70296L13.4334 -1.03341L11.7171 1.42719ZM4.06474 7.16365L12.2892 1.42719L10.573 -1.03341L2.34851 4.70305L4.06474 7.16365ZM2.31205 4.72244C2.18206 4.79832 2.05981 4.88542 1.94656 4.98233L3.89704 7.26172C3.87471 7.28083 3.85045 7.29814 3.82441 7.31334L2.31205 4.72244ZM3.87316 6.87329C3.89756 6.95241 3.90416 7.05292 3.87 7.16302C3.83233 7.28441 3.75638 7.37873 3.68148 7.43097L1.96524 4.97038C0.970337 5.66431 0.718478 6.82373 1.00637 7.75732L3.87316 6.87329ZM1.07162 7.89747V20.1534H4.07162V7.89747H1.07162ZM3.57162 22.6534H9.11705V19.6534H3.57162V22.6534ZM11.6171 20.1534V11.8402H8.61705V20.1534H11.6171ZM11.6171 11.8402C11.6171 12.1163 11.3932 12.3402 11.1171 12.3402V9.34019C9.73634 9.34019 8.61705 10.4595 8.61705 11.8402H11.6171ZM11.1171 12.3402H12.8897V9.34019H11.1171V12.3402ZM12.8897 12.3402C12.6135 12.3402 12.3897 12.1163 12.3897 11.8402H15.3897C15.3897 10.4595 14.2704 9.34019 12.8897 9.34019V12.3402ZM12.3897 11.8402V20.1534H15.3897V11.8402H12.3897ZM14.8897 22.6534H20.4347V19.6534H14.8897V22.6534ZM22.9347 20.1534V7.89736H19.9347V20.1534H22.9347ZM20.3249 7.43097C20.25 7.37873 20.174 7.28441 20.1363 7.16303C20.1022 7.05293 20.1088 6.95242 20.1332 6.8733L23 7.75725C23.2878 6.82366 23.036 5.66429 22.0411 4.97038L20.3249 7.43097ZM22.0604 4.9828C21.9469 4.88567 21.8244 4.79838 21.6942 4.72236L20.182 7.31336C20.1559 7.29813 20.1316 7.28078 20.1092 7.26163L22.0604 4.9828ZM9.11705 22.6534C10.4978 22.6534 11.6171 21.5341 11.6171 20.1534H8.61705C8.61705 19.8773 8.84091 19.6534 9.11705 19.6534V22.6534ZM1.07162 20.1534C1.07162 21.5341 2.19091 22.6534 3.57162 22.6534V19.6534C3.84776 19.6534 4.07162 19.8773 4.07162 20.1534H1.07162ZM22.9347 7.89736C22.9347 7.9768 22.9204 8.01779 22.9286 7.9869C22.9325 7.97234 22.9389 7.95031 22.9516 7.91003C22.9582 7.8893 22.9643 7.87009 22.973 7.8431C22.9809 7.81821 22.9903 7.78852 23 7.75725L20.1332 6.8733C20.1187 6.92009 19.9347 7.40726 19.9347 7.89736H22.9347ZM1.94656 4.98233C1.93858 4.98916 1.93419 4.9929 1.93063 4.99591C1.92736 4.99866 1.92684 4.99906 1.92808 4.99805C1.9294 4.99699 1.93334 4.99381 1.93938 4.9892C1.94545 4.98458 1.95418 4.97809 1.96524 4.97038L3.68148 7.43097C3.78589 7.35815 3.87189 7.28324 3.89704 7.26172L1.94656 4.98233ZM20.4347 22.6534C21.8155 22.6534 22.9347 21.5341 22.9347 20.1534H19.9347C19.9347 19.8773 20.1586 19.6534 20.4347 19.6534V22.6534ZM2.34851 4.70305C2.36657 4.69046 2.37676 4.68467 2.36943 4.68904C2.36598 4.69111 2.36072 4.6942 2.35064 4.70004C2.34514 4.70323 2.34095 4.70566 2.3338 4.7098C2.32749 4.71346 2.31999 4.7178 2.31205 4.72244L3.82441 7.31334C3.83329 7.30816 3.95615 7.23939 4.06474 7.16365L2.34851 4.70305ZM12.3897 20.1534C12.3897 21.5341 13.509 22.6534 14.8897 22.6534V19.6534C15.1658 19.6534 15.3897 19.8773 15.3897 20.1534H12.3897ZM19.9415 7.16356C20.0501 7.23936 20.1731 7.30817 20.182 7.31336L21.6942 4.72236C21.6862 4.71772 21.6787 4.71337 21.6724 4.70971C21.6653 4.70557 21.6611 4.70314 21.6556 4.69995C21.6455 4.6941 21.6402 4.69101 21.6368 4.68894C21.6294 4.68457 21.6396 4.69036 21.6577 4.70296L19.9415 7.16356ZM22.0411 4.97038C22.0522 4.97812 22.0609 4.98462 22.0671 4.98928C22.0731 4.99391 22.0771 4.99713 22.0785 4.99823C22.0798 4.99928 22.0793 4.99893 22.0761 4.99622C22.0726 4.99328 22.0683 4.98957 22.0604 4.9828L20.1092 7.26163C20.1345 7.28331 20.2204 7.35814 20.3248 7.43097L22.0411 4.97038ZM1.00637 7.75732C1.01602 7.78861 1.02546 7.81829 1.03341 7.84319C1.04203 7.87019 1.0482 7.8894 1.05474 7.91013C1.06745 7.95041 1.07389 7.97245 1.07774 7.98701C1.08592 8.01791 1.07162 7.97691 1.07162 7.89747H4.07162C4.07162 7.40731 3.88759 6.92008 3.87316 6.87329L1.00637 7.75732ZM13.4334 -1.03341C12.5741 -1.63274 11.4323 -1.63274 10.573 -1.03341L12.2892 1.42719C12.1174 1.54706 11.889 1.54706 11.7171 1.42719L13.4334 -1.03341Z"
|
|
8
|
+
fill="currentColor" mask="url(#path-1-inside-1_1699_14017)"/>
|
|
9
|
+
<path d="M1 8.35684L11.4334 1.11681C11.7762 0.878898 12.2308 0.878899 12.5736 1.11681L23.007 8.35684"
|
|
10
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="14" viewBox="0 0 15 14" fill="none">
|
|
2
|
+
<circle cx="7.0459" cy="6.99957" r="6.25" stroke="currentColor" stroke-width="1.5"/>
|
|
3
|
+
<circle cx="7.0459" cy="2.74957" r="0.75" fill="currentColor"/>
|
|
4
|
+
<rect x="6.2959" y="5.59955" width="1.5" height="4.9" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M3.37119 9.0065C4.96023 10.532 7.48558 10.4829 9.01184 8.90327C10.5381 7.32368 10.4925 4.8064 8.9035 3.28091C7.31447 1.75541 4.78911 1.80454 3.26285 3.38413C1.73658 4.96373 1.78216 7.481 3.37119 9.0065ZM9.35253 11.1868C7.07254 12.6332 4.01421 12.3972 1.981 10.4453C-0.40309 8.1565 -0.474916 4.37521 1.82057 1.99952C4.11606 -0.376165 7.9096 -0.446629 10.2937 1.84214C12.4291 3.8922 12.7095 7.13968 11.0952 9.50198L14.8872 13.1424C15.3694 13.6053 15.3835 14.3706 14.9188 14.8516C14.454 15.3326 13.6863 15.3473 13.2041 14.8844L9.35253 11.1868Z"
|
|
4
|
+
fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M12 22.1753C17.5228 22.1753 22 17.6625 22 12.0957C22 6.52889 17.5228 2.01611 12 2.01611C6.47715 2.01611 2 6.52889 2 12.0957C2 17.6625 6.47715 22.1753 12 22.1753Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path
|
|
6
|
+
d="M9.08984 9.07169C9.32495 8.39804 9.789 7.83 10.3998 7.46817C11.0106 7.10634 11.7287 6.97407 12.427 7.0948C13.1253 7.21553 13.7587 7.58145 14.2149 8.12777C14.6712 8.67409 14.9209 9.36554 14.9198 10.0797C14.9198 12.0956 11.9198 13.1035 11.9198 13.1035"
|
|
7
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M12 17.1353H12.01" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
|
|
2
|
+
<g clip-path="url(#clip0_1699_12279)">
|
|
3
|
+
<path
|
|
4
|
+
d="M7.00033 12.8333C10.222 12.8333 12.8337 10.2217 12.8337 6.99999C12.8337 3.77833 10.222 1.16666 7.00033 1.16666C3.77866 1.16666 1.16699 3.77833 1.16699 6.99999C1.16699 10.2217 3.77866 12.8333 7.00033 12.8333Z"
|
|
5
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path
|
|
7
|
+
d="M5.30273 5.25C5.43988 4.86014 5.71057 4.53139 6.06687 4.32199C6.42318 4.11259 6.84209 4.03604 7.24942 4.10591C7.65675 4.17578 8.02621 4.38755 8.29236 4.70372C8.55852 5.01989 8.70418 5.42005 8.70357 5.83333C8.70357 7 6.95357 7.58333 6.95357 7.58333"
|
|
8
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M7 9.91666H7.00583" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
10
|
+
stroke-linejoin="round"/>
|
|
11
|
+
</g>
|
|
12
|
+
<defs>
|
|
13
|
+
<clipPath id="clip0_1699_12279">
|
|
14
|
+
<rect width="14" height="14" fill="currentColor"/>
|
|
15
|
+
</clipPath>
|
|
16
|
+
</defs>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M5.4392 13.6568C7.69184 15.859 11.2806 15.7902 13.4549 13.4988C15.6291 11.2074 15.5622 7.56467 13.3096 5.36244C11.0569 3.16022 7.46816 3.22908 5.2939 5.52047C3.11965 7.81185 3.18656 11.4546 5.4392 13.6568ZM14.1142 14.9493C11.3463 17.4404 7.11363 17.3919 4.40637 14.7453C1.5606 11.9632 1.47791 7.3638 4.22167 4.47223C6.96543 1.58066 11.4966 1.49189 14.3424 4.27397C16.9909 6.8632 17.2461 11.0266 15.0569 13.9223L22.2286 20.841C22.5058 21.1084 22.5058 21.5419 22.2287 21.8093C21.9515 22.0766 21.5022 22.0766 21.225 21.8093L14.1142 14.9493Z"
|
|
4
|
+
fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="16" viewBox="0 0 21 16" fill="none">
|
|
2
|
+
<path
|
|
3
|
+
d="M15.75 5.33325C17.1997 5.33325 18.375 4.43782 18.375 3.33325C18.375 2.22868 17.1997 1.33325 15.75 1.33325C14.3003 1.33325 13.125 2.22868 13.125 3.33325C13.125 4.43782 14.3003 5.33325 15.75 5.33325Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path
|
|
6
|
+
d="M5.25 10C6.69975 10 7.875 9.10457 7.875 8C7.875 6.89543 6.69975 6 5.25 6C3.80025 6 2.625 6.89543 2.625 8C2.625 9.10457 3.80025 10 5.25 10Z"
|
|
7
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path
|
|
9
|
+
d="M15.75 14.6667C17.1997 14.6667 18.375 13.7713 18.375 12.6667C18.375 11.5622 17.1997 10.6667 15.75 10.6667C14.3003 10.6667 13.125 11.5622 13.125 12.6667C13.125 13.7713 14.3003 14.6667 15.75 14.6667Z"
|
|
10
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M7.5166 9.00659L13.4929 11.6599" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
12
|
+
stroke-linejoin="round"/>
|
|
13
|
+
<path d="M13.4841 4.34009L7.5166 6.99342" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
14
|
+
stroke-linejoin="round"/>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
|
|
2
|
+
<g clip-path="url(#clip0_1742_17404)">
|
|
3
|
+
<path
|
|
4
|
+
d="M13.3333 6H7.33333C6.59695 6 6 6.59695 6 7.33333V13.3333C6 14.0697 6.59695 14.6667 7.33333 14.6667H13.3333C14.0697 14.6667 14.6667 14.0697 14.6667 13.3333V7.33333C14.6667 6.59695 14.0697 6 13.3333 6Z"
|
|
5
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path
|
|
7
|
+
d="M3.33301 9.99992H2.66634C2.31272 9.99992 1.97358 9.85944 1.72353 9.60939C1.47348 9.35935 1.33301 9.02021 1.33301 8.66659V2.66659C1.33301 2.31296 1.47348 1.97382 1.72353 1.72378C1.97358 1.47373 2.31272 1.33325 2.66634 1.33325H8.66634C9.01996 1.33325 9.3591 1.47373 9.60915 1.72378C9.8592 1.97382 9.99967 2.31296 9.99967 2.66659V3.33325"
|
|
8
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<clipPath id="clip0_1742_17404">
|
|
12
|
+
<rect width="16" height="16" fill="white"/>
|
|
13
|
+
</clipPath>
|
|
14
|
+
</defs>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="path-1-inside-1_361_22903" fill="white">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M23.707 7.37404C23.8946 7.56159 24 7.816 24 8.08129V23.0002C24 23.5524 23.5523 24.0002 23 24.0002H6.25C5.69772 24.0002 5.25 23.5524 5.25 23.0002V15.7535H1C0.447715 15.7535 0 15.3058 0 14.7535V10.0062C0 9.45394 0.447715 9.00623 1 9.00623H5.25V1.00989C5.25 0.457604 5.69772 0.0098877 6.25 0.0098877H15.9257C16.1909 0.0098877 16.4452 0.115189 16.6327 0.302638L23.707 7.37404Z"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<path
|
|
7
|
+
d="M23.707 7.37404L22.6465 8.43492H22.6465L23.707 7.37404ZM5.25 15.7535H6.75V14.2535H5.25V15.7535ZM5.25 9.00623V10.5062H6.75V9.00623H5.25ZM16.6327 0.302638L17.6931 -0.758238L17.6931 -0.758238L16.6327 0.302638ZM25.5 8.08129C25.5 7.41807 25.2365 6.78203 24.7674 6.31317L22.6465 8.43492C22.5527 8.34114 22.5 8.21394 22.5 8.08129H25.5ZM25.5 23.0002V8.08129H22.5V23.0002H25.5ZM23 25.5002C24.3807 25.5002 25.5 24.3809 25.5 23.0002H22.5C22.5 22.724 22.7239 22.5002 23 22.5002V25.5002ZM6.25 25.5002H23V22.5002H6.25V25.5002ZM3.75 23.0002C3.75 24.3809 4.86929 25.5002 6.25 25.5002V22.5002C6.52614 22.5002 6.75 22.724 6.75 23.0002H3.75ZM3.75 15.7535V23.0002H6.75V15.7535H3.75ZM5.25 14.2535H1V17.2535H5.25V14.2535ZM1 14.2535C1.27614 14.2535 1.5 14.4773 1.5 14.7535H-1.5C-1.5 16.1342 -0.380713 17.2535 1 17.2535V14.2535ZM1.5 14.7535V10.0062H-1.5V14.7535H1.5ZM1.5 10.0062C1.5 10.2824 1.27614 10.5062 1 10.5062V7.50623C-0.380714 7.50623 -1.5 8.62552 -1.5 10.0062H1.5ZM1 10.5062H5.25V7.50623H1V10.5062ZM3.75 1.00989V9.00623H6.75V1.00989H3.75ZM6.25 -1.49011C4.86929 -1.49011 3.75 -0.370822 3.75 1.00989H6.75C6.75 1.28603 6.52614 1.50989 6.25 1.50989V-1.49011ZM15.9257 -1.49011H6.25V1.50989H15.9257V-1.49011ZM17.6931 -0.758238C17.2243 -1.22686 16.5886 -1.49011 15.9257 -1.49011V1.50989C15.7932 1.50989 15.666 1.45724 15.5722 1.36351L17.6931 -0.758238ZM24.7674 6.31317L17.6931 -0.758238L15.5722 1.36351L22.6465 8.43492L24.7674 6.31317Z"
|
|
8
|
+
fill="currentColor" mask="url(#path-1-inside-1_361_22903)"/>
|
|
9
|
+
<path
|
|
10
|
+
d="M17.0002 7.25007C16.8621 7.25007 16.7501 7.13817 16.7501 7.00012L16.7501 1.81074L22.1895 7.25007L17.0002 7.25007Z"
|
|
11
|
+
stroke="currentColor" stroke-width="1.5"/>
|
|
12
|
+
<path
|
|
13
|
+
d="M0.75 10C0.75 9.86193 0.86193 9.75 1 9.75H10.25C10.3881 9.75 10.5 9.86193 10.5 10V14.7473C10.5 14.8853 10.3881 14.9973 10.25 14.9973H1C0.861929 14.9973 0.75 14.8853 0.75 14.7473V10Z"
|
|
14
|
+
stroke="currentColor" stroke-width="1.5"/>
|
|
15
|
+
<path
|
|
16
|
+
d="M2.108 11.882L2.06158 11.8634C1.98694 12.05 1.95 12.2551 1.95 12.478C1.95 12.6977 1.98276 12.9014 2.04885 13.0886L2.04885 13.0886L2.04896 13.0889C2.11639 13.2761 2.21309 13.438 2.33936 13.574C2.46563 13.71 2.61747 13.816 2.79426 13.8919L2.79439 13.892C2.97344 13.9683 3.17358 14.006 3.394 14.006C3.63916 14.006 3.85188 13.9665 4.03056 13.8856C4.20963 13.8051 4.3606 13.6889 4.4829 13.5374L4.51001 13.5038L4.48076 13.4721L4.26876 13.2421L4.26877 13.2421L4.26841 13.2417C4.23828 13.2097 4.20004 13.192 4.156 13.192C4.13125 13.192 4.10754 13.1977 4.0857 13.2092C4.06651 13.2182 4.04881 13.2302 4.03255 13.2448L4.03237 13.245C3.99045 13.2831 3.94828 13.3152 3.90591 13.3413C3.86515 13.366 3.82116 13.3865 3.77382 13.4027L3.77343 13.4028C3.72778 13.4189 3.67651 13.4308 3.61939 13.4384L3.61924 13.4385C3.56327 13.4461 3.49958 13.45 3.428 13.45C3.31175 13.45 3.20386 13.4286 3.10381 13.3861C3.00373 13.3423 2.91692 13.2798 2.84302 13.1984C2.76933 13.1172 2.70977 13.0164 2.665 12.8949C2.62201 12.7747 2.6 12.636 2.6 12.478C2.6 12.3255 2.62196 12.1901 2.66497 12.0711C2.70962 11.95 2.77033 11.8486 2.84658 11.7661C2.92426 11.6834 3.01626 11.6202 3.12304 11.5762L3.12331 11.5761C3.23131 11.5309 3.35 11.508 3.48 11.508C3.59305 11.508 3.68273 11.5198 3.7507 11.5416L3.75094 11.5417C3.82483 11.565 3.88399 11.5898 3.92932 11.6155C3.9775 11.6428 4.01624 11.6677 4.046 11.69C4.08402 11.7185 4.12563 11.736 4.17 11.736C4.20497 11.736 4.23946 11.729 4.26718 11.7086C4.28861 11.6937 4.30681 11.6757 4.32106 11.6545L4.50058 11.4052L4.52557 11.3705L4.49515 11.3404C4.37563 11.2223 4.23224 11.1283 4.06565 11.058C3.89815 10.9855 3.70387 10.95 3.484 10.95C3.25837 10.95 3.05062 10.9876 2.86137 11.0636L2.88 11.11M2.108 11.882L2.06153 11.8635C2.1359 11.6762 2.24089 11.5144 2.37664 11.3786C2.5124 11.2429 2.67424 11.1379 2.86155 11.0635L2.88 11.11M2.108 11.882C2.18 11.7007 2.28133 11.5447 2.412 11.414C2.54267 11.2833 2.69867 11.182 2.88 11.11M2.108 11.882C2.036 12.062 2 12.2607 2 12.478C2 12.6927 2.032 12.8907 2.096 13.072C2.16133 13.2533 2.25467 13.4093 2.376 13.54C2.49733 13.6707 2.64333 13.7727 2.814 13.846C2.986 13.9193 3.17933 13.956 3.394 13.956C3.634 13.956 3.83933 13.9173 4.01 13.84C4.182 13.7627 4.32667 13.6513 4.444 13.506L4.046 11.104C3.886 11.0347 3.69867 11 3.484 11C3.264 11 3.06267 11.0367 2.88 11.11M5.27959 11.656C5.26093 11.7 5.25159 11.7487 5.25159 11.802C5.25159 11.87 5.27026 11.9267 5.30759 11.972C5.34626 12.0173 5.39693 12.056 5.45959 12.088C5.52226 12.12 5.59359 12.1487 5.67359 12.174C5.75359 12.1993 5.83493 12.2267 5.91759 12.256C6.00159 12.284 6.08359 12.3173 6.16359 12.356C6.24359 12.3933 6.31493 12.4413 6.37759 12.5L5.27959 11.656ZM5.27959 11.656C5.29826 11.6107 5.32626 11.572 5.36359 11.54L5.27959 11.656ZM6.41156 12.4633C6.34506 12.4011 6.26948 12.3503 6.18505 12.3108C6.10337 12.2714 6.01964 12.2373 5.93386 12.2087C5.85084 12.1793 5.76911 12.1518 5.68869 12.1263C5.61083 12.1017 5.54213 12.074 5.48233 12.0435C5.42463 12.014 5.3796 11.9793 5.34592 11.9399C5.31727 11.9049 5.30159 11.8601 5.30159 11.802C5.30159 11.7546 5.30986 11.7127 5.32563 11.6755L5.32583 11.675C5.34142 11.6372 5.36461 11.6051 5.39581 11.5782C5.42881 11.551 5.46946 11.5293 5.51871 11.5137L5.51871 11.5137L5.51941 11.5134C5.56916 11.4968 5.62894 11.488 5.69959 11.488C5.77816 11.488 5.84355 11.4982 5.89684 11.5171L5.89684 11.5171L5.89809 11.5175C5.95705 11.5368 6.00728 11.5582 6.0492 11.5816C6.09392 11.6066 6.13236 11.6295 6.16464 11.6501L6.16463 11.6501L6.16587 11.6509C6.20363 11.6735 6.24263 11.688 6.28159 11.688C6.31563 11.688 6.3479 11.6803 6.37598 11.6625C6.3762 11.6623 6.37642 11.6622 6.37663 11.6621L6.34959 11.62C6.36959 11.608 6.38693 11.5873 6.40159 11.558M6.41156 12.4633L6.44614 11.5807L6.44596 11.5811L6.40159 11.558M6.41156 12.4633C6.47953 12.5256 6.53331 12.6018 6.57315 12.6914C6.6155 12.7835 6.63559 12.893 6.63559 13.018C6.63559 13.1546 6.61188 13.2835 6.56409 13.4044C6.51753 13.5242 6.44831 13.6294 6.35667 13.7196L6.35667 13.7196C6.26607 13.8088 6.15556 13.8789 6.02608 13.9305L6.02564 13.9306C5.89485 13.9813 5.74654 14.006 5.58159 14.006C5.4863 14.006 5.39233 13.9963 5.29972 13.977C5.20744 13.9591 5.11848 13.9329 5.0329 13.8984L5.03263 13.8983C4.9485 13.8638 4.86907 13.8224 4.7944 13.774L4.79404 13.7737C4.72057 13.7252 4.65445 13.671 4.59582 13.6109L4.56878 13.5832L4.58881 13.5501L4.74481 13.2921L4.74798 13.2869L4.74828 13.2871C4.76664 13.2637 4.78855 13.2443 4.81387 13.2291L4.83959 13.272M6.41156 12.4633L5.01759 13.294C4.97893 13.266 4.94293 13.252 4.90959 13.252C4.88426 13.252 4.86093 13.2587 4.83959 13.272M6.40159 11.558L6.44632 11.5804M6.40159 11.558L6.53359 11.304C6.43226 11.208 6.30959 11.1333 6.16559 11.08C6.02159 11.0267 5.86426 11 5.69359 11C5.54293 11 5.40893 11.0233 5.29159 11.07C5.17426 11.1167 5.07493 11.1787 4.99359 11.256L6.44632 11.5804M6.44632 11.5804L6.57796 11.3271L6.59534 11.2936L6.56798 11.2677C6.46128 11.1666 6.33265 11.0886 6.18296 11.0331C6.03282 10.9775 5.86953 10.95 5.69359 10.95C5.53779 10.95 5.39735 10.9741 5.27312 11.0235C5.15059 11.0723 5.04564 11.1375 4.95914 11.2198L4.95884 11.2201C4.87416 11.3019 4.80895 11.3961 4.7636 11.5024L4.76339 11.5029C4.71962 11.6088 4.69759 11.7179 4.69759 11.83C4.69759 11.9664 4.71684 12.0846 4.75736 12.183L4.75735 12.183L4.75771 12.1839C4.7987 12.2786 4.85298 12.359 4.92102 12.4241C4.9877 12.488 5.06359 12.5397 5.14845 12.5793C5.2303 12.6175 5.31357 12.6503 5.39824 12.6776C5.48146 12.7044 5.56336 12.7293 5.64396 12.7521C5.72111 12.774 5.78906 12.8007 5.84811 12.8321L5.84811 12.8321L5.84885 12.8325C5.90602 12.8617 5.94994 12.8973 5.98213 12.9387L5.98212 12.9387L5.98266 12.9394C6.01262 12.9766 6.02959 13.0267 6.02959 13.094C6.02959 13.2189 5.99154 13.3084 5.92089 13.3702M6.44632 11.5804L5.87159 12.788C5.93426 12.82 5.98426 12.86 6.02159 12.908C6.06026 12.956 6.07959 13.018 6.07959 13.094C6.07959 13.23 6.03759 13.3347 5.95359 13.408M5.95359 13.408L5.92105 13.37C5.921 13.3701 5.92094 13.3701 5.92089 13.3702M5.95359 13.408C5.86959 13.48 5.75093 13.516 5.59759 13.516C5.49759 13.516 5.41159 13.5027 5.33959 13.476L5.95359 13.408ZM5.92089 13.3702C5.84892 13.4318 5.74347 13.466 5.59759 13.466C5.50208 13.466 5.42243 13.4533 5.35748 13.4293M5.92089 13.3702L5.35748 13.4293M5.35748 13.4293C5.2894 13.4023 5.23046 13.3731 5.18033 13.3418C5.12898 13.3088 5.08437 13.2793 5.04644 13.2532C5.00294 13.2218 4.95696 13.202 4.90959 13.202C4.87496 13.202 4.84243 13.2113 4.81309 13.2296L4.83959 13.272M5.35748 13.4293L4.78759 13.318C4.80226 13.2993 4.81959 13.284 4.83959 13.272M8.19746 12.9C8.17125 12.9679 8.14753 13.0413 8.12625 13.1203C8.12352 13.1113 8.12078 13.1024 8.118 13.0936C8.0977 13.0233 8.07595 12.9586 8.0527 12.8998C8.05267 12.8997 8.05265 12.8997 8.05262 12.8996L7.37278 11.136L7.37279 11.136L7.37243 11.1351C7.3546 11.0914 7.32735 11.0548 7.2907 11.0264C7.25056 10.9954 7.20094 10.982 7.14612 10.982H6.71212H6.63801L8.19746 12.9ZM8.19746 12.9L8.19745 12.9001L8.24412 12.918L8.19748 12.9C8.19748 12.9 8.19747 12.9 8.19746 12.9ZM8.13013 13.324C8.13756 13.2868 8.14542 13.2507 8.15372 13.2157L8.13013 13.324Z"
|
|
17
|
+
fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"iconImageFiles": [
|
|
3
|
+
{
|
|
4
|
+
"iconName": "far-arrow-right",
|
|
5
|
+
"iconPath": "/assets/svg-icons/far-arrow-right.svg"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"iconName": "far-arrow-left",
|
|
9
|
+
"iconPath": "/assets/svg-icons/far-arrow-left.svg"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"iconName": "far-info-circle",
|
|
13
|
+
"iconPath": "/assets/svg-icons/far-info-circle.svg"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"iconName": "turn-phone",
|
|
17
|
+
"iconPath": "/assets/svg-icons/turn-phone.svg"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"iconName": "far-share-nodes",
|
|
21
|
+
"iconPath": "/assets/svg-icons/far-share-nodes.svg"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"iconName": "far-circle-info",
|
|
25
|
+
"iconPath": "/assets/svg-icons/far-circle-info.svg"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"iconName": "far-question-circle",
|
|
29
|
+
"iconPath": "/assets/svg-icons/far-question-circle.svg"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"iconName": "far-question-circle-thin",
|
|
33
|
+
"iconPath": "/assets/svg-icons/far-question-circle-thin.svg"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"iconName": "far-home",
|
|
37
|
+
"iconPath": "/assets/svg-icons/far-home.svg"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"iconName": "far-download",
|
|
41
|
+
"iconPath": "/assets/svg-icons/far-download.svg"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"iconName": "far-search",
|
|
45
|
+
"iconPath": "/assets/svg-icons/far-search.svg"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"iconName": "far-share",
|
|
49
|
+
"iconPath": "/assets/svg-icons/far-share.svg"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"iconName": "far-filter",
|
|
53
|
+
"iconPath": "/assets/svg-icons/far-filter.svg"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"iconName": "xmark",
|
|
57
|
+
"iconPath": "/assets/svg-icons/xmark.svg"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"iconName": "file-csv",
|
|
61
|
+
"iconPath": "/assets/svg-icons/file-csv.svg"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"iconName": "far-arrow-down-to-bracket",
|
|
65
|
+
"iconPath": "/assets/svg-icons/far-arrow-down-to-bracket.svg"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"iconName": "far-down-arrow",
|
|
69
|
+
"iconPath": "/assets/svg-icons/far-down-arrow.svg"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"iconName": "far-magnifier",
|
|
73
|
+
"iconPath": "/assets/svg-icons/far-magnifier.svg"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"customIcons": [
|
|
77
|
+
{
|
|
78
|
+
"iconName": "academic-cap",
|
|
79
|
+
"iconData": "<svg xmlns=\"http://www.w3.org/2000/svg\" > <path d=\"...\" /> </svg>"
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './svg-icons.module';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "angular-svg-icon";
|
|
4
|
+
import * as i3 from "angular-svg-icon-preloader";
|
|
5
|
+
export declare class HeSvgIconsModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeSvgIconsModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HeSvgIconsModule, never, [typeof i1.CommonModule, typeof i2.AngularSvgIconModule, typeof i3.AngularSvgIconPreloaderModule], [typeof i2.AngularSvgIconModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HeSvgIconsModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="27" height="24" viewBox="0 0 27 24" fill="none">
|
|
2
|
+
<rect x="1.2793" y="0.75" width="12.5" height="22.5" rx="1.25" stroke="currentColor" stroke-width="1.5"/>
|
|
3
|
+
<path
|
|
4
|
+
d="M1.2793 19.75H12.7793V22C12.7793 22.6904 12.2197 23.25 11.5293 23.25H2.5293C1.83894 23.25 1.2793 22.6904 1.2793 22V19.75Z"
|
|
5
|
+
stroke="currentColor" stroke-width="1.5"/>
|
|
6
|
+
<path
|
|
7
|
+
d="M1.2793 4.25H12.7793V2C12.7793 1.30964 12.2197 0.75 11.5293 0.75H2.5293C1.83894 0.75 1.2793 1.30964 1.2793 2V4.25Z"
|
|
8
|
+
stroke="currentColor" stroke-width="1.5"/>
|
|
9
|
+
<rect x="5.5293" y="21" width="2.09172" height="0.470588" rx="0.235294" fill="currentColor"/>
|
|
10
|
+
<rect x="4.74023" y="2.41113" width="3.66051" height="0.470588" rx="0.235294" fill="currentColor"/>
|
|
11
|
+
<rect x="8.9248" y="2.41113" width="0.522929" height="0.470588" rx="0.235294" fill="currentColor"/>
|
|
12
|
+
<path
|
|
13
|
+
d="M24.7021 12.75C25.3925 12.75 25.9521 13.3096 25.9521 14L25.9521 22C25.9521 22.6904 25.3925 23.25 24.7021 23.25L13.0062 23.25L13.0062 12.75L24.7021 12.75Z"
|
|
14
|
+
stroke="currentColor" stroke-width="1.5"/>
|
|
15
|
+
<path
|
|
16
|
+
d="M21.8945 12.75L21.8945 23.25L24.7007 23.25C25.391 23.25 25.9507 22.6904 25.9507 22L25.9507 14C25.9507 13.3096 25.391 12.75 24.7007 12.75L21.8945 12.75Z"
|
|
17
|
+
stroke="currentColor" stroke-width="1.5"/>
|
|
18
|
+
<rect x="24.0518" y="16" width="3.29412" height="0.513246" rx="0.256623" transform="rotate(90 24.0518 16)"
|
|
19
|
+
fill="currentColor"/>
|
|
20
|
+
<rect x="24.0518" y="19.7646" width="0.470588" height="0.513246" rx="0.235294" transform="rotate(90 24.0518 19.7646)"
|
|
21
|
+
fill="currentColor"/>
|
|
22
|
+
<path
|
|
23
|
+
d="M14.9336 1.88244C14.9336 1.88244 20.0387 1.13923 22.5708 3.63749C24.6078 5.64716 23.8234 10.353 23.8234 10.353"
|
|
24
|
+
stroke="currentColor"/>
|
|
25
|
+
<path d="M22.5186 9.52905L23.9258 10.462L25.1332 9.52905" stroke="currentColor" stroke-linecap="round"/>
|
|
26
|
+
<path d="M15.9824 0.705566L14.9458 1.97195L15.9824 3.05851" stroke="currentColor" stroke-linecap="round"/>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
|
|
2
|
+
<rect width="1.36684" height="21.0191" transform="matrix(0.699395 -0.714736 0.699395 0.714736 0.342773 0.977051)"
|
|
3
|
+
fill="currentColor"/>
|
|
4
|
+
<rect width="1.36684" height="21.0191" transform="matrix(-0.699395 -0.714736 -0.699395 0.714736 15.6553 0.977051)"
|
|
5
|
+
fill="currentColor"/>
|
|
6
|
+
</svg>
|