cloud-ide-core 2.0.79 → 2.0.84
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-workflow-registry-list.component-B453QJwg.mjs +323 -0
- package/fesm2022/cloud-ide-core-workflow-registry-list.component-B453QJwg.mjs.map +1 -0
- package/fesm2022/cloud-ide-core.mjs +157 -9
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +8 -2
- 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>;
|
|
@@ -1924,7 +1924,13 @@ declare class CideCoreUserCreateComponent {
|
|
|
1924
1924
|
private findExistingException;
|
|
1925
1925
|
/**
|
|
1926
1926
|
* Process exceptions for each entity mapping based on modified vs actual permissions
|
|
1927
|
-
* This method should be called during save to create core_user_role_exceptions
|
|
1927
|
+
* This method should be called during save to create/update/delete core_user_role_exceptions
|
|
1928
|
+
*
|
|
1929
|
+
* Logic:
|
|
1930
|
+
* - If modified !== actual: create/update exception
|
|
1931
|
+
* - If modified === actual BUT exception exists in DB: delete exception
|
|
1932
|
+
* - If modified === actual AND no exception exists: do nothing
|
|
1933
|
+
* - Also process all existing exceptions from DB to ensure nothing is missed
|
|
1928
1934
|
*/
|
|
1929
1935
|
processRoleExceptions(): CoreUserRoleExceptions[];
|
|
1930
1936
|
/**
|