2023-10-02 10:46:09 +00:00
|
|
|
import BaseStyle from 'primevue/base/style';
|
|
|
|
|
2024-05-01 08:26:48 +00:00
|
|
|
const theme = ({ dt }) => `
|
|
|
|
.p-datatable {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-table {
|
|
|
|
border-spacing: 0px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-sortable-column {
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
outline-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-column-title,
|
|
|
|
.p-datatable-sort-icon,
|
|
|
|
.p-datatable-sort-badge {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-sort-icon {
|
|
|
|
color: ${dt('datatable.sort.icon.color')};
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
transition: color ${dt('transition.duration')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-sort-badge {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 1rem;
|
|
|
|
min-width: 1rem;
|
|
|
|
line-height: 1rem;
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-sortable-column:not(.p-datatable-column-sorted):hover {
|
|
|
|
background: ${dt('datatable.header.cell.hover.background')};
|
|
|
|
color: ${dt('datatable.header.cell.hover.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-sortable-column:not(.p-datatable-column-sorted):hover .p-datatable-sort-icon {
|
|
|
|
color: ${dt('datatable.sort.icon.hover.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-column-sorted {
|
|
|
|
background: ${dt('highlight.background')};
|
|
|
|
color: ${dt('highlight.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-sortable-column:focus-visible {
|
|
|
|
outline: ${dt('focus.ring.width')} ${dt('focus.ring.style')} ${dt('focus.ring.color')};
|
|
|
|
outline-offset: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-column-sorted .p-datatable-sort-icon {
|
|
|
|
color: ${dt('highlight.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-hoverable .p-datatable-selectable-row {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable > .p-datatable-table-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable-table > .p-datatable-thead {
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable-table > .p-datatable-frozen-tbody {
|
|
|
|
position: sticky;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable-table>.p-datatable-tfoot {
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable .p-datatable-frozen-column {
|
|
|
|
position: sticky;
|
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable th.p-datatable-frozen-column {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable > .p-datatable-table-container > .p-datatable-table > .p-datatable-thead,
|
|
|
|
.p-datatable-scrollable > .p-datatable-table-container > .p-virtualscroller > .p-datatable-table > .p-datatable-thead {
|
|
|
|
background: ${dt('datatable.header.cell.background')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable > .p-datatable-table-container > .p-datatable-table > .p-datatable-tfoot,
|
|
|
|
.p-datatable-scrollable > .p-datatable-table-container > .p-virtualscroller > .p-datatable-table > .p-datatable-tfoot {
|
|
|
|
background: ${dt('datatable.footer.cell.background')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-flex-scrollable {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-flex-scrollable>.p-datatable-table-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-scrollable-table > .p-datatable-tbody > .p-datatable-row-group-header {
|
|
|
|
position: sticky;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Resizable */
|
|
|
|
.p-datatable-resizable-table > .p-datatable-thead > tr > th,
|
|
|
|
.p-datatable-resizable-table > .p-datatable-tfoot > tr > td,
|
|
|
|
.p-datatable-resizable-table > .p-datatable-tbody > tr > td {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-resizable-table > .p-datatable-thead > tr > th.p-datatable-resizable-column:not(.p-datatable-frozen-column) {
|
|
|
|
background-clip: padding-box;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-resizable-table-fit > .p-datatable-thead > tr > th.p-datatable-resizable-column:last-child .p-datatable-column-resizer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-column-resizer {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 0.5rem;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0px;
|
|
|
|
cursor: col-resize;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-column-header-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-column-resize-indicator {
|
|
|
|
width: 1px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
display: none;
|
2024-05-04 21:57:50 +00:00
|
|
|
background: ${dt('datatable.resize.indicator.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-row-reorder-indicator-up,
|
|
|
|
.p-datatable-row-reorder-indicator-down {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-reorderable-column,
|
|
|
|
.p-datatable-reorderable-row-handle {
|
|
|
|
cursor: move;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-mask {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-inline-filter {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-inline-filter .p-datatable-filter-element-container {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-overlay {
|
|
|
|
background: ${dt('datatable.filter.overlay.background')};
|
|
|
|
color: ${dt('datatable.filter.overlay.color')};
|
|
|
|
border: 1px solid ${dt('datatable.filter.overlay.border.color')};
|
|
|
|
border-radius: ${dt('rounded.base')};
|
|
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
|
|
min-width: 12.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint-list {
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0.25rem 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint {
|
|
|
|
margin: 2px 0;
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
border: 0 none;
|
2024-05-04 21:57:50 +00:00
|
|
|
color: ${dt('datatable.filter.constraint.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
background: transparent;
|
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')},;
|
|
|
|
border-radius: ${dt('rounded.sm')};
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint-selected {
|
2024-05-04 21:57:50 +00:00
|
|
|
background: ${dt('datatable.filter.constraint.selected.background')};
|
|
|
|
color: ${dt('datatable.filter.constraint.selected.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint:not(.p-datatable-filter-constraint-selected):not(.p-disabled):hover {
|
2024-05-04 21:57:50 +00:00
|
|
|
background: ${dt('datatable.filter.constraint.focus.background')};
|
|
|
|
color: ${dt('datatable.filter.constraint.focus.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint:focus-visible {
|
|
|
|
outline: 1px solid ${dt('focus.ring.color')};
|
|
|
|
outline-offset: 2px;
|
|
|
|
box-shadow: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint-separator {
|
2024-05-04 21:57:50 +00:00
|
|
|
border-top: 1px solid ${dt('datatable.filter.constraint.separator.border.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
margin: 2px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-popover-filter {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-operator {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-rule-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-rule {
|
|
|
|
padding: 0;
|
2024-05-04 21:57:50 +00:00
|
|
|
border-bottom: 1px solid ${dt('datatable.filter.rule.border.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-rule:last-child {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint-dropdown {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-remove-rule-button {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-constraint:last-child .p-datatable-filter-remove-button {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-overlay-popover {
|
|
|
|
background: ${dt('datatable.filter.overlay.background')};
|
|
|
|
color: ${dt('datatable.filter.overlay.color')};
|
|
|
|
border: 1px solid ${dt('datatable.filter.overlay.border.color')};
|
|
|
|
border-radius: ${dt('rounded.base')};
|
|
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
|
|
min-width: 12.5rem;
|
|
|
|
padding: 0.75rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-add-rule-button {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-filter-buttonbar {
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-virtualscroller-spacer {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable .p-virtualscroller .p-virtualscroller-loading {
|
|
|
|
transform: none !important;
|
|
|
|
min-height: 0;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-paginator-top {
|
|
|
|
border: solid ${dt('datatable.header.border.color')};
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-header {
|
|
|
|
background: ${dt('datatable.header.background')};
|
|
|
|
color: ${dt('datatable.header.color')};
|
|
|
|
border: 1px solid ${dt('datatable.header.border.color')};
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-footer {
|
|
|
|
background: ${dt('datatable.footer.background')};
|
|
|
|
color: ${dt('datatable.footer.color')};
|
|
|
|
border: 1px solid ${dt('datatable.footer.border.color')};
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-thead > tr > th {
|
|
|
|
text-align: left;
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
background: ${dt('datatable.header.cell.background')};
|
|
|
|
border: 1px solid ${dt('datatable.header.cell.border.color')};
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
color: ${dt('datatable.header.cell.color')};
|
|
|
|
font-weight: 600;
|
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr {
|
|
|
|
outline-color: transparent;
|
|
|
|
background: ${dt('datatable.row.background')};
|
|
|
|
color: ${dt('datatable.row.color')};
|
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr > td {
|
|
|
|
text-align: left;
|
|
|
|
border: 1px solid ${dt('datatable.body.cell.border.color')};
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-hoverable .p-datatable-tbody > tr:not(.p-datatable-row-selected):hover {
|
|
|
|
background: ${dt('datatable.row.hover.background')};
|
|
|
|
color: ${dt('datatable.row.hover.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr.p-datatable-row-selected {
|
|
|
|
background: ${dt('highlight.background')};
|
|
|
|
color: ${dt('highlight.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr:has(+ .p-datatable-row-selected) > td {
|
|
|
|
border-bottom-color: ${dt('datatable.body.cell.selected.border.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr.p-datatable-row-selectedt > td {
|
|
|
|
border-bottom-color: ${dt('datatable.body.cell.selected.border.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr:focus-visible {
|
|
|
|
outline: 1px solid ${dt('focus.ring.color')};
|
|
|
|
outline-offset: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr.p-datatable-contextmenu-row-selected {
|
|
|
|
outline: 1px solid ${dt('focus.ring.color')};
|
|
|
|
outline-offset: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tfoot > tr > td {
|
|
|
|
text-align: left;
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
border: 1px solid ${dt('datatable.footer.cell.border.color')};
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
font-weight: 600;
|
|
|
|
color: ${dt('datatable.footer.cell.color')};
|
|
|
|
background: ${dt('datatable.footer.cell.background')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
|
|
|
|
box-shadow: inset 0 2px 0 0 ${dt('datatable.drop.point.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody>tr.p-datatable-dragpoint-bottom > td {
|
|
|
|
box-shadow: inset 0 -2px 0 0 ${dt('datatable.drop.point.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-loading-icon {
|
|
|
|
font-size: 2rem;
|
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-header {
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-footer {
|
|
|
|
border-width: 0 1px 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-paginator-top {
|
|
|
|
border-width: 0 1px 0 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-paginator-bottom {
|
|
|
|
border-width: 0 1px 1px 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: ${dt('datatable.footer.border.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-thead > tr > th {
|
|
|
|
border-width: 1px 0 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-thead > tr > th:last-child {
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-tbody > tr > td {
|
|
|
|
border-width: 1px 0 0 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-tbody > tr > td:last-child {
|
|
|
|
border-width: 1px 1px 0 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p-datatable-gridlines .p-datatable-tbody > tr:last-child>td {
|
|
|
|
border-width: 1px 0 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-tbody > tr:last-child > td:last-child {
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-tfoot>tr>td {
|
|
|
|
border-width: 1px 0 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-gridlines .p-datatable-tfoot > tr > td:last-child {
|
|
|
|
border-width: 1px 1px 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-gridlines .p-datatable-thead +.p-datatable-tfoot > tr > td {
|
|
|
|
border-width: 0 0 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td:last-child {
|
|
|
|
border-width: 0 1px 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td {
|
|
|
|
border-width: 0 0 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td:last-child {
|
|
|
|
border-width: 0 1px 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td {
|
|
|
|
border-width: 0 0 0 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td:last-child {
|
|
|
|
border-width: 0 1px 0 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd {
|
|
|
|
background: ${dt('datatable.row.striped.background')});
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight {
|
|
|
|
background: ${dt('highlight.background')});
|
|
|
|
color: ${dt('highlight.color')});
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-sm .p-datatable-header {
|
|
|
|
padding: 0.375rem 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-sm .p-datatable-thead > tr > th {
|
|
|
|
padding: 0.375rem 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
|
|
|
|
padding: 0.375rem 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td {
|
|
|
|
padding: 0.375rem 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-sm .p-datatable-footer {
|
|
|
|
padding: 0.375rem 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-lg .p-datatable-header {
|
|
|
|
padding: 0.9375rem 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-lg .p-datatable-thead > tr > th {
|
|
|
|
padding: 0.9375rem 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-lg .p-datatable-tbody>tr>td {
|
|
|
|
padding: 0.9375rem 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-lg .p-datatable-tfoot>tr>td {
|
|
|
|
padding: 0.9375rem 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable.p-datatable-lg .p-datatable-footer {
|
|
|
|
padding: 0.9375rem 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-row-toggle-button {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
width: 1.75rem;
|
|
|
|
height: 1.75rem;
|
2024-05-04 21:57:50 +00:00
|
|
|
color: ${dt('datatable.row.toggle.button.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
border: 0 none;
|
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
|
|
|
outline-color: transparent;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-row-toggle-button:enabled:hover {
|
2024-05-04 21:57:50 +00:00
|
|
|
color: ${dt('datatable.row.toggle.button.hover.color')};
|
|
|
|
background: ${dt('datatable.row.toggle.button.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-row-toggle-button:focus-visible {
|
|
|
|
outline: 1px solid ${dt('focus.ring.color')};
|
|
|
|
outline-offset: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datatable-tbody > tr.p-datatable-row-selected .p-datatable-row-toggle-button:hover{
|
2024-05-04 21:57:50 +00:00
|
|
|
background: ${dt('datatable.row.toggle.button.highlight.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2023-10-02 10:46:09 +00:00
|
|
|
const classes = {
|
2024-04-28 21:54:19 +00:00
|
|
|
root: ({ props }) => [
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-datatable p-component',
|
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-hoverable': props.rowHover || props.selectionMode,
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-datatable-resizable': props.resizableColumns,
|
|
|
|
'p-datatable-resizable-fit': props.resizableColumns && props.columnResizeMode === 'fit',
|
|
|
|
'p-datatable-scrollable': props.scrollable,
|
|
|
|
'p-datatable-flex-scrollable': props.scrollable && props.scrollHeight === 'flex',
|
|
|
|
'p-datatable-striped': props.stripedRows,
|
|
|
|
'p-datatable-gridlines': props.showGridlines,
|
|
|
|
'p-datatable-sm': props.size === 'small',
|
|
|
|
'p-datatable-lg': props.size === 'large'
|
|
|
|
}
|
|
|
|
],
|
2024-05-02 09:58:00 +00:00
|
|
|
overlay: 'p-datatable-mask p-component-overlay',
|
2023-10-02 10:46:09 +00:00
|
|
|
loadingIcon: 'p-datatable-loading-icon',
|
|
|
|
header: 'p-datatable-header',
|
2024-04-28 21:54:19 +00:00
|
|
|
paginator: ({ position }) => 'p-datatable-paginator-' + position,
|
2024-05-02 09:58:00 +00:00
|
|
|
tableContainer: 'p-datatable-table-container',
|
2023-10-02 10:46:09 +00:00
|
|
|
table: ({ props }) => [
|
|
|
|
'p-datatable-table',
|
|
|
|
{
|
|
|
|
'p-datatable-scrollable-table': props.scrollable,
|
|
|
|
'p-datatable-resizable-table': props.resizableColumns,
|
|
|
|
'p-datatable-resizable-table-fit': props.resizableColumns && props.columnResizeMode === 'fit'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
thead: 'p-datatable-thead',
|
|
|
|
headerCell: ({ instance, props, column }) =>
|
|
|
|
column && !instance.columnProp(column, 'hidden') && (props.rowGroupMode !== 'subheader' || props.groupRowsBy !== instance.columnProp(column, 'field'))
|
|
|
|
? [
|
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-frozen-column': instance.columnProp(column, 'frozen')
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
: [
|
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-sortable-column': instance.columnProp('sortable'),
|
|
|
|
'p-datatable-resizable-column': instance.resizableColumns,
|
|
|
|
'p-datatable-column-sorted': instance.isColumnSorted(),
|
|
|
|
'p-datatable-frozen-column': instance.columnProp('frozen'),
|
|
|
|
'p-datatable-reorderable-column': props.reorderableColumns
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
],
|
2024-04-28 21:54:19 +00:00
|
|
|
columnResizer: 'p-datatable-column-resizer',
|
2024-05-02 09:58:00 +00:00
|
|
|
columnHeaderContent: 'p-datatable-column-header-content',
|
|
|
|
columnTitle: 'p-datatable-column-title',
|
2024-04-29 09:00:43 +00:00
|
|
|
sortIcon: 'p-datatable-sort-icon',
|
|
|
|
sortBadge: 'p-datatable-sort-badge',
|
2024-05-02 09:58:00 +00:00
|
|
|
filter: ({ props }) => [
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-filter',
|
2023-10-02 10:46:09 +00:00
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-inline-filter': props.display === 'row',
|
|
|
|
'p-datatable-popover-filter': props.display === 'menu'
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
],
|
2024-05-02 09:58:00 +00:00
|
|
|
filterElementContainer: 'p-datatable-filter-element-container',
|
|
|
|
columnFilterButton: 'p-datatable-column-filter-button',
|
|
|
|
columnFilterClearButton: 'p-datatable-column-filter-clear-button',
|
2023-10-02 10:46:09 +00:00
|
|
|
filterOverlay: ({ instance, props }) => [
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-filter-overlay p-component',
|
2023-10-02 10:46:09 +00:00
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-filter-overlay-popover': props.display === 'menu',
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-ripple-disabled': instance.$primevue.config.ripple === false
|
|
|
|
}
|
|
|
|
],
|
2024-05-02 09:58:00 +00:00
|
|
|
filterConstraintList: 'p-datatable-filter-constraint-list',
|
|
|
|
filterConstraint: ({ instance, matchMode }) => [
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-filter-constraint',
|
2023-10-02 10:46:09 +00:00
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-filter-constraint-selected': matchMode && instance.isRowMatchModeSelected(matchMode.value)
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
],
|
2024-05-02 09:58:00 +00:00
|
|
|
filterConstraintSeparator: 'p-datatable-filter-constraint-separator',
|
2024-04-28 21:54:19 +00:00
|
|
|
filterOperator: 'p-datatable-filter-operator',
|
|
|
|
filterOperatorDropdown: 'p-datatable-filter-operator-dropdown',
|
|
|
|
filterConstraints: 'p-datatable-filter-rule-list',
|
2024-05-02 09:58:00 +00:00
|
|
|
filterRule: 'p-datatable-filter-rule',
|
|
|
|
filterConstraintDropdown: 'p-datatable-filter-constraint-dropdown',
|
|
|
|
filterRemoveRuleButton: 'p-datatable-filter-remove-rule-button',
|
|
|
|
filterAddButton: 'p-column-filter-add-button',
|
2024-04-28 21:54:19 +00:00
|
|
|
filterButtonbar: 'p-datatable-filter-buttonbar',
|
|
|
|
filterClearButton: 'p-datatable-filter-clear-button',
|
|
|
|
filterApplyButton: 'p-datatable-filter-apply-button',
|
2023-10-02 10:46:09 +00:00
|
|
|
tbody: ({ props }) => (props.frozenRow ? 'p-datatable-tbody p-datatable-frozen-tbody' : 'p-datatable-tbody'),
|
2024-05-02 09:58:00 +00:00
|
|
|
rowGroupHeader: 'p-datatable-row-group-header',
|
|
|
|
rowToggleButton: 'p-datatable-row-toggle-button',
|
|
|
|
rowToggleIcon: 'p-datatable-row-toggle-icon',
|
2024-02-02 20:17:35 +00:00
|
|
|
row: ({ instance, props, index, columnSelectionMode }) => {
|
2023-10-02 10:46:09 +00:00
|
|
|
let rowStyleClass = [];
|
|
|
|
|
|
|
|
if (props.selectionMode) {
|
2024-04-28 21:54:19 +00:00
|
|
|
rowStyleClass.push('p-datatable-selectable-row');
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (props.selection) {
|
|
|
|
rowStyleClass.push({
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-row-selected': columnSelectionMode ? instance.isSelected && instance.$parentInstance.$parentInstance.highlightOnSelect : instance.isSelected
|
2023-10-02 10:46:09 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (props.contextMenuSelection) {
|
|
|
|
rowStyleClass.push({
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-contextmenu-row-selected': instance.isSelectedWithContextMenu
|
2023-10-02 10:46:09 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-12-20 11:51:03 +00:00
|
|
|
rowStyleClass.push(index % 2 === 0 ? 'p-row-even' : 'p-row-odd');
|
|
|
|
|
2023-10-02 10:46:09 +00:00
|
|
|
return rowStyleClass;
|
|
|
|
},
|
|
|
|
rowExpansion: 'p-datatable-row-expansion',
|
2024-05-02 09:58:00 +00:00
|
|
|
rowGroupFooter: 'p-datatable-row-group-footer',
|
2024-04-29 09:00:43 +00:00
|
|
|
emptyMessage: 'p-datatable-empty-message',
|
2023-10-02 10:46:09 +00:00
|
|
|
bodyCell: ({ instance }) => [
|
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-frozen-column': instance.columnProp('frozen')
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
],
|
2024-05-02 09:58:00 +00:00
|
|
|
reorderableRowHandle: 'p-datatable-reorderable-row-handle',
|
|
|
|
rowEditorInit: 'p-datatable-row-editor-init',
|
|
|
|
rowEditorSave: 'p-datatable-row-editor-save',
|
|
|
|
rowEditorCancel: 'p-datatable-row-editor-cancel',
|
2023-10-02 10:46:09 +00:00
|
|
|
tfoot: 'p-datatable-tfoot',
|
|
|
|
footerCell: ({ instance }) => [
|
|
|
|
{
|
2024-04-28 21:54:19 +00:00
|
|
|
'p-datatable-frozen-column': instance.columnProp('frozen')
|
2023-10-02 10:46:09 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
virtualScrollerSpacer: 'p-datatable-virtualscroller-spacer',
|
|
|
|
footer: 'p-datatable-footer',
|
2024-05-02 09:58:00 +00:00
|
|
|
columnResizeIndicator: 'p-datatable-column-resize-indicator',
|
|
|
|
rowReorderIndicatorUp: 'p-datatable-row-reorder-indicator-up',
|
|
|
|
rowReorderIndicatorDown: 'p-datatable-row-reorder-indicator-down'
|
2023-10-02 10:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const inlineStyles = {
|
2024-05-02 09:58:00 +00:00
|
|
|
tableContainer: { overflow: 'auto' },
|
2023-10-02 10:46:09 +00:00
|
|
|
thead: { position: 'sticky' },
|
|
|
|
tfoot: { position: 'sticky' }
|
|
|
|
};
|
|
|
|
|
|
|
|
export default BaseStyle.extend({
|
|
|
|
name: 'datatable',
|
2024-05-01 08:26:48 +00:00
|
|
|
theme,
|
2023-10-02 10:46:09 +00:00
|
|
|
classes,
|
|
|
|
inlineStyles
|
|
|
|
});
|