Skip to content

Commit

Permalink
fix: add missed component configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
HandsomeButterball authored and walkerkay committed Jun 22, 2021
1 parent fa11e43 commit 67eb9f7
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions example/src/app/configuration/parameters/api/zh-cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,67 @@ module.exports = [
}
]
},
{
type: 'component',
name: 'ngx-gantt-bar',
description: '数据项条形图展示组件',
properties: [
{
name: 'template',
description: `设置时间条显示模板`,
type: 'TemplateRef<any>'
},
{
name: 'item',
description: `设置时间条显示数据`,
type: 'GanttItemInternal'
},
{
name: 'barClick',
description: `数据项条形图点击事件`,
type: 'EventEmitter<GanttBarClickEvent>'
}
]
},
{
type: 'component',
name: 'ngx-gantt-range',
description: '数据项区间展示组件',
properties: [
{
name: 'template',
description: `设置区间展示模板`,
type: 'TemplateRef<any>'
},
{
name: 'item',
description: `设置区间展示数据`,
type: 'GanttItemInternal'
}
]
},
{
type: 'component',
name: 'ngx-gantt-root',
description: '甘特图根组件',
properties: [
{
name: 'sideWidth',
description: `设置甘特图左侧内容宽度`,
type: 'number'
},
{
name: 'sideTemplate',
description: `设置甘特图左侧内容模板`,
type: 'TemplateRef<any>'
},
{
name: 'mainTemplate',
description: `设置甘特图右侧主要内容模板`,
type: 'TemplateRef<any>'
}
]
}
// {
// type: 'class',
// name: 'GanttItem',
Expand Down

0 comments on commit 67eb9f7

Please sign in to comment.