primevue-mirror/api-generator/components/steps.js

55 lines
1.3 KiB
JavaScript
Raw Normal View History

const StepsProps = [
{
2022-09-14 14:26:41 +00:00
name: 'id',
type: 'string',
default: 'null',
description: 'Unique identifier of the element.'
},
{
2022-09-14 14:26:41 +00:00
name: 'model',
type: 'array',
default: 'null',
description: 'An array of menuitems.'
},
{
2022-09-14 14:26:41 +00:00
name: 'readonly',
type: 'boolean',
default: 'true',
description: 'Whether the items are clickable or not.'
},
{
2022-09-14 14:26:41 +00:00
name: 'exact',
type: 'boolean',
default: 'true',
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
2023-04-26 09:58:46 +00:00
},
{
name: 'pt',
type: 'any',
default: 'null',
2023-08-01 14:01:12 +00:00
description: 'Used to pass attributes to DOM elements inside the component.'
2023-07-06 13:20:37 +00:00
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
}
];
const StepsSlots = [
{
2022-09-14 14:26:41 +00:00
name: 'item',
description: 'Template of a menuitem.'
}
];
module.exports = {
steps: {
2022-09-14 14:26:41 +00:00
name: 'steps',
description: 'Steps components is an indicator for the steps in a wizard workflow.',
props: StepsProps,
slots: StepsSlots
}
};