cloud-ide-core 2.0.83 → 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.mjs +38 -0
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +2 -1
- 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>;
|
|
@@ -1930,6 +1930,7 @@ declare class CideCoreUserCreateComponent {
|
|
|
1930
1930
|
* - If modified !== actual: create/update exception
|
|
1931
1931
|
* - If modified === actual BUT exception exists in DB: delete exception
|
|
1932
1932
|
* - If modified === actual AND no exception exists: do nothing
|
|
1933
|
+
* - Also process all existing exceptions from DB to ensure nothing is missed
|
|
1933
1934
|
*/
|
|
1934
1935
|
processRoleExceptions(): CoreUserRoleExceptions[];
|
|
1935
1936
|
/**
|