claude-web/node_modules/@primeuix/styles/dist/datatable/index.mjs.map

1 line
23 KiB
Plaintext
Raw Normal View History

2026-02-23 02:23:38 +00:00
{"version":3,"sources":["../../src/datatable/index.ts"],"sourcesContent":["export const style = /*css*/ `\n .p-datatable {\n position: relative;\n display: block;\n }\n\n .p-datatable-table {\n border-spacing: 0;\n border-collapse: separate;\n width: 100%;\n }\n\n .p-datatable-scrollable > .p-datatable-table-container {\n position: relative;\n }\n\n .p-datatable-scrollable-table > .p-datatable-thead {\n inset-block-start: 0;\n z-index: 1;\n }\n\n .p-datatable-scrollable-table > .p-datatable-frozen-tbody {\n position: sticky;\n z-index: 1;\n }\n\n .p-datatable-scrollable-table > .p-datatable-tfoot {\n inset-block-end: 0;\n z-index: 1;\n }\n\n .p-datatable-scrollable .p-datatable-frozen-column {\n position: sticky;\n }\n\n .p-datatable-scrollable th.p-datatable-frozen-column {\n z-index: 1;\n }\n\n .p-datatable-scrollable td.p-datatable-frozen-column {\n background: inherit;\n }\n\n .p-datatable-scrollable > .p-datatable-table-container > .p-datatable-table > .p-datatable-thead,\n .p-datatable-scrollable > .p-datatable-table-container > .p-virtualscroller > .p-datatable-table > .p-datatable-thead {\n background: dt('datatable.header.cell.background');\n }\n\n .p-datatable-scrollable > .p-datatable-table-container > .p-datatable-table > .p-datatable-tfoot,\n .p-datatable-scrollable > .p-datatable-table-container > .p-virtualscroller > .p-datatable-table > .p-datatable-tfoot {\n background: dt('datatable.footer.cell.background');\n }\n\n .p-datatable-flex-scrollable {\n display: flex;\n flex-direction: column;\n height: 100%;\n }\n\n .p-datatable-flex-scrollable > .p-datatable-table-container {\n display: flex;\n flex-direction: column;\n flex: 1;\n height: 100%;\n }\n\n .p-datatable-scrollable-table > .p-datatable-tbody > .p-datatable-row-group-header {\n position: sticky;\n z-index: 1;\n }\n\n .p-datatable-resizable-table > .p-datatable-thead > tr > th,\n .p-datatable-resizable-table > .p-datatable-tfoot > tr > td,\n .p-datatable-resizable-table > .p-datatable-tbody > tr > td {\n overflow: hidden;\n white-space: nowrap;\n }\n\n .p-datatable-resizable-table > .p-datatable-thead > tr > th.p-datatable-resizable-column:not(.p-datatable-frozen-column) {\n background-clip: padding-box;\n position: relative;\n }\n\n .p-datatable-resizable-table-fit > .p-datatable-thead > tr > th.p-datatable-resizable-column:last-child .p-datatable-column-resizer {\n display: none;\n }\n\n .p-datatable-column-resizer {\n display: block;\n position: absolute;\n inset-block-start: 0;\n inset-inline-end: 0;\n margin: 0;\n width: dt('datatable.column.resizer.width');\n height: 100%;\n padding: 0;\n cursor: col-resize;\n border: 1px solid transparent;\n }\n\n .p-datatable-column-header-content {\n display: flex;\n align-items: center;\n gap: dt('datatable.header.cell.gap');\n }\n\n .p-datatable-column-resize-indicator {\n width: dt('datatable.resize.indicator.width');\n position: absolute;\n z-index: 10;\n display: none;\n background: dt('datatable.resize.indicator.color');\n }\n\n .p-datatable-row-reorder-indicator-up,\n .p-datatable-row-reorder-indicator-down {\n position: absolute;\n display: none;\n }\n\n .p-datatable-reorderable-column,\n .p-datatable-reorderable-row-handle {\n cursor: move;\n }\n\n .p-datatable-mask {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n z-index: 2;\n }\n\n .p-datatable-inline-filter {\n display: flex;\n align-items: center;\n width: 100%;\n gap: dt('datatable.filter.inline.gap');\n }\n\n .p-dat