mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42: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
59
components/lib/splitterpanel/SplitterPanel.d.ts
vendored
Normal file
59
components/lib/splitterpanel/SplitterPanel.d.ts
vendored
Normal file
|
@ -0,0 +1,59 @@
|
|||
/**
|
||||
*
|
||||
* SplitterPanel is a helper component for Splitter component.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/splitter/)
|
||||
*
|
||||
* @module splitterpanel
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in SplitterPanel component.
|
||||
*/
|
||||
export interface SplitterPanelProps {
|
||||
/**
|
||||
* Size of the element relative to 100%.
|
||||
*/
|
||||
size?: number | undefined;
|
||||
/**
|
||||
* Minimum size of the element relative to 100%.
|
||||
*/
|
||||
minSize?: number | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in SplitterPanel slots.
|
||||
*/
|
||||
export interface SplitterPanelSlots {
|
||||
/**
|
||||
* Custom content template.
|
||||
*/
|
||||
default: () => VNode[];
|
||||
}
|
||||
|
||||
export interface SplitterPanelEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - SplitterPanel**
|
||||
*
|
||||
* _SplitterPanel is a helper component for Splitter component._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/splitterpanel/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*
|
||||
*/
|
||||
declare class SplitterPanel extends ClassComponent<SplitterPanelProps, SplitterPanelSlots, SplitterPanelEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
SplitterPanel: GlobalComponentConstructor<SplitterPanel>;
|
||||
}
|
||||
}
|
||||
|
||||
export default SplitterPanel;
|
Loading…
Add table
Add a link
Reference in a new issue