cloud-ide-core 2.0.55 → 2.0.58
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 +166 -114
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +15 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1815,6 +1815,7 @@ declare class CideCoreUserCreateComponent {
|
|
|
1815
1815
|
private appState;
|
|
1816
1816
|
private floatingFeaturesService;
|
|
1817
1817
|
private fileManagerService;
|
|
1818
|
+
private sharedObjectIdService;
|
|
1818
1819
|
private entityRightsService;
|
|
1819
1820
|
private notificationService;
|
|
1820
1821
|
userMasterForm: FormGroup;
|
|
@@ -2425,12 +2426,13 @@ declare class CideCoreUserCreateComponent {
|
|
|
2425
2426
|
private loadDropdownDataForExistingAddresses;
|
|
2426
2427
|
/**
|
|
2427
2428
|
* Generate Object ID for new user creation
|
|
2428
|
-
* Uses the
|
|
2429
|
+
* Uses the shared object ID service to generate a unique ObjectId
|
|
2429
2430
|
* @returns Promise<string> - The generated ObjectId
|
|
2430
2431
|
*/
|
|
2431
2432
|
generateObjectId(): Promise<string>;
|
|
2432
2433
|
/**
|
|
2433
2434
|
* Generate Object ID for user-related entities (addresses, documents, family details)
|
|
2435
|
+
* Uses the shared object ID service for consistency
|
|
2434
2436
|
* @returns Promise<string> - The generated ObjectId
|
|
2435
2437
|
*/
|
|
2436
2438
|
generateEntityObjectId(): Promise<string>;
|
|
@@ -3095,6 +3097,7 @@ declare class CideCoreEntityCreateComponent implements OnInit, OnDestroy {
|
|
|
3095
3097
|
url?: string;
|
|
3096
3098
|
}[]>;
|
|
3097
3099
|
entityForm: FormGroup;
|
|
3100
|
+
generatedEntityId: string | null;
|
|
3098
3101
|
entityTypes: _angular_core.WritableSignal<DropdownOption[]>;
|
|
3099
3102
|
currencies: _angular_core.WritableSignal<DropdownOption[]>;
|
|
3100
3103
|
users: _angular_core.WritableSignal<DropdownOption[]>;
|
|
@@ -3144,6 +3147,7 @@ declare class CideCoreEntityCreateComponent implements OnInit, OnDestroy {
|
|
|
3144
3147
|
private route;
|
|
3145
3148
|
private router;
|
|
3146
3149
|
private fileManagerService;
|
|
3150
|
+
private sharedObjectIdService;
|
|
3147
3151
|
private destroy$;
|
|
3148
3152
|
private globalErrorHandler?;
|
|
3149
3153
|
private globalRejectionHandler?;
|
|
@@ -3164,6 +3168,11 @@ declare class CideCoreEntityCreateComponent implements OnInit, OnDestroy {
|
|
|
3164
3168
|
private initializeTabs;
|
|
3165
3169
|
loadUserEntityMappings(): void;
|
|
3166
3170
|
loadAvailableUsers(): void;
|
|
3171
|
+
/**
|
|
3172
|
+
* Generate entity ID during form initialization
|
|
3173
|
+
* This ID will be used for the entity and its mappings
|
|
3174
|
+
*/
|
|
3175
|
+
private generateEntityId;
|
|
3167
3176
|
addUserMapping(): void;
|
|
3168
3177
|
removeUserMapping(mappingId: string): void;
|
|
3169
3178
|
updateUserMapping(mappingId: string, updates: Partial<AuthUserCoreEntityMapping>): void;
|
|
@@ -3329,13 +3338,16 @@ declare class CideCoreOrgStructureComponent implements OnInit {
|
|
|
3329
3338
|
allowSwitching: _angular_core.InputSignal<boolean>;
|
|
3330
3339
|
showActions: _angular_core.InputSignal<boolean>;
|
|
3331
3340
|
mode: _angular_core.InputSignal<"view" | "selection">;
|
|
3332
|
-
useSharedWrapper: _angular_core.InputSignal<boolean>;
|
|
3333
3341
|
entityClick: _angular_core.OutputEmitterRef<OrgStructureNode>;
|
|
3334
3342
|
entitySelect: _angular_core.OutputEmitterRef<OrgStructureNode>;
|
|
3335
3343
|
entityView: _angular_core.OutputEmitterRef<OrgStructureNode>;
|
|
3336
3344
|
private entityService;
|
|
3337
3345
|
router: Router;
|
|
3338
3346
|
ngOnInit(): void;
|
|
3347
|
+
/**
|
|
3348
|
+
* Navigate back to entity list
|
|
3349
|
+
*/
|
|
3350
|
+
onBack(): void;
|
|
3339
3351
|
/**
|
|
3340
3352
|
* Handle entity click event from shared org structure
|
|
3341
3353
|
*/
|
|
@@ -3349,7 +3361,7 @@ declare class CideCoreOrgStructureComponent implements OnInit {
|
|
|
3349
3361
|
*/
|
|
3350
3362
|
onEntityView(entity: OrgStructureNode): void;
|
|
3351
3363
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideCoreOrgStructureComponent, never>;
|
|
3352
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideCoreOrgStructureComponent, "cide-core-org-structure", never, { "allowSwitching": { "alias": "allowSwitching"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; };
|
|
3364
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideCoreOrgStructureComponent, "cide-core-org-structure", never, { "allowSwitching": { "alias": "allowSwitching"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "entityClick": "entityClick"; "entitySelect": "entitySelect"; "entityView": "entityView"; }, never, never, true, never>;
|
|
3353
3365
|
}
|
|
3354
3366
|
|
|
3355
3367
|
/**
|