cloud-ide-core 2.0.71 → 2.0.73
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 +49 -34
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +8 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2544,13 +2544,6 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2544
2544
|
searchQuery: _angular_core.WritableSignal<string>;
|
|
2545
2545
|
sortColumn: _angular_core.WritableSignal<string>;
|
|
2546
2546
|
sortDirection: _angular_core.WritableSignal<"asc" | "desc">;
|
|
2547
|
-
selectedStatusFilter: _angular_core.WritableSignal<string>;
|
|
2548
|
-
get selectedStatusFilterValue(): string;
|
|
2549
|
-
set selectedStatusFilterValue(value: string);
|
|
2550
|
-
statusFilterOptions: _angular_core.WritableSignal<{
|
|
2551
|
-
value: string;
|
|
2552
|
-
label: string;
|
|
2553
|
-
}[]>;
|
|
2554
2547
|
gridConfig: _angular_core.WritableSignal<GridConfiguration<any>>;
|
|
2555
2548
|
templateRenderers: Record<string, TemplateRef<any>>;
|
|
2556
2549
|
ngOnInit(): void;
|
|
@@ -2577,7 +2570,6 @@ declare class CideCoreUserListComponent implements OnInit, AfterViewInit {
|
|
|
2577
2570
|
onToggleUserStatus(user: any): void;
|
|
2578
2571
|
onDeleteUser(user: any): void;
|
|
2579
2572
|
onAddUser(): void;
|
|
2580
|
-
onFilterChange(): void;
|
|
2581
2573
|
formatDate(dateString: string | undefined): string;
|
|
2582
2574
|
isDateExpired(dateString: string | undefined): boolean;
|
|
2583
2575
|
getValidityEndText(dateString: string | undefined): string;
|
|
@@ -3276,6 +3268,10 @@ declare class CideCoreEntityListComponent implements OnInit {
|
|
|
3276
3268
|
private updatePaginationState;
|
|
3277
3269
|
onSearch(): void;
|
|
3278
3270
|
onFilterChange(): void;
|
|
3271
|
+
/**
|
|
3272
|
+
* Handle entity type selection change
|
|
3273
|
+
*/
|
|
3274
|
+
onEntityTypeChange(value: string | number | string[]): void;
|
|
3279
3275
|
onPageChange(page: number | string): void;
|
|
3280
3276
|
onPageSizeChange(): void;
|
|
3281
3277
|
onRefresh(): void;
|
|
@@ -3605,6 +3601,10 @@ declare class CideCoreGeneralMasterComponent implements OnInit {
|
|
|
3605
3601
|
* Setup form subscriptions
|
|
3606
3602
|
*/
|
|
3607
3603
|
private setupFormSubscriptions;
|
|
3604
|
+
/**
|
|
3605
|
+
* Normalize parent field to string ID for tree view
|
|
3606
|
+
*/
|
|
3607
|
+
private normalizeParentField;
|
|
3608
3608
|
/**
|
|
3609
3609
|
* Update grid data
|
|
3610
3610
|
*/
|