cloud-ide-core 2.0.55 → 2.0.57
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 +61 -22
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +6 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3328,14 +3328,17 @@ interface OrgStructureNode {
|
|
|
3328
3328
|
declare class CideCoreOrgStructureComponent implements OnInit {
|
|
3329
3329
|
allowSwitching: _angular_core.InputSignal<boolean>;
|
|
3330
3330
|
showActions: _angular_core.InputSignal<boolean>;
|
|
3331
|
-
mode: _angular_core.InputSignal<"
|
|
3332
|
-
useSharedWrapper: _angular_core.InputSignal<boolean>;
|
|
3331
|
+
mode: _angular_core.InputSignal<"selection" | "view">;
|
|
3333
3332
|
entityClick: _angular_core.OutputEmitterRef<OrgStructureNode>;
|
|
3334
3333
|
entitySelect: _angular_core.OutputEmitterRef<OrgStructureNode>;
|
|
3335
3334
|
entityView: _angular_core.OutputEmitterRef<OrgStructureNode>;
|
|
3336
3335
|
private entityService;
|
|
3337
3336
|
router: Router;
|
|
3338
3337
|
ngOnInit(): void;
|
|
3338
|
+
/**
|
|
3339
|
+
* Navigate back to entity list
|
|
3340
|
+
*/
|
|
3341
|
+
onBack(): void;
|
|
3339
3342
|
/**
|
|
3340
3343
|
* Handle entity click event from shared org structure
|
|
3341
3344
|
*/
|
|
@@ -3349,7 +3352,7 @@ declare class CideCoreOrgStructureComponent implements OnInit {
|
|
|
3349
3352
|
*/
|
|
3350
3353
|
onEntityView(entity: OrgStructureNode): void;
|
|
3351
3354
|
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; };
|
|
3355
|
+
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
3356
|
}
|
|
3354
3357
|
|
|
3355
3358
|
/**
|