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
65
components/lib/divider/Divider.d.ts
vendored
Normal file
65
components/lib/divider/Divider.d.ts
vendored
Normal file
|
@ -0,0 +1,65 @@
|
|||
/**
|
||||
*
|
||||
* Divider is used to separate contents.
|
||||
*
|
||||
* [Live Demo](https://primevue.org/divider)
|
||||
*
|
||||
* @module divider
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in Divider component.
|
||||
*/
|
||||
export interface DividerProps {
|
||||
/**
|
||||
* Alignment of the content.
|
||||
*/
|
||||
align?: 'left' | 'center' | 'right' | 'top' | 'center' | 'bottom' | undefined;
|
||||
/**
|
||||
* Specifies the orientation, valid values are 'horizontal' and 'vertical'.
|
||||
* @defaultValue horizontal
|
||||
*/
|
||||
layout?: 'horizontal' | 'vertical' | undefined;
|
||||
/**
|
||||
* Border style type.
|
||||
* @defaultValue solid
|
||||
*/
|
||||
type?: 'solid' | 'dashed' | 'dotted' | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in Divider slots.
|
||||
*/
|
||||
export interface DividerSlots {
|
||||
/**
|
||||
* Default content slot.
|
||||
*/
|
||||
default(): VNode[];
|
||||
}
|
||||
|
||||
export interface DividerEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - Divider**
|
||||
*
|
||||
* _Divider is used to separate contents._
|
||||
*
|
||||
* [Live Demo](https://primevue.org/divider)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*
|
||||
*/
|
||||
declare class Divider extends ClassComponent<DividerProps, DividerSlots, DividerEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
Divider: GlobalComponentConstructor<Divider>;
|
||||
}
|
||||
}
|
||||
|
||||
export default Divider;
|
Loading…
Add table
Add a link
Reference in a new issue