cloud-ide-core 2.0.130 → 2.0.133
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 +121 -20
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +23 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ declare class MenuListComponent implements OnInit {
|
|
|
61
61
|
quickAddForm: _angular_forms.FormGroup<{
|
|
62
62
|
syme_title: _angular_forms.FormControl<string>;
|
|
63
63
|
syme_desc: _angular_forms.FormControl<string>;
|
|
64
|
-
syme_type: _angular_forms.FormControl<"
|
|
64
|
+
syme_type: _angular_forms.FormControl<"title" | "module" | "section" | "menu">;
|
|
65
65
|
syme_id_syme: _angular_forms.FormControl<string>;
|
|
66
66
|
syme_path: _angular_forms.FormControl<string>;
|
|
67
67
|
syme_icon: _angular_forms.FormControl<string>;
|
|
@@ -1877,6 +1877,8 @@ declare class CideCoreUserCreateComponent {
|
|
|
1877
1877
|
[mappingIndex: string]: MenuWithPermissions[];
|
|
1878
1878
|
}>;
|
|
1879
1879
|
allUserTypeMappings: _angular_core.WritableSignal<CoreUserTypeMapping[]>;
|
|
1880
|
+
showEntitySelectionModal: _angular_core.WritableSignal<boolean>;
|
|
1881
|
+
selectedEntityForMapping: _angular_core.WritableSignal<string | null>;
|
|
1880
1882
|
userRightsTypeId: _angular_core.WritableSignal<string | null>;
|
|
1881
1883
|
permissions: _angular_core.WritableSignal<ICoreSygms[]>;
|
|
1882
1884
|
Object: ObjectConstructor;
|
|
@@ -2099,6 +2101,22 @@ declare class CideCoreUserCreateComponent {
|
|
|
2099
2101
|
relationshipOptions(): ICoreSygms[];
|
|
2100
2102
|
onTabChange(tab: TabItem): void;
|
|
2101
2103
|
addEntityMapping(): void;
|
|
2104
|
+
/**
|
|
2105
|
+
* Get available entities for selection (excluding already mapped ones)
|
|
2106
|
+
*/
|
|
2107
|
+
getAvailableEntitiesForSelection(): CoreSystemEntityListResponse[];
|
|
2108
|
+
/**
|
|
2109
|
+
* Close entity selection modal
|
|
2110
|
+
*/
|
|
2111
|
+
closeEntitySelectionModal(): void;
|
|
2112
|
+
/**
|
|
2113
|
+
* Select entity for mapping from dialog
|
|
2114
|
+
*/
|
|
2115
|
+
selectEntityForMapping(entityId: string): void;
|
|
2116
|
+
/**
|
|
2117
|
+
* Create entity mapping with pre-selected entity
|
|
2118
|
+
*/
|
|
2119
|
+
addEntityMappingWithEntity(entityId: string): void;
|
|
2102
2120
|
removeEntityMapping(index: number): void;
|
|
2103
2121
|
onEntityChange(mappingIndex: number, event: string | CoreSystemEntityListResponse | AuthUserCoreEntityMapping): void;
|
|
2104
2122
|
/**
|
|
@@ -2308,6 +2326,10 @@ declare class CideCoreUserCreateComponent {
|
|
|
2308
2326
|
* @returns Entity ID string or undefined
|
|
2309
2327
|
*/
|
|
2310
2328
|
getEntityIdFromMapping(mappingIndex: number): string | undefined;
|
|
2329
|
+
/**
|
|
2330
|
+
* Get entity name from mapping for display purposes
|
|
2331
|
+
*/
|
|
2332
|
+
getEntityNameFromMapping(mappingIndex: number): string;
|
|
2311
2333
|
/**
|
|
2312
2334
|
* Check if a user type mapping belongs to a specific entity
|
|
2313
2335
|
* @param typeMapping - User type mapping to check
|