@factoringplus/pl-components-pack-v3 1.1.8-pre-06 → 1.1.8-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.
@@ -53,7 +53,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
53
53
  label: string;
54
54
  disabled: boolean;
55
55
  modelValue: IOption;
56
- tooltip: string;
57
56
  prop: string;
58
57
  placeholder: string;
59
58
  clearable: boolean;
@@ -69,6 +68,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
69
68
  defaultDropText: string;
70
69
  noData: string;
71
70
  optional: string;
71
+ tooltip: string;
72
72
  teleport: boolean;
73
73
  }, {}>;
74
74
  export default _default;
@@ -60,13 +60,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
60
60
  label: string;
61
61
  disabled: boolean;
62
62
  modelValue: string;
63
- tooltip: string;
64
63
  prop: string;
65
64
  placeholder: string;
66
65
  clearable: boolean;
67
66
  width: string;
68
67
  helpertext: string;
69
68
  optional: string;
69
+ tooltip: string;
70
70
  monthSwitch: boolean;
71
71
  yearSwitch: boolean;
72
72
  disabledDate: Function;
@@ -67,13 +67,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
67
67
  label: string;
68
68
  disabled: boolean;
69
69
  modelValue: string[];
70
- tooltip: string;
71
70
  prop: string;
72
71
  placeholder: string;
73
72
  clearable: boolean;
74
73
  width: string;
75
74
  helpertext: string;
76
75
  optional: string;
76
+ tooltip: string;
77
77
  periods: boolean;
78
78
  monthSwitch: boolean;
79
79
  yearSwitch: boolean;
