mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Components added. Build issues fixed
This commit is contained in:
parent
5b66ed1093
commit
18c3721848
344 changed files with 12446 additions and 8758 deletions
14
components/scrollpanel/ScrollPanel.d.ts
vendored
14
components/scrollpanel/ScrollPanel.d.ts
vendored
|
@ -2,6 +2,11 @@ import { VNode } from 'vue';
|
|||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
export interface ScrollPanelProps {
|
||||
/**
|
||||
* Step factor to scroll the content while pressing the arrow keys.
|
||||
* Default value is 5.
|
||||
*/
|
||||
step?: number | undefined;
|
||||
}
|
||||
|
||||
export interface ScrollPanelSlots {
|
||||
|
@ -11,14 +16,13 @@ export interface ScrollPanelSlots {
|
|||
default: () => VNode[];
|
||||
}
|
||||
|
||||
export declare type ScrollPanelEmits = {
|
||||
}
|
||||
export declare type ScrollPanelEmits = {};
|
||||
|
||||
declare class ScrollPanel extends ClassComponent<ScrollPanelProps, ScrollPanelSlots, ScrollPanelEmits> { }
|
||||
declare class ScrollPanel extends ClassComponent<ScrollPanelProps, ScrollPanelSlots, ScrollPanelEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
ScrollPanel: GlobalComponentConstructor<ScrollPanel>
|
||||
ScrollPanel: GlobalComponentConstructor<ScrollPanel>;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -28,7 +32,7 @@ declare module '@vue/runtime-core' {
|
|||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [ScrollPanel](https://www.primefaces.org/primevue/showcase/#/scrollpanel)
|
||||
* - [ScrollPanel](https://www.primefaces.org/primevue/scrollpanel)
|
||||
*
|
||||
*/
|
||||
export default ScrollPanel;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue