cloud-ide-core 2.0.133 → 2.0.135
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 +350 -112
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +23 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1844,6 +1844,7 @@ declare class CideCoreUserCreateComponent {
|
|
|
1844
1844
|
private route;
|
|
1845
1845
|
private appState;
|
|
1846
1846
|
private floatingFeaturesService;
|
|
1847
|
+
private floatingContainerService;
|
|
1847
1848
|
private fileManagerService;
|
|
1848
1849
|
private sharedObjectIdService;
|
|
1849
1850
|
private entityRightsService;
|
|
@@ -1877,7 +1878,8 @@ declare class CideCoreUserCreateComponent {
|
|
|
1877
1878
|
[mappingIndex: string]: MenuWithPermissions[];
|
|
1878
1879
|
}>;
|
|
1879
1880
|
allUserTypeMappings: _angular_core.WritableSignal<CoreUserTypeMapping[]>;
|
|
1880
|
-
|
|
1881
|
+
private rolePermissionsCache;
|
|
1882
|
+
private loadedMappingData;
|
|
1881
1883
|
selectedEntityForMapping: _angular_core.WritableSignal<string | null>;
|
|
1882
1884
|
userRightsTypeId: _angular_core.WritableSignal<string | null>;
|
|
1883
1885
|
permissions: _angular_core.WritableSignal<ICoreSygms[]>;
|
|
@@ -2106,17 +2108,26 @@ declare class CideCoreUserCreateComponent {
|
|
|
2106
2108
|
*/
|
|
2107
2109
|
getAvailableEntitiesForSelection(): CoreSystemEntityListResponse[];
|
|
2108
2110
|
/**
|
|
2109
|
-
*
|
|
2111
|
+
* Show entity selection in floating drawer
|
|
2110
2112
|
*/
|
|
2111
|
-
|
|
2113
|
+
showEntitySelectionDrawer(): void;
|
|
2112
2114
|
/**
|
|
2113
|
-
*
|
|
2115
|
+
* Close entity selection drawer
|
|
2116
|
+
*/
|
|
2117
|
+
closeEntitySelectionDrawer(): void;
|
|
2118
|
+
/**
|
|
2119
|
+
* Select entity for mapping from drawer
|
|
2114
2120
|
*/
|
|
2115
2121
|
selectEntityForMapping(entityId: string): void;
|
|
2116
2122
|
/**
|
|
2117
2123
|
* Create entity mapping with pre-selected entity
|
|
2118
2124
|
*/
|
|
2119
2125
|
addEntityMappingWithEntity(entityId: string): void;
|
|
2126
|
+
/**
|
|
2127
|
+
* Handle entity mapping card state change (expand/collapse)
|
|
2128
|
+
* Load data lazily when card is expanded
|
|
2129
|
+
*/
|
|
2130
|
+
onEntityMappingCardStateChange(state: string, mappingIndex: number): void;
|
|
2120
2131
|
removeEntityMapping(index: number): void;
|
|
2121
2132
|
onEntityChange(mappingIndex: number, event: string | CoreSystemEntityListResponse | AuthUserCoreEntityMapping): void;
|
|
2122
2133
|
/**
|
|
@@ -2174,7 +2185,7 @@ declare class CideCoreUserCreateComponent {
|
|
|
2174
2185
|
*/
|
|
2175
2186
|
onRoleChange(mappingIndex: number, role: CoreUserRoleResponse): void;
|
|
2176
2187
|
/**
|
|
2177
|
-
* Load role permissions from API
|
|
2188
|
+
* Load role permissions from API (with caching)
|
|
2178
2189
|
*/
|
|
2179
2190
|
private loadRolePermissions;
|
|
2180
2191
|
/**
|
|
@@ -2308,6 +2319,7 @@ declare class CideCoreUserCreateComponent {
|
|
|
2308
2319
|
canOverrideRight(menuRight: MenuRight, permission: string): boolean;
|
|
2309
2320
|
hasExceptionForMenu(mappingIndex: number, menuId: string): boolean;
|
|
2310
2321
|
onDefaultEntityChange(mappingIndex: number, event: EventWithQuery | Event): void;
|
|
2322
|
+
onActiveMappingChange(mappingIndex: number, event: Event): void;
|
|
2311
2323
|
getDefaultEntityName(): string;
|
|
2312
2324
|
hasDefaultEntity(): boolean;
|
|
2313
2325
|
getUserFullName(): string;
|
|
@@ -2491,27 +2503,27 @@ declare class CideCoreUserCreateComponent {
|
|
|
2491
2503
|
*/
|
|
2492
2504
|
private getPostalCodeDataFromResponse;
|
|
2493
2505
|
/**
|
|
2494
|
-
* Load address types from general master service
|
|
2506
|
+
* Load address types from general master service (async, non-blocking)
|
|
2495
2507
|
*/
|
|
2496
2508
|
private loadAddressTypes;
|
|
2497
2509
|
/**
|
|
2498
|
-
* Load document types from general master service
|
|
2510
|
+
* Load document types from general master service (async, non-blocking)
|
|
2499
2511
|
*/
|
|
2500
2512
|
private loadDocumentTypes;
|
|
2501
2513
|
/**
|
|
2502
|
-
* Load document verification status from general master service
|
|
2514
|
+
* Load document verification status from general master service (async, non-blocking)
|
|
2503
2515
|
*/
|
|
2504
2516
|
private loadDocumentVerificationStatus;
|
|
2505
2517
|
/**
|
|
2506
|
-
* Load document KYC status from general master service
|
|
2518
|
+
* Load document KYC status from general master service (async, non-blocking)
|
|
2507
2519
|
*/
|
|
2508
2520
|
private loadDocumentKycStatus;
|
|
2509
2521
|
/**
|
|
2510
|
-
* Load blood groups from general master service
|
|
2522
|
+
* Load blood groups from general master service (async, non-blocking)
|
|
2511
2523
|
*/
|
|
2512
2524
|
private loadBloodGroups;
|
|
2513
2525
|
/**
|
|
2514
|
-
* Load relationship options from general master service
|
|
2526
|
+
* Load relationship options from general master service (async, non-blocking)
|
|
2515
2527
|
*/
|
|
2516
2528
|
private loadRelationshipOptions;
|
|
2517
2529
|
/**
|