mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Convert to PrimeVue monorepo
This commit is contained in:
parent
970ba75b06
commit
61929eae75
4144 changed files with 59008 additions and 36177 deletions
78
packages/primevue/scripts/components/fieldset.js
Normal file
78
packages/primevue/scripts/components/fieldset.js
Normal file
|
@ -0,0 +1,78 @@
|
|||
const FieldsetProps = [
|
||||
{
|
||||
name: 'legend',
|
||||
type: 'string',
|
||||
default: 'null',
|
||||
description: 'Header text of the fieldset.'
|
||||
},
|
||||
{
|
||||
name: 'toggleable',
|
||||
type: 'boolean',
|
||||
default: 'null',
|
||||
description: 'When specified, content can toggled by clicking the legend.'
|
||||
},
|
||||
{
|
||||
name: 'collapsed',
|
||||
type: 'boolean',
|
||||
default: 'true',
|
||||
description: 'Defines the default visibility state of the content.'
|
||||
},
|
||||
{
|
||||
name: 'toggleButtonProps',
|
||||
type: 'string',
|
||||
default: 'null',
|
||||
description: 'Used to pass the custom value to read for the AnchorHTMLAttributes inside the component.'
|
||||
},
|
||||
{
|
||||
name: 'pt',
|
||||
type: 'any',
|
||||
default: 'null',
|
||||
description: 'Used to pass attributes to DOM elements inside the component.'
|
||||
},
|
||||
{
|
||||
name: 'unstyled',
|
||||
type: 'boolean',
|
||||
default: 'false',
|
||||
description: 'When enabled, it removes component related styles in the core.'
|
||||
}
|
||||
];
|
||||
|
||||
const FieldsetEvents = [
|
||||
{
|
||||
name: 'toggle',
|
||||
description: 'Callback to invoke when a tab gets expanded or collapsed.',
|
||||
arguments: [
|
||||
{
|
||||
name: 'event.originalEvent',
|
||||
type: 'object',
|
||||
description: 'Browser event'
|
||||
},
|
||||
{
|
||||
name: 'event.value',
|
||||
type: 'boolean',
|
||||
description: 'collapsed state as a boolean'
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
const FieldsetSlots = [
|
||||
{
|
||||
name: 'legend',
|
||||
description: 'Custom legend template.'
|
||||
},
|
||||
{
|
||||
name: 'toggleicon',
|
||||
description: 'Custom toggler icon template.'
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
fieldset: {
|
||||
name: 'Fieldset',
|
||||
description: 'Fieldset is a grouping component with the optional content toggle feature.',
|
||||
props: FieldsetProps,
|
||||
events: FieldsetEvents,
|
||||
slots: FieldsetSlots
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue