mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Styles imported. Components added
This commit is contained in:
parent
3cb3910561
commit
8264983db4
452 changed files with 55902 additions and 0 deletions
34
components/scrollpanel/ScrollPanel.d.ts
vendored
Normal file
34
components/scrollpanel/ScrollPanel.d.ts
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
import { VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
export interface ScrollPanelProps {
|
||||
}
|
||||
|
||||
export interface ScrollPanelSlots {
|
||||
/**
|
||||
* Custom content slot.
|
||||
*/
|
||||
default: () => VNode[];
|
||||
}
|
||||
|
||||
export declare type ScrollPanelEmits = {
|
||||
}
|
||||
|
||||
declare class ScrollPanel extends ClassComponent<ScrollPanelProps, ScrollPanelSlots, ScrollPanelEmits> { }
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
ScrollPanel: GlobalComponentConstructor<ScrollPanel>
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [ScrollPanel](https://www.primefaces.org/primevue/showcase/#/scrollpanel)
|
||||
*
|
||||
*/
|
||||
export default ScrollPanel;
|
Loading…
Add table
Add a link
Reference in a new issue