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