pangea-lib 2.12.30 → 2.12.32
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.
|
@@ -121,14 +121,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
121
121
|
header?(_: {}): any;
|
|
122
122
|
filters?(_: {}): any;
|
|
123
123
|
actionsButtons?(_: {
|
|
124
|
-
item:
|
|
124
|
+
item: Item;
|
|
125
125
|
}): any;
|
|
126
126
|
mainItem?(_: {
|
|
127
|
-
class: string;
|
|
128
127
|
item: any;
|
|
129
128
|
}): any;
|
|
130
129
|
smallDevicesItem?(_: {
|
|
131
|
-
class: string;
|
|
132
130
|
item: any;
|
|
133
131
|
}): any;
|
|
134
132
|
itemsSelected?(_: {}): any;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { Item } from '../../../types';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
required: true;
|
|
6
|
+
type: import('vue').PropType<string[]>;
|
|
7
|
+
};
|
|
8
|
+
items: {
|
|
9
|
+
type: import('vue').PropType<Item[]>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
getDescriptionFn: {
|
|
13
|
+
type: import('vue').PropType<(item: Item) => string>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
withEditButton: {
|
|
17
|
+
type: import('vue').PropType<boolean>;
|
|
18
|
+
};
|
|
19
|
+
deleteFn: {
|
|
20
|
+
type: import('vue').PropType<(item: Item) => Promise<void>>;
|
|
21
|
+
};
|
|
22
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
|
+
editItem: (item: Item) => void;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
25
|
+
modelValue: {
|
|
26
|
+
required: true;
|
|
27
|
+
type: import('vue').PropType<string[]>;
|
|
28
|
+
};
|
|
29
|
+
items: {
|
|
30
|
+
type: import('vue').PropType<Item[]>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
getDescriptionFn: {
|
|
34
|
+
type: import('vue').PropType<(item: Item) => string>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
withEditButton: {
|
|
38
|
+
type: import('vue').PropType<boolean>;
|
|
39
|
+
};
|
|
40
|
+
deleteFn: {
|
|
41
|
+
type: import('vue').PropType<(item: Item) => Promise<void>>;
|
|
42
|
+
};
|
|
43
|
+
}>> & {
|
|
44
|
+
onEditItem?: (item: Item) => any;
|
|
45
|
+
}, {}, {}>, {
|
|
46
|
+
default?(_: {
|
|
47
|
+
item: Item;
|
|
48
|
+
}): any;
|
|
49
|
+
actionsButtons?(_: {
|
|
50
|
+
item: Item;
|
|
51
|
+
}): any;
|
|
52
|
+
}>;
|
|
53
|
+
export default _default;
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|