summaryrefslogtreecommitdiffstats
path: root/catalog-ui
AgeCommit message (Expand)AuthorFilesLines
2019-04-22bug fixes to operation screen and External workflowartifact completionArielk10-59/+232
2019-04-15Introduce column filters in GAB tableTomasz Golabek3-1/+54
2019-04-14Declare properties as policiestalio13-15/+502
2019-04-11Apply Valid Value Constraints validationsiddharth090511-10/+51
2019-04-07Generic Artifact Browser SDC UIPiotr Darosz20-18/+428
2019-04-03Ability to update PNF with new version of VSPkooper1-1/+3
2019-03-20Display PNF/VNF Type for PNF (frontend)kooper5-6/+15
2019-03-18Service Consumption FEojasdubey27-21/+1157
2019-03-13Add Deployment Artifacts to PNFdermot1234-4/+14
2019-03-05<
<!--/*
* ============LICENSE_START=======================================================
* ONAP : CDS
* ================================================================================
* Copyright (C) 2020 TechMahindra
*=================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ============LICENSE_END=========================================================
*/-->
<div class="col-11">
   <div class= "row ">
       <div class="card creat-card source1">
           <h5 class="label-name"> Sources Options</h5>
           <div class="searchBox row"><i class="searchButton1 col-1" aria-hidden="true"></i>
            <input class="searchText col-8" [(ngModel)]="searchText" type="input" placeholder="filter sources">
          </div>
           
       <div class="example-container">
        <div
          cdkDropList
          #todoList="cdkDropList"
          [cdkDropListData]="option"
          [cdkDropListConnectedTo]="[doneList]"
          class="example-list"
          (cdkDropListDropped)="drop($event)">
          <div class="example-box card creat-card" *ngFor="let item of option| search :searchText" cdkDrag>
            <input type="checkbox" class="checkbox" [(ngModel)]="checked" (change)="onChange(item, $event.target.checked)">
            {{item.name}}
          </div>
          
        </div>
       
      </div>
      <div class="footer row">
        <a class="select-button col-sm-05">Select all</a>
        <button  class="action-button1 col-sm-04" >Add to list</button>
      </div>
   </div>
    
      <div class="card creat-card source">
        <h5 class="label-name">Sources List</h5>
        <div class="example-container2 card creat-card"> 
            <div
              cdkDropList
              #doneList="cdkDropList"
              [cdkDropListData]="sourcesOptions"
              [cdkDropListConnectedTo]="[todoList]"
              class="example-list1"
              (cdkDropListDropped)="drop($event)">
              
              <div class="example-box1" *ngFor="let item of sourcesOptions" cdkDrag
2018-10-16Operation WF association UIArielk12-110/+94
2018-10-11Operation screen changes.Arielk11-70/+196
2018-10-11Fix Header of the compositionseshukm7-0/+113
2018-10-11graph-v2 refactoringAnjali walsatwar4-105/+104
2018-10-11composition-graph refactoringAnjali walsatwar5-383/+329
2018-10-11Refactoring Catalog UI codeAnjali walsatwar1-82/+40
2018-10-10Plugin load by the UIIdan Amit6-8/+38
2018-10-02Added license header in html fileAnjali walsatwar41-0/+656
2018-10-02Added license header in html fileAnjali walsatwar16-2/+251
2018-10-02printGraphScreenDirective code removalAnjali walsatwar2-212/+0
2018-09-27Fix header info of menu-itemseshukm3-10/+18