@dignite-ng/expand.cms 0.0.47 → 0.0.49
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/config/components/domains/domains.component.mjs +1 -2
- package/esm2022/lib/components/admin/entries/create-or-edit-entries.component.mjs +37 -4
- package/esm2022/lib/components/admin/entries/entries.component.mjs +1 -14
- package/esm2022/lib/components/admin/fields/create-or-edit-field.component.mjs +6 -5
- package/esm2022/lib/components/admin/fields/edit-field.component.mjs +1 -2
- package/esm2022/lib/components/dynamic-form/matrix/matrix-config.component.mjs +3 -4
- package/esm2022/lib/components/dynamic-form/matrix/matrix-control.component.mjs +1 -2
- package/esm2022/lib/components/dynamic-form/table/table-config.component.mjs +1 -1
- package/esm2022/lib/components/dynamic-form/table/table-control.component.mjs +1 -2
- package/esm2022/lib/services/simple-reuse-strategy.mjs +5 -1
- package/fesm2022/dignite-ng-expand.cms-config.mjs +0 -1
- package/fesm2022/dignite-ng-expand.cms-config.mjs.map +1 -1
- package/fesm2022/dignite-ng-expand.cms.mjs +47 -26
- package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
- package/lib/components/admin/entries/create-or-edit-entries.component.d.ts +5 -1
- package/lib/components/admin/fields/create-or-edit-field.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export declare class CreateOrEditEntriesComponent implements AfterContentInit {
|
|
|
22
22
|
constructor(toaster: ToasterService, _location: Location, configState: ConfigStateService, _SectionAdminService: SectionAdminService, _EntryAdminService: EntryAdminService, datePipe: DatePipe, _LocalizationService: LocalizationService, router: Router, _CmsApiService: CmsApiService);
|
|
23
23
|
/**语言 */
|
|
24
24
|
cultureName: string;
|
|
25
|
-
|
|
25
|
+
/**条目类型id */
|
|
26
26
|
entryTypeId: string;
|
|
27
27
|
/**新建版本的版本id,同条目id */
|
|
28
28
|
RevisionEntryId: any;
|
|
@@ -75,6 +75,10 @@ export declare class CreateOrEditEntriesComponent implements AfterContentInit {
|
|
|
75
75
|
private config;
|
|
76
76
|
/**获取版块详情 */
|
|
77
77
|
getSectionSelect(): Promise<unknown>;
|
|
78
|
+
/**获取条目类型下所有条目列表 */
|
|
79
|
+
getTypeEntryList(): Promise<unknown>;
|
|
80
|
+
/**对数组按照父子关系进行分组 */
|
|
81
|
+
groupByParentId(arr: any, id: string, layer: any): any[];
|
|
78
82
|
/**获取条目版本列表 */
|
|
79
83
|
getAllVersionsList(): Promise<unknown>;
|
|
80
84
|
/**标题转化别名 */
|
|
@@ -30,7 +30,7 @@ export declare class CreateOrEditFieldComponent {
|
|
|
30
30
|
disPlayNameInputBlur(event: any): void;
|
|
31
31
|
/**定义异步验证方法 */
|
|
32
32
|
repetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
|
|
33
|
-
formControlNameChange(): void;
|
|
33
|
+
formControlNameChange(event: any): void;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateOrEditFieldComponent, never>;
|
|
35
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<CreateOrEditFieldComponent, "cms-create-or-edit-field", never, { "Entity": { "alias": "Entity"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, never, false, never>;
|
|
36
36
|
}
|