mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
Refactor #5266
This commit is contained in:
parent
89610aae03
commit
5cc61a351c
82 changed files with 233 additions and 146 deletions
16
components/lib/stepper/Stepper.d.ts
vendored
16
components/lib/stepper/Stepper.d.ts
vendored
|
@ -7,6 +7,7 @@
|
|||
* @module stepper
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ComponentHooks } from '../basecomponent';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { StepperPanelPassThroughOptionType } from '../stepperpanel';
|
||||
|
@ -53,10 +54,6 @@ export interface StepperPassThroughOptions {
|
|||
* Used to pass attributes to the root's DOM element.
|
||||
*/
|
||||
root?: StepperPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the nav container's DOM element.
|
||||
*/
|
||||
navContainer?: StepperPassThroughOptionType;
|
||||
/**
|
||||
* Used to pass attributes to the nav's DOM element.
|
||||
*/
|
||||
|
@ -151,7 +148,16 @@ export interface StepperProps {
|
|||
/**
|
||||
* Defines valid slots in Stepper component.
|
||||
*/
|
||||
export interface StepperSlots {}
|
||||
export interface StepperSlots {
|
||||
/**
|
||||
* Custom start template.
|
||||
*/
|
||||
start(): VNode[];
|
||||
/**
|
||||
* Custom end template.
|
||||
*/
|
||||
end(): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid emits in Stepper component.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue