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

59 lines
1.4 KiB
JavaScript
Raw Normal View History

const SkeletonProps = [
{
2022-09-14 14:26:41 +00:00
name: 'shape',
type: 'string',
default: 'rectangle',
description: 'Shape of the element, options are "rectangle" and "circle".'
},
{
2022-09-14 14:26:41 +00:00
name: 'size',
type: 'string',
default: 'null',
description: 'Size of the Circle or Square.'
},
{
2022-09-14 14:26:41 +00:00
name: 'width',
type: 'string',
default: '100%',
description: 'Width of the element.'
},
{
2022-09-14 14:26:41 +00:00
name: 'height',
type: 'string',
default: '1rem',
description: 'Height of the element.'
},
{
2022-09-14 14:26:41 +00:00
name: 'borderRadius',
type: 'string',
default: 'null',
description: 'Border radius of the element, defaults to value from theme.'
},
{
2022-09-14 14:26:41 +00:00
name: 'animation',
type: 'string',
default: 'wave',
description: 'Type of the animation, valid options are "wave" and "none".'
2023-04-24 09:43:33 +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.'
}
];
module.exports = {
skeleton: {
2022-09-14 14:26:41 +00:00
name: 'Skeleton',
description: 'Skeleton is a placeholder to display instead of the actual content.',
props: SkeletonProps
}
};