sep-yui 0.0.30 → 0.0.31

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.
@@ -45,6 +45,7 @@ export declare enum IconNameEnum {
45
45
  theDatabaseOfMaterials = "theDatabaseOfMaterials",
46
46
  theBaseOfTheTool = "theBaseOfTheTool",
47
47
  fileDatabase = "fileDatabase",
48
+ baseOfEquipmentAndInventory = "baseOfEquipmentAndInventory",
48
49
  mainPage = "mainPage",
49
50
  shopping = "shopping",
50
51
  shippingTasks = "shippingTasks",
@@ -52,5 +53,7 @@ export declare enum IconNameEnum {
52
53
  production = "production",
53
54
  wastes = "wastes",
54
55
  writeDowns = "writeDowns",
55
- theComplaint = "theComplaint"
56
+ theComplaint = "theComplaint",
57
+ usersGroup = "usersGroup",
58
+ reports = "reports"
56
59
  }
@@ -0,0 +1,59 @@
1
+ import { IVectorIcon } from './interface/interface';
2
+
3
+ export declare const help: IVectorIcon;
4
+ export declare const notification: IVectorIcon;
5
+ export declare const moonFill: IVectorIcon;
6
+ export declare const arrowLeft: IVectorIcon;
7
+ export declare const chevronDown: IVectorIcon;
8
+ export declare const chevronUp: IVectorIcon;
9
+ export declare const dark: IVectorIcon;
10
+ export declare const exitBig: IVectorIcon;
11
+ export declare const exitSmall: IVectorIcon;
12
+ export declare const exit: IVectorIcon;
13
+ export declare const leftBigSmall: IVectorIcon;
14
+ export declare const leftBig: IVectorIcon;
15
+ export declare const light: IVectorIcon;
16
+ export declare const notificationYes: IVectorIcon;
17
+ export declare const plusSmall: IVectorIcon;
18
+ export declare const plus: IVectorIcon;
19
+ export declare const profileIcon: IVectorIcon;
20
+ export declare const profile: IVectorIcon;
21
+ export declare const rightBig: IVectorIcon;
22
+ export declare const rightSmall: IVectorIcon;
23
+ export declare const settings: IVectorIcon;
24
+ export declare const settingsDark: IVectorIcon;
25
+ export declare const searchNormal: IVectorIcon;
26
+ export declare const search: IVectorIcon;
27
+ export declare const filter: IVectorIcon;
28
+ export declare const bgNotContent: IVectorIcon;
29
+ export declare const document: IVectorIcon;
30
+ export declare const baseDetail: IVectorIcon;
31
+ export declare const addPlus: IVectorIcon;
32
+ export declare const closeVision: IVectorIcon;
33
+ export declare const openVision: IVectorIcon;
34
+ export declare const trash: IVectorIcon;
35
+ export declare const printer: IVectorIcon;
36
+ export declare const uploadCloud: IVectorIcon;
37
+ export declare const archive: IVectorIcon;
38
+ export declare const menuClose: IVectorIcon;
39
+ export declare const menuOpen: IVectorIcon;
40
+ export declare const bookOpen: IVectorIcon;
41
+ export declare const chartLine: IVectorIcon;
42
+ export declare const marriage: IVectorIcon;
43
+ export declare const baseOfAssemblyUnits: IVectorIcon;
44
+ export declare const equipmentBase: IVectorIcon;
45
+ export declare const supplierDatabase: IVectorIcon;
46
+ export declare const theDatabaseOfMaterials: IVectorIcon;
47
+ export declare const theBaseOfTheTool: IVectorIcon;
48
+ export declare const fileDatabase: IVectorIcon;
49
+ export declare const mainPage: IVectorIcon;
50
+ export declare const shopping: IVectorIcon;
51
+ export declare const shippingTasks: IVectorIcon;
52
+ export declare const warehouse: IVectorIcon;
53
+ export declare const production: IVectorIcon;
54
+ export declare const wastes: IVectorIcon;
55
+ export declare const writeDowns: IVectorIcon;
56
+ export declare const theComplaint: IVectorIcon;
57
+ export declare const baseOfEquipmentAndInventory: IVectorIcon;
58
+ export declare const usersGroup: IVectorIcon;
59
+ export declare const reports: IVectorIcon;
@@ -1,2 +1,2 @@
1
- import * as Icons from '../../assets/icons/icons.ts';
1
+ import * as Icons from './icons.ts';
2
2
  export default Icons;
@@ -7,3 +7,8 @@ export interface IIconPorps {
7
7
  name: IconNameEnum;
8
8
  color?: ColorsEnum;
9
9
  }
10
+ export interface IVectorIcon {
11
+ name: string;
12
+ style: 'line' | 'solid';
13
+ path: string;
14
+ }