UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

144 lines (132 loc) 3.6 kB
/** * * Divider is used to separate contents. * * [Live Demo](https://primevue.org/divider) * * @module divider * */ import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core'; import type { ComponentHooks } from '@primevue/core/basecomponent'; import type { PassThroughOptions } from 'primevue/passthrough'; import { VNode } from 'vue'; export declare type DividerPassThroughOptionType = DividerPassThroughAttributes | ((options: DividerPassThroughMethodOptions) => DividerPassThroughAttributes | string) | string | null | undefined; /** * Custom passthrough(pt) option method. */ export interface DividerPassThroughMethodOptions { /** * Defines instance. */ instance: any; /** * Defines valid properties. */ props: DividerProps; /** * Defines valid attributes. */ attrs: any; /** * Defines parent options. */ parent: any; /** * Defines passthrough(pt) options in global config. */ global: object | undefined; } /** * Custom passthrough(pt) options. * @see {@link DividerProps.pt} */ export interface DividerPassThroughOptions { /** * Used to pass attributes to the root's DOM element. */ root?: DividerPassThroughOptionType; /** * Used to pass attributes to the content's DOM element. */ content?: DividerPassThroughOptionType; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; } /** * Custom passthrough attributes for each DOM elements */ export interface DividerPassThroughAttributes { [key: string]: any; } /** * Defines valid properties in Divider component. */ export interface DividerProps { /** * Alignment of the content. */ align?: HintedString<'left' | 'center' | 'right' | 'top' | 'center' | 'bottom'> | undefined; /** * Specifies the orientation, valid values are 'horizontal' and 'vertical'. * @defaultValue horizontal */ layout?: HintedString<'horizontal' | 'vertical'> | undefined; /** * Border style type. * @defaultValue solid */ type?: HintedString<'solid' | 'dashed' | 'dotted'> | undefined; /** * It generates scoped CSS variables using design tokens for the component. */ dt?: DesignToken<any>; /** * Used to pass attributes to DOM elements inside the component. * @type {DividerPassThroughOptions} */ pt?: PassThrough<DividerPassThroughOptions>; /** * Used to configure passthrough(pt) options of the component. * @type {PassThroughOptions} */ ptOptions?: PassThroughOptions; /** * When enabled, it removes component related styles in the core. * @defaultValue false */ unstyled?: boolean; } /** * Defines valid slots in Divider slots. */ export interface DividerSlots { /** * Default content slot. */ default(): VNode[]; } export interface DividerEmitsOptions {} export declare type DividerEmits = EmitFn<DividerEmitsOptions>; /** * **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 const Divider: DefineComponent<DividerProps, DividerSlots, DividerEmits>; declare module 'vue' { export interface GlobalComponents { Divider: DefineComponent<DividerProps, DividerSlots, DividerEmits>; } } export default Divider;