@factoringplus/pl-components-pack-v3 1.2.11-typings-04 → 1.2.11-typings-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/index.d.ts +177 -1
- package/dist/components/entry.d.ts +0 -1
- package/dist/pl-components-pack-v3.es.js +1022 -1023
- package/dist/pl-components-pack-v3.umd.js +23 -23
- package/package.json +1 -1
|
@@ -1,4 +1,180 @@
|
|
|
1
1
|
import type { TButtonProps } from './types';
|
|
2
|
-
export declare const PlButton: import('../../install-function').SFCInstallWithContext<
|
|
2
|
+
export declare const PlButton: import('../../install-function').SFCInstallWithContext<{
|
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: Partial<{
|
|
6
|
+
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
7
|
+
size: "small" | "large" | "medium";
|
|
8
|
+
fullWidth: boolean;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
icon: import("../pl-icon").TIcon;
|
|
11
|
+
iconColor: string;
|
|
12
|
+
iconPosition: "left" | "right";
|
|
13
|
+
nativeType: "button" | "submit" | "reset";
|
|
14
|
+
}> & Omit<{
|
|
15
|
+
readonly type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
16
|
+
readonly size: "small" | "large" | "medium";
|
|
17
|
+
readonly fullWidth: boolean;
|
|
18
|
+
readonly disabled: boolean;
|
|
19
|
+
readonly icon: import("../pl-icon").TIcon;
|
|
20
|
+
readonly iconColor: string;
|
|
21
|
+
readonly iconPosition: "left" | "right";
|
|
22
|
+
readonly nativeType: "button" | "submit" | "reset";
|
|
23
|
+
onClick?: (...args: any[]) => any;
|
|
24
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
type: {
|
|
26
|
+
type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
size: {
|
|
30
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
fullWidth: {
|
|
34
|
+
type: import("vue").PropType<boolean>;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
disabled: {
|
|
38
|
+
type: import("vue").PropType<boolean>;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
icon: {
|
|
42
|
+
type: import("vue").PropType<import("../pl-icon").TIcon>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
iconColor: {
|
|
46
|
+
type: import("vue").PropType<string>;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
iconPosition: {
|
|
50
|
+
type: import("vue").PropType<"left" | "right">;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
nativeType: {
|
|
54
|
+
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
}>> & {
|
|
58
|
+
onClick?: (...args: any[]) => any;
|
|
59
|
+
}, "type" | "size" | "fullWidth" | "disabled" | "icon" | "iconColor" | "iconPosition" | "nativeType">;
|
|
60
|
+
$attrs: {
|
|
61
|
+
[x: string]: unknown;
|
|
62
|
+
};
|
|
63
|
+
$refs: {
|
|
64
|
+
[x: string]: unknown;
|
|
65
|
+
};
|
|
66
|
+
$slots: Readonly<{
|
|
67
|
+
[name: string]: import("vue").Slot<any>;
|
|
68
|
+
}>;
|
|
69
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
70
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
71
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
72
|
+
$el: any;
|
|
73
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
74
|
+
type: {
|
|
75
|
+
type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
size: {
|
|
79
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
82
|
+
fullWidth: {
|
|
83
|
+
type: import("vue").PropType<boolean>;
|
|
84
|
+
default: boolean;
|
|
85
|
+
};
|
|
86
|
+
disabled: {
|
|
87
|
+
type: import("vue").PropType<boolean>;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
90
|
+
icon: {
|
|
91
|
+
type: import("vue").PropType<import("../pl-icon").TIcon>;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
94
|
+
iconColor: {
|
|
95
|
+
type: import("vue").PropType<string>;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
iconPosition: {
|
|
99
|
+
type: import("vue").PropType<"left" | "right">;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
102
|
+
nativeType: {
|
|
103
|
+
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
106
|
+
}>> & {
|
|
107
|
+
onClick?: (...args: any[]) => any;
|
|
108
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
109
|
+
click: (...args: any[]) => void;
|
|
110
|
+
}, string, {
|
|
111
|
+
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
112
|
+
size: "small" | "large" | "medium";
|
|
113
|
+
fullWidth: boolean;
|
|
114
|
+
disabled: boolean;
|
|
115
|
+
icon: import("../pl-icon").TIcon;
|
|
116
|
+
iconColor: string;
|
|
117
|
+
iconPosition: "left" | "right";
|
|
118
|
+
nativeType: "button" | "submit" | "reset";
|
|
119
|
+
}, {}, string, {}> & {
|
|
120
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
121
|
+
created?: (() => void) | (() => void)[];
|
|
122
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
123
|
+
mounted?: (() => void) | (() => void)[];
|
|
124
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
125
|
+
updated?: (() => void) | (() => void)[];
|
|
126
|
+
activated?: (() => void) | (() => void)[];
|
|
127
|
+
deactivated?: (() => void) | (() => void)[];
|
|
128
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
129
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
130
|
+
destroyed?: (() => void) | (() => void)[];
|
|
131
|
+
unmounted?: (() => void) | (() => void)[];
|
|
132
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
133
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
134
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
|
135
|
+
};
|
|
136
|
+
$forceUpdate: () => void;
|
|
137
|
+
$nextTick: typeof import("vue").nextTick;
|
|
138
|
+
$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>): import("vue").WatchStopHandle;
|
|
139
|
+
} & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
140
|
+
type: {
|
|
141
|
+
type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
144
|
+
size: {
|
|
145
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
148
|
+
fullWidth: {
|
|
149
|
+
type: import("vue").PropType<boolean>;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
152
|
+
disabled: {
|
|
153
|
+
type: import("vue").PropType<boolean>;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
156
|
+
icon: {
|
|
157
|
+
type: import("vue").PropType<import("../pl-icon").TIcon>;
|
|
158
|
+
default: string;
|
|
159
|
+
};
|
|
160
|
+
iconColor: {
|
|
161
|
+
type: import("vue").PropType<string>;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
164
|
+
iconPosition: {
|
|
165
|
+
type: import("vue").PropType<"left" | "right">;
|
|
166
|
+
default: string;
|
|
167
|
+
};
|
|
168
|
+
nativeType: {
|
|
169
|
+
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
170
|
+
default: string;
|
|
171
|
+
};
|
|
172
|
+
}>> & {
|
|
173
|
+
onClick?: (...args: any[]) => any;
|
|
174
|
+
}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
175
|
+
$slots: {
|
|
176
|
+
default?(_: {}): any;
|
|
177
|
+
};
|
|
178
|
+
}>;
|
|
3
179
|
export default PlButton;
|
|
4
180
|
export type { TButtonProps };
|