@useloops/design-system 1.4.522 → 1.4.524
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/esm/index.js +2 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2386,11 +2386,12 @@ interface OnboardingCardProps {
|
|
|
2386
2386
|
}
|
|
2387
2387
|
declare const OnboardingCard: FunctionComponent<OnboardingCardProps>;
|
|
2388
2388
|
|
|
2389
|
-
interface PaginationControlProps {
|
|
2389
|
+
interface PaginationControlProps extends PropsWithChildren {
|
|
2390
2390
|
items: string[];
|
|
2391
2391
|
activeItem: string;
|
|
2392
2392
|
onClickNext?: () => void;
|
|
2393
2393
|
onClickPrevious?: () => void;
|
|
2394
|
+
renderTitle?: ReactElement;
|
|
2394
2395
|
}
|
|
2395
2396
|
declare const PaginationControl: FunctionComponent<PaginationControlProps>;
|
|
2396
2397
|
|