@ebuilding/biz-comm 2.0.0
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/LICENSE +0 -0
- package/README.md +0 -0
- package/components/filter/index.d.ts +1 -0
- package/components/filter/src/compare-filter/index.d.ts +44 -0
- package/components/filter/src/default/index.d.ts +41 -0
- package/components/filter/src/index.module.d.ts +8 -0
- package/components/filter/src/public_api.d.ts +3 -0
- package/components/lookup/index.d.ts +1 -0
- package/components/lookup/src/default/index.d.ts +28 -0
- package/components/lookup/src/index.module.d.ts +8 -0
- package/components/lookup/src/public_api.d.ts +2 -0
- package/fesm2022/components.filter.mjs +411 -0
- package/fesm2022/components.filter.mjs.map +1 -0
- package/fesm2022/components.lookup.mjs +161 -0
- package/fesm2022/components.lookup.mjs.map +1 -0
- package/fesm2022/ebuilding-biz-comm.mjs +7 -0
- package/fesm2022/ebuilding-biz-comm.mjs.map +1 -0
- package/fesm2022/other.card.mjs +419 -0
- package/fesm2022/other.card.mjs.map +1 -0
- package/fesm2022/other.control.mjs +176 -0
- package/fesm2022/other.control.mjs.map +1 -0
- package/fesm2022/other.dict.mjs +1181 -0
- package/fesm2022/other.dict.mjs.map +1 -0
- package/fesm2022/other.formula.mjs +558 -0
- package/fesm2022/other.formula.mjs.map +1 -0
- package/fesm2022/other.rule.mjs +735 -0
- package/fesm2022/other.rule.mjs.map +1 -0
- package/fesm2022/other.source.args.mjs +290 -0
- package/fesm2022/other.source.args.mjs.map +1 -0
- package/fesm2022/other.source.field-map.mjs +245 -0
- package/fesm2022/other.source.field-map.mjs.map +1 -0
- package/fesm2022/other.source.filter.mjs +295 -0
- package/fesm2022/other.source.filter.mjs.map +1 -0
- package/fesm2022/other.source.group.mjs +219 -0
- package/fesm2022/other.source.group.mjs.map +1 -0
- package/fesm2022/other.source.mjs +1485 -0
- package/fesm2022/other.source.mjs.map +1 -0
- package/fesm2022/other.source.order.mjs +243 -0
- package/fesm2022/other.source.order.mjs.map +1 -0
- package/fesm2022/other.source.table.mjs +326 -0
- package/fesm2022/other.source.table.mjs.map +1 -0
- package/fesm2022/other.tree.mjs +441 -0
- package/fesm2022/other.tree.mjs.map +1 -0
- package/fesm2022/type.formula.mjs +133 -0
- package/fesm2022/type.formula.mjs.map +1 -0
- package/fesm2022/type.lookup.mjs +256 -0
- package/fesm2022/type.lookup.mjs.map +1 -0
- package/fesm2022/type.mjs +674 -0
- package/fesm2022/type.mjs.map +1 -0
- package/fesm2022/type.tree.mjs +225 -0
- package/fesm2022/type.tree.mjs.map +1 -0
- package/index.d.ts +2 -0
- package/other/card/index.d.ts +1 -0
- package/other/card/src/card-user/index.d.ts +31 -0
- package/other/card/src/card.service.d.ts +28 -0
- package/other/card/src/components/emp/index.d.ts +13 -0
- package/other/card/src/default/index.d.ts +48 -0
- package/other/card/src/index.module.d.ts +9 -0
- package/other/card/src/public_api.d.ts +3 -0
- package/other/control/index.d.ts +1 -0
- package/other/control/src/dict/index.d.ts +26 -0
- package/other/control/src/index.module.d.ts +7 -0
- package/other/control/src/public_api.d.ts +2 -0
- package/other/dict/index.d.ts +1 -0
- package/other/dict/src/field/index.d.ts +45 -0
- package/other/dict/src/field-info/index.d.ts +38 -0
- package/other/dict/src/field-read/index.d.ts +26 -0
- package/other/dict/src/index.module.d.ts +9 -0
- package/other/dict/src/public_api.d.ts +4 -0
- package/other/formula/index.d.ts +1 -0
- package/other/formula/src/default/index.d.ts +33 -0
- package/other/formula/src/form-item/index.d.ts +32 -0
- package/other/formula/src/form-setting/index.d.ts +32 -0
- package/other/formula/src/formula.service.d.ts +20 -0
- package/other/formula/src/index.module.d.ts +10 -0
- package/other/formula/src/public_api.d.ts +5 -0
- package/other/formula/src/rule-event/index.d.ts +23 -0
- package/other/rule/index.d.ts +1 -0
- package/other/rule/src/index.module.d.ts +16 -0
- package/other/rule/src/main/index.component.d.ts +34 -0
- package/other/rule/src/public_api.d.ts +2 -0
- package/other/rule/src/rule-change/index.component.d.ts +9 -0
- package/other/rule/src/rule-change-boolean/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-date/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-item/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-number/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-ref/index.component.d.ts +19 -0
- package/other/rule/src/rule-change-text/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-upload/index.component.d.ts +11 -0
- package/other/rule/src/rule-fixed/index.component.d.ts +13 -0
- package/other/rule/src/service/config.service.d.ts +43 -0
- package/other/rule/src/service/rule.service.d.ts +11 -0
- package/other/source/args/index.d.ts +1 -0
- package/other/source/args/src/basic.d.ts +49 -0
- package/other/source/args/src/default/index.d.ts +24 -0
- package/other/source/args/src/index.module.d.ts +7 -0
- package/other/source/args/src/public_api.d.ts +2 -0
- package/other/source/field-map/index.d.ts +1 -0
- package/other/source/field-map/src/basic.d.ts +39 -0
- package/other/source/field-map/src/default/index.d.ts +26 -0
- package/other/source/field-map/src/index.module.d.ts +7 -0
- package/other/source/field-map/src/public_api.d.ts +2 -0
- package/other/source/filter/index.d.ts +1 -0
- package/other/source/filter/src/basic.d.ts +45 -0
- package/other/source/filter/src/default/index.d.ts +26 -0
- package/other/source/filter/src/index.module.d.ts +8 -0
- package/other/source/filter/src/public_api.d.ts +3 -0
- package/other/source/filter/src/second/index.d.ts +30 -0
- package/other/source/group/index.d.ts +1 -0
- package/other/source/group/src/basic.d.ts +32 -0
- package/other/source/group/src/default/index.d.ts +26 -0
- package/other/source/group/src/index.module.d.ts +7 -0
- package/other/source/group/src/public_api.d.ts +2 -0
- package/other/source/index.d.ts +6 -0
- package/other/source/order/index.d.ts +1 -0
- package/other/source/order/src/basic.d.ts +39 -0
- package/other/source/order/src/default/index.d.ts +26 -0
- package/other/source/order/src/index.module.d.ts +7 -0
- package/other/source/order/src/public_api.d.ts +2 -0
- package/other/source/table/index.d.ts +1 -0
- package/other/source/table/src/basic.d.ts +62 -0
- package/other/source/table/src/default/index.d.ts +26 -0
- package/other/source/table/src/index.module.d.ts +7 -0
- package/other/source/table/src/public_api.d.ts +2 -0
- package/other/tree/index.d.ts +1 -0
- package/other/tree/src/components/form/index.d.ts +17 -0
- package/other/tree/src/components/tree/index.d.ts +19 -0
- package/other/tree/src/default/index.d.ts +18 -0
- package/other/tree/src/index.module.d.ts +9 -0
- package/other/tree/src/public_api.d.ts +4 -0
- package/other/tree/src/treeService.d.ts +59 -0
- package/package.json +96 -0
- package/type/formula/index.d.ts +1 -0
- package/type/formula/src/default/index.d.ts +19 -0
- package/type/formula/src/index.module.d.ts +8 -0
- package/type/formula/src/public_api.d.ts +2 -0
- package/type/index.d.ts +1 -0
- package/type/index.module.d.ts +11 -0
- package/type/lookup/index.d.ts +1 -0
- package/type/lookup/src/default/index.d.ts +31 -0
- package/type/lookup/src/index.module.d.ts +8 -0
- package/type/lookup/src/public_api.d.ts +2 -0
- package/type/tree/index.d.ts +1 -0
- package/type/tree/src/default/index.d.ts +31 -0
- package/type/tree/src/index.module.d.ts +8 -0
- package/type/tree/src/public_api.d.ts +2 -0
package/LICENSE
ADDED
|
File without changes
|
package/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/public_api';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface IData {
|
|
4
|
+
tableCode?: any;
|
|
5
|
+
tableFieldData: any[];
|
|
6
|
+
sourceTableData: any[];
|
|
7
|
+
fieldOptions: any;
|
|
8
|
+
filterData: any[];
|
|
9
|
+
}
|
|
10
|
+
export declare class GramFilterCompareComponent implements OnInit, OnChanges {
|
|
11
|
+
loading: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* 常量
|
|
14
|
+
*/
|
|
15
|
+
FilterTypeData: any[];
|
|
16
|
+
BracketTypeData: any[];
|
|
17
|
+
SpecialFieldData: any[];
|
|
18
|
+
CompareTypeData: any[];
|
|
19
|
+
CompareFieldTypeData: any[];
|
|
20
|
+
CompareConditionsData: any[];
|
|
21
|
+
/**
|
|
22
|
+
* 基础数据
|
|
23
|
+
*/
|
|
24
|
+
tableFieldData: any[];
|
|
25
|
+
sourceTableData: any[];
|
|
26
|
+
fieldOptions: any;
|
|
27
|
+
filterData: any[];
|
|
28
|
+
title: any;
|
|
29
|
+
data: IData;
|
|
30
|
+
dataChange: EventEmitter<any>;
|
|
31
|
+
constructor();
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
addCondition(): void;
|
|
35
|
+
delCondition(i: number): void;
|
|
36
|
+
cellFieldChange(e: any, item: any): void;
|
|
37
|
+
tableChange(e: any, item: any): void;
|
|
38
|
+
getFieldData(parameterTable: any): any[];
|
|
39
|
+
operationChange(e: any, item: any): void;
|
|
40
|
+
refDataChange(e: any, item: any): void;
|
|
41
|
+
initValueConfig(item: any, tableName: any): void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GramFilterCompareComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GramFilterCompareComponent, "gram-filter-compare", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "dataChange": "dataChange"; }, never, never, true, never>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { _HttpClient } from '@delon/theme';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GramDeonFilterComponent implements OnInit, OnChanges {
|
|
5
|
+
http: _HttpClient;
|
|
6
|
+
_data: any;
|
|
7
|
+
loading: boolean;
|
|
8
|
+
listItem: any[];
|
|
9
|
+
title: any;
|
|
10
|
+
data: any;
|
|
11
|
+
tableData: any[];
|
|
12
|
+
filterData: any[];
|
|
13
|
+
itemOptions: any;
|
|
14
|
+
dataChange: EventEmitter<any>;
|
|
15
|
+
FilterTypeData: any[];
|
|
16
|
+
BracketTypeData: any[];
|
|
17
|
+
SpecialFieldData: any[];
|
|
18
|
+
CompareTypeData: any[];
|
|
19
|
+
CompareConditionsData: any[];
|
|
20
|
+
constructor(http: _HttpClient);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
initPageData(): void;
|
|
24
|
+
addCondition(): void;
|
|
25
|
+
delCondition(i: number): void;
|
|
26
|
+
getFieldData(cellTable: any): any[];
|
|
27
|
+
/**
|
|
28
|
+
* 获取常用参数
|
|
29
|
+
* @param cellTable
|
|
30
|
+
* @param cellField
|
|
31
|
+
* @returns
|
|
32
|
+
*/
|
|
33
|
+
getItemData(cellTable: any, cellField: any): any[];
|
|
34
|
+
tableChange(e: any, item: any): void;
|
|
35
|
+
fieldChange(e: any, item: any): void;
|
|
36
|
+
operationChange(e: any, item: any): void;
|
|
37
|
+
refDataChange(e: any, item: any): void;
|
|
38
|
+
initValueConfig(item: any, tableName: any): void;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GramDeonFilterComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GramDeonFilterComponent, "gram-filter", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "dataChange": "dataChange"; }, never, never, true, never>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./default/index";
|
|
3
|
+
import * as i2 from "./compare-filter/index";
|
|
4
|
+
export declare class GramDeonFilterModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GramDeonFilterModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GramDeonFilterModule, never, [typeof i1.GramDeonFilterComponent, typeof i2.GramFilterCompareComponent], [typeof i1.GramDeonFilterComponent, typeof i2.GramFilterCompareComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GramDeonFilterModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/public_api';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OnInit, OnChanges, EventEmitter } from '@angular/core';
|
|
2
|
+
import { GramBaseDialogService } from '@ebuilding/base/shared.srv/base-dialog.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface ILookUp {
|
|
5
|
+
key: string;
|
|
6
|
+
type?: string;
|
|
7
|
+
selectType?: string;
|
|
8
|
+
value?: any[];
|
|
9
|
+
}
|
|
10
|
+
export declare class GramDeonLookUpComponent implements OnInit, OnChanges {
|
|
11
|
+
private dialogService;
|
|
12
|
+
listConfig: any;
|
|
13
|
+
textValue: any;
|
|
14
|
+
selectData: any[];
|
|
15
|
+
placeholder: any;
|
|
16
|
+
config: any;
|
|
17
|
+
data: any;
|
|
18
|
+
noSave: boolean;
|
|
19
|
+
valueChange: EventEmitter<any>;
|
|
20
|
+
constructor(dialogService: GramBaseDialogService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnChanges(changes: any): void;
|
|
23
|
+
getSelectData(): any[];
|
|
24
|
+
openLookPage(): void;
|
|
25
|
+
initTextValue(e: any): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GramDeonLookUpComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GramDeonLookUpComponent, "gram-lookup", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "config": { "alias": "config"; "required": false; }; "data": { "alias": "data"; "required": false; }; "noSave": { "alias": "noSave"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./default/index";
|
|
4
|
+
export declare class GramDeonLookUpModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GramDeonLookUpModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GramDeonLookUpModule, never, [typeof i1.CommonModule, typeof i2.GramDeonLookUpComponent], [typeof i2.GramDeonLookUpComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GramDeonLookUpModule>;
|
|
8
|
+
}
|