2023-05-10 11:39:25 +00:00
|
|
|
const RowProps = [
|
|
|
|
{
|
|
|
|
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 = {
|
|
|
|
row: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'Row',
|
|
|
|
description: 'DataTable can be grouped by defining a Row component with nested columns',
|
2023-05-10 11:39:25 +00:00
|
|
|
'doc-url': 'datatable',
|
|
|
|
props: RowProps
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
};
|