pillardash-ui-react 0.1.82 → 0.1.83
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/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -386,8 +386,8 @@ declare function Table<T>({ data, columns, itemsPerPage, onViewChange, totalItem
|
|
|
386
386
|
declare function Pagination({ currentPage, totalPages, totalItems, itemsPerPage, onPageChange, onViewChange, loading, }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
387
387
|
|
|
388
388
|
declare function TableSkeleton({ columns, rows }: {
|
|
389
|
-
columns
|
|
390
|
-
rows
|
|
389
|
+
columns?: number;
|
|
390
|
+
rows?: number;
|
|
391
391
|
}): react_jsx_runtime.JSX.Element;
|
|
392
392
|
|
|
393
393
|
declare function TableDropdown({ actions, trigger, className, dropdownClassName, }: TableDropdownProps): react_jsx_runtime.JSX.Element;
|