cloud-ide-core 2.0.112 → 2.0.113
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/fesm2022/cloud-ide-core.mjs +34 -10
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ declare class MenuListComponent implements OnInit {
|
|
|
58
58
|
quickAddForm: _angular_forms.FormGroup<{
|
|
59
59
|
syme_title: _angular_forms.FormControl<string>;
|
|
60
60
|
syme_desc: _angular_forms.FormControl<string>;
|
|
61
|
-
syme_type: _angular_forms.FormControl<"
|
|
61
|
+
syme_type: _angular_forms.FormControl<"module" | "section" | "menu" | "title">;
|
|
62
62
|
syme_id_syme: _angular_forms.FormControl<string>;
|
|
63
63
|
syme_path: _angular_forms.FormControl<string>;
|
|
64
64
|
syme_icon: _angular_forms.FormControl<string>;
|
|
@@ -2571,6 +2571,7 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2571
2571
|
route: ActivatedRoute;
|
|
2572
2572
|
userMasterService: CideCoreUserMasterService;
|
|
2573
2573
|
appState: AppStateHelperService;
|
|
2574
|
+
private destroyRef;
|
|
2574
2575
|
gridComponent: CideEleDataGridComponent<any>;
|
|
2575
2576
|
actionsTemplate: TemplateRef<any>;
|
|
2576
2577
|
userDetailsTemplate: TemplateRef<any>;
|
|
@@ -2585,6 +2586,8 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2585
2586
|
pageSize: _angular_core.WritableSignal<number>;
|
|
2586
2587
|
totalItems: _angular_core.WritableSignal<number>;
|
|
2587
2588
|
totalPages: _angular_core.WritableSignal<number>;
|
|
2589
|
+
pageTitle: _angular_core.WritableSignal<string>;
|
|
2590
|
+
pageSubtitle: _angular_core.WritableSignal<string>;
|
|
2588
2591
|
searchQuery: _angular_core.WritableSignal<string>;
|
|
2589
2592
|
sortColumn: _angular_core.WritableSignal<string>;
|
|
2590
2593
|
sortDirection: _angular_core.WritableSignal<"asc" | "desc">;
|