Lines Matching +full:ctrl +full:- +full:module
9 * The <table-actions> component expects an 'actions' attribute
15 * {type: 'Edit', enabled: true, file: 'icon-edit.svg'},
16 * {type: 'Delete', enabled: false, file: 'icon-trashcan.svg'}
70 class="btn btn-tertiary"
72 aria-label="{{action.type}}"
73 ng-repeat="action in $ctrl.actions track by $index"
74 ng-disabled="!action.enabled"
75 ng-click="$ctrl.onClick(action.type)">
76 <icon ng-if="action.file" ng-file="{{action.file}}"></icon>
77 <span ng-if="!action.file">{{action.type}}</span>
83 angular.module('app.common.components').component('tableActions', {