@factoringplus/pl-components-pack-v3 1.2.14 → 1.2.15-pre-02
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 +17 -17
- package/dist/components/button/index.d.ts +188 -4
- package/dist/components/components.d.ts +8 -0
- package/dist/components/entry.d.ts +70 -2
- package/dist/components/pl-date-picker-plus/common/constants.d.ts +2 -0
- package/dist/components/pl-dialog/pl-dialog-plus.stories.d.ts +19 -19
- package/dist/components/pl-dialog/pl-dialog-plus.vue.d.ts +1 -1
- package/dist/components/pl-dialog/pl-dialog.stories.d.ts +19 -19
- package/dist/components/pl-dialog/pl-dialog.vue.d.ts +1 -1
- package/dist/components/pl-form/pl-form.vue.d.ts +37 -32
- package/dist/components/pl-input-plus/pl-input-plus.vue.d.ts +1 -1
- package/dist/components/pl-mark-text/index.d.ts +2 -0
- package/dist/components/pl-scrollbar/pl-scrollbar.vue.d.ts +1 -1
- package/dist/components/pl-select-plus/pl-select-plus.vue.d.ts +1 -1
- package/dist/components/pl-snackbar/renderSnackbar.d.ts +1 -7
- package/dist/components/pl-tooltip/pl-tooltip.vue.d.ts +1 -1
- package/dist/install-function/index.d.ts +6 -0
- package/dist/pl-components-pack-v3.es.js +9513 -9442
- package/dist/pl-components-pack-v3.umd.js +26 -26
- package/dist/plugins/filters.d.ts +7 -0
- package/dist/style.css +1 -1
- package/dist/utils/dadataParser.d.ts +11 -0
- package/dist/utils/declOfNum.d.ts +3 -1
- package/dist/utils/deepSet.d.ts +5 -0
- package/dist/utils/formatAccount.d.ts +2 -0
- package/dist/utils/formatCurrency.d.ts +3 -0
- package/dist/utils/formatDate.d.ts +3 -0
- package/dist/utils/getSourceCode.d.ts +2 -0
- package/dist/utils/isEqual.d.ts +3 -0
- package/dist/utils/types.d.ts +67 -0
- package/package.json +1 -1
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
|
+
```
|
|
@@ -1,7 +1,191 @@
|
|
|
1
|
-
import type { App } from 'vue';
|
|
2
1
|
import type { TButtonProps } from './types';
|
|
3
|
-
declare const PlButton: {
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
export declare const PlButton: import('../../install-function').SFCInstallWithContext<{
|
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
type: {
|
|
5
|
+
type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
size: {
|
|
9
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
fullWidth: {
|
|
13
|
+
type: import("vue").PropType<boolean>;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
disabled: {
|
|
17
|
+
type: import("vue").PropType<boolean>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
icon: {
|
|
21
|
+
type: import("vue").PropType<import("../pl-icon").TIcon>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
iconColor: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
iconPosition: {
|
|
29
|
+
type: import("vue").PropType<"left" | "right">;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
nativeType: {
|
|
33
|
+
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
}>> & {
|
|
37
|
+
onClick?: (...args: any[]) => any;
|
|
38
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
|
+
click: (...args: any[]) => void;
|
|
40
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
type: {
|
|
42
|
+
type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
size: {
|
|
46
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
fullWidth: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
disabled: {
|
|
54
|
+
type: import("vue").PropType<boolean>;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
icon: {
|
|
58
|
+
type: import("vue").PropType<import("../pl-icon").TIcon>;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
iconColor: {
|
|
62
|
+
type: import("vue").PropType<string>;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
iconPosition: {
|
|
66
|
+
type: import("vue").PropType<"left" | "right">;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
nativeType: {
|
|
70
|
+
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
}>> & {
|
|
74
|
+
onClick?: (...args: any[]) => any;
|
|
75
|
+
}, {
|
|
76
|
+
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
77
|
+
size: "small" | "large" | "medium";
|
|
78
|
+
fullWidth: boolean;
|
|
79
|
+
disabled: boolean;
|
|
80
|
+
icon: import("../pl-icon").TIcon;
|
|
81
|
+
iconColor: string;
|
|
82
|
+
iconPosition: "left" | "right";
|
|
83
|
+
nativeType: "button" | "submit" | "reset";
|
|
84
|
+
}, true, {}, {}, {
|
|
85
|
+
P: {};
|
|
86
|
+
B: {};
|
|
87
|
+
D: {};
|
|
88
|
+
C: {};
|
|
89
|
+
M: {};
|
|
90
|
+
Defaults: {};
|
|
91
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
92
|
+
type: {
|
|
93
|
+
type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
|
+
size: {
|
|
97
|
+
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
98
|
+
default: string;
|
|
99
|
+
};
|
|
100
|
+
fullWidth: {
|
|
101
|
+
type: import("vue").PropType<boolean>;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
disabled: {
|
|
105
|
+
type: import("vue").PropType<boolean>;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
icon: {
|
|
109
|
+
type: import("vue").PropType<import("../pl-icon").TIcon>;
|
|
110
|
+
default: string;
|
|
111
|
+
};
|
|
112
|
+
iconColor: {
|
|
113
|
+
type: import("vue").PropType<string>;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
iconPosition: {
|
|
117
|
+
type: import("vue").PropType<"left" | "right">;
|
|
118
|
+
default: string;
|
|
119
|
+
};
|
|
120
|
+
nativeType: {
|
|
121
|
+
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
122
|
+
default: string;
|
|
123
|
+
};
|
|
124
|
+
}>> & {
|
|
125
|
+
onClick?: (...args: any[]) => any;
|
|
126
|
+
}, {}, {}, {}, {}, {
|
|
127
|
+
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
128
|
+
size: "small" | "large" | "medium";
|
|
129
|
+
fullWidth: boolean;
|
|
130
|
+
disabled: boolean;
|
|
131
|
+
icon: import("../pl-icon").TIcon;
|
|
132
|
+
iconColor: string;
|
|
133
|
+
iconPosition: "left" | "right";
|
|
134
|
+
nativeType: "button" | "submit" | "reset";
|
|
135
|
+
}>;
|
|
136
|
+
__isFragment?: never;
|
|
137
|
+
__isTeleport?: never;
|
|
138
|
+
__isSuspense?: never;
|
|
139
|
+
} & import("vue").ComponentOptionsBase<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
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
175
|
+
click: (...args: any[]) => void;
|
|
176
|
+
}, string, {
|
|
177
|
+
type: "primary" | "secondary" | "alternative" | "error" | "empty";
|
|
178
|
+
size: "small" | "large" | "medium";
|
|
179
|
+
fullWidth: boolean;
|
|
180
|
+
disabled: boolean;
|
|
181
|
+
icon: import("../pl-icon").TIcon;
|
|
182
|
+
iconColor: string;
|
|
183
|
+
iconPosition: "left" | "right";
|
|
184
|
+
nativeType: "button" | "submit" | "reset";
|
|
185
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
186
|
+
$slots: {
|
|
187
|
+
default?(_: {}): any;
|
|
188
|
+
};
|
|
189
|
+
})>;
|
|
6
190
|
export default PlButton;
|
|
7
191
|
export type { TButtonProps };
|
|
@@ -34,5 +34,13 @@ export * from './pl-upload';
|
|
|
34
34
|
export * from './pl-upload-legacy';
|
|
35
35
|
export * from './pl-upload-plus';
|
|
36
36
|
export * from './pl-tooltip-plus';
|
|
37
|
+
export * from './pl-mark-text';
|
|
38
|
+
export * from '../utils/formatCurrency';
|
|
39
|
+
export * from '../utils/declOfNum';
|
|
40
|
+
export * from '../utils/isEqual';
|
|
41
|
+
export * from '../utils/formatDate';
|
|
42
|
+
export * from '../utils/deepSet';
|
|
43
|
+
export * from '../utils/dadataParser';
|
|
44
|
+
export * from '../plugins/filters';
|
|
37
45
|
declare const _default: Plugin<any[]>[];
|
|
38
46
|
export default _default;
|
|
@@ -9,11 +9,79 @@ import loadingAndSetup from '../plugins/loading/loading';
|
|
|
9
9
|
|
|
10
10
|
import type { IPlNotification } from './pl-snackbar/types';
|
|
11
11
|
declare const Storybook: {
|
|
12
|
-
install: (app: App) => void;
|
|
13
|
-
PlNotification: IPlNotification;
|
|
14
12
|
apiJs: (optionsRequest: any, isGetResourse: boolean, token: any) => Promise<unknown>;
|
|
15
13
|
plLoading: typeof plLoading;
|
|
16
14
|
loader: typeof loadingAndSetup;
|
|
15
|
+
formatCurrency: import("../install-function").SFCInstallWithContext<(number: string | number, showDecimal?: boolean, digitCount?: number) => string>;
|
|
16
|
+
filters: import("../install-function").SFCInstallWithContext<() => {
|
|
17
|
+
capitalize(value: string): string;
|
|
18
|
+
displayDate(value: string | import("dayjs").Dayjs): string;
|
|
19
|
+
}>;
|
|
20
|
+
declOfNum: import("../install-function").SFCInstallWithContext<(value: number, words: string[]) => string>;
|
|
21
|
+
isEqual: import("../install-function").SFCInstallWithContext<(<T>(obj1: T, obj2: T) => boolean)>;
|
|
22
|
+
formatDate: import("../install-function").SFCInstallWithContext<(date: string, format: string) => string>;
|
|
23
|
+
deepSet: import("../install-function").SFCInstallWithContext<() => {
|
|
24
|
+
add: (o: any) => void;
|
|
25
|
+
}>;
|
|
26
|
+
dataParser: {
|
|
27
|
+
recipientBottomText: import("../install-function").SFCInstallWithContext<(response: any[], getBottomText: any) => any[]>;
|
|
28
|
+
innKppBottomText: import("../install-function").SFCInstallWithContext<(e: import('../utils/dadataParser').PartyElement) => string>;
|
|
29
|
+
innAddressBottomText: import("../install-function").SFCInstallWithContext<(e: import('../utils/dadataParser').PartyElement) => string>;
|
|
30
|
+
};
|
|
31
|
+
length: number;
|
|
32
|
+
toString(): string;
|
|
33
|
+
toLocaleString(): string;
|
|
34
|
+
pop(): import("vue").Plugin<any[]>;
|
|
35
|
+
push(...items: import("vue").Plugin<any[]>[]): number;
|
|
36
|
+
concat(...items: ConcatArray<import("vue").Plugin<any[]>>[]): import("vue").Plugin<any[]>[];
|
|
37
|
+
concat(...items: (import("vue").Plugin<any[]> | ConcatArray<import("vue").Plugin<any[]>>)[]): import("vue").Plugin<any[]>[];
|
|
38
|
+
join(separator?: string): string;
|
|
39
|
+
reverse(): import("vue").Plugin<any[]>[];
|
|
40
|
+
shift(): import("vue").Plugin<any[]>;
|
|
41
|
+
slice(start?: number, end?: number): import("vue").Plugin<any[]>[];
|
|
42
|
+
sort(compareFn?: (a: import("vue").Plugin<any[]>, b: import("vue").Plugin<any[]>) => number): import("vue").Plugin<any[]>[];
|
|
43
|
+
splice(start: number, deleteCount?: number): import("vue").Plugin<any[]>[];
|
|
44
|
+
splice(start: number, deleteCount: number, ...items: import("vue").Plugin<any[]>[]): import("vue").Plugin<any[]>[];
|
|
45
|
+
unshift(...items: import("vue").Plugin<any[]>[]): number;
|
|
46
|
+
indexOf(searchElement: import("vue").Plugin<any[]>, fromIndex?: number): number;
|
|
47
|
+
lastIndexOf(searchElement: import("vue").Plugin<any[]>, fromIndex?: number): number;
|
|
48
|
+
every<S extends import("vue").Plugin<any[]>>(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => value is S, thisArg?: any): this is S[];
|
|
49
|
+
every(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): boolean;
|
|
50
|
+
some(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): boolean;
|
|
51
|
+
forEach(callbackfn: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => void, thisArg?: any): void;
|
|
52
|
+
map<U>(callbackfn: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => U, thisArg?: any): U[];
|
|
53
|
+
filter<S_1 extends import("vue").Plugin<any[]>>(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => value is S_1, thisArg?: any): S_1[];
|
|
54
|
+
filter(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): import("vue").Plugin<any[]>[];
|
|
55
|
+
reduce(callbackfn: (previousValue: import("vue").Plugin<any[]>, currentValue: import("vue").Plugin<any[]>, currentIndex: number, array: import("vue").Plugin<any[]>[]) => import("vue").Plugin<any[]>): import("vue").Plugin<any[]>;
|
|
56
|
+
reduce(callbackfn: (previousValue: import("vue").Plugin<any[]>, currentValue: import("vue").Plugin<any[]>, currentIndex: number, array: import("vue").Plugin<any[]>[]) => import("vue").Plugin<any[]>, initialValue: import("vue").Plugin<any[]>): import("vue").Plugin<any[]>;
|
|
57
|
+
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: import("vue").Plugin<any[]>, currentIndex: number, array: import("vue").Plugin<any[]>[]) => U_1, initialValue: U_1): U_1;
|
|
58
|
+
reduceRight(callbackfn: (previousValue: import("vue").Plugin<any[]>, currentValue: import("vue").Plugin<any[]>, currentIndex: number, array: import("vue").Plugin<any[]>[]) => import("vue").Plugin<any[]>): import("vue").Plugin<any[]>;
|
|
59
|
+
reduceRight(callbackfn: (previousValue: import("vue").Plugin<any[]>, currentValue: import("vue").Plugin<any[]>, currentIndex: number, array: import("vue").Plugin<any[]>[]) => import("vue").Plugin<any[]>, initialValue: import("vue").Plugin<any[]>): import("vue").Plugin<any[]>;
|
|
60
|
+
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: import("vue").Plugin<any[]>, currentIndex: number, array: import("vue").Plugin<any[]>[]) => U_2, initialValue: U_2): U_2;
|
|
61
|
+
find<S_2 extends import("vue").Plugin<any[]>>(predicate: (this: void, value: import("vue").Plugin<any[]>, index: number, obj: import("vue").Plugin<any[]>[]) => value is S_2, thisArg?: any): S_2;
|
|
62
|
+
find(predicate: (value: import("vue").Plugin<any[]>, index: number, obj: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): import("vue").Plugin<any[]>;
|
|
63
|
+
findIndex(predicate: (value: import("vue").Plugin<any[]>, index: number, obj: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): number;
|
|
64
|
+
fill(value: import("vue").Plugin<any[]>, start?: number, end?: number): import("vue").Plugin<any[]>[];
|
|
65
|
+
copyWithin(target: number, start: number, end?: number): import("vue").Plugin<any[]>[];
|
|
66
|
+
entries(): IterableIterator<[number, import("vue").Plugin<any[]>]>;
|
|
67
|
+
keys(): IterableIterator<number>;
|
|
68
|
+
values(): IterableIterator<import("vue").Plugin<any[]>>;
|
|
69
|
+
includes(searchElement: import("vue").Plugin<any[]>, fromIndex?: number): boolean;
|
|
70
|
+
flatMap<U_3, This = undefined>(callback: (this: This, value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => U_3 | readonly U_3[], thisArg?: This): U_3[];
|
|
71
|
+
flat<A, D extends number = 1>(this: A, depth?: D): FlatArray<A, D>[];
|
|
72
|
+
at(index: number): import("vue").Plugin<any[]>;
|
|
73
|
+
[Symbol.iterator](): IterableIterator<import("vue").Plugin<any[]>>;
|
|
74
|
+
[Symbol.unscopables](): {
|
|
75
|
+
copyWithin: boolean;
|
|
76
|
+
entries: boolean;
|
|
77
|
+
fill: boolean;
|
|
78
|
+
find: boolean;
|
|
79
|
+
findIndex: boolean;
|
|
80
|
+
keys: boolean;
|
|
81
|
+
values: boolean;
|
|
82
|
+
};
|
|
83
|
+
install: (app: App) => void;
|
|
84
|
+
PlNotification: IPlNotification;
|
|
17
85
|
};
|
|
18
86
|
export * from './components';
|
|
19
87
|
export default Storybook;
|
|
@@ -24,6 +24,10 @@ declare const _default: {
|
|
|
24
24
|
type: import("vue").PropType<string>;
|
|
25
25
|
default: string;
|
|
26
26
|
};
|
|
27
|
+
beforeClose: {
|
|
28
|
+
type: import("vue").PropType<Function>;
|
|
29
|
+
default: () => void;
|
|
30
|
+
};
|
|
27
31
|
showHeader: {
|
|
28
32
|
type: import("vue").PropType<boolean>;
|
|
29
33
|
default: boolean;
|
|
@@ -44,10 +48,6 @@ declare const _default: {
|
|
|
44
48
|
type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
|
|
45
49
|
default: string;
|
|
46
50
|
};
|
|
47
|
-
beforeClose: {
|
|
48
|
-
type: import("vue").PropType<Function>;
|
|
49
|
-
default: () => void;
|
|
50
|
-
};
|
|
51
51
|
closeOnOverlay: {
|
|
52
52
|
type: import("vue").PropType<boolean>;
|
|
53
53
|
default: boolean;
|
|
@@ -88,6 +88,10 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<string>;
|
|
89
89
|
default: string;
|
|
90
90
|
};
|
|
91
|
+
beforeClose: {
|
|
92
|
+
type: import("vue").PropType<Function>;
|
|
93
|
+
default: () => void;
|
|
94
|
+
};
|
|
91
95
|
showHeader: {
|
|
92
96
|
type: import("vue").PropType<boolean>;
|
|
93
97
|
default: boolean;
|
|
@@ -108,10 +112,6 @@ declare const _default: {
|
|
|
108
112
|
type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
|
|
109
113
|
default: string;
|
|
110
114
|
};
|
|
111
|
-
beforeClose: {
|
|
112
|
-
type: import("vue").PropType<Function>;
|
|
113
|
-
default: () => void;
|
|
114
|
-
};
|
|
115
115
|
closeOnOverlay: {
|
|
116
116
|
type: import("vue").PropType<boolean>;
|
|
117
117
|
default: boolean;
|
|
@@ -131,12 +131,12 @@ declare const _default: {
|
|
|
131
131
|
icon: import("../pl-icon").TIcon;
|
|
132
132
|
modelValue: boolean;
|
|
133
133
|
width: string;
|
|
134
|
+
beforeClose: Function;
|
|
134
135
|
showHeader: boolean;
|
|
135
136
|
showClose: boolean;
|
|
136
137
|
disabledTeleport: boolean;
|
|
137
138
|
loading: boolean;
|
|
138
139
|
status: "delete" | "successful" | "info" | "attention" | "neutral";
|
|
139
|
-
beforeClose: Function;
|
|
140
140
|
closeOnOverlay: boolean;
|
|
141
141
|
innerScroll: boolean;
|
|
142
142
|
}, true, {}, {}, {
|
|
@@ -167,6 +167,10 @@ declare const _default: {
|
|
|
167
167
|
type: import("vue").PropType<string>;
|
|
168
168
|
default: string;
|
|
169
169
|
};
|
|
170
|
+
beforeClose: {
|
|
171
|
+
type: import("vue").PropType<Function>;
|
|
172
|
+
default: () => void;
|
|
173
|
+
};
|
|
170
174
|
showHeader: {
|
|
171
175
|
type: import("vue").PropType<boolean>;
|
|
172
176
|
default: boolean;
|
|
@@ -187,10 +191,6 @@ declare const _default: {
|
|
|
187
191
|
type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
|
|
188
192
|
default: string;
|
|
189
193
|
};
|
|
190
|
-
beforeClose: {
|
|
191
|
-
type: import("vue").PropType<Function>;
|
|
192
|
-
default: () => void;
|
|
193
|
-
};
|
|
194
194
|
closeOnOverlay: {
|
|
195
195
|
type: import("vue").PropType<boolean>;
|
|
196
196
|
default: boolean;
|
|
@@ -212,12 +212,12 @@ declare const _default: {
|
|
|
212
212
|
icon: import("../pl-icon").TIcon;
|
|
213
213
|
modelValue: boolean;
|
|
214
214
|
width: string;
|
|
215
|
+
beforeClose: Function;
|
|
215
216
|
showHeader: boolean;
|
|
216
217
|
showClose: boolean;
|
|
217
218
|
disabledTeleport: boolean;
|
|
218
219
|
loading: boolean;
|
|
219
220
|
status: "delete" | "successful" | "info" | "attention" | "neutral";
|
|
220
|
-
beforeClose: Function;
|
|
221
221
|
closeOnOverlay: boolean;
|
|
222
222
|
innerScroll: boolean;
|
|
223
223
|
}>;
|
|
@@ -245,6 +245,10 @@ declare const _default: {
|
|
|
245
245
|
type: import("vue").PropType<string>;
|
|
246
246
|
default: string;
|
|
247
247
|
};
|
|
248
|
+
beforeClose: {
|
|
249
|
+
type: import("vue").PropType<Function>;
|
|
250
|
+
default: () => void;
|
|
251
|
+
};
|
|
248
252
|
showHeader: {
|
|
249
253
|
type: import("vue").PropType<boolean>;
|
|
250
254
|
default: boolean;
|
|
@@ -265,10 +269,6 @@ declare const _default: {
|
|
|
265
269
|
type: import("vue").PropType<"delete" | "successful" | "info" | "attention" | "neutral">;
|
|
266
270
|
default: string;
|
|
267
271
|
};
|
|
268
|
-
beforeClose: {
|
|
269
|
-
type: import("vue").PropType<Function>;
|
|
270
|
-
default: () => void;
|
|
271
|
-
};
|
|
272
272
|
closeOnOverlay: {
|
|
273
273
|
type: import("vue").PropType<boolean>;
|
|
274
274
|
default: boolean;
|
|
@@ -293,12 +293,12 @@ declare const _default: {
|
|
|
293
293
|
icon: import("../pl-icon").TIcon;
|
|
294
294
|
modelValue: boolean;
|
|
295
295
|
width: string;
|
|
296
|
+
beforeClose: Function;
|
|
296
297
|
showHeader: boolean;
|
|
297
298
|
showClose: boolean;
|
|
298
299
|
disabledTeleport: boolean;
|
|
299
300
|
loading: boolean;
|
|
300
301
|
status: "delete" | "successful" | "info" | "attention" | "neutral";
|
|
301
|
-
beforeClose: Function;
|
|
302
302
|
closeOnOverlay: boolean;
|
|
303
303
|
innerScroll: boolean;
|
|
304
304
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -54,12 +54,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
54
54
|
icon: TIcon;
|
|
55
55
|
modelValue: boolean;
|
|
56
56
|
width: string;
|
|
57
|
+
beforeClose: Function;
|
|
57
58
|
showHeader: boolean;
|
|
58
59
|
showClose: boolean;
|
|
59
60
|
disabledTeleport: boolean;
|
|
60
61
|
loading: boolean;
|
|
61
62
|
status: "delete" | "successful" | "info" | "attention" | "neutral";
|
|
62
|
-
beforeClose: Function;
|
|
63
63
|
closeOnOverlay: boolean;
|
|
64
64
|
innerScroll: boolean;
|
|
65
65
|
}, {}>, {
|
|
@@ -12,6 +12,10 @@ declare const _default: {
|
|
|
12
12
|
required: true;
|
|
13
13
|
default: boolean;
|
|
14
14
|
};
|
|
15
|
+
customClass: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
15
19
|
showHeader: {
|
|
16
20
|
type: import("vue").PropType<boolean>;
|
|
17
21
|
default: boolean;
|
|
@@ -32,10 +36,6 @@ declare const _default: {
|
|
|
32
36
|
type: import("vue").PropType<boolean>;
|
|
33
37
|
default: boolean;
|
|
34
38
|
};
|
|
35
|
-
customClass: {
|
|
36
|
-
type: import("vue").PropType<string>;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
39
|
slide: {
|
|
40
40
|
type: import("vue").PropType<boolean>;
|
|
41
41
|
default: boolean;
|
|
@@ -83,6 +83,10 @@ declare const _default: {
|
|
|
83
83
|
required: true;
|
|
84
84
|
default: boolean;
|
|
85
85
|
};
|
|
86
|
+
customClass: {
|
|
87
|
+
type: import("vue").PropType<string>;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
86
90
|
showHeader: {
|
|
87
91
|
type: import("vue").PropType<boolean>;
|
|
88
92
|
default: boolean;
|
|
@@ -103,10 +107,6 @@ declare const _default: {
|
|
|
103
107
|
type: import("vue").PropType<boolean>;
|
|
104
108
|
default: boolean;
|
|
105
109
|
};
|
|
106
|
-
customClass: {
|
|
107
|
-
type: import("vue").PropType<string>;
|
|
108
|
-
default: string;
|
|
109
|
-
};
|
|
110
110
|
slide: {
|
|
111
111
|
type: import("vue").PropType<boolean>;
|
|
112
112
|
default: boolean;
|
|
@@ -141,12 +141,12 @@ declare const _default: {
|
|
|
141
141
|
}, {
|
|
142
142
|
padding: string;
|
|
143
143
|
modelValue: boolean;
|
|
144
|
+
customClass: string;
|
|
144
145
|
showHeader: boolean;
|
|
145
146
|
showGrabber: boolean;
|
|
146
147
|
widthThis: string;
|
|
147
148
|
headerPadding: string;
|
|
148
149
|
showClose: boolean;
|
|
149
|
-
customClass: string;
|
|
150
150
|
slide: boolean;
|
|
151
151
|
simple: boolean;
|
|
152
152
|
disabledTeleport: boolean;
|
|
@@ -171,6 +171,10 @@ declare const _default: {
|
|
|
171
171
|
required: true;
|
|
172
172
|
default: boolean;
|
|
173
173
|
};
|
|
174
|
+
customClass: {
|
|
175
|
+
type: import("vue").PropType<string>;
|
|
176
|
+
default: string;
|
|
177
|
+
};
|
|
174
178
|
showHeader: {
|
|
175
179
|
type: import("vue").PropType<boolean>;
|
|
176
180
|
default: boolean;
|
|
@@ -191,10 +195,6 @@ declare const _default: {
|
|
|
191
195
|
type: import("vue").PropType<boolean>;
|
|
192
196
|
default: boolean;
|
|
193
197
|
};
|
|
194
|
-
customClass: {
|
|
195
|
-
type: import("vue").PropType<string>;
|
|
196
|
-
default: string;
|
|
197
|
-
};
|
|
198
198
|
slide: {
|
|
199
199
|
type: import("vue").PropType<boolean>;
|
|
200
200
|
default: boolean;
|
|
@@ -232,12 +232,12 @@ declare const _default: {
|
|
|
232
232
|
}, {}, {}, {}, {
|
|
233
233
|
padding: string;
|
|
234
234
|
modelValue: boolean;
|
|
235
|
+
customClass: string;
|
|
235
236
|
showHeader: boolean;
|
|
236
237
|
showGrabber: boolean;
|
|
237
238
|
widthThis: string;
|
|
238
239
|
headerPadding: string;
|
|
239
240
|
showClose: boolean;
|
|
240
|
-
customClass: string;
|
|
241
241
|
slide: boolean;
|
|
242
242
|
simple: boolean;
|
|
243
243
|
disabledTeleport: boolean;
|
|
@@ -259,6 +259,10 @@ declare const _default: {
|
|
|
259
259
|
required: true;
|
|
260
260
|
default: boolean;
|
|
261
261
|
};
|
|
262
|
+
customClass: {
|
|
263
|
+
type: import("vue").PropType<string>;
|
|
264
|
+
default: string;
|
|
265
|
+
};
|
|
262
266
|
showHeader: {
|
|
263
267
|
type: import("vue").PropType<boolean>;
|
|
264
268
|
default: boolean;
|
|
@@ -279,10 +283,6 @@ declare const _default: {
|
|
|
279
283
|
type: import("vue").PropType<boolean>;
|
|
280
284
|
default: boolean;
|
|
281
285
|
};
|
|
282
|
-
customClass: {
|
|
283
|
-
type: import("vue").PropType<string>;
|
|
284
|
-
default: string;
|
|
285
|
-
};
|
|
286
286
|
slide: {
|
|
287
287
|
type: import("vue").PropType<boolean>;
|
|
288
288
|
default: boolean;
|
|
@@ -323,12 +323,12 @@ declare const _default: {
|
|
|
323
323
|
}, string, {
|
|
324
324
|
padding: string;
|
|
325
325
|
modelValue: boolean;
|
|
326
|
+
customClass: string;
|
|
326
327
|
showHeader: boolean;
|
|
327
328
|
showGrabber: boolean;
|
|
328
329
|
widthThis: string;
|
|
329
330
|
headerPadding: string;
|
|
330
331
|
showClose: boolean;
|
|
331
|
-
customClass: string;
|
|
332
332
|
slide: boolean;
|
|
333
333
|
simple: boolean;
|
|
334
334
|
disabledTeleport: boolean;
|
|
@@ -59,12 +59,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
59
59
|
}, {
|
|
60
60
|
padding: string;
|
|
61
61
|
modelValue: boolean;
|
|
62
|
+
customClass: string;
|
|
62
63
|
showHeader: boolean;
|
|
63
64
|
showGrabber: boolean;
|
|
64
65
|
widthThis: string;
|
|
65
66
|
headerPadding: string;
|
|
66
67
|
showClose: boolean;
|
|
67
|
-
customClass: string;
|
|
68
68
|
slide: boolean;
|
|
69
69
|
simple: boolean;
|
|
70
70
|
disabledTeleport: boolean;
|