mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
56
components/scrollpanel/ScrollPanel.d.ts
vendored
56
components/scrollpanel/ScrollPanel.d.ts
vendored
|
@ -1,56 +0,0 @@
|
|||
/**
|
||||
*
|
||||
* ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/scrollpanel/)
|
||||
*
|
||||
* @module scrollpanel
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in ScrollPanel component.
|
||||
*/
|
||||
export interface ScrollPanelProps {
|
||||
/**
|
||||
* Step factor to scroll the content while pressing the arrow keys.
|
||||
* @defaultValue 5
|
||||
*/
|
||||
step?: number | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in Accordion slots.
|
||||
*/
|
||||
export interface ScrollPanelSlots {
|
||||
/**
|
||||
* Custom content slot.
|
||||
*/
|
||||
default: () => VNode[];
|
||||
}
|
||||
|
||||
export interface ScrollPanelEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - ScrollPanel**
|
||||
*
|
||||
* _ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/scrollpanel/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*
|
||||
*/
|
||||
declare class ScrollPanel extends ClassComponent<ScrollPanelProps, ScrollPanelSlots, ScrollPanelEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
ScrollPanel: GlobalComponentConstructor<ScrollPanel>;
|
||||
}
|
||||
}
|
||||
|
||||
export default ScrollPanel;
|
Loading…
Add table
Add a link
Reference in a new issue