Components added. Build issues fixed

This commit is contained in:
Bahadir Sofuoglu 2022-09-14 14:26:01 +03:00
parent 5b66ed1093
commit 18c3721848
344 changed files with 12446 additions and 8758 deletions

View file

@ -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;