23 lines
404 B
JavaScript
23 lines
404 B
JavaScript
|
|
|
||
|
|
import gridViewColumn from '/elements/gridView/gridView.body.row.column.js';
|
||
|
|
|
||
|
|
import deleteButton from "./news.list.item.actions.deleteButton.js"
|
||
|
|
|
||
|
|
|
||
|
|
export default class newsListItemActions extends gridViewColumn, gridViewColumn{
|
||
|
|
|
||
|
|
useCustomElement = false;
|
||
|
|
|
||
|
|
padding = 20;
|
||
|
|
|
||
|
|
display = "table-cell";
|
||
|
|
|
||
|
|
layers = 1;
|
||
|
|
|
||
|
|
paddingLeft = 30;
|
||
|
|
|
||
|
|
borderRadius;
|
||
|
|
|
||
|
|
deleteButton = new deleteButton();
|
||
|
|
|
||
|
|
}
|