aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/panel/panel-tabs/service-dependencies-tab/service-dependencies-tab.component.html
blob: 588ac8359be3cf1cd4c4fea312092a2103ac338f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<ng2-expand-collapse state="0">
    <header sdc-tooltip tooltip-text="{{input.title}}">{{input.title}}</header>
    <content>
        <div *ngIf="isComponentInstanceSelected">
                <service-dependencies
                    [compositeService]="metaData"
                    [currentServiceInstance]="component"
                    [selectedInstanceProperties]="selectedInstanceProperties"
                    [componentInstanceCapabilitiesMap]="componentInstanceCapabilitiesMap"
                    [selectedInstanceSiblings]="selectedInstanceSiblings"
                    [selectedInstanceConstraints]="selectedInstanceConstraints"
                    [readonly]="isViewOnly"
                    (dependencyStatus)="notifyDependencyEventsObserver($event)"
                    (updateNodeFilterProperties)="updateSelectedInstanceConstraints($event)"
                    (updateNodeFilterCapabilities)="updateSelectedInstanceCapabilitiesConstraints($event)"
                    (loadRulesListEvent)="loadConstraints()">
                </service-dependencies>
        </div>
    </content>
</ng2-expand-collapse>