2024-02-13 06:22:45 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Stepper is a component that streamlines a wizard-like workflow, organizing content into coherent steps and visually guiding users through a numbered progression in a multi-step process.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/stepper/)
|
|
|
|
*
|
|
|
|
* @module stepper
|
|
|
|
*
|
|
|
|
*/
|
2024-02-20 14:47:55 +00:00
|
|
|
import { VNode } from 'vue';
|
2024-02-13 06:22:45 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
|
|
|
import { PassThroughOptions } from '../passthrough';
|
|
|
|
import { StepperPanelPassThroughOptionType } from '../stepperpanel';
|
2024-05-16 10:50:43 +00:00
|
|
|
import { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
2024-02-13 06:22:45 +00:00
|
|
|
|
|
|
|
export declare type StepperPassThroughOptionType = StepperPassThroughAttributes | ((options: StepperPassThroughMethodOptions) => StepperPassThroughAttributes | string) | string | null | undefined;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface StepperPassThroughMethodOptions {
|
|
|
|
/**
|
|
|
|
* Defines instance.
|
|
|
|
*/
|
|
|
|
instance: any;
|
|
|
|
/**
|
|
|
|
* Defines valid properties.
|
|
|
|
*/
|
|
|
|
props: StepperProps;
|
|
|
|
/**
|
|
|
|
* Defines current inline state.
|
|
|
|
*/
|
|
|
|
state: StepperState;
|
|
|
|
/**
|
|
|
|
* 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 StepperProps.pt}
|
|
|
|
*/
|
|
|
|
export interface StepperPassThroughOptions {
|
|
|
|
/**
|
2024-05-15 09:24:26 +00:00
|
|
|
* Used to pass attributes to the root's DOM element.
|
2024-02-13 06:22:45 +00:00
|
|
|
*/
|
|
|
|
root?: StepperPassThroughOptionType;
|
|
|
|
/**
|
2024-05-15 09:24:26 +00:00
|
|
|
* Used to pass attributes to the list's DOM element.
|
2024-02-13 06:22:45 +00:00
|
|
|
*/
|
2024-04-30 14:09:49 +00:00
|
|
|
list?: StepperPassThroughOptionType;
|
2024-02-13 06:22:45 +00:00
|
|
|
/**
|
2024-04-30 14:09:49 +00:00
|
|
|
* Used to pass attributes to the panels' DOM element.
|
2024-02-13 06:22:45 +00:00
|
|
|
*/
|
2024-04-30 14:09:49 +00:00
|
|
|
panels?: StepperPassThroughOptionType;
|
2024-02-13 06:22:45 +00:00
|
|
|
/**
|
2024-05-15 09:24:26 +00:00
|
|
|
* Used to pass attributes to the end handler's DOM element.
|
2024-02-13 06:22:45 +00:00
|
|
|
*/
|
|
|
|
stepperpanel?: StepperPanelPassThroughOptionType;
|
|
|
|
/**
|
|
|
|
* Used to manage all lifecycle hooks.
|
|
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
|
|
*/
|
|
|
|
hooks?: ComponentHooks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough attributes for each DOM elements
|
|
|
|
*/
|
|
|
|
export interface StepperPassThroughAttributes {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines current inline state in Stepper component.
|
|
|
|
*/
|
|
|
|
export interface StepperState {
|
|
|
|
/**
|
|
|
|
* Current active index state.
|
|
|
|
*/
|
|
|
|
d_activeStep: number;
|
|
|
|
/**
|
|
|
|
* Unique id for the Stepper component.
|
|
|
|
*/
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom tab change event.
|
2024-05-16 14:05:43 +00:00
|
|
|
* @see {@link StepperEmitsOptions['step-change']}
|
2024-02-13 06:22:45 +00:00
|
|
|
*/
|
|
|
|
export interface StepperChangeEvent {
|
|
|
|
/**
|
|
|
|
* Browser event
|
|
|
|
*/
|
|
|
|
originalEvent: Event;
|
|
|
|
/**
|
|
|
|
* Index of the selected stepper panel
|
|
|
|
*/
|
|
|
|
index: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines valid properties in Stepper component.
|
|
|
|
*/
|
|
|
|
export interface StepperProps {
|
|
|
|
/**
|
|
|
|
* Active step index of stepper.
|
|
|
|
* @defaultValue 0
|
|
|
|
*/
|
|
|
|
activeStep?: number | undefined;
|
|
|
|
/**
|
|
|
|
* Orientation of the stepper.
|
|
|
|
* @defaultValue horizontal
|
|
|
|
*/
|
|
|
|
orientation?: 'horizontal' | 'vertical' | undefined;
|
|
|
|
/**
|
|
|
|
* Whether the steps are clickable or not.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
linear?: boolean | undefined;
|
2024-04-02 08:24:31 +00:00
|
|
|
/**
|
|
|
|
* It generates scoped CSS variables using design tokens for the component.
|
|
|
|
*/
|
|
|
|
dt?: DesignToken<any>;
|
2024-02-13 06:22:45 +00:00
|
|
|
/**
|
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
|
|
|
* @type {StepperPassThroughOptions}
|
|
|
|
*/
|
|
|
|
pt?: PassThrough<StepperPassThroughOptions>;
|
|
|
|
/**
|
|
|
|
* 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 Stepper component.
|
|
|
|
*/
|
2024-02-20 14:47:55 +00:00
|
|
|
export interface StepperSlots {
|
|
|
|
/**
|
|
|
|
* Custom start template.
|
|
|
|
*/
|
|
|
|
start(): VNode[];
|
|
|
|
/**
|
|
|
|
* Custom end template.
|
|
|
|
*/
|
|
|
|
end(): VNode[];
|
|
|
|
}
|
2024-02-13 06:22:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines valid emits in Stepper component.
|
|
|
|
*/
|
2024-05-16 14:05:43 +00:00
|
|
|
export interface StepperEmitsOptions {
|
2024-02-13 06:22:45 +00:00
|
|
|
/**
|
|
|
|
* Emitted when the value changes.
|
|
|
|
* @param {number | number[]} value - New value.
|
|
|
|
*/
|
|
|
|
'update:activeStep'(value: number): void;
|
|
|
|
/**
|
|
|
|
* Callback to invoke when an active panel is changed.
|
|
|
|
*/
|
|
|
|
'step-change'(event: StepperChangeEvent): void;
|
|
|
|
}
|
|
|
|
|
2024-05-16 10:50:43 +00:00
|
|
|
export declare type StepperEmits = EmitFn<StepperEmitsOptions>;
|
|
|
|
|
2024-02-13 06:22:45 +00:00
|
|
|
/**
|
|
|
|
* **PrimeVue - Stepper**
|
|
|
|
*
|
|
|
|
* _Stepper is a component that streamlines a wizard-like workflow, organizing content into coherent steps and visually guiding users through a numbered progression in a multi-step process._
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/stepper/)
|
|
|
|
* --- ---
|
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*
|
|
|
|
*/
|
2024-05-16 10:50:43 +00:00
|
|
|
declare const Stepper: DefineComponent<StepperProps, StepperSlots, StepperEmits>;
|
2024-02-13 06:22:45 +00:00
|
|
|
|
2024-03-14 22:58:11 +00:00
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
2024-05-16 10:50:43 +00:00
|
|
|
Stepper: GlobalComponentConstructor<StepperProps, StepperSlots, StepperEmits>;
|
2024-02-13 06:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Stepper;
|