primevue-mirror/components/lib/datatable/style/DataTableStyle.d.ts

208 lines
5.8 KiB
TypeScript
Raw Normal View History

/**
*
* DataTable displays data in tabular format.
*
* [Live Demo](https://www.primevue.org/datatable/)
*
* @module datatablestyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum DataTableClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-datatable',
2024-05-22 13:52:02 +00:00
/**
* Class name of the mask element
*/
mask = 'p-datatable-mask',
2024-05-22 13:52:02 +00:00
/**
* Class name of the loading icon element
*/
loadingIcon = 'p-datatable-loading-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the header element
*/
header = 'p-datatable-header',
2024-05-22 13:52:02 +00:00
/**
* Class name of the paginator element
*/
pcPaginator = 'p-datatable-paginator-[position]',
2024-05-22 13:52:02 +00:00
/**
* Class name of the table container element
*/
tableContainer = 'p-datatable-table-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the table element
*/
table = 'p-datatable-table',
2024-05-22 13:52:02 +00:00
/**
* Class name of the thead element
*/
thead = 'p-datatable-thead',
2024-05-22 13:52:02 +00:00
/**
* Class name of the column resizer element
*/
columnResizer = 'p-datatable-column-resizer',
2024-05-22 13:52:02 +00:00
/**
* Class name of the column header content element
*/
columnHeaderContent = 'p-datatable-column-header-content',
2024-05-22 13:52:02 +00:00
/**
* Class name of the column title element
*/
columnTitle = 'p-datatable-column-title',
2024-05-22 13:52:02 +00:00
/**
* Class name of the sort icon element
*/
sortIcon = 'p-datatable-sort-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the sort badge element
*/
2024-05-13 10:08:24 +00:00
pcSortBadge = 'p-datatable-sort-badge',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter element
*/
filter = 'p-datatable-filter',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter element container element
*/
filterElementContainer = 'p-datatable-filter-element-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the column filter button element
*/
pcColumnFilterButton = 'p-datatable-column-filter-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the column filter clear button element
*/
pcColumnFilterClearButton = 'p-datatable-column-filter-clear-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter overlay element
*/
filterOverlay = 'p-datatable-filter-overlay',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter constraint list element
*/
filterConstraintList = 'p-datatable-filter-constraint-list',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter constraint element
*/
filterConstraint = 'p-datatable-filter-constraint',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter constraint separator element
*/
filterConstraintSeparator = 'p-datatable-filter-constraint-separator',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter operator element
*/
filterOperator = 'p-datatable-filter-operator',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter operator dropdown element
*/
pcFilterOperatorDropdown = 'p-datatable-filter-operator-dropdown',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter rule list element
*/
filterRuleList = 'p-datatable-filter-rule-list',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter rule element
*/
filterRule = 'p-datatable-filter-rule',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter constraint dropdown element
*/
pcFilterConstraintDropdown = 'p-datatable-filter-constraint-dropdown',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter remove rule button element
*/
pcFilterRemoveRuleButton = 'p-datatable-filter-remove-rule-button',
2024-05-22 19:18:12 +00:00
/**
* Class name of the filter add rule button element
*/
pcFilterAddRuleButton = 'p-datatable-filter-add-rule-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter buttonbar element
*/
filterButtonbar = 'p-datatable-filter-buttonbar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter clear button element
*/
pcFilterClearButton = 'p-datatable-filter-clear-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the filter apply button element
*/
pcFilterApplyButton = 'p-datatable-filter-apply-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the tbody element
*/
tbody = 'p-datatable-tbody',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row group header element
*/
rowGroupHeader = 'p-datatable-row-group-header',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row toggle button element
*/
rowToggleButton = 'p-datatable-row-toggle-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row toggle icon element
*/
rowToggleIcon = 'p-datatable-row-toggle-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row expansion element
*/
rowExpansion = 'p-datatable-row-expansion',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row group footer element
*/
rowGroupFooter = 'p-datatable-row-group-footer',
2024-05-22 13:52:02 +00:00
/**
* Class name of the empty message element
*/
emptyMessage = 'p-datatable-empty-message',
2024-05-22 13:52:02 +00:00
/**
* Class name of the reorderable row handle element
*/
reorderableRowHandle = 'p-datatable-reorderable-row-handle',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row editor init element
*/
pcRowEditorInit = 'p-datatable-row-editor-init',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row editor save element
*/
pcRowEditorSave = 'p-datatable-row-editor-save',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row editor cancel element
*/
pcRowEditorCancel = 'p-datatable-row-editor-cancel',
2024-05-22 13:52:02 +00:00
/**
* Class name of the tfoot element
*/
tfoot = 'p-datatable-tfoot',
2024-05-22 13:52:02 +00:00
/**
* Class name of the virtual scroller spacer element
*/
virtualScrollerSpacer = 'p-datatable-virtualscroller-spacer',
2024-05-22 13:52:02 +00:00
/**
* Class name of the footer element
*/
footer = 'p-datatable-footer',
2024-05-22 13:52:02 +00:00
/**
* Class name of the column resize indicator element
*/
columnResizeIndicator = 'p-datatable-column-resize-indicator',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row reorder indicator up element
*/
rowReorderIndicatorUp = 'p-datatable-row-reorder-indicator-up',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row reorder indicator down element
*/
rowReorderIndicatorDown = 'p-datatable-row-reorder-indicator-down'
}
2023-10-02 13:15:41 +00:00
export interface DataTableStyle extends BaseStyle {}