@factoringplus/pl-components-pack-v3 1.1.8-pre-05 → 1.1.8-pre-07

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.
@@ -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;
@@ -36,6 +40,10 @@ declare const _default: {
36
40
  type: import("vue").PropType<boolean>;
37
41
  default: boolean;
38
42
  };
43
+ status: {
44
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
45
+ default: string;
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;
@@ -88,6 +100,10 @@ declare const _default: {
88
100
  type: import("vue").PropType<boolean>;
89
101
  default: boolean;
90
102
  };
103
+ status: {
104
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
105
+ default: string;
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
126
  beforeClose: Function;
110
127
  showHeader: boolean;
111
128
  showClose: boolean;
112
129
  disabledTeleport: boolean;
130
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
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;
@@ -152,6 +174,10 @@ declare const _default: {
152
174
  type: import("vue").PropType<boolean>;
153
175
  default: boolean;
154
176
  };
177
+ status: {
178
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
179
+ default: string;
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
202
  beforeClose: Function;
176
203
  showHeader: boolean;
177
204
  showClose: boolean;
178
205
  disabledTeleport: boolean;
206
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
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;
@@ -215,6 +247,10 @@ declare const _default: {
215
247
  type: import("vue").PropType<boolean>;
216
248
  default: boolean;
217
249
  };
250
+ status: {
251
+ type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
252
+ default: string;
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
278
  beforeClose: Function;
242
279
  showHeader: boolean;
243
280
  showClose: boolean;
244
281
  disabledTeleport: boolean;
282
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
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
54
  beforeClose: Function;
47
55
  showHeader: boolean;
48
56
  showClose: boolean;
49
57
  disabledTeleport: boolean;
58
+ status: "delete" | "successful" | "info" | "attention" | "neutral";
50
59
  closeOnOverlay: boolean;
51
60
  innerScroll: boolean;
52
61
  }, {}>, {