@mateosuarezdev/react-ui 1.0.22 → 1.0.24
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +14 -0
- package/dist/index.js +2013 -1768
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -434,6 +434,20 @@ declare type OverflowInfo = {
|
|
|
434
434
|
scrollTop: number;
|
|
435
435
|
};
|
|
436
436
|
|
|
437
|
+
export declare const PageScroller: default_2.FC<PageScrollerProps>;
|
|
438
|
+
|
|
439
|
+
declare interface PageScrollerProps {
|
|
440
|
+
tabPage?: boolean;
|
|
441
|
+
navBar?: default_2.ReactNode;
|
|
442
|
+
children: default_2.ReactNode;
|
|
443
|
+
onRefresh?: () => Promise<void>;
|
|
444
|
+
style?: default_2.CSSProperties;
|
|
445
|
+
className?: string;
|
|
446
|
+
contentClassName?: string;
|
|
447
|
+
bounceBackDuration?: number;
|
|
448
|
+
showScrollbar?: boolean;
|
|
449
|
+
}
|
|
450
|
+
|
|
437
451
|
export declare const PageTitle: ({ title, description, size, descriptionClassName, className, }: {
|
|
438
452
|
title: string;
|
|
439
453
|
description?: string;
|