cloud-ide-core 2.0.110 → 2.0.112
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 +53 -138
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +6 -11
- 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<"title" | "module" | "section" | "menu">;
|
|
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>;
|
|
@@ -1847,6 +1847,10 @@ declare class CideCoreUserCreateComponent {
|
|
|
1847
1847
|
showPasswordFields: _angular_core.WritableSignal<boolean>;
|
|
1848
1848
|
userType: _angular_core.WritableSignal<string | null>;
|
|
1849
1849
|
typeSpecificId: _angular_core.WritableSignal<string | null>;
|
|
1850
|
+
userTypeOptions: {
|
|
1851
|
+
value: string;
|
|
1852
|
+
label: string;
|
|
1853
|
+
}[];
|
|
1850
1854
|
pageCode: _angular_core.Signal<"academics_teacher_create" | "academics_student_create" | "core_user_management_create">;
|
|
1851
1855
|
breadcrumbData: _angular_core.Signal<{
|
|
1852
1856
|
id: string;
|
|
@@ -2567,8 +2571,6 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2567
2571
|
route: ActivatedRoute;
|
|
2568
2572
|
userMasterService: CideCoreUserMasterService;
|
|
2569
2573
|
appState: AppStateHelperService;
|
|
2570
|
-
private rightsService;
|
|
2571
|
-
private destroyRef;
|
|
2572
2574
|
gridComponent: CideEleDataGridComponent<any>;
|
|
2573
2575
|
actionsTemplate: TemplateRef<any>;
|
|
2574
2576
|
userDetailsTemplate: TemplateRef<any>;
|
|
@@ -2587,17 +2589,10 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2587
2589
|
sortColumn: _angular_core.WritableSignal<string>;
|
|
2588
2590
|
sortDirection: _angular_core.WritableSignal<"asc" | "desc">;
|
|
2589
2591
|
userType: _angular_core.WritableSignal<string | null>;
|
|
2590
|
-
userTypeLabel: _angular_core.Signal<"Student" | "Faculty" | "User">;
|
|
2591
|
-
userTypeLabelPlural: _angular_core.Signal<"Faculty" | "Students" | "Users">;
|
|
2592
|
-
canCreate: _angular_core.Signal<boolean>;
|
|
2593
|
-
canEdit: _angular_core.Signal<boolean>;
|
|
2594
|
-
canDelete: _angular_core.Signal<boolean>;
|
|
2595
|
-
canView: _angular_core.Signal<boolean>;
|
|
2596
2592
|
gridConfig: _angular_core.WritableSignal<GridConfiguration<any>>;
|
|
2597
2593
|
templateRenderers: Record<string, TemplateRef<any>>;
|
|
2598
2594
|
ngOnInit(): void;
|
|
2599
2595
|
ngAfterViewInit(): void;
|
|
2600
|
-
private updateGridConfig;
|
|
2601
2596
|
onGridEvent(event: GridEvent<any>): void;
|
|
2602
2597
|
onUserRowClick(user: any): void;
|
|
2603
2598
|
onUserRefresh(): void;
|
|
@@ -2625,7 +2620,7 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2625
2620
|
getValidityEndText(dateString: string | undefined): string;
|
|
2626
2621
|
getUserInitials(firstName: string, lastName: string): string;
|
|
2627
2622
|
getPasswordChangeText(requiresChange: boolean): string;
|
|
2628
|
-
|
|
2623
|
+
private getUserTypeFromRow;
|
|
2629
2624
|
getDropdownItems(user: AuthUserMst): DropdownItem[];
|
|
2630
2625
|
onDropdownItemClick(item: DropdownItem, user: AuthUserMst): void;
|
|
2631
2626
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideCoreUserListComponent, never>;
|