@pksep/yui 0.1.214 → 0.1.217

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;
@@ -6,6 +6,7 @@ declare function __VLS_template(): {
6
6
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
7
7
  dataTestid: string;
8
8
  position: string;
9
+ disableCloseOnOutsideClick: boolean;
9
10
  }>>, {
10
11
  closeDialog: () => void;
11
12
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -14,12 +15,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
14
15
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
15
16
  dataTestid: string;
16
17
  position: string;
18
+ disableCloseOnOutsideClick: boolean;
17
19
  }>>> & Readonly<{
18
20
  onClose?: ((...args: any[]) => any) | undefined;
19
21
  onUnmounted?: ((...args: any[]) => any) | undefined;
20
22
  }>, {
21
23
  dataTestid: string;
22
24
  position: "right" | "center" | "bottom";
25
+ disableCloseOnOutsideClick: boolean;
23
26
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
25
28
  export default _default;
@@ -6,6 +6,7 @@ declare function __VLS_template(): {
6
6
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IModalProps>, {
7
7
  dataTestid: string;
8
8
  position: string;
9
+ disableCloseOnOutsideClick: boolean;
9
10
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
11
  close: () => void;
11
12
  unmounted: () => void;
@@ -13,6 +14,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
13
14
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IModalProps>, {
14
15
  dataTestid: string;
15
16
  position: string;
17
+ disableCloseOnOutsideClick: boolean;
16
18
  }>>> & Readonly<{
17
19
  onClose?: (() => any) | undefined;
18
20
  onUnmounted?: (() => any) | undefined;
@@ -20,6 +22,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
20
22
  }>, {
21
23
  dataTestid: string;
22
24
  position: "right" | "center" | "bottom";
25
+ disableCloseOnOutsideClick: boolean;
23
26
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
25
28
  export default _default;
@@ -6,6 +6,7 @@ export interface IDialogProps extends IDataTestIdProp {
6
6
  position?: 'right' | 'center' | 'bottom';
7
7
  width?: string;
8
8
  height?: string;
9
+ disableCloseOnOutsideClick?: boolean;
9
10
  }
10
11
  export interface IModalProps extends IDialogProps {
11
12
  animateType?: ModalAnimateEnum;
@@ -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
  }