@factoringplus/pl-components-pack-v3 1.0.9-pre-03 → 1.0.9-pre-05
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/dist/components/button/pl-button.vue.d.ts +4 -4
- package/dist/components/button/types/index.d.ts +10 -10
- package/dist/components/pl-dialog/pl-dialog.stories.d.ts +36 -36
- package/dist/components/pl-dialog/pl-dialog.vue.d.ts +1 -1
- package/dist/components/pl-scrollbar/pl-scrollbar.vue.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
1
|
+
import { TestProps } from './PlButton';
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TestProps>, {
|
|
3
3
|
fullWidth: boolean;
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
type: string;
|
|
@@ -10,7 +10,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
10
10
|
nativeType: string;
|
|
11
11
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
12
|
click: (...args: any[]) => void;
|
|
13
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
13
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TestProps>, {
|
|
14
14
|
fullWidth: boolean;
|
|
15
15
|
disabled: boolean;
|
|
16
16
|
type: string;
|
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
23
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
24
24
|
}, {
|
|
25
25
|
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
26
|
-
icon:
|
|
26
|
+
icon: any;
|
|
27
27
|
fullWidth: boolean;
|
|
28
28
|
disabled: boolean;
|
|
29
29
|
size: "small" | "large" | "medium";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import type { TIcon } from '../../pl-icon/types';
|
|
2
|
-
/**
|
|
3
|
-
* @param fullWidth boolean;
|
|
4
|
-
* @param disabled boolean;
|
|
5
|
-
* @param type 'primary' | 'secondary' | 'alternative' | 'error' | 'empty';
|
|
6
|
-
* @param size 'large' | 'medium' | 'small';
|
|
7
|
-
* @param icon IIcon;
|
|
8
|
-
* @param iconColor string;
|
|
9
|
-
* @param iconPosition 'left' | 'right';
|
|
10
|
-
* @param nativeType 'button'| 'submit'| 'reset' | undefined
|
|
11
|
-
*/
|
|
12
2
|
export declare type TButtonProps = {
|
|
3
|
+
/**
|
|
4
|
+
* @param fullWidth boolean;
|
|
5
|
+
* @param disabled boolean;
|
|
6
|
+
* @param type 'primary' | 'secondary' | 'alternative' | 'error' | 'empty';
|
|
7
|
+
* @param size 'large' | 'medium' | 'small';
|
|
8
|
+
* @param icon IIcon;
|
|
9
|
+
* @param iconColor string;
|
|
10
|
+
* @param iconPosition 'left' | 'right';
|
|
11
|
+
* @param nativeType 'button'| 'submit'| 'reset' | undefined
|
|
12
|
+
*/
|
|
13
13
|
fullWidth?: boolean;
|
|
14
14
|
disabled?: boolean;
|
|
15
15
|
type?: 'primary' | 'secondary' | 'alternative' | 'error' | 'empty';
|
|
@@ -5,6 +5,7 @@ export declare const PlDialogStory: () => {
|
|
|
5
5
|
$: import("vue").ComponentInternalInstance;
|
|
6
6
|
$data: {};
|
|
7
7
|
$props: {
|
|
8
|
+
customClass?: string | undefined;
|
|
8
9
|
modelValue?: boolean | undefined;
|
|
9
10
|
showHeader?: boolean | undefined;
|
|
10
11
|
showGrabber?: boolean | undefined;
|
|
@@ -12,7 +13,6 @@ export declare const PlDialogStory: () => {
|
|
|
12
13
|
padding?: string | undefined;
|
|
13
14
|
headerPadding?: string | undefined;
|
|
14
15
|
showClose?: boolean | undefined;
|
|
15
|
-
customClass?: string | undefined;
|
|
16
16
|
slide?: boolean | undefined;
|
|
17
17
|
simple?: boolean | undefined;
|
|
18
18
|
disabledTeleport?: boolean | undefined;
|
|
@@ -81,6 +81,10 @@ export declare const PlDialogStory: () => {
|
|
|
81
81
|
$emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "changeVisibleModalValue", ...args: any[]) => void);
|
|
82
82
|
$el: any;
|
|
83
83
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
customClass: {
|
|
85
|
+
type: import("vue").PropType<string>;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
84
88
|
modelValue: {
|
|
85
89
|
type: import("vue").PropType<boolean>;
|
|
86
90
|
required: true;
|
|
@@ -110,10 +114,6 @@ export declare const PlDialogStory: () => {
|
|
|
110
114
|
type: import("vue").PropType<boolean>;
|
|
111
115
|
default: boolean;
|
|
112
116
|
};
|
|
113
|
-
customClass: {
|
|
114
|
-
type: import("vue").PropType<string>;
|
|
115
|
-
default: string;
|
|
116
|
-
};
|
|
117
117
|
slide: {
|
|
118
118
|
type: import("vue").PropType<boolean>;
|
|
119
119
|
default: boolean;
|
|
@@ -152,6 +152,7 @@ export declare const PlDialogStory: () => {
|
|
|
152
152
|
"update:modelValue": (...args: any[]) => void;
|
|
153
153
|
changeVisibleModalValue: (...args: any[]) => void;
|
|
154
154
|
}, string, {
|
|
155
|
+
customClass: string;
|
|
155
156
|
modelValue: boolean;
|
|
156
157
|
showHeader: boolean;
|
|
157
158
|
showGrabber: boolean;
|
|
@@ -159,7 +160,6 @@ export declare const PlDialogStory: () => {
|
|
|
159
160
|
padding: string;
|
|
160
161
|
headerPadding: string;
|
|
161
162
|
showClose: boolean;
|
|
162
|
-
customClass: string;
|
|
163
163
|
slide: boolean;
|
|
164
164
|
simple: boolean;
|
|
165
165
|
disabledTeleport: boolean;
|
|
@@ -188,6 +188,10 @@ export declare const PlDialogStory: () => {
|
|
|
188
188
|
$nextTick: typeof import("vue").nextTick;
|
|
189
189
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
190
190
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
191
|
+
customClass: {
|
|
192
|
+
type: import("vue").PropType<string>;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
191
195
|
modelValue: {
|
|
192
196
|
type: import("vue").PropType<boolean>;
|
|
193
197
|
required: true;
|
|
@@ -217,10 +221,6 @@ export declare const PlDialogStory: () => {
|
|
|
217
221
|
type: import("vue").PropType<boolean>;
|
|
218
222
|
default: boolean;
|
|
219
223
|
};
|
|
220
|
-
customClass: {
|
|
221
|
-
type: import("vue").PropType<string>;
|
|
222
|
-
default: string;
|
|
223
|
-
};
|
|
224
224
|
slide: {
|
|
225
225
|
type: import("vue").PropType<boolean>;
|
|
226
226
|
default: boolean;
|
|
@@ -260,6 +260,10 @@ export declare const PlDialogStory: () => {
|
|
|
260
260
|
__isTeleport?: undefined;
|
|
261
261
|
__isSuspense?: undefined;
|
|
262
262
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
263
|
+
customClass: {
|
|
264
|
+
type: import("vue").PropType<string>;
|
|
265
|
+
default: string;
|
|
266
|
+
};
|
|
263
267
|
modelValue: {
|
|
264
268
|
type: import("vue").PropType<boolean>;
|
|
265
269
|
required: true;
|
|
@@ -289,10 +293,6 @@ export declare const PlDialogStory: () => {
|
|
|
289
293
|
type: import("vue").PropType<boolean>;
|
|
290
294
|
default: boolean;
|
|
291
295
|
};
|
|
292
|
-
customClass: {
|
|
293
|
-
type: import("vue").PropType<string>;
|
|
294
|
-
default: string;
|
|
295
|
-
};
|
|
296
296
|
slide: {
|
|
297
297
|
type: import("vue").PropType<boolean>;
|
|
298
298
|
default: boolean;
|
|
@@ -331,6 +331,7 @@ export declare const PlDialogStory: () => {
|
|
|
331
331
|
"update:modelValue": (...args: any[]) => void;
|
|
332
332
|
changeVisibleModalValue: (...args: any[]) => void;
|
|
333
333
|
}, string, {
|
|
334
|
+
customClass: string;
|
|
334
335
|
modelValue: boolean;
|
|
335
336
|
showHeader: boolean;
|
|
336
337
|
showGrabber: boolean;
|
|
@@ -338,7 +339,6 @@ export declare const PlDialogStory: () => {
|
|
|
338
339
|
padding: string;
|
|
339
340
|
headerPadding: string;
|
|
340
341
|
showClose: boolean;
|
|
341
|
-
customClass: string;
|
|
342
342
|
slide: boolean;
|
|
343
343
|
simple: boolean;
|
|
344
344
|
disabledTeleport: boolean;
|
|
@@ -359,7 +359,7 @@ export declare const PlDialogStory: () => {
|
|
|
359
359
|
$data: {};
|
|
360
360
|
$props: {
|
|
361
361
|
type?: "primary" | "secondary" | "alternative" | "error" | "empty" | undefined;
|
|
362
|
-
icon?:
|
|
362
|
+
icon?: any;
|
|
363
363
|
fullWidth?: boolean | undefined;
|
|
364
364
|
disabled?: boolean | undefined;
|
|
365
365
|
size?: "small" | "large" | "medium" | undefined;
|
|
@@ -431,7 +431,7 @@ export declare const PlDialogStory: () => {
|
|
|
431
431
|
default: string;
|
|
432
432
|
};
|
|
433
433
|
icon: {
|
|
434
|
-
type: import("vue").PropType<
|
|
434
|
+
type: import("vue").PropType<any>;
|
|
435
435
|
default: string;
|
|
436
436
|
};
|
|
437
437
|
fullWidth: {
|
|
@@ -464,7 +464,7 @@ export declare const PlDialogStory: () => {
|
|
|
464
464
|
click: (...args: any[]) => void;
|
|
465
465
|
}, string, {
|
|
466
466
|
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
467
|
-
icon:
|
|
467
|
+
icon: any;
|
|
468
468
|
fullWidth: boolean;
|
|
469
469
|
disabled: boolean;
|
|
470
470
|
size: "small" | "large" | "medium";
|
|
@@ -497,7 +497,7 @@ export declare const PlDialogStory: () => {
|
|
|
497
497
|
default: string;
|
|
498
498
|
};
|
|
499
499
|
icon: {
|
|
500
|
-
type: import("vue").PropType<
|
|
500
|
+
type: import("vue").PropType<any>;
|
|
501
501
|
default: string;
|
|
502
502
|
};
|
|
503
503
|
fullWidth: {
|
|
@@ -536,7 +536,7 @@ export declare const PlDialogStory: () => {
|
|
|
536
536
|
default: string;
|
|
537
537
|
};
|
|
538
538
|
icon: {
|
|
539
|
-
type: import("vue").PropType<
|
|
539
|
+
type: import("vue").PropType<any>;
|
|
540
540
|
default: string;
|
|
541
541
|
};
|
|
542
542
|
fullWidth: {
|
|
@@ -569,7 +569,7 @@ export declare const PlDialogStory: () => {
|
|
|
569
569
|
click: (...args: any[]) => void;
|
|
570
570
|
}, string, {
|
|
571
571
|
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
572
|
-
icon:
|
|
572
|
+
icon: any;
|
|
573
573
|
fullWidth: boolean;
|
|
574
574
|
disabled: boolean;
|
|
575
575
|
size: "small" | "large" | "medium";
|
|
@@ -594,6 +594,7 @@ declare const _default: {
|
|
|
594
594
|
$: import("vue").ComponentInternalInstance;
|
|
595
595
|
$data: {};
|
|
596
596
|
$props: {
|
|
597
|
+
customClass?: string | undefined;
|
|
597
598
|
modelValue?: boolean | undefined;
|
|
598
599
|
showHeader?: boolean | undefined;
|
|
599
600
|
showGrabber?: boolean | undefined;
|
|
@@ -601,7 +602,6 @@ declare const _default: {
|
|
|
601
602
|
padding?: string | undefined;
|
|
602
603
|
headerPadding?: string | undefined;
|
|
603
604
|
showClose?: boolean | undefined;
|
|
604
|
-
customClass?: string | undefined;
|
|
605
605
|
slide?: boolean | undefined;
|
|
606
606
|
simple?: boolean | undefined;
|
|
607
607
|
disabledTeleport?: boolean | undefined;
|
|
@@ -670,6 +670,10 @@ declare const _default: {
|
|
|
670
670
|
$emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "changeVisibleModalValue", ...args: any[]) => void);
|
|
671
671
|
$el: any;
|
|
672
672
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
673
|
+
customClass: {
|
|
674
|
+
type: import("vue").PropType<string>;
|
|
675
|
+
default: string;
|
|
676
|
+
};
|
|
673
677
|
modelValue: {
|
|
674
678
|
type: import("vue").PropType<boolean>;
|
|
675
679
|
required: true;
|
|
@@ -699,10 +703,6 @@ declare const _default: {
|
|
|
699
703
|
type: import("vue").PropType<boolean>;
|
|
700
704
|
default: boolean;
|
|
701
705
|
};
|
|
702
|
-
customClass: {
|
|
703
|
-
type: import("vue").PropType<string>;
|
|
704
|
-
default: string;
|
|
705
|
-
};
|
|
706
706
|
slide: {
|
|
707
707
|
type: import("vue").PropType<boolean>;
|
|
708
708
|
default: boolean;
|
|
@@ -741,6 +741,7 @@ declare const _default: {
|
|
|
741
741
|
"update:modelValue": (...args: any[]) => void;
|
|
742
742
|
changeVisibleModalValue: (...args: any[]) => void;
|
|
743
743
|
}, string, {
|
|
744
|
+
customClass: string;
|
|
744
745
|
modelValue: boolean;
|
|
745
746
|
showHeader: boolean;
|
|
746
747
|
showGrabber: boolean;
|
|
@@ -748,7 +749,6 @@ declare const _default: {
|
|
|
748
749
|
padding: string;
|
|
749
750
|
headerPadding: string;
|
|
750
751
|
showClose: boolean;
|
|
751
|
-
customClass: string;
|
|
752
752
|
slide: boolean;
|
|
753
753
|
simple: boolean;
|
|
754
754
|
disabledTeleport: boolean;
|
|
@@ -777,6 +777,10 @@ declare const _default: {
|
|
|
777
777
|
$nextTick: typeof import("vue").nextTick;
|
|
778
778
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
779
779
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
780
|
+
customClass: {
|
|
781
|
+
type: import("vue").PropType<string>;
|
|
782
|
+
default: string;
|
|
783
|
+
};
|
|
780
784
|
modelValue: {
|
|
781
785
|
type: import("vue").PropType<boolean>;
|
|
782
786
|
required: true;
|
|
@@ -806,10 +810,6 @@ declare const _default: {
|
|
|
806
810
|
type: import("vue").PropType<boolean>;
|
|
807
811
|
default: boolean;
|
|
808
812
|
};
|
|
809
|
-
customClass: {
|
|
810
|
-
type: import("vue").PropType<string>;
|
|
811
|
-
default: string;
|
|
812
|
-
};
|
|
813
813
|
slide: {
|
|
814
814
|
type: import("vue").PropType<boolean>;
|
|
815
815
|
default: boolean;
|
|
@@ -849,6 +849,10 @@ declare const _default: {
|
|
|
849
849
|
__isTeleport?: undefined;
|
|
850
850
|
__isSuspense?: undefined;
|
|
851
851
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
852
|
+
customClass: {
|
|
853
|
+
type: import("vue").PropType<string>;
|
|
854
|
+
default: string;
|
|
855
|
+
};
|
|
852
856
|
modelValue: {
|
|
853
857
|
type: import("vue").PropType<boolean>;
|
|
854
858
|
required: true;
|
|
@@ -878,10 +882,6 @@ declare const _default: {
|
|
|
878
882
|
type: import("vue").PropType<boolean>;
|
|
879
883
|
default: boolean;
|
|
880
884
|
};
|
|
881
|
-
customClass: {
|
|
882
|
-
type: import("vue").PropType<string>;
|
|
883
|
-
default: string;
|
|
884
|
-
};
|
|
885
885
|
slide: {
|
|
886
886
|
type: import("vue").PropType<boolean>;
|
|
887
887
|
default: boolean;
|
|
@@ -920,6 +920,7 @@ declare const _default: {
|
|
|
920
920
|
"update:modelValue": (...args: any[]) => void;
|
|
921
921
|
changeVisibleModalValue: (...args: any[]) => void;
|
|
922
922
|
}, string, {
|
|
923
|
+
customClass: string;
|
|
923
924
|
modelValue: boolean;
|
|
924
925
|
showHeader: boolean;
|
|
925
926
|
showGrabber: boolean;
|
|
@@ -927,7 +928,6 @@ declare const _default: {
|
|
|
927
928
|
padding: string;
|
|
928
929
|
headerPadding: string;
|
|
929
930
|
showClose: boolean;
|
|
930
|
-
customClass: string;
|
|
931
931
|
slide: boolean;
|
|
932
932
|
simple: boolean;
|
|
933
933
|
disabledTeleport: boolean;
|
|
@@ -57,6 +57,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
57
57
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
58
58
|
onChangeVisibleModalValue?: ((...args: any[]) => any) | undefined;
|
|
59
59
|
}, {
|
|
60
|
+
customClass: string;
|
|
60
61
|
modelValue: boolean;
|
|
61
62
|
showHeader: boolean;
|
|
62
63
|
showGrabber: boolean;
|
|
@@ -64,7 +65,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
64
65
|
padding: string;
|
|
65
66
|
headerPadding: string;
|
|
66
67
|
showClose: boolean;
|
|
67
|
-
customClass: string;
|
|
68
68
|
slide: boolean;
|
|
69
69
|
simple: boolean;
|
|
70
70
|
disabledTeleport: boolean;
|
|
@@ -28,8 +28,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
28
28
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
onWheel?: ((...args: any[]) => any) | undefined;
|
|
30
30
|
}, {
|
|
31
|
-
maxHeight: string | number;
|
|
32
31
|
height: string | number;
|
|
32
|
+
maxHeight: string | number;
|
|
33
33
|
wrapClass: string;
|
|
34
34
|
viewClass: string;
|
|
35
35
|
hideScrollThumb: boolean;
|