forked from atinc/ngx-tethys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.docgenirc.js
126 lines (126 loc) · 3.43 KB
/
.docgenirc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* @type {import('@docgeni/core').DocgeniConfig}
*/
module.exports = {
mode: 'full',
title: 'TETHYS',
siteProjectName: 'site',
repoUrl: 'https://github.com/atinc/ngx-tethys',
logoUrl: 'https://cdn.worktile.com/open-sources/ngx-tethys/logos/tethys.png?100',
navs: [
null,
{
title: '组件',
path: 'components',
lib: 'ngx-tethys',
locales: {
'en-us': {
title: 'Components'
}
}
},
{
title: 'GitHub',
path: 'https://github.com/atinc/ngx-tethys',
isExternal: true
},
{
title: '更新日志',
path: 'https://github.com/atinc/ngx-tethys/blob/master/CHANGELOG.md',
isExternal: true,
locales: {
'en-us': {
title: 'Changelog'
}
}
}
],
libs: [
{
name: 'ngx-tethys',
abbrName: 'thy',
rootDir: './src',
exclude: ['shared', 'core', 'time-picker'],
apiMode: 'compatible',
categories: [
{
id: 'general',
title: '通用',
locales: {
'en-us': {
title: 'General'
}
}
},
{
id: 'layout',
title: '布局',
locales: {
'en-us': {
title: 'Layout'
}
}
},
{
id: 'nav',
title: '导航',
locales: {
'en-us': {
title: 'Navigation'
}
}
},
{
id: 'form',
title: '数据录入',
locales: {
'en-us': {
title: 'Data Input'
}
}
},
{
id: 'display',
title: '数据展示',
locales: {
'en-us': {
title: 'Data Show'
}
}
},
{
id: 'feedback',
title: '反馈',
locales: {
'en-us': {
title: 'Feedback'
}
}
},
{
id: 'other',
title: '其他',
locales: {
'en-us': {
title: 'Others'
}
}
}
],
labels: {
'lack-doc': {
text: 'Lack Doc',
color: '#2dbcff'
}
}
}
],
footer: "Copyright © 2020-present Powered by <a href='https://worktile.com' target='_blank' >Worktile</a>",
locales: [
{
key: 'zh-cn',
name: 'ZH'
}
],
defaultLocale: 'zh-cn'
};