@dignite-ng/expand.cms 3.0.0-rc.29 → 3.0.0-rc.31
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/esm2022/lib/components/dynamic-form/entry/entry-control.component.mjs +3 -3
- package/esm2022/lib/components/dynamic-form/entry/entry-search.component.mjs +3 -3
- package/esm2022/lib/components/dynamic-form/matrix/matrix-config.component.mjs +16 -3
- package/esm2022/lib/components/dynamic-form/table/table-config.component.mjs +21 -14
- package/fesm2022/dignite-ng-expand.cms.mjs +37 -21
- package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
- package/lib/components/dynamic-form/matrix/matrix-config.component.d.ts +2 -0
- package/lib/components/dynamic-form/table/table-config.component.d.ts +4 -4
- package/package.json +1 -1
|
@@ -69,6 +69,8 @@ export declare class MatrixConfigComponent {
|
|
|
69
69
|
displayNameInputBlur(event: any): void;
|
|
70
70
|
/**矩阵displayNameInput字段失去焦点 */
|
|
71
71
|
MatrixFieldDisplayNameInputBlur(event: any): void;
|
|
72
|
+
drop(event: any): void;
|
|
73
|
+
drop1(event: any): void;
|
|
72
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixConfigComponent, never>;
|
|
73
75
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixConfigComponent, "df-matrix-config", never, { "type": { "alias": "type"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "Entity": { "alias": "Entity"; "required": false; }; }, {}, never, never, false, never>;
|
|
74
76
|
}
|
|
@@ -35,9 +35,9 @@ export declare class TableConfigComponent {
|
|
|
35
35
|
/**正在创建或编辑的表格项下标 */
|
|
36
36
|
TableColumnsIndex: any;
|
|
37
37
|
/**创建站点模态框状态 */
|
|
38
|
-
tableSelectOpen: boolean;
|
|
38
|
+
tableSelectOpen: boolean | any;
|
|
39
39
|
/**用于确定模态的繁忙状态是否为真 */
|
|
40
|
-
modalBusy: boolean;
|
|
40
|
+
modalBusy: boolean | any;
|
|
41
41
|
/**创建站点表单 */
|
|
42
42
|
tableSelectForm: FormGroup | undefined;
|
|
43
43
|
/**表格已选择数据 */
|
|
@@ -50,10 +50,10 @@ export declare class TableConfigComponent {
|
|
|
50
50
|
createOrEditSave(): void;
|
|
51
51
|
/**编辑站点按钮 */
|
|
52
52
|
EditSitesBtn(rows: any, i: any): void;
|
|
53
|
-
/**调整表格位置 */
|
|
54
|
-
TableArrowUpOrDown(type: any, index: any): void;
|
|
55
53
|
/**字段标签input失去标点生成字段名字 */
|
|
56
54
|
disPlayNameInputBlur(event: any, item: any): void;
|
|
55
|
+
/**调整表格位置 */
|
|
56
|
+
drop(event: any): void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableConfigComponent, never>;
|
|
58
58
|
static ɵcmp: i0.ɵɵComponentDeclaration<TableConfigComponent, "df-table-config", never, { "Entity": { "alias": "Entity"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
|
|
59
59
|
}
|