@@ -11,6 +11,10 @@ declare const _default: {
11
11
  title: {
12
12
  type: import("vue").PropType<string>;
13
13
  };
14
+ icon: {
15
+ type: import("vue").PropType<import("../pl-icon").TIcon>;
16
+ default: string;
17
+ };
14
18
  modelValue: {
15
19
  type: import("vue").PropType<boolean>;
16
20
  required: true;
@@ -20,10 +24,6 @@ declare const _default: {
20
24
  type: import("vue").PropType<string>;
21
25
  default: string;
22
26
  };
23
- beforeClose: {
24
- type: import("vue").PropType<Function>;
25
- default: () => void;
26
- };
27
27
  showHeader: {
28
28
  type: import("vue").PropType<boolean>;
29
29
  default: boolean;
@@ -36,6 +36,14 @@ declare const _default: {
36
36
  type: import("vue").PropType<boolean>;
37
37
  default: boolean;
38
38
  };
39
+ status: {
40
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
41
+ default: string;
42
+ };
43
+ beforeClose: {
44
+ type: import("vue").PropType<Function>;
45
+ default: () => void;
46
+ };
39
47
  closeOnOverlay: {
40
48
  type: import("vue").PropType<boolean>;
41
49
  default: boolean;
@@ -63,6 +71,10 @@ declare const _default: {
63
71
  title: {
64
72
  type: import("vue").PropType<string>;
65
73
  };
74
+ icon: {
75
+ type: import("vue").PropType<import("../pl-icon").TIcon>;
76
+ default: string;
77
+ };
66
78
  modelValue: {
67
79
  type: import("vue").PropType<boolean>;
68
80
  required: true;
@@ -72,10 +84,6 @@ declare const _default: {
72
84
  type: import("vue").PropType<string>;
73
85
  default: string;
74
86
  };
75
- beforeClose: {
76
- type: import("vue").PropType<Function>;
77
- default: () => void;
78
- };
79
87
  showHeader: {
80
88
  type: import("vue").PropType<boolean>;
81
89
  default: boolean;
@@ -88,6 +96,14 @@ declare const _default: {
88
96
  type: import("vue").PropType<boolean>;
89
97
  default: boolean;
90
98
  };
99
+ status: {
100
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
101
+ default: string;
102
+ };
103
+ beforeClose: {
104
+ type: import("vue").PropType<Function>;
105
+ default: () => void;
106
+ };
91
107
  closeOnOverlay: {
92
108
  type: import("vue").PropType<boolean>;
93
109
  default: boolean;
@@ -104,12 +120,14 @@ declare const _default: {
104
120
  "onClose-modal"?: (...args: any[]) => any;
105
121
  }, {
106
122
  type: "standart" | "status" | "illustration" | "side";
123
+ icon: import("../pl-icon").TIcon;
107
124
  modelValue: boolean;
108
125
  width: string;
109
- beforeClose: Function;
110
126
  showHeader: boolean;
111
127
  showClose: boolean;
112
128
  disabledTeleport: boolean;
129
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
130
+ beforeClose: Function;
113
131
  closeOnOverlay: boolean;
114
132
  innerScroll: boolean;
115
133
  }, true, {}, {}, {
@@ -127,6 +145,10 @@ declare const _default: {
127
145
  title: {
128
146
  type: import("vue").PropType<string>;
129
147
  };
148
+ icon: {
149
+ type: import("vue").PropType<import("../pl-icon").TIcon>;
150
+ default: string;
151
+ };
130
152
  modelValue: {
131
153
  type: import("vue").PropType<boolean>;
132
154
  required: true;
@@ -136,10 +158,6 @@ declare const _default: {
136
158
  type: import("vue").PropType<string>;
137
159
  default: string;
138
160
  };
139
- beforeClose: {
140
- type: import("vue").PropType<Function>;
141
- default: () => void;
142
- };
143
161
  showHeader: {
144
162
  type: import("vue").PropType<boolean>;
145
163
  default: boolean;
@@ -152,6 +170,14 @@ declare const _default: {
152
170
  type: import("vue").PropType<boolean>;
153
171
  default: boolean;
154
172
  };
173
+ status: {
174
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
175
+ default: string;
176
+ };
177
+ beforeClose: {
178
+ type: import("vue").PropType<Function>;
179
+ default: () => void;
180
+ };
155
181
  closeOnOverlay: {
156
182
  type: import("vue").PropType<boolean>;
157
183
  default: boolean;
@@ -170,12 +196,14 @@ declare const _default: {
170
196
  closeModal: () => void;
171
197
  }, {}, {}, {}, {
172
198
  type: "standart" | "status" | "illustration" | "side";
199
+ icon: import("../pl-icon").TIcon;
173
200
  modelValue: boolean;
174
201
  width: string;
175
- beforeClose: Function;
176
202
  showHeader: boolean;
177
203
  showClose: boolean;
178
204
  disabledTeleport: boolean;
205
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
206
+ beforeClose: Function;
179
207
  closeOnOverlay: boolean;
180
208
  innerScroll: boolean;
181
209
  }>;
@@ -190,6 +218,10 @@ declare const _default: {
190
218
  title: {
191
219
  type: import("vue").PropType<string>;
192
220
  };
221
+ icon: {
222
+ type: import("vue").PropType<import("../pl-icon").TIcon>;
223
+ default: string;
224
+ };
193
225
  modelValue: {
194
226
  type: import("vue").PropType<boolean>;
195
227
  required: true;
@@ -199,10 +231,6 @@ declare const _default: {
199
231
  type: import("vue").PropType<string>;
200
232
  default: string;
201
233
  };
202
- beforeClose: {
203
- type: import("vue").PropType<Function>;
204
- default: () => void;
205
- };
206
234
  showHeader: {
207
235
  type: import("vue").PropType<boolean>;
208
236
  default: boolean;
@@ -215,6 +243,14 @@ declare const _default: {
215
243
  type: import("vue").PropType<boolean>;
216
244
  default: boolean;
217
245
  };
246
+ status: {
247
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
248
+ default: string;
249
+ };
250
+ beforeClose: {
251
+ type: import("vue").PropType<Function>;
252
+ default: () => void;
253
+ };
218
254
  closeOnOverlay: {
219
255
  type: import("vue").PropType<boolean>;
220
256
  default: boolean;
@@ -236,12 +272,14 @@ declare const _default: {
236
272
  "close-modal": (...args: any[]) => void;
237
273
  }, string, {
238
274
  type: "standart" | "status" | "illustration" | "side";
275
+ icon: import("../pl-icon").TIcon;
239
276
  modelValue: boolean;
240
277
  width: string;
241
- beforeClose: Function;
242
278
  showHeader: boolean;
243
279
  showClose: boolean;
244
280
  disabledTeleport: boolean;
281
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
282
+ beforeClose: Function;
245
283
  closeOnOverlay: boolean;
246
284
  innerScroll: boolean;
247
285
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -1,3 +1,4 @@
1
+ import type { TIcon } from '../pl-icon/types';
1
2
  interface IPlDialogPlusProps {
2
3
  modelValue: boolean;
3
4
  beforeClose?: Function;
@@ -9,6 +10,8 @@ interface IPlDialogPlusProps {
9
10
  innerScroll?: boolean;
10
11
  title?: string;
11
12
  subTitle?: string;
13
+ icon?: TIcon;
14
+ status?: 'successful' | 'info' | 'delete' | 'attention' | 'neutral';
12
15
  type?: 'standart' | 'status' | 'illustration' | 'side';
13
16
  }
14
17
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlDialogPlusProps>, {
@@ -21,6 +24,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
21
24
  closeOnOverlay: boolean;
22
25
  innerScroll: boolean;
23
26
  type: string;
27
+ status: string;
28
+ icon: string;
24
29
  }>, {
25
30
  closeModal: () => void;
26
31
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -36,17 +41,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
36
41
  closeOnOverlay: boolean;
37
42
  innerScroll: boolean;
38
43
  type: string;
44
+ status: string;
45
+ icon: string;
39
46
  }>>> & {
40
47
  "onUpdate:modelValue"?: (...args: any[]) => any;
41
48
  "onClose-modal"?: (...args: any[]) => any;
42
49
  }, {
43
50
  type: "standart" | "status" | "illustration" | "side";
51
+ icon: TIcon;
44
52
  modelValue: boolean;
45
53
  width: string;
46
- beforeClose: Function;
47
54
  showHeader: boolean;
48
55
  showClose: boolean;
49
56
  disabledTeleport: boolean;
57
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
58
+ beforeClose: Function;
50
59
  closeOnOverlay: boolean;
51
60
  innerScroll: boolean;
52
61
  }, {}>, {
@@ -31,8 +31,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
31
31
  onScroll?: (...args: any[]) => any;
32
32
  onWheel?: (...args: any[]) => any;
33
33
  }, {
34
- height: string | number;
35
34
  maxHeight: string | number;
35
+ height: string | number;
36
36
  wrapClass: string;
37
37
  viewClass: string;
38
38
  hideScrollThumb: boolean;
@@ -43,7 +43,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
43
43
  label: string;
44
44
  disabled: boolean;
45
45
  modelValue: string | number | IOption;
46
- tooltip: string;
47
46
  prop: string;
48
47
  placeholder: string;
49
48
  clearable: boolean;
@@ -52,6 +51,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
52
51
  width: string;
53
52
  helpertext: string;
54
53
  optional: string;
54
+ tooltip: string;
55
55
  teleport: boolean;
56
56
  options: IOption[];
57
57
  showDescription: boolean;
@@ -65,10 +65,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
65
65
  title: string;
66
66
  disabled: boolean;
67
67
  modelValue: (File | TUnloadedFile)[];
68
- tooltip: string;
69
68
  prop: string;
70
69
  description: string;
71
70
  optional: string;
71
+ tooltip: string;
72
72
  accept: string;
73
73
  multiple: boolean;
74
74
  fileSize: number;