Fixed #3802 - Improve folder structure for nuxt configurations

This commit is contained in:
mertsincan 2023-03-26 06:22:57 +01:00
parent 851950270b
commit f5fe822afb
563 changed files with 1703 additions and 1095 deletions

65
components/lib/divider/Divider.d.ts vendored Normal file
View 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)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*
*/
declare class Divider extends ClassComponent<DividerProps, DividerSlots, DividerEmits> {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
Divider: GlobalComponentConstructor<Divider>;
}
}
export default Divider;