/** * * StepItem is a helper component for Stepper component. * * [Live Demo](https://www.primevue.org/stepper/) * * @module stepitem * */ import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core'; import type { ComponentHooks } from '@primevue/core/basecomponent'; import type { PassThroughOptions } from 'primevue/passthrough'; import { VNode } from 'vue'; export declare type StepItemPassThroughOptionType = StepItemPassThroughAttributes | ((options: StepItemPassThroughMethodOptions) => StepItemPassThroughAttributes | string) | string | null | undefined; /** * Custom passthrough(pt) option method. */ export interface StepItemPassThroughMethodOptions { /** * Defines instance. */ instance: any; /** * Defines valid properties. */ props: StepItemProps; /** * 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 StepItemProps.pt} */ export interface StepItemPassThroughOptions { /** * Used to pass attributes to the root's DOM element. */ root?: StepItemPassThroughOptionType; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; } export interface StepItemPassThroughAttributes { [key: string]: any; } /** * Defines valid properties in StepItem component. */ export interface StepItemProps { /** * Value of step. */ value?: string | number | undefined; /** * It generates scoped CSS variables using design tokens for the component. */ dt?: DesignToken; /** * Used to pass attributes to DOM elements inside the component. * @type {StepItemPassThroughOptions} */ pt?: PassThrough; /** * Used to configure passthrough(pt) options of the component. * @type {PassThroughOptions} */ ptOptions?: PassThroughOptions; } /** * Defines valid slots in StepItem slots. */ export interface StepItemSlots { /** * Custom content template. */ default(): VNode[]; } export interface StepItemEmitsOptions {} export declare type StepItemEmits = EmitFn; /** * **PrimeVue - StepItem** * * _StepItem is a helper component for Stepper component._ * * [Live Demo](https://www.primevue.org/stepper/) * --- --- * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) * * @group Component * */ declare const StepItem: DefineComponent; declare module 'vue' { export interface GlobalComponents { StepItem: GlobalComponentConstructor; } } export default StepItem;