@dignite-ng/expand.cms 3.0.0-rc.28 → 3.0.0-rc.29
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/admin/fields/create-or-edit-field.component.mjs +3 -3
- package/esm2022/lib/components/admin/fields/field-group.component.mjs +4 -3
- package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.mjs +3 -17
- package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.component.mjs +31 -30
- package/esm2022/lib/components/dynamic-form/matrix/matrix-config.component.mjs +3 -3
- package/esm2022/lib/components/dynamic-form/table/table-config.component.mjs +3 -3
- package/fesm2022/dignite-ng-expand.cms.mjs +41 -53
- package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
- package/lib/components/admin/fields/field-group.component.d.ts +2 -2
- package/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.d.ts +0 -3
- package/lib/components/admin/sections/entry-types/create-or-edit.component.d.ts +8 -8
- package/package.json +1 -1
|
@@ -24,9 +24,9 @@ export declare class FieldGroupComponent implements OnInit {
|
|
|
24
24
|
/**创建分组模态框状态 */
|
|
25
25
|
createGroupOpen: boolean;
|
|
26
26
|
/**用于确定模态的繁忙状态是否为真 */
|
|
27
|
-
modalBusy: boolean;
|
|
27
|
+
modalBusy: boolean | any;
|
|
28
28
|
/**编辑分组模态框状态 */
|
|
29
|
-
editGroupOpen: boolean;
|
|
29
|
+
editGroupOpen: boolean | any;
|
|
30
30
|
/**点击分组回调 */
|
|
31
31
|
OnGroupClickBack: EventEmitter<any>;
|
|
32
32
|
ngOnInit(): void;
|
package/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.d.ts
CHANGED
|
@@ -5,13 +5,11 @@ export declare class CreateOrEditEntryTypeInputBase {
|
|
|
5
5
|
name: any;
|
|
6
6
|
/**条目路由 */
|
|
7
7
|
fieldTabs: any;
|
|
8
|
-
constructor(data?: CreateOrEditEntryTypeInputBase);
|
|
9
8
|
}
|
|
10
9
|
export declare class fieldTabsBase {
|
|
11
10
|
/**名称 Unique Name*/
|
|
12
11
|
name: any;
|
|
13
12
|
fields?: any;
|
|
14
|
-
constructor(data?: fieldTabsBase);
|
|
15
13
|
}
|
|
16
14
|
export declare class fieldsBase {
|
|
17
15
|
/**字段id Unique Name*/
|
|
@@ -24,5 +22,4 @@ export declare class fieldsBase {
|
|
|
24
22
|
showInList: any;
|
|
25
23
|
/**是否启用搜索 */
|
|
26
24
|
enableSearch: any;
|
|
27
|
-
constructor();
|
|
28
25
|
}
|
|
@@ -25,9 +25,9 @@ export declare class CreateOrEditComponent implements OnInit {
|
|
|
25
25
|
/**表单实体 */
|
|
26
26
|
newEntity: FormGroup;
|
|
27
27
|
/**版块id */
|
|
28
|
-
sectionId: string;
|
|
28
|
+
sectionId: string | any;
|
|
29
29
|
/**条目类型id */
|
|
30
|
-
entryTypesId: string;
|
|
30
|
+
entryTypesId: string | any;
|
|
31
31
|
/**条目类型详情 */
|
|
32
32
|
entryTypesSelect: any;
|
|
33
33
|
get fieldTabs(): FormArray;
|
|
@@ -95,15 +95,15 @@ export declare class CreateOrEditComponent implements OnInit {
|
|
|
95
95
|
* }
|
|
96
96
|
*/
|
|
97
97
|
formValidation: any;
|
|
98
|
-
isSubmit: boolean;
|
|
98
|
+
isSubmit: boolean | any;
|
|
99
99
|
/**保存表单 */
|
|
100
100
|
save(): boolean;
|
|
101
101
|
/**编辑Tabs表单 */
|
|
102
102
|
editFieldTabsFrom: FormGroup;
|
|
103
103
|
/**模态框状态 */
|
|
104
|
-
visibleTabsOpen: boolean;
|
|
104
|
+
visibleTabsOpen: boolean | any;
|
|
105
105
|
/**是否是忙碌状态 */
|
|
106
|
-
modalBusy: boolean;
|
|
106
|
+
modalBusy: boolean | any;
|
|
107
107
|
/**正在编辑的tabs */
|
|
108
108
|
editFieldTabsSelect: any;
|
|
109
109
|
/**正在选中的nav */
|
|
@@ -123,7 +123,7 @@ export declare class CreateOrEditComponent implements OnInit {
|
|
|
123
123
|
/**删除某个tabs表单 */
|
|
124
124
|
deleteFieldTabs(index: any): void;
|
|
125
125
|
/**编辑字段模态框状态 */
|
|
126
|
-
visibleEditFieldOpen: boolean;
|
|
126
|
+
visibleEditFieldOpen: boolean | any;
|
|
127
127
|
/**编辑字段模态框表单 */
|
|
128
128
|
editFieldFrom: FormGroup;
|
|
129
129
|
/**表单控件模板-动态赋值表单控件-编辑字段 */
|
|
@@ -132,8 +132,8 @@ export declare class CreateOrEditComponent implements OnInit {
|
|
|
132
132
|
EditFieldIndex: number | any;
|
|
133
133
|
/**编辑字段模态框状态状态改变回调 */
|
|
134
134
|
VisibleEditFieldChange(event: any): void;
|
|
135
|
-
isShowInList: boolean;
|
|
136
|
-
isEnableSearch: boolean;
|
|
135
|
+
isShowInList: boolean | any;
|
|
136
|
+
isEnableSearch: boolean | any;
|
|
137
137
|
/**打开编辑字段模态框 */
|
|
138
138
|
EditFieldModalOpen(items: any, elIndex: any): void;
|
|
139
139
|
/**保存编辑字段 */
|