@mateosuarezdev/react-ui 1.0.22 → 1.0.25
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 +20 -0
- package/dist/index.js +1854 -1608
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -434,6 +434,26 @@ 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
|
+
/**
|
|
442
|
+
* If to position the outer page element as absolute
|
|
443
|
+
* or relative (usually depending on the used routing layout)
|
|
444
|
+
* defaults to true
|
|
445
|
+
*/
|
|
446
|
+
absolute?: boolean;
|
|
447
|
+
navBar?: default_2.ReactNode;
|
|
448
|
+
children: default_2.ReactNode;
|
|
449
|
+
onRefresh?: () => Promise<void>;
|
|
450
|
+
style?: default_2.CSSProperties;
|
|
451
|
+
className?: string;
|
|
452
|
+
contentClassName?: string;
|
|
453
|
+
bounceBackDuration?: number;
|
|
454
|
+
showScrollbar?: boolean;
|
|
455
|
+
}
|
|
456
|
+
|
|
437
457
|
export declare const PageTitle: ({ title, description, size, descriptionClassName, className, }: {
|
|
438
458
|
title: string;
|
|
439
459
|
description?: string;
|