@ebuilding/biz-comm 2.4.1 → 2.4.5
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/fesm2022/other.dict.mjs +20 -0
- package/fesm2022/other.dict.mjs.map +1 -1
- package/fesm2022/other.source.field.select.mjs +182 -0
- package/fesm2022/other.source.field.select.mjs.map +1 -0
- package/fesm2022/other.source.mjs +197 -43
- package/fesm2022/other.source.mjs.map +1 -1
- package/other/source/field-select/index.d.ts +1 -0
- package/other/source/field-select/src/basic.d.ts +32 -0
- package/other/source/field-select/src/default/index.d.ts +26 -0
- package/other/source/field-select/src/index.module.d.ts +7 -0
- package/other/source/field-select/src/public_api.d.ts +2 -0
- package/other/source/index.d.ts +1 -0
- package/package.json +42 -38
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { _HttpClient } from '@delon/theme';
|
|
4
|
+
import { FormlyFormOptions, FormlyFieldConfig } from '@ebuilding-form/core';
|
|
5
|
+
import { NzMessageService } from 'ng-zorro-antd/message';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare abstract class BasicService {
|
|
8
|
+
http: _HttpClient;
|
|
9
|
+
msgSrv: NzMessageService;
|
|
10
|
+
_config: any;
|
|
11
|
+
loading: boolean;
|
|
12
|
+
form: FormGroup<{}>;
|
|
13
|
+
model: any;
|
|
14
|
+
options: FormlyFormOptions;
|
|
15
|
+
fields: FormlyFieldConfig[];
|
|
16
|
+
tableFieldData: any[];
|
|
17
|
+
set config(value: any);
|
|
18
|
+
get config(): any;
|
|
19
|
+
btnCloseEvent: EventEmitter<any>;
|
|
20
|
+
btnSaveEvent: EventEmitter<any>;
|
|
21
|
+
constructor(http: _HttpClient, msgSrv: NzMessageService);
|
|
22
|
+
getPageData(): void;
|
|
23
|
+
getFieldConfig(): void;
|
|
24
|
+
btnSave(): void;
|
|
25
|
+
/**
|
|
26
|
+
* 取消-关闭
|
|
27
|
+
*/
|
|
28
|
+
btnClose(): void;
|
|
29
|
+
btnSaveAfter(e: any): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BasicService, never>;
|
|
31
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BasicService, never, never, { "config": { "alias": "config"; "required": false; }; }, { "btnCloseEvent": "btnCloseEvent"; "btnSaveEvent": "btnSaveEvent"; }, never, never, true, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { SimpleChanges } from '@angular/core';
|
|
2
|
+
import { _HttpClient } from '@delon/theme';
|
|
3
|
+
import { NzMessageService } from 'ng-zorro-antd/message';
|
|
4
|
+
import { NzDrawerRef } from '@ebuilding/base/components/drawer';
|
|
5
|
+
import { BasicService } from "../basic";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SourceFieldSelectComponent extends BasicService {
|
|
8
|
+
http: _HttpClient;
|
|
9
|
+
msgSrv: NzMessageService;
|
|
10
|
+
drawerRef: NzDrawerRef<any>;
|
|
11
|
+
constructor(http: _HttpClient, msgSrv: NzMessageService, drawerRef: NzDrawerRef<any>);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
15
|
+
/**
|
|
16
|
+
* 保存
|
|
17
|
+
* @param e
|
|
18
|
+
*/
|
|
19
|
+
btnSaveAfter(e: any): void;
|
|
20
|
+
/**
|
|
21
|
+
* 取消
|
|
22
|
+
*/
|
|
23
|
+
btnClose(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceFieldSelectComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SourceFieldSelectComponent, "source-field-select", never, {}, {}, never, never, true, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./default/index";
|
|
3
|
+
export declare class SourceFieldSelectModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceFieldSelectModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SourceFieldSelectModule, never, [typeof i1.SourceFieldSelectComponent], [typeof i1.SourceFieldSelectComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SourceFieldSelectModule>;
|
|
7
|
+
}
|
package/other/source/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebuilding/biz-comm",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.5",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"extend": "undefined",
|
|
6
6
|
"tslib": "^2.3.0"
|
|
@@ -23,77 +23,81 @@
|
|
|
23
23
|
"types": "./components/filter/index.d.ts",
|
|
24
24
|
"default": "./fesm2022/components.filter.mjs"
|
|
25
25
|
},
|
|
26
|
-
"./components/lookup": {
|
|
27
|
-
"types": "./components/lookup/index.d.ts",
|
|
28
|
-
"default": "./fesm2022/components.lookup.mjs"
|
|
29
|
-
},
|
|
30
26
|
"./components/formula": {
|
|
31
27
|
"types": "./components/formula/index.d.ts",
|
|
32
28
|
"default": "./fesm2022/components.formula.mjs"
|
|
33
29
|
},
|
|
34
|
-
"./
|
|
35
|
-
"types": "./
|
|
36
|
-
"default": "./fesm2022/
|
|
30
|
+
"./type/formula": {
|
|
31
|
+
"types": "./type/formula/index.d.ts",
|
|
32
|
+
"default": "./fesm2022/type.formula.mjs"
|
|
37
33
|
},
|
|
38
|
-
"./
|
|
39
|
-
"types": "./
|
|
40
|
-
"default": "./fesm2022/
|
|
34
|
+
"./type/lookup": {
|
|
35
|
+
"types": "./type/lookup/index.d.ts",
|
|
36
|
+
"default": "./fesm2022/type.lookup.mjs"
|
|
37
|
+
},
|
|
38
|
+
"./type/tree": {
|
|
39
|
+
"types": "./type/tree/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/type.tree.mjs"
|
|
41
|
+
},
|
|
42
|
+
"./components/lookup": {
|
|
43
|
+
"types": "./components/lookup/index.d.ts",
|
|
44
|
+
"default": "./fesm2022/components.lookup.mjs"
|
|
41
45
|
},
|
|
42
46
|
"./other/card": {
|
|
43
47
|
"types": "./other/card/index.d.ts",
|
|
44
48
|
"default": "./fesm2022/other.card.mjs"
|
|
45
49
|
},
|
|
46
|
-
"./other/
|
|
47
|
-
"types": "./other/
|
|
48
|
-
"default": "./fesm2022/other.
|
|
49
|
-
},
|
|
50
|
-
"./other/source": {
|
|
51
|
-
"types": "./other/source/index.d.ts",
|
|
52
|
-
"default": "./fesm2022/other.source.mjs"
|
|
50
|
+
"./other/dict": {
|
|
51
|
+
"types": "./other/dict/index.d.ts",
|
|
52
|
+
"default": "./fesm2022/other.dict.mjs"
|
|
53
53
|
},
|
|
54
54
|
"./other/formula": {
|
|
55
55
|
"types": "./other/formula/index.d.ts",
|
|
56
56
|
"default": "./fesm2022/other.formula.mjs"
|
|
57
57
|
},
|
|
58
|
-
"./
|
|
59
|
-
"types": "./
|
|
60
|
-
"default": "./fesm2022/
|
|
58
|
+
"./other/control": {
|
|
59
|
+
"types": "./other/control/index.d.ts",
|
|
60
|
+
"default": "./fesm2022/other.control.mjs"
|
|
61
|
+
},
|
|
62
|
+
"./other/rule": {
|
|
63
|
+
"types": "./other/rule/index.d.ts",
|
|
64
|
+
"default": "./fesm2022/other.rule.mjs"
|
|
61
65
|
},
|
|
62
66
|
"./other/tree": {
|
|
63
67
|
"types": "./other/tree/index.d.ts",
|
|
64
68
|
"default": "./fesm2022/other.tree.mjs"
|
|
65
69
|
},
|
|
66
|
-
"./
|
|
67
|
-
"types": "./
|
|
68
|
-
"default": "./fesm2022/
|
|
69
|
-
},
|
|
70
|
-
"./type/tree": {
|
|
71
|
-
"types": "./type/tree/index.d.ts",
|
|
72
|
-
"default": "./fesm2022/type.tree.mjs"
|
|
70
|
+
"./other/source": {
|
|
71
|
+
"types": "./other/source/index.d.ts",
|
|
72
|
+
"default": "./fesm2022/other.source.mjs"
|
|
73
73
|
},
|
|
74
74
|
"./other/source/args": {
|
|
75
75
|
"types": "./other/source/args/index.d.ts",
|
|
76
76
|
"default": "./fesm2022/other.source.args.mjs"
|
|
77
77
|
},
|
|
78
|
-
"./other/source/filter": {
|
|
79
|
-
"types": "./other/source/filter/index.d.ts",
|
|
80
|
-
"default": "./fesm2022/other.source.filter.mjs"
|
|
81
|
-
},
|
|
82
78
|
"./other/source/field-map": {
|
|
83
79
|
"types": "./other/source/field-map/index.d.ts",
|
|
84
80
|
"default": "./fesm2022/other.source.field-map.mjs"
|
|
85
81
|
},
|
|
86
|
-
"./other/source/
|
|
87
|
-
"types": "./other/source/
|
|
88
|
-
"default": "./fesm2022/other.source.
|
|
82
|
+
"./other/source/field-select": {
|
|
83
|
+
"types": "./other/source/field-select/index.d.ts",
|
|
84
|
+
"default": "./fesm2022/other.source.field.select.mjs"
|
|
85
|
+
},
|
|
86
|
+
"./other/source/group": {
|
|
87
|
+
"types": "./other/source/group/index.d.ts",
|
|
88
|
+
"default": "./fesm2022/other.source.group.mjs"
|
|
89
|
+
},
|
|
90
|
+
"./other/source/filter": {
|
|
91
|
+
"types": "./other/source/filter/index.d.ts",
|
|
92
|
+
"default": "./fesm2022/other.source.filter.mjs"
|
|
89
93
|
},
|
|
90
94
|
"./other/source/order": {
|
|
91
95
|
"types": "./other/source/order/index.d.ts",
|
|
92
96
|
"default": "./fesm2022/other.source.order.mjs"
|
|
93
97
|
},
|
|
94
|
-
"./other/source/
|
|
95
|
-
"types": "./other/source/
|
|
96
|
-
"default": "./fesm2022/other.source.
|
|
98
|
+
"./other/source/table": {
|
|
99
|
+
"types": "./other/source/table/index.d.ts",
|
|
100
|
+
"default": "./fesm2022/other.source.table.mjs"
|
|
97
101
|
}
|
|
98
102
|
},
|
|
99
103
|
"sideEffects": false
|