digitinary-ui 1.0.7 → 1.0.8
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.
|
@@ -97,6 +97,9 @@ export interface PaginationProps extends BaseProps {
|
|
|
97
97
|
to: string;
|
|
98
98
|
};
|
|
99
99
|
}
|
|
100
|
+
export interface TablePaginationProps extends PaginationProps {
|
|
101
|
+
show: boolean;
|
|
102
|
+
}
|
|
100
103
|
export interface TableProps extends BaseProps {
|
|
101
104
|
headCells: HeadCellProps[];
|
|
102
105
|
data: Record<string, any>[];
|
|
@@ -110,6 +113,7 @@ export interface TableProps extends BaseProps {
|
|
|
110
113
|
selectableRow?: boolean;
|
|
111
114
|
selectedRowId?: string;
|
|
112
115
|
rowDataId?: string;
|
|
116
|
+
paginationOptions?: TablePaginationProps;
|
|
113
117
|
}
|
|
114
118
|
export interface SwitchProps {
|
|
115
119
|
checked: boolean;
|