2022-09-12 07:13:52 +00:00
const TimelineProps = [
{
2022-09-14 14:26:41 +00:00
name : 'value' ,
type : 'array' ,
default : 'null' ,
description : 'An array of events to display.'
2022-09-12 07:13:52 +00:00
} ,
{
2022-09-14 14:26:41 +00:00
name : 'align' ,
type : 'string' ,
default : 'left' ,
2022-09-12 07:13:52 +00:00
description : 'Position of the timeline bar relative to the content. Valid values are "left", "right" and "alternate" for vertical layout and "top", "bottom" for horizontal layout.'
} ,
{
2022-09-14 14:26:41 +00:00
name : 'layout' ,
type : 'string' ,
default : 'vertical' ,
2022-09-12 07:13:52 +00:00
description : 'Orientation of the timeline, valid values are "vertical" and "horizontal".'
} ,
{
2022-09-14 14:26:41 +00:00
name : 'dataKey' ,
type : 'string' ,
default : 'null' ,
description : 'Name of the field that uniquely identifies the a record in the data.'
2023-05-10 07:28:34 +00:00
} ,
{
name : 'pt' ,
type : 'any' ,
default : 'null' ,
description : 'Uses to pass attributes to DOM elements inside the component.'
2022-09-12 07:13:52 +00:00
}
] ;
const TimelineSlots = [
{
2022-09-14 14:26:41 +00:00
name : 'opposite' ,
description : 'Custom content for the content to be placed at the other side of the bar'
2022-09-12 07:13:52 +00:00
} ,
{
2022-09-14 14:26:41 +00:00
name : 'marker' ,
description : 'Custom content for the marker'
2022-09-12 07:13:52 +00:00
} ,
{
2022-09-14 14:26:41 +00:00
name : 'content' ,
description : 'Custom content'
2022-09-12 07:13:52 +00:00
} ,
{
2022-09-14 14:26:41 +00:00
name : 'connector' ,
description : 'Connector element'
2022-09-12 07:13:52 +00:00
}
] ;
module . exports = {
timeline : {
2022-09-14 14:26:41 +00:00
name : 'Timeline' ,
description : 'Timeline visualizes a series of chained events.' ,
2022-09-12 07:13:52 +00:00
props : TimelineProps ,
slots : TimelineSlots
}
} ;