-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvarlet.config.mjs
611 lines (610 loc) · 13.1 KB
/
varlet.config.mjs
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
import { defineConfig } from '@varlet/cli'
export default defineConfig({
title: 'VARLET UTE',
logo: './logo.svg',
useMobile: true,
analysis: {
baidu: 'https://hm.baidu.com/hm.js?8d065d955a8e118b4b353e886f116a9b',
},
pc: {
title: {
'zh-CN': 'VARLET UI 主题编辑工具',
'en-US': 'VARLET UI theme editor',
},
indexPage: {
description: {
'zh-CN': 'Varlet UI theme editor 是一个基于 VARLET 开发的主题编辑工具,\n由社区团队维护',
'en-US':
'Varlet UI theme editor is a theme editing tool developed based on VARLET,\nMaintained by the community team',
},
features: [
{
name: {
'zh-CN': '全组件支持',
'en-US': 'Full component support',
},
description: {
'zh-CN': '提供所有 VARLET 组件的主题编辑',
'en-US': 'Provides theme editing for all VARLET components',
},
},
{
name: {
'zh-CN': '支持亮色和暗色两种主题',
'en-US': 'Support both light and dark themes',
},
description: {
'zh-CN': '内置亮色和暗色两种主题的预设,支持切换预设进行编辑和导出',
'en-US': 'Built-in presets for light and dark themes, support switching presets for editing and exporting',
},
},
{
name: {
'zh-CN': '主题文件十分轻量',
'en-US': 'Theme files are very lightweight',
},
description: {
'zh-CN': '只导出一个包含主题补丁的 javascript 文件,十分轻量',
'en-US': 'Only export a javascript file of the theme patch, very lightweight',
},
},
{
name: {
'zh-CN': '使用 VARLET CLI 构建',
'en-US': 'Use VARLET CLI build',
},
description: {
'zh-CN': '使用 VARLET CLI 构建,与 VARLET 官方文档的交互体验高度一致',
'en-US':
'Built using VARLET CLI, the interactive experience is consistent with the official VARLET documentation',
},
},
{
name: {
'zh-CN': '国际化',
'en-US': 'Locale',
},
description: {
'zh-CN': '支持中文和英文两种语言',
'en-US': 'Support Chinese and English two languages',
},
},
{
name: {
'zh-CN': '国人开发',
'en-US': 'Developed by Chinese',
},
description: {
'zh-CN': '由国人开发,完善的中英文文档和后勤保障',
'en-US': 'Complete Chinese and English documentation and logistics support',
},
},
],
contributors: {
label: {
'zh-CN': '贡献者',
'en-US': 'Contributors',
},
link: 'https://github.com/sdhushu/varlet-ute/graphs/contributors',
image: 'https://contrib.rocks/image?repo=sdhushu/varlet-ute',
},
license: {
'zh-CN': '主题编辑基于 MIT 协议,您可以自由的使用和分享',
'en-US': 'Theme editing tool under the MIT License, You can use and share freely.',
},
copyright: {
'zh-CN': 'Copyright © 2022 varletjs 组织成员以及 Varlet UI theme editor 的贡献者们',
'en-US': 'Copyright © 2022 varletjs member and Varlet UI theme editor contributors.',
},
},
header: {
versions: null,
i18n: {
'zh-CN': '中文',
'en-US': 'English',
},
playground: null,
github: 'https://github.com/varletjs/varlet-ute',
},
menu: [
{
text: {
'zh-CN': '开发指南',
'en-US': 'Developer guide',
},
type: 1,
},
{
text: {
'zh-CN': '公共样式',
'en-US': 'Common Style',
},
doc: 'common',
type: 2,
},
{
text: {
'zh-CN': '基础组件',
'en-US': 'Basic Components',
},
type: 1,
},
{
text: {
'zh-CN': 'Button 按钮',
'en-US': 'Button',
},
doc: 'button',
type: 2,
},
{
text: {
'zh-CN': 'Fab 悬浮动作按钮',
'en-US': 'Fab',
},
doc: 'fab',
type: 2,
},
{
text: {
'zh-CN': 'Breadcrumbs 面包屑',
'en-US': 'Breadcrumbs',
},
doc: 'breadcrumbs',
type: 2,
},
{
text: {
'zh-CN': 'Link 链接',
'en-US': 'Link',
},
doc: 'link',
type: 2,
},
{
text: {
'zh-CN': 'Cell 单元格',
'en-US': 'Cell',
},
doc: 'cell',
type: 2,
},
{
text: {
'zh-CN': 'Icon 图标',
'en-US': 'Icon',
},
doc: 'icon',
type: 2,
},
{
text: {
'zh-CN': 'Avatar 头像',
'en-US': 'Avatar',
},
doc: 'avatar',
type: 2,
},
{
text: {
'zh-CN': 'Loading 加载',
'en-US': 'Loading',
},
doc: 'loading',
type: 2,
},
{
text: {
'zh-CN': 'Chip 纸片',
'en-US': 'Chip',
},
doc: 'chip',
type: 2,
},
{
text: {
'zh-CN': 'Badge 徽标',
'en-US': 'Badge',
},
doc: 'badge',
type: 2,
},
{
text: {
'zh-CN': 'Paper 纸张',
'en-US': 'Paper',
},
doc: 'paper',
type: 2,
},
{
text: {
'zh-CN': '展示组件',
'en-US': 'Display Components',
},
type: 1,
},
{
text: {
'zh-CN': 'Skeleton 骨架屏',
'en-US': 'Skeleton',
},
doc: 'skeleton',
type: 2,
},
{
text: {
'zh-CN': 'Collapse 拓展面板',
'en-US': 'Collapse',
},
doc: 'collapse',
type: 2,
},
{
text: {
'zh-CN': 'Space 间隔',
'en-US': 'Space',
},
doc: 'space',
type: 2,
},
{
text: {
'zh-CN': 'Progress 进度条',
'en-US': 'Progress',
},
doc: 'progress',
type: 2,
},
{
text: {
'zh-CN': 'List 无限滚动列表',
'en-US': 'List',
},
doc: 'list',
type: 2,
},
{
text: {
'zh-CN': 'Swipe 轮播',
'en-US': 'Swipe',
},
doc: 'swipe',
type: 2,
},
{
text: {
'zh-CN': 'Steps 步骤条',
'en-US': 'Steps',
},
doc: 'steps',
type: 2,
},
{
text: {
'zh-CN': 'ImagePreview 图片预览',
'en-US': 'ImagePreview',
},
doc: 'image-preview',
type: 2,
},
{
text: {
'zh-CN': 'Card 卡片',
'en-US': 'Card',
},
doc: 'card',
type: 2,
},
{
text: {
'zh-CN': 'Result 结果',
'en-US': 'Result',
},
doc: 'result',
type: 2,
},
{
text: {
'zh-CN': 'Divider 分割线',
'en-US': 'Divider',
},
doc: 'divider',
type: 2,
},
{
text: {
'zh-CN': 'Table 表格',
'en-US': 'Table',
},
doc: 'table',
type: 2,
},
{
text: {
'zh-CN': '导航组件',
'en-US': 'Navigation Components',
},
type: 1,
},
{
text: {
'zh-CN': 'Tabs 选项卡',
'en-US': 'Tabs',
},
doc: 'tabs',
type: 2,
},
{
text: {
'zh-CN': 'IndexBar 索引栏',
'en-US': 'IndexBar',
},
doc: 'index-bar',
type: 2,
},
{
text: {
'zh-CN': 'AppBar 导航栏',
'en-US': 'AppBar',
},
doc: 'app-bar',
type: 2,
},
{
text: {
'zh-CN': 'BottomNavigation 底部导航栏',
'en-US': 'BottomNavigation',
},
doc: 'bottom-navigation',
type: 2,
},
{
text: {
'zh-CN': '功能指令',
'en-US': 'Functional Directives',
},
type: 1,
},
{
text: {
'zh-CN': 'Ripple 水波指令',
'en-US': 'Ripple',
},
doc: 'ripple',
type: 2,
},
{
text: {
'zh-CN': '反馈组件',
'en-US': 'Action Components',
},
type: 1,
},
{
text: {
'zh-CN': 'Snackbar 消息条',
'en-US': 'Snackbar',
},
doc: 'snackbar',
type: 2,
},
{
text: {
'zh-CN': 'ActionSheet 动作面板',
'en-US': 'ActionSheet',
},
doc: 'action-sheet',
type: 2,
},
{
text: {
'zh-CN': 'Dialog 对话框',
'en-US': 'Dialog',
},
doc: 'dialog',
type: 2,
},
{
text: {
'zh-CN': 'PullRefresh 下拉刷新',
'en-US': 'PullRefresh',
},
doc: 'pull-refresh',
type: 2,
},
{
text: {
'zh-CN': 'Overlay 遮罩层',
'en-US': 'Overlay',
},
doc: 'overlay',
type: 2,
},
{
text: {
'zh-CN': 'Popup 弹出层',
'en-US': 'Popup',
},
doc: 'popup',
type: 2,
},
{
text: {
'zh-CN': 'Pagination 分页',
'en-US': 'Pagination',
},
doc: 'pagination',
type: 2,
},
{
text: {
'zh-CN': 'Menu 菜单',
'en-US': 'Menu',
},
doc: 'menu',
type: 2,
},
{
text: {
'zh-CN': 'Tooltip 提示',
'en-US': 'Tooltip',
},
doc: 'tooltip',
type: 2,
},
{
text: {
'zh-CN': 'BackTop 回到顶部',
'en-US': 'BackTop',
},
doc: 'back-top',
type: 2,
},
{
text: {
'zh-CN': 'LoadingBar 加载条',
'en-US': 'LoadingBar',
},
doc: 'loading-bar',
type: 2,
},
{
text: {
'zh-CN': 'Countdown 倒计时',
'en-US': 'Countdown',
},
doc: 'countdown',
type: 2,
},
{
text: {
'zh-CN': 'Picker 多列选择器',
'en-US': 'Picker',
},
doc: 'picker',
type: 2,
},
{
text: {
'zh-CN': 'DatePicker 日期选择器',
'en-US': 'DatePicker',
},
doc: 'date-picker',
type: 2,
},
{
text: {
'zh-CN': 'TimePicker 时间选择器',
'en-US': 'TimePicker',
},
doc: 'time-picker',
type: 2,
},
{
text: {
'zh-CN': '表单组件',
'en-US': 'Form Components',
},
type: 1,
},
{
text: {
'zh-CN': 'Form 表单',
'en-US': 'Form',
},
doc: 'form',
type: 2,
},
{
text: {
'zh-CN': 'Input 输入框',
'en-US': 'Input',
},
doc: 'input',
type: 2,
},
{
text: {
'zh-CN': 'Select 选择框',
'en-US': 'Select',
},
doc: 'select',
type: 2,
},
{
text: {
'zh-CN': 'Radio 单选框',
'en-US': 'Radio',
},
doc: 'radio-group',
type: 2,
},
{
text: {
'zh-CN': 'Checkbox 复选框',
'en-US': 'Checkbox',
},
doc: 'checkbox-group',
type: 2,
},
{
text: {
'zh-CN': 'Counter 计数器',
'en-US': 'Counter',
},
doc: 'counter',
type: 2,
},
{
text: {
'zh-CN': 'Switch 开关',
'en-US': 'Switch',
},
doc: 'switch',
type: 2,
},
{
text: {
'zh-CN': 'Slider 滑块',
'en-US': 'Slider',
},
doc: 'slider',
type: 2,
},
{
text: {
'zh-CN': 'Rate 评分',
'en-US': 'Rate',
},
doc: 'rate',
type: 2,
},
{
text: {
'zh-CN': 'Uploader 文件上传',
'en-US': 'Uploader',
},
doc: 'uploader',
type: 2,
},
],
},
mobile: {
redirect: '/home',
title: {
'zh-CN': 'Varlet UI 主题编辑工具',
'en-US': 'Varlet UI theme editing tool',
},
header: {
i18n: {
'zh-CN': '中文',
'en-US': 'English',
},
github: 'https://github.com/varletjs/varlet-ute',
},
},
highlight: {
style: null,
},
})