primevue-mirror/components/lib/steps/Steps.d.ts

144 lines
3.5 KiB
TypeScript
Raw Normal View History

2023-03-01 13:04:38 +00:00
/**
*
* Steps components is an indicator for the steps in a wizard workflow. Example below uses nested routes with Steps.
*
* [Live Demo](https://www.primevue.org/steps/)
*
* @module steps
*
*/
2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
2023-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2022-09-06 12:03:37 +00:00
import { MenuItem } from '../menuitem';
2023-03-01 13:04:38 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2022-09-06 12:03:37 +00:00
export declare type StepsPassThroughOptionType = StepsPassThroughAttributes | ((options: StepsPassThroughMethodOptions) => StepsPassThroughAttributes | string) | string | null | undefined;
2023-04-26 09:58:46 +00:00
/**
* Custom passthrough(pt) option method.
*/
export interface StepsPassThroughMethodOptions {
2023-07-06 12:01:33 +00:00
instance: any;
2023-04-26 09:58:46 +00:00
props: StepsProps;
}
/**
* Custom passthrough(pt) options.
* @see {@link StepsProps.pt}
*/
export interface StepsPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
*/
root?: StepsPassThroughOptionType;
/**
* Uses to pass attributes to the list's DOM element.
*/
menu?: StepsPassThroughOptionType;
/**
* Uses to pass attributes to the list item's DOM element.
*/
menuitem?: StepsPassThroughOptionType;
/**
* Uses to pass attributes to the action's DOM element.
*/
action?: StepsPassThroughOptionType;
/**
* Uses to pass attributes to the step's DOM element.
*/
step?: StepsPassThroughOptionType;
/**
* Uses to pass attributes to the label's DOM element.
*/
label?: StepsPassThroughOptionType;
2023-07-06 11:09:01 +00:00
/**
* Uses to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
2023-04-26 09:58:46 +00:00
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface StepsPassThroughAttributes {
[key: string]: any;
}
2023-03-01 13:04:38 +00:00
/**
* Defines valid properties in Steps component.
*/
2022-09-06 12:03:37 +00:00
export interface StepsProps {
/**
* Unique identifier of the element.
*/
id?: string | undefined;
/**
* An array of menuitems.
*/
model?: MenuItem[] | undefined;
/**
* Whether the items are clickable or not.
2023-03-01 13:04:38 +00:00
* @defaultValue true
2022-09-06 12:03:37 +00:00
*/
readonly?: boolean | undefined;
/**
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
2023-03-01 13:04:38 +00:00
* @defaultValue true
2022-09-06 12:03:37 +00:00
*/
exact?: boolean | undefined;
2023-04-26 09:58:46 +00:00
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {StepsPassThroughOptions}
*/
pt?: StepsPassThroughOptions;
2023-05-30 11:58:41 +00:00
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
2022-09-06 12:03:37 +00:00
}
2023-03-01 13:04:38 +00:00
/**
* Defines valid slots in Steps component.
*/
2022-09-06 12:03:37 +00:00
export interface StepsSlots {
/**
* Custom item template.
* @param {Object} scope - item slot's params.
*/
2023-03-01 13:04:38 +00:00
item(scope: {
2022-09-06 12:03:37 +00:00
/**
* Menuitem instance
*/
item: MenuItem;
2023-03-01 13:04:38 +00:00
}): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 13:04:38 +00:00
/**
* Defines valid emits in Steps component.
*/
export interface StepsEmits {}
2022-09-06 12:03:37 +00:00
2023-03-01 13:04:38 +00:00
/**
* **PrimeVue - Steps**
*
* _Steps components is an indicator for the steps in a wizard workflow. Example below uses nested routes with Steps._
*
* [Live Demo](https://www.primevue.org/steps/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-01 13:04:38 +00:00
*
* @group Component
*
*/
2022-09-14 11:26:01 +00:00
declare class Steps extends ClassComponent<StepsProps, StepsSlots, StepsEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Steps: GlobalComponentConstructor<Steps>;
2022-09-06 12:03:37 +00:00
}
}
export default Steps;