sep-yui 0.0.28 → 0.0.29
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/assets/icons/icons.d.ts +7 -0
- package/dist/components/Icon/enum/enum.d.ts +8 -1
- package/dist/sep-yui.es.ts +1494 -1410
- package/dist/sep-yui.umd.ts +98 -49
- package/package.json +1 -1
@@ -28,3 +28,10 @@ export declare const filter: IvectorIcon;
|
|
28
28
|
export declare const bgNotContent: IvectorIcon;
|
29
29
|
export declare const document: IvectorIcon;
|
30
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;
|
@@ -26,5 +26,12 @@ export declare enum IconNameEnum {
|
|
26
26
|
filter = "filter",
|
27
27
|
bgNotContent = "bgNotContent",
|
28
28
|
document = "document",
|
29
|
-
baseDetail = "baseDetail"
|
29
|
+
baseDetail = "baseDetail",
|
30
|
+
addPlus = "addPlus",
|
31
|
+
closeVision = "closeVision",
|
32
|
+
openVision = "openVision",
|
33
|
+
trash = "trash",
|
34
|
+
printer = "printer",
|
35
|
+
uploadCloud = "uploadCloud",
|
36
|
+
archive = "archive"
|
30
37
|
}
|