@pdg/react-table 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/PTable/PTable.d.ts +3 -0
- package/dist/PTableBodyRow/PTableBodyRow.d.ts +1 -1
- package/dist/index.esm.js +1615 -1287
- package/dist/index.js +1615 -1287
- package/package.json +5 -5
package/dist/PTable/PTable.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { PTableProps as Props, PTableItem } from './PTable.types';
|
|
3
|
+
/********************************************************************************************************************
|
|
4
|
+
* PTable
|
|
5
|
+
* ******************************************************************************************************************/
|
|
3
6
|
declare function PTable<T extends PTableItem = PTableItem>({ ref, className, style: initStyle, sx, caption, topHeadRows, columns: initColumns, items: initItems, paging: initPaging, pagingAlign, defaultAlign, defaultEllipsis, stickyHeader: initStickyHeader, height, minHeight, maxHeight, fullHeight, showOddColor, showEvenColor, cellPadding, footer, noData, pagination, sortable, progressiveVisible, onClick, onGetBodyRowClassName, onGetBodyRowStyle, onGetBodyRowSx, onGetBodyColumnClassName, onGetBodyColumnStyle, onGetBodyColumnSx, onPageChange, onSortChange, onCheckChange, }: Props<T>): React.JSX.Element | null;
|
|
4
7
|
export default PTable;
|
|
@@ -2,5 +2,5 @@ import React from 'react';
|
|
|
2
2
|
import { PTableBodyRowProps as Props } from './PTableBodyRow.types';
|
|
3
3
|
import { PTableItem } from '../PTable';
|
|
4
4
|
export declare const PStyledBodyRow: import("@emotion/styled").StyledComponent<import("@mui/material").TableRowOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "className" | "style" | "classes" | "children" | "hover" | "selected" | "sx"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
5
|
-
declare function PTableBodyRow<T extends PTableItem = PTableItem>({ className, style, id, index, defaultAlign, defaultEllipsis, sortable, columns, item, onClick, onCheckChange, onGetColumnClassName, onGetColumnStyle, onGetColumnSx, ...props }: Props<T>): React.JSX.Element;
|
|
5
|
+
declare function PTableBodyRow<T extends PTableItem = PTableItem>({ className, style: initStyle, id, index, defaultAlign, defaultEllipsis, sortable, columns, item, onClick, onCheckChange, onGetColumnClassName, onGetColumnStyle, onGetColumnSx, ...props }: Props<T>): React.JSX.Element;
|
|
6
6
|
export default PTableBodyRow;
|