@factoringplus/pl-components-pack-v3 0.16.1-pre-6 → 0.16.1-pre-8
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/entry.d.ts +4 -58
- package/dist/pl-components-pack-v3.es.js +2754 -2754
- package/dist/pl-components-pack-v3.umd.js +21 -21
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
import PlNotification from './pl-snackbar/renderSnackbar';
|
|
6
7
|
import type { IPlNotification } from './pl-snackbar/types';
|
|
7
8
|
interface IStorybook {
|
|
8
9
|
install: Function;
|
|
@@ -10,61 +11,6 @@ interface IStorybook {
|
|
|
10
11
|
apiJs: Function;
|
|
11
12
|
loader: Function;
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
toString(): string;
|
|
17
|
-
toLocaleString(): string;
|
|
18
|
-
pop(): import("vue").Plugin<any[]> | undefined;
|
|
19
|
-
push(...items: import("vue").Plugin<any[]>[]): number;
|
|
20
|
-
concat(...items: ConcatArray<import("vue").Plugin<any[]>>[]): import("vue").Plugin<any[]>[];
|
|
21
|
-
concat(...items: (import("vue").Plugin<any[]> | ConcatArray<import("vue").Plugin<any[]>>)[]): import("vue").Plugin<any[]>[];
|
|
22
|
-
join(separator?: string | undefined): string;
|
|
23
|
-
reverse(): import("vue").Plugin<any[]>[];
|
|
24
|
-
shift(): import("vue").Plugin<any[]> | undefined;
|
|
25
|
-
slice(start?: number | undefined, end?: number | undefined): import("vue").Plugin<any[]>[];
|
|
26
|
-
sort(compareFn?: ((a: import("vue").Plugin<any[]>, b: import("vue").Plugin<any[]>) => number) | undefined): import("vue").Plugin<any[]>[];
|
|
27
|
-
splice(start: number, deleteCount?: number | undefined): import("vue").Plugin<any[]>[];
|
|
28
|
-
splice(start: number, deleteCount: number, ...items: import("vue").Plugin<any[]>[]): import("vue").Plugin<any[]>[];
|
|
29
|
-
unshift(...items: import("vue").Plugin<any[]>[]): number;
|
|
30
|
-
indexOf(searchElement: import("vue").Plugin<any[]>, fromIndex?: number | undefined): number;
|
|
31
|
-
lastIndexOf(searchElement: import("vue").Plugin<any[]>, fromIndex?: number | undefined): number;
|
|
32
|
-
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[];
|
|
33
|
-
every(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): boolean;
|
|
34
|
-
some(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): boolean;
|
|
35
|
-
forEach(callbackfn: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => void, thisArg?: any): void;
|
|
36
|
-
map<U>(callbackfn: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => U, thisArg?: any): U[];
|
|
37
|
-
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[];
|
|
38
|
-
filter(predicate: (value: import("vue").Plugin<any[]>, index: number, array: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): import("vue").Plugin<any[]>[];
|
|
39
|
-
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[]>;
|
|
40
|
-
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[]>;
|
|
41
|
-
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;
|
|
42
|
-
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[]>;
|
|
43
|
-
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[]>;
|
|
44
|
-
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;
|
|
45
|
-
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 | undefined;
|
|
46
|
-
find(predicate: (value: import("vue").Plugin<any[]>, index: number, obj: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): import("vue").Plugin<any[]> | undefined;
|
|
47
|
-
findIndex(predicate: (value: import("vue").Plugin<any[]>, index: number, obj: import("vue").Plugin<any[]>[]) => unknown, thisArg?: any): number;
|
|
48
|
-
fill(value: import("vue").Plugin<any[]>, start?: number | undefined, end?: number | undefined): import("vue").Plugin<any[]>[];
|
|
49
|
-
copyWithin(target: number, start: number, end?: number | undefined): import("vue").Plugin<any[]>[];
|
|
50
|
-
entries(): IterableIterator<[number, import("vue").Plugin<any[]>]>;
|
|
51
|
-
keys(): IterableIterator<number>;
|
|
52
|
-
values(): IterableIterator<import("vue").Plugin<any[]>>;
|
|
53
|
-
includes(searchElement: import("vue").Plugin<any[]>, fromIndex?: number | undefined): boolean;
|
|
54
|
-
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 | undefined): U_3[];
|
|
55
|
-
flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
|
|
56
|
-
at(index: number): import("vue").Plugin<any[]> | undefined;
|
|
57
|
-
[Symbol.iterator](): IterableIterator<import("vue").Plugin<any[]>>;
|
|
58
|
-
[Symbol.unscopables](): {
|
|
59
|
-
copyWithin: boolean;
|
|
60
|
-
entries: boolean;
|
|
61
|
-
fill: boolean;
|
|
62
|
-
find: boolean;
|
|
63
|
-
findIndex: boolean;
|
|
64
|
-
keys: boolean;
|
|
65
|
-
values: boolean;
|
|
66
|
-
};
|
|
67
|
-
Storybook: IStorybook;
|
|
68
|
-
PlNotification: IPlNotification;
|
|
69
|
-
};
|
|
70
|
-
export default _default;
|
|
14
|
+
declare const Storybook: IStorybook;
|
|
15
|
+
export { PlNotification };
|
|
16
|
+
export default Storybook;
|