mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-30 03:41:50 -05:00
25 lines
580 B
JavaScript
25 lines
580 B
JavaScript
const templateUrl = require('~components/list/row-item.partial.html');
|
|
|
|
function atRowItem () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
transclude: true,
|
|
templateUrl,
|
|
scope: {
|
|
headerValue: '@',
|
|
headerLink: '@',
|
|
headerTag: '@',
|
|
labelValue: '@',
|
|
value: '@',
|
|
valueLink: '@',
|
|
smartStatus: '=?',
|
|
tagValues: '=?',
|
|
// TODO: add see more for tags if applicable
|
|
tagsAreCreds: '@'
|
|
}
|
|
};
|
|
}
|
|
|
|
export default atRowItem;
|