eservices-core 1.2.3 → 1.2.4
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/eservices-core.cjs.js +5 -5
- package/dist/eservices-core.es.js +1288 -1261
- package/dist/eservices-core.umd.js +6 -6
- package/dist/frontend/core/widgets/list/list-head/widget-list-head.vue.d.ts +14 -6
- package/dist/frontend/core/widgets/list/widget-list.vue.d.ts +31 -17
- package/package.json +1 -1
|
@@ -1,21 +1,29 @@
|
|
|
1
1
|
import type { IListCell, IListOrder } from "../../../classes/new/List";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
config: {
|
|
4
|
-
required: true;
|
|
5
4
|
type: import("vue").PropType<IListCell[]>;
|
|
5
|
+
required: true;
|
|
6
6
|
};
|
|
7
7
|
order: {
|
|
8
|
-
required: true;
|
|
9
8
|
type: import("vue").PropType<IListOrder>;
|
|
9
|
+
required: true;
|
|
10
10
|
};
|
|
11
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
"update:config": (data: IListCell[]) => void;
|
|
13
|
+
"update:order": (data: IListCell[]) => void;
|
|
14
|
+
select: () => void;
|
|
15
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
16
|
config: {
|
|
13
|
-
required: true;
|
|
14
17
|
type: import("vue").PropType<IListCell[]>;
|
|
18
|
+
required: true;
|
|
15
19
|
};
|
|
16
20
|
order: {
|
|
17
|
-
required: true;
|
|
18
21
|
type: import("vue").PropType<IListOrder>;
|
|
22
|
+
required: true;
|
|
19
23
|
};
|
|
20
|
-
}
|
|
24
|
+
}>> & {
|
|
25
|
+
onSelect?: (() => any) | undefined;
|
|
26
|
+
"onUpdate:config"?: ((data: IListCell[]) => any) | undefined;
|
|
27
|
+
"onUpdate:order"?: ((data: IListCell[]) => any) | undefined;
|
|
28
|
+
}, {}, {}>;
|
|
21
29
|
export default _default;
|
|
@@ -1,46 +1,60 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
array: {
|
|
3
|
-
type: import("vue").PropType<any[]>;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
2
|
wait: {
|
|
7
3
|
type: import("vue").PropType<boolean>;
|
|
8
4
|
};
|
|
9
|
-
|
|
10
|
-
type: import("vue").PropType<any>;
|
|
5
|
+
array: {
|
|
6
|
+
type: import("vue").PropType<any[]>;
|
|
11
7
|
required: true;
|
|
12
8
|
};
|
|
13
|
-
|
|
9
|
+
order: {
|
|
14
10
|
type: import("vue").PropType<any>;
|
|
15
11
|
required: true;
|
|
12
|
+
default: () => never[];
|
|
16
13
|
};
|
|
17
|
-
|
|
14
|
+
config: {
|
|
18
15
|
type: import("vue").PropType<any>;
|
|
16
|
+
default: () => never[];
|
|
17
|
+
};
|
|
18
|
+
selectedRows: {
|
|
19
|
+
type: import("vue").PropType<any[]>;
|
|
19
20
|
required: true;
|
|
21
|
+
default: () => never[];
|
|
20
22
|
};
|
|
21
23
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
24
|
scrollEnd: () => void;
|
|
25
|
+
"update:selectedRows": (data: any[]) => void;
|
|
26
|
+
"update:order": (data: any[]) => void;
|
|
27
|
+
"update:config": (data: any[]) => void;
|
|
23
28
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
-
array: {
|
|
25
|
-
type: import("vue").PropType<any[]>;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
29
|
wait: {
|
|
29
30
|
type: import("vue").PropType<boolean>;
|
|
30
31
|
};
|
|
31
|
-
|
|
32
|
-
type: import("vue").PropType<any>;
|
|
32
|
+
array: {
|
|
33
|
+
type: import("vue").PropType<any[]>;
|
|
33
34
|
required: true;
|
|
34
35
|
};
|
|
35
|
-
|
|
36
|
+
order: {
|
|
36
37
|
type: import("vue").PropType<any>;
|
|
37
38
|
required: true;
|
|
39
|
+
default: () => never[];
|
|
38
40
|
};
|
|
39
|
-
|
|
41
|
+
config: {
|
|
40
42
|
type: import("vue").PropType<any>;
|
|
43
|
+
default: () => never[];
|
|
44
|
+
};
|
|
45
|
+
selectedRows: {
|
|
46
|
+
type: import("vue").PropType<any[]>;
|
|
41
47
|
required: true;
|
|
48
|
+
default: () => never[];
|
|
42
49
|
};
|
|
43
50
|
}>> & {
|
|
51
|
+
"onUpdate:config"?: ((data: any[]) => any) | undefined;
|
|
52
|
+
"onUpdate:order"?: ((data: any[]) => any) | undefined;
|
|
44
53
|
onScrollEnd?: (() => any) | undefined;
|
|
45
|
-
|
|
54
|
+
"onUpdate:selectedRows"?: ((data: any[]) => any) | undefined;
|
|
55
|
+
}, {
|
|
56
|
+
order: any;
|
|
57
|
+
config: any;
|
|
58
|
+
selectedRows: any[];
|
|
59
|
+
}, {}>;
|
|
46
60
|
export default _default;
|