@delightui/components 0.1.53 → 0.1.55
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/cjs/components/molecules/Pagination/Pagination.d.ts +2 -1
- package/dist/cjs/components/molecules/PaginationNumberField/PaginationNumberField.d.ts +2 -1
- package/dist/cjs/library.css +2 -2
- package/dist/cjs/library.js +1 -1
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/molecules/Pagination/Pagination.d.ts +2 -1
- package/dist/esm/components/molecules/PaginationNumberField/PaginationNumberField.d.ts +2 -1
- package/dist/esm/library.css +2 -2
- package/dist/esm/library.js +1 -1
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1710,7 +1710,7 @@ type PaginationProps = {
|
|
|
1710
1710
|
nextPageIcon?: React.ReactNode;
|
|
1711
1711
|
};
|
|
1712
1712
|
|
|
1713
|
-
declare const Pagination: (props: PaginationProps) =>
|
|
1713
|
+
declare const Pagination: (props: PaginationProps) => React__default.JSX.Element;
|
|
1714
1714
|
|
|
1715
1715
|
type PaginationNumberFieldProps = {
|
|
1716
1716
|
className?: string;
|
|
@@ -1719,7 +1719,7 @@ type PaginationNumberFieldProps = {
|
|
|
1719
1719
|
onPageChanged?: (page: number) => void;
|
|
1720
1720
|
};
|
|
1721
1721
|
|
|
1722
|
-
declare const PaginationNumberField: (props: PaginationNumberFieldProps) =>
|
|
1722
|
+
declare const PaginationNumberField: (props: PaginationNumberFieldProps) => React__default.JSX.Element;
|
|
1723
1723
|
|
|
1724
1724
|
/**
|
|
1725
1725
|
* Enum for the action type of the Popover.
|