cloud-ide-core 2.0.94 → 2.0.95
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 +18 -38
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +3 -7
- 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<"menu" | "section" | "title" | "module">;
|
|
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>;
|
|
@@ -796,10 +796,6 @@ declare class CideCoreDesignationListComponent {
|
|
|
796
796
|
* Based on FK relationships: _id (PK) -> sydsg_prent_id_desg (FK) OR sydsg_department_id_sydpt (FK)
|
|
797
797
|
*/
|
|
798
798
|
private buildHierarchicalData;
|
|
799
|
-
/**
|
|
800
|
-
* Extract and set departments and grade levels from populated designation data
|
|
801
|
-
*/
|
|
802
|
-
private extractAndSetDepartmentsAndGradeLevels;
|
|
803
799
|
/**
|
|
804
800
|
* Extract unique departments from designation data (since department data is populated in API response)
|
|
805
801
|
*/
|
|
@@ -2579,7 +2575,7 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2579
2575
|
totalPages: _angular_core.WritableSignal<number>;
|
|
2580
2576
|
searchQuery: _angular_core.WritableSignal<string>;
|
|
2581
2577
|
sortColumn: _angular_core.WritableSignal<string>;
|
|
2582
|
-
sortDirection: _angular_core.WritableSignal<"
|
|
2578
|
+
sortDirection: _angular_core.WritableSignal<"desc" | "asc">;
|
|
2583
2579
|
canCreate: _angular_core.Signal<boolean>;
|
|
2584
2580
|
canEdit: _angular_core.Signal<boolean>;
|
|
2585
2581
|
canDelete: _angular_core.Signal<boolean>;
|
|
@@ -2863,7 +2859,7 @@ declare class CideCoreUserRoleListComponent implements OnInit, OnDestroy {
|
|
|
2863
2859
|
totalPages: _angular_core.WritableSignal<number>;
|
|
2864
2860
|
searchQuery: _angular_core.WritableSignal<string>;
|
|
2865
2861
|
sortColumn: _angular_core.WritableSignal<string>;
|
|
2866
|
-
sortDirection: _angular_core.WritableSignal<"
|
|
2862
|
+
sortDirection: _angular_core.WritableSignal<"desc" | "asc">;
|
|
2867
2863
|
selectedStatusFilter: _angular_core.WritableSignal<string>;
|
|
2868
2864
|
get selectedStatusFilterValue(): string;
|
|
2869
2865
|
set selectedStatusFilterValue(value: string);
|