2023-05-10 11:39:25 +00:00
|
|
|
const ColumnGroupProps = [
|
|
|
|
{
|
|
|
|
name: 'type',
|
|
|
|
type: 'string',
|
|
|
|
default: 'null',
|
|
|
|
description: 'Defines the type of the group.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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-05-10 11:39:25 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2022-09-12 07:13:52 +00:00
|
|
|
module.exports = {
|
|
|
|
columngroup: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'ColumnGroup',
|
|
|
|
description: 'Columns can be grouped at header and footer sections by defining a ColumnGroup with nested rows and columns',
|
2023-05-10 11:39:25 +00:00
|
|
|
'doc-url': 'datatable',
|
|
|
|
props: ColumnGroupProps
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
};
|