@factoringplus/pl-components-pack-v3 1.2.8 → 1.2.9-pre-01

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.
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
- # Библиотека компонентов Vue 3
2
-
3
- ## Установка
4
-
5
- ```bash
6
- npm i @factoringplus/pl-components-pack-v3
7
- ```
8
-
9
- ### Добавление компонентов в проект
10
-
11
- ```bash
12
- // src/main.js
13
- import components from '@factoringplus/pl-components-pack-v3';
14
- import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
-
16
- app.use(components)
17
- ```
1
+ # Библиотека компонентов Vue 3
2
+
3
+ ## Установка
4
+
5
+ ```bash
6
+ npm i @factoringplus/pl-components-pack-v3
7
+ ```
8
+
9
+ ### Добавление компонентов в проект
10
+
11
+ ```bash
12
+ // src/main.js
13
+ import components from '@factoringplus/pl-components-pack-v3';
14
+ import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
+
16
+ app.use(components)
17
+ ```
@@ -40,10 +40,6 @@ declare const _default: {
40
40
  type: import("vue").PropType<boolean>;
41
41
  default: boolean;
42
42
  };
43
- loading: {
44
- type: import("vue").PropType<boolean>;
45
- default: boolean;
46
- };
47
43
  status: {
48
44
  type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
49
45
  default: string;
@@ -104,10 +100,6 @@ declare const _default: {
104
100
  type: import("vue").PropType<boolean>;
105
101
  default: boolean;
106
102
  };
107
- loading: {
108
- type: import("vue").PropType<boolean>;
109
- default: boolean;
110
- };
111
103
  status: {
112
104
  type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
113
105
  default: string;
@@ -135,7 +127,6 @@ declare const _default: {
135
127
  showHeader: boolean;
136
128
  showClose: boolean;
137
129
  disabledTeleport: boolean;
138
- loading: boolean;
139
130
  status: "delete" | "successful" | "info" | "attention" | "neutral";
140
131
  closeOnOverlay: boolean;
141
132
  innerScroll: boolean;
@@ -183,10 +174,6 @@ declare const _default: {
183
174
  type: import("vue").PropType<boolean>;
184
175
  default: boolean;
185
176
  };
186
- loading: {
187
- type: import("vue").PropType<boolean>;
188
- default: boolean;
189
- };
190
177
  status: {
191
178
  type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
192
179
  default: string;
@@ -216,7 +203,6 @@ declare const _default: {
216
203
  showHeader: boolean;
217
204
  showClose: boolean;
218
205
  disabledTeleport: boolean;
219
- loading: boolean;
220
206
  status: "delete" | "successful" | "info" | "attention" | "neutral";
221
207
  closeOnOverlay: boolean;
222
208
  innerScroll: boolean;
@@ -261,10 +247,6 @@ declare const _default: {
261
247
  type: import("vue").PropType<boolean>;
262
248
  default: boolean;
263
249
  };
264
- loading: {
265
- type: import("vue").PropType<boolean>;
266
- default: boolean;
267
- };
268
250
  status: {
269
251
  type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
270
252
  default: string;
@@ -297,7 +279,6 @@ declare const _default: {
297
279
  showHeader: boolean;
298
280
  showClose: boolean;
299
281
  disabledTeleport: boolean;
300
- loading: boolean;
301
282
  status: "delete" | "successful" | "info" | "attention" | "neutral";
302
283
  closeOnOverlay: boolean;
303
284
  innerScroll: boolean;
@@ -13,7 +13,6 @@ interface IPlDialogPlusProps {
13
13
  icon?: TIcon;
14
14
  status?: 'successful' | 'info' | 'delete' | 'attention' | 'neutral';
15
15
  type?: 'standart' | 'status' | 'illustration' | 'side';
16
- loading?: boolean;
17
16
  }
18
17
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlDialogPlusProps>, {
19
18
  modelValue: boolean;
@@ -27,7 +26,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
27
26
  type: string;
28
27
  status: string;
29
28
  icon: string;
30
- loading: boolean;
31
29
  }>, {
32
30
  closeModal: () => void;
33
31
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -45,7 +43,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
45
43
  type: string;
46
44
  status: string;
47
45
  icon: string;
48
- loading: boolean;
49
46
  }>>> & {
50
47
  "onUpdate:modelValue"?: (...args: any[]) => any;
51
48
  "onClose-modal"?: (...args: any[]) => any;
@@ -58,7 +55,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
58
55
  showHeader: boolean;
59
56
  showClose: boolean;
60
57
  disabledTeleport: boolean;
61
- loading: boolean;
62
58
  status: "delete" | "successful" | "info" | "attention" | "neutral";
63
59
  closeOnOverlay: boolean;
64
60
  innerScroll: boolean;
@@ -1,7 +1,7 @@
1
1
  interface RadioOption {
2
+ label: string;
2
3
  value: string;
3
- label?: string;
4
- description?: string;
4
+ description: string;
5
5
  }
6
6
  declare const _default: import("vue").DefineComponent<{
7
7
  size: {
@@ -17,8 +17,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
17
17
  }>>>, {
18
18
  width: string;
19
19
  height: string;
20
- borderRadius: string;
21
20
  variant: string;
21
+ borderRadius: string;
22
22
  }, {}>;
23
23
  export default _default;
24
24
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -5,7 +5,7 @@ interface IProps {
5
5
  width?: number;
6
6
  maxWidthContent?: string;
7
7
  }[];
8
- hideHeadersOnMobile?: string[];
8
+ hideHeadersOnMobile: string[];
9
9
  rows: Record<string, string | number>[];
10
10
  isLoading?: boolean;
11
11
  withHover?: boolean;