-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsidebar.js
More file actions
208 lines (208 loc) · 5.07 KB
/
sidebar.js
File metadata and controls
208 lines (208 loc) · 5.07 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
module.exports = [
{
title: '概览',
collapsable: false,
children: [
{
title: '介绍',
path: '/guide/intro'
},
{
title: '快速上手',
path: '/guide/quick-start'
},
{
title: '更新日志',
path: '/guide/changelog'
},
{
title: '主题与样式',
path: '/guide/theme'
},
{
title: '设计变量',
path: '/guide/design-tokens'
},
{
title: '联系我们',
path: '/guide/contact'
}
]
},
{
title: '组件',
collapsable: false,
children: [
{
title: '基础',
collapsable: false,
children: [
{
title: 'Button 按钮',
path: '/components/base/button'
},
{
title: 'ButtonGroup 按钮组',
path: '/components/base/button-group'
},
{
title: 'Icon 图标',
path: '/components/base/icon'
},
{
title: 'Divider 分割线',
path: '/components/base/divider'
},
{
title: 'FloatBall 悬浮球',
path: '/components/base/float-ball'
},
{
title: 'Loading 加载',
path: '/components/base/loading'
},
{
title: 'Collapse 展开收起',
path: '/components/base/collapse'
},
{
title: 'Calendar 日历',
path: '/components/base/calendar'
}
// {
// title: 'Style 内置样式'
// }
// {
// title: '其他基础组件'
// }
]
},
{
title: '表单',
collapsable: false,
children: [
{
title: 'Checkbox 复选框',
path: '/components/base/checkbox'
},
{
title: 'CheckboxGroup 复选框组',
path: '/components/base/checkbox-group'
},
{
title: 'Radio 单选框',
path: '/components/base/radio'
},
{
title: 'RadioGroup 单选框组',
path: '/components/base/radio-group'
},
{
title: 'Textarea 文本输入框',
path: '/components/base/textarea'
},
{
title: 'Picker 选择器',
path: '/components/base/picker'
},
{
title: 'CascadePicker 级联选择器',
path: '/components/base/cascade-picker'
},
{
title: 'DatePicker 日期选择器',
path: '/components/base/date-picker'
},
{
title: 'TimePicker 时间选择器',
path: '/components/base/time-picker'
},
{
title: 'Rate 评分',
path: '/components/base/rate'
},
{
title: 'Switch 滑动开关',
path: '/components/base/switch'
},
{
title: 'CalendarModal 日历弹框',
path: '/components/base/calendar-modal'
}
]
},
{
title: '弹出层',
collapsable: false,
children: [
{
title: 'Popup 弹出层',
path: '/components/popup/popup'
},
{
title: 'Toast 轻提示',
path: '/components/popup/toast'
},
{
title: 'Dialog 弹出框',
path: '/components/popup/dialog'
},
{
title: 'Modal 半浮层弹窗',
path: '/components/popup/modal'
},
{
title: 'Tip 提示',
path: '/components/base/tip'
}
]
},
{
title: '组合组件',
collapsable: false,
children: [
{
title: 'RadioModal',
path: '/components/popup/radio-modal'
},
{
title: 'CheckboxModal',
path: '/components/popup/checkbox-modal'
},
{
title: 'PickerModal',
path: '/components/popup/picker-modal'
},
{
title: 'CascadePickerModal',
path: '/components/popup/cascade-picker-modal'
},
{
title: 'DatePickerModal',
path: '/components/popup/date-picker-modal'
},
{
title: 'TimePickerModal',
path: '/components/popup/time-picker-modal'
},
{
title: 'PickerPopup',
path: '/components/popup/picker-popup'
},
{
title: 'CascadePickerPopup',
path: '/components/popup/cascade-picker-popup'
},
{
title: 'DatePickerPopup',
path: '/components/popup/date-picker-popup'
},
{
title: 'TimePickerPopup',
path: '/components/popup/time-picker-popup'
}
]
}
]
}
]