primevue-mirror/api-generator/components/scrolltop.js

35 lines
990 B
JavaScript
Raw Normal View History

const ScrollTopProps = [
{
2022-09-14 14:26:41 +00:00
name: 'target',
type: 'string',
default: 'window',
description: 'Target of the ScrollTop, valid values are "window" and "parent".'
},
{
2022-09-14 14:26:41 +00:00
name: 'threshold',
type: 'number',
default: '400',
description: 'Defines the threshold value of the vertical scroll position of the target to toggle the visibility.'
},
{
2022-09-14 14:26:41 +00:00
name: 'icon',
type: 'string',
default: 'pi pi-chevron-up',
description: 'Icon to display.'
},
{
2022-09-14 14:26:41 +00:00
name: 'behavior',
type: 'string',
default: 'smooth',
description: 'Defines the scrolling behavi, "smooth" adds an animation and "auto" scrolls with a jump.'
}
];
module.exports = {
scrolltop: {
2022-09-14 14:26:41 +00:00
name: 'ScrollTop',
description: 'ScrollTop gets displayed after a certain scroll position and used to navigates to the top of the page quickly.',
props: ScrollTopProps
}
};