@factoringplus/pl-components-pack-v3 1.2.22-pre-06 → 1.2.22-pre-08

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.
@@ -14,6 +14,9 @@ interface IPlDialogPlusProps {
14
14
  status?: 'successful' | 'info' | 'delete' | 'attention' | 'neutral';
15
15
  type?: 'standart' | 'status' | 'illustration' | 'side';
16
16
  loading?: boolean;
17
+ overlayClass?: string;
18
+ dialogClass?: string;
19
+ manualClose?: boolean;
17
20
  }
18
21
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlDialogPlusProps>, {
19
22
  modelValue: boolean;
@@ -28,6 +31,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
28
31
  status: string;
29
32
  icon: string;
30
33
  loading: boolean;
34
+ overlayClass: string;
35
+ dialogClass: string;
36
+ manualClose: boolean;
31
37
  }>, {
32
38
  closeModal: () => void;
33
39
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -46,6 +52,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
46
52
  status: string;
47
53
  icon: string;
48
54
  loading: boolean;
55
+ overlayClass: string;
56
+ dialogClass: string;
57
+ manualClose: boolean;
49
58
  }>>> & {
50
59
  "onUpdate:modelValue"?: (...args: any[]) => any;
51
60
  "onClose-modal"?: (...args: any[]) => any;
@@ -62,6 +71,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
62
71
  status: "delete" | "successful" | "info" | "attention" | "neutral";
63
72
  closeOnOverlay: boolean;
64
73
  innerScroll: boolean;
74
+ overlayClass: string;
75
+ dialogClass: string;
76
+ manualClose: boolean;
65
77
  }, {}>, {
66
78
  header?(_: {
67
79
  touchstart: () => void;
@@ -14,6 +14,7 @@ interface IProps {
14
14
  optional?: string;
15
15
  width?: string;
16
16
  viewMode: boolean;
17
+ maxSumFilesSize: number;
17
18
  }
18
19
  declare type TError = {
19
20
  dist: boolean;
@@ -41,6 +42,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
41
42
  optional: string;
42
43
  width: string;
43
44
  viewMode: boolean;
45
+ maxSumFilesSize: number;
44
46
  }>, {
45
47
  addFiles: (files: FileList | File[]) => void;
46
48
  removeFile: (fileToRemove: File | TUnloadedFile) => void;
@@ -64,6 +66,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
64
66
  optional: string;
65
67
  width: string;
66
68
  viewMode: boolean;
69
+ maxSumFilesSize: number;
67
70
  }>>> & {
68
71
  onAddFiles?: (...args: any[]) => any;
69
72
  onRemoveFile?: (...args: any[]) => any;
@@ -84,6 +87,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
84
87
  limit: number;
85
88
  helperText: string;
86
89
  viewMode: boolean;
90
+ maxSumFilesSize: number;
87
91
  }, {}>;
88
92
  export default _default;
89
93
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;