ka-table
Version:
The customizable, extendable, lightweight, and fully free React Table Component
66 lines (65 loc) • 3.02 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CssClasses = void 0;
var CssClasses = /** @class */ (function () {
function CssClasses() {
this.root = 'ka';
this.cell = 'ka-cell';
this.treeCell = 'ka-tree-cell';
this.treeCellEmptySpace = 'ka-tree-empty-space';
this.cellEditor = 'ka-cell-editor';
this.cellText = 'ka-cell-text';
this.groupCell = 'ka-group-cell';
this.groupSummaryRow = 'ka-group-summary-row';
this.detailsRow = 'ka-tr ka-details-row';
this.detailsCell = 'ka-details-cell';
this.groupRow = 'ka-tr ka-group-row';
this.groupSummaryCell = 'ka-cell ka-group-summary-cell';
this.groupPanel = 'ka-group-panel';
this.groupPanelCell = 'ka-group-panel-cell';
this.groupPanelCellRemove = 'ka-group-panel-cell-remove';
this.groupPanelText = 'ka-group-panel-text';
this.kaCellEditorValidationError = 'ka-cell-editor-validation-error';
this.row = 'ka-tr ka-row';
this.rowSelected = 'ka-row-selected';
this.tableWrapper = 'ka-table-wrapper';
this.table = 'ka-table';
this.tbody = 'ka-tbody';
this.tfoot = 'ka-tfoot';
this.thead = 'ka-thead';
this.theadBackground = 'ka-thead-background';
this.theadFixed = 'ka-thead-fixed';
this.theadCell = 'ka-thead-cell';
this.theadCellHeight = 'ka-thead-cell-height';
this.summaryCell = 'ka-summary-cell';
this.summaryRow = 'ka-summary-row';
this.theadCellContent = 'ka-thead-cell-content';
this.theadCellContentWrapper = 'ka-thead-cell-content-wrapper';
this.theadCellResize = 'ka-thead-cell-resize';
this.theadCellWrapper = 'ka-thead-cell-wrapper';
this.theadRow = 'ka-tr ka-thead-row';
this.draggedRow = 'ka-dragged-row';
this.dragOverRow = 'ka-drag-over-row';
this.draggedColumn = 'ka-dragged-column';
this.dragOverColumn = 'ka-drag-over-column';
this.paging = 'ka-paging';
this.pagingPages = 'ka-paging-pages';
this.pagingPageIndex = 'ka-paging-page-index';
this.pagingSize = 'ka-paging-size';
this.pagingSizes = 'ka-paging-sizes';
this.iconGroupArrowCollapsed = 'ka-icon ka-icon-group-arrow-collapsed';
this.iconGroupArrowExpanded = 'ka-icon ka-icon-group-arrow-expanded';
this.iconTreeArrowCollapsed = 'ka-icon ka-icon-tree-arrow-collapsed';
this.iconTreeArrowExpanded = 'ka-icon ka-icon-tree-arrow-expanded';
this.iconSort = 'ka-icon ka-icon-sort';
this.iconSortContent = 'ka-icon-sort-content';
this.iconSortArrowDown = 'ka-icon-sort-arrow-down';
this.iconSortArrowUp = 'ka-icon-sort-arrow-up';
this.checkbox = 'ka-input';
this.dateInput = 'ka-input';
this.numberInput = 'ka-input';
this.textInput = 'ka-input';
}
return CssClasses;
}());
exports.CssClasses = CssClasses;