@pksep/yui 0.1.151 → 0.1.153
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/components/Icon/enum/enum.d.ts +3 -1
- package/dist/components/Icon/icons.d.ts +15 -0
- package/dist/sep-yui.es.ts +7257 -7241
- package/dist/sep-yui.umd.ts +66 -64
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IconNameEnum } from './enum/enum';
|
|
1
2
|
import { IVectorIcon } from './interface/interface';
|
|
2
3
|
|
|
3
4
|
export declare const alertTriangle: IVectorIcon;
|
|
@@ -118,3 +119,17 @@ export declare const keyboard: IVectorIcon;
|
|
|
118
119
|
export declare const message: IVectorIcon;
|
|
119
120
|
export declare const darkThemeSwitcher: IVectorIcon;
|
|
120
121
|
export declare const qrCode: IVectorIcon;
|
|
122
|
+
export declare const notDelivered: {
|
|
123
|
+
name: IconNameEnum;
|
|
124
|
+
viewbox: string;
|
|
125
|
+
style: string;
|
|
126
|
+
fill: string;
|
|
127
|
+
path: string;
|
|
128
|
+
};
|
|
129
|
+
export declare const delivered: {
|
|
130
|
+
name: IconNameEnum;
|
|
131
|
+
viewbox: string;
|
|
132
|
+
style: string;
|
|
133
|
+
fill: string;
|
|
134
|
+
path: string;
|
|
135
|
+
};
|