@pksep/yui 0.1.216 → 0.1.218

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.
@@ -114,5 +114,8 @@ export declare enum IconNameEnum {
114
114
  delivered = "delivered",
115
115
  notDelivered = "not-delivered",
116
116
  zoomMinus = "zoom-minus",
117
- zoomPlus = "zoom-plus"
117
+ zoomPlus = "zoom-plus",
118
+ download = "download",
119
+ android = "android",
120
+ apple = "apple"
118
121
  }
@@ -127,3 +127,6 @@ export declare const timeAttention: IVectorIcon;
127
127
  export declare const timeError: IVectorIcon;
128
128
  export declare const materials: IVectorIcon;
129
129
  export declare const support: IVectorIcon;
130
+ export declare const download: IVectorIcon;
131
+ export declare const android: IVectorIcon;
132
+ export declare const apple: IVectorIcon;
@@ -1,8 +1,10 @@
1
1
  import { IDataTestIdProp } from '../../../common/dataTestidProps';
2
+ import { IconNameEnum } from '../../Icon/enum/enum';
2
3
 
3
4
  export interface SwitchItem {
4
5
  label: string;
5
6
  value: string;
7
+ icon?: IconNameEnum;
6
8
  }
7
9
  type ItemsType = Array<string | SwitchItem>;
8
10
  export interface ISwitchProps extends IDataTestIdProp {
@@ -4,5 +4,6 @@ export declare enum MenuTypeEnum {
4
4
  options = "options",
5
5
  exit = "exit",
6
6
  qrAuth = "qr-auth",
7
+ downloadChat = "download-chat",
7
8
  help = "help"
8
9
  }