@dignite-ng/expand.cms 3.1.9 → 3.1.12
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/entries/entries.component.mjs +7 -7
- package/esm2022/lib/components/admin/fields/create-or-edit-field.component.mjs +23 -4
- package/esm2022/lib/components/admin/fields/edit-field.component.mjs +1 -2
- package/fesm2022/dignite-ng-expand.cms.mjs +28 -10
- package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
- package/lib/components/admin/fields/create-or-edit-field.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -20,12 +20,15 @@ export declare class CreateOrEditFieldComponent implements AfterContentInit {
|
|
|
20
20
|
fromControlList: any[];
|
|
21
21
|
get nameInput(): FormControl;
|
|
22
22
|
get formControlNameInput(): FormControl;
|
|
23
|
+
get formConfigurationInput(): FormGroup;
|
|
23
24
|
/**获取提交按钮替身,用于真实触发表单提交 */
|
|
24
25
|
submitclick: ElementRef;
|
|
25
26
|
/**字段标签input失去标点生成字段名字 */
|
|
26
27
|
disPlayNameInputBlur(event: any): void;
|
|
27
28
|
/**异步验证,验证别名 */
|
|
28
29
|
repetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
|
|
30
|
+
/** */
|
|
31
|
+
changeFormControlName(e: any): void;
|
|
29
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateOrEditFieldComponent, never>;
|
|
30
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<CreateOrEditFieldComponent, "cms-create-or-edit-field", never, { "selected": { "alias": "selected"; "required": false; }; "service": { "alias": "service"; "required": false; }; "form": { "alias": "form"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
34
|
}
|