-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathconfig.json
More file actions
1488 lines (1488 loc) · 38.7 KB
/
config.json
File metadata and controls
1488 lines (1488 loc) · 38.7 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
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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"docs": {
"name": "指南",
"packages": [
{
"name": "intro-react",
"cName": "介绍",
"eName": "Introduction",
"show": true
},
{
"name": "start-react",
"cName": "快速上手",
"eName": "Quickstart",
"show": true
},
{
"name": "official-theme-react",
"cName": "官方主题",
"eName": "Official Theme",
"show": true
},
{
"name": "theme-react",
"cName": "主题定制",
"eName": "Customize Theme",
"show": true
},
{
"name": "migrate-from-v1",
"cName": "从 v1 升级到 v2",
"eName": "Migrate-from-v1",
"show": true
},
{
"name": "migrate-from-v2",
"cName": "从 v2 升级到 v3",
"eName": "Migrate-from-v2",
"show": true
},
{
"name": "international-react",
"cName": "国际化",
"eName": "Internationalization",
"show": true
},
{
"name": "contributing-react",
"cName": "贡献指南",
"eName": "Contributing",
"show": true
},
{
"name": "resource",
"cName": "资源",
"eName": "Resources",
"show": false
},
{
"name": "https://github.com/jdf2e/nutui-react/releases",
"cName": "更新日志",
"eName": "Changelog",
"show": true,
"isLink": true
}
]
},
"nav": [
{
"name": "基础组件",
"enName": "base",
"packages": [
{
"version": "3.0.0",
"name": "Button",
"type": "component",
"cName": "按钮",
"desc": "按钮",
"sort": 1,
"show": true,
"taro": true,
"jdtaro": 2,
"v15": 1,
"author": "",
"dd": true
},
{
"version": "3.0.0",
"name": "Cell",
"type": "component",
"cName": "单元格",
"desc": "列表项,可组成列表",
"sort": 2,
"show": true,
"taro": true,
"v15": 100,
"author": "songsong",
"dd": true
},
{
"version": "3.0.0",
"name": "CellGroup",
"type": "component",
"cName": "单元格",
"desc": "列表项,可组成列表",
"sort": 2,
"show": false,
"taro": true,
"v15": 100,
"exportEmpty": true,
"author": "songsong",
"dd": true
},
{
"version": "3.0.0",
"name": "ConfigProvider",
"type": "component",
"cName": "全局配置",
"desc": "可以配置多语言等全局属性",
"sort": 16,
"show": true,
"exportEmpty": true,
"taro": true,
"v15": 99,
"author": "hanyuxinting",
"dd": true
},
{
"version": "3.0.0",
"name": "Icon",
"type": "component",
"cName": "图标",
"desc": "基于 IconFont 字体的图标集",
"sort": 1,
"show": true,
"taro": true,
"exclude": true,
"v15": 1,
"author": "oasis-cloud",
"dd": true
},
{
"version": "3.0.0",
"name": "Image",
"type": "component",
"cName": "图片",
"desc": "增强版的 img 标签,提供多种图片填充模式,支持图片加载中提示、加载失败提示。",
"sort": 8,
"show": true,
"taro": true,
"v15": 99,
"jdtaro": 2,
"author": "vickyYE",
"dd": true
},
{
"version": "3.0.0",
"name": "Overlay",
"type": "component",
"cName": "遮罩层",
"desc": "创建一个遮罩层,通常用于阻止用户进行其他操作",
"sort": 5,
"show": true,
"taro": true,
"v15": 100,
"author": "junjun",
"dd": true
}
]
},
{
"name": "布局组件",
"enName": "layout",
"packages": [
{
"version": "3.0.0",
"name": "Divider",
"type": "component",
"cName": "分割线",
"desc": "用于将内容分隔为多个区域",
"sort": 7,
"show": true,
"taro": true,
"v15": 100,
"author": "vickyYE",
"dd": true
},
{
"version": "3.0.0",
"name": "Grid",
"type": "component",
"cName": "宫格",
"desc": "宫格",
"sort": 5,
"show": true,
"taro": true,
"v15": 1,
"author": "yangxiaolu",
"dd": true
},
{
"version": "3.0.0",
"name": "GridItem",
"type": "component",
"cName": "宫格子组件",
"desc": "宫格子组件",
"sort": 6,
"show": false,
"taro": true,
"exportEmpty": true,
"author": "yangxiaolu",
"dd": true
},
{
"version": "3.0.0",
"name": "Layout",
"type": "component",
"cName": "布局",
"desc": "协助进行页面级整体布局。",
"sort": 1,
"show": true,
"taro": true,
"v15": 99,
"author": "yushuang24",
"dd": true
},
{
"version": "3.0.0",
"name": "Col",
"type": "component",
"cName": "列",
"desc": "布局组件中的列",
"sort": 3,
"show": false,
"exportEmpty": true,
"author": "yushuang24",
"dd": true
},
{
"version": "3.0.0",
"name": "Row",
"type": "component",
"cName": "行",
"desc": "布局组件中的行",
"sort": 2,
"show": false,
"exportEmpty": true,
"author": "yushuang24",
"dd": true
},
{
"version": "3.0.0",
"name": "SafeArea",
"type": "component",
"cName": "安全区",
"desc": "在全面屏下提供自适应的边距调整。",
"sort": 9,
"show": true,
"taro": true,
"v15": 99,
"author": "oasis",
"dd": true
},
{
"version": "3.0.0",
"name": "Space",
"type": "component",
"cName": "间距",
"desc": "元素之间的间距,保持相同的宽度",
"sort": 8,
"show": true,
"taro": true,
"v15": 100,
"author": "ivan",
"dd": true
},
{
"version": "2.0.0",
"name": "Sticky",
"type": "component",
"cName": "粘性布局",
"desc": "效果同 css 中的 position: sticky",
"sort": 7,
"show": true,
"taro": true,
"v15": 990,
"author": "hx",
"dd": false
}
]
},
{
"name": "导航组件",
"enName": "nav",
"packages": [
{
"version": "3.0.0",
"name": "BackTop",
"type": "component",
"cName": "返回顶部",
"desc": "提供较长的页面快捷返回顶部功能。",
"sort": 2,
"show": true,
"taro": true,
"v15": 1,
"author": "vickyYe",
"dd": false
},
{
"version": "3.0.0",
"name": "Elevator",
"type": "component",
"cName": "电梯楼层",
"desc": "用于列表快速定位以及索引的显示",
"sort": 4,
"show": true,
"taro": true,
"v15": -1,
"author": "songsong",
"dd": false
},
{
"version": "3.0.0",
"name": "FixedNav",
"type": "component",
"cName": "悬浮导航",
"desc": "悬浮收齐体验交互,用于快捷导航",
"sort": 5,
"show": true,
"taro": true,
"v15": 100,
"author": "Ymm0008",
"dd": true
},
{
"version": "3.0.0",
"name": "HoverButton",
"type": "component",
"cName": "悬浮按钮",
"desc": "悬浮多按钮,用于快捷功能",
"sort": 5,
"show": true,
"taro": true,
"v15": 1,
"author": "Ymm0008",
"dd": true
},
{
"version": "3.0.0",
"name": "HoverButtonItem",
"type": "component",
"cName": "悬浮按钮子组件",
"exportEmpty": true,
"desc": "悬浮按钮",
"sort": 5,
"show": false,
"taro": true,
"author": "Ymm0008",
"dd": true
},
{
"version": "3.0.0",
"name": "NavBar",
"type": "component",
"cName": "头部导航",
"desc": "提供导航功能。",
"sort": 1,
"show": true,
"taro": true,
"v15": 1,
"author": "dsj",
"dd": true
},
{
"version": "3.0.0",
"name": "SideBar",
"type": "component",
"cName": "侧边栏导航",
"desc": "用于侧边内容选择和切换",
"sort": 10,
"show": true,
"taro": true,
"v15": 1,
"author": "Alex.hxy",
"dd": true
},
{
"version": "3.0.0",
"name": "SideBarItem",
"type": "component",
"cName": "侧边栏导航子组件",
"desc": "用于侧边内容选择和切换",
"sort": 10,
"show": false,
"taro": true,
"author": "Alex.hxy",
"exportEmpty": true,
"dd": true
},
{
"version": "3.0.0",
"name": "Tabbar",
"type": "component",
"cName": "标签栏",
"desc": "底部导航常用场景",
"sort": 2,
"show": true,
"taro": true,
"v15": 1,
"author": "dsj",
"dd": true
},
{
"version": "3.0.0",
"name": "TabbarItem",
"sort": 2,
"cName": "标签栏子组件",
"type": "component",
"show": false,
"taro": true,
"exportEmpty": true,
"desc": "标签栏子组件",
"author": "dsj",
"dd": true
},
{
"version": "3.0.0",
"name": "TabPane",
"sort": 2,
"cName": "选项卡切换子组件",
"type": "component",
"show": false,
"exportEmpty": true,
"desc": "选项卡切换子组件",
"author": "张晶发",
"dd": true
},
{
"version": "3.0.0",
"name": "Tabs",
"type": "component",
"cName": "选项卡切换",
"desc": "常用于平级区域大块内容的的收纳和展现,支持内嵌标签形式和渲染循环数据形式",
"sort": 12,
"show": true,
"taro": true,
"v15": 2,
"author": "oasis",
"dd": true
}
]
},
{
"name": "数据录入",
"enName": "dentry",
"packages": [
{
"version": "3.0.0",
"name": "Address",
"type": "component",
"cName": "地址",
"desc": "地址组件",
"sort": 3,
"show": true,
"taro": true,
"v15": 1,
"author": "hanyuxinting",
"dd": false
},
{
"version": "3.0.0",
"name": "Calendar",
"type": "component",
"cName": "日历",
"desc": "日历,可平铺/弹窗展示",
"sort": 10,
"show": true,
"taro": true,
"v15": -1,
"author": "szg2008",
"dd": false
},
{
"version": "2.0.0",
"name": "CalendarItem",
"type": "component",
"cName": "日历",
"desc": "日历,可平铺/弹窗展示",
"sort": 10,
"show": false,
"exportEmpty": true,
"author": "szg2008",
"dd": false
},
{
"version": "3.0.0",
"name": "CalendarCard",
"type": "component",
"cName": "日历卡片",
"desc": "日历卡片,支持多种选择类型",
"sort": 10,
"show": true,
"taro": true,
"v15": 100,
"author": "eiinu",
"dd": true
},
{
"version": "2.0.0",
"name": "Cascader",
"type": "component",
"cName": "级联选择器",
"desc": "级联选择,用于多层级数据的选择,典型场景为省市区选择。",
"sort": 1,
"show": true,
"taro": true,
"v15": 100,
"author": "ailululu",
"dd": true
},
{
"version": "3.0.0",
"name": "Checkbox",
"type": "component",
"cName": "复选按钮",
"desc": "多选按钮用于选择。",
"sort": 4,
"show": true,
"taro": true,
"v15": 1,
"author": "oasis",
"dd": true
},
{
"version": "3.0.0",
"name": "CheckboxGroup",
"type": "component",
"cName": "多选按钮组",
"desc": "多选按钮组",
"sort": 11,
"show": false,
"exportEmpty": true,
"author": "oasis",
"dd": true
},
{
"version": "2.0.0",
"name": "DatePicker",
"type": "component",
"cName": "日期选择器",
"desc": "时间选择器,支持日期、年月、时分等维度,通常与弹出层组件配合使用。",
"sort": 15,
"show": true,
"taro": true,
"v15": -1,
"author": "dsj",
"dd": false
},
{
"version": "3.0.0",
"name": "DatePickerView",
"type": "component",
"cName": "日期选择器视图",
"desc": "DatePickerView 是 DatePicker 的内容区域",
"sort": 16,
"show": true,
"taro": true,
"v15": -1,
"dd": false,
"author": "songsong"
},
{
"version": "2.0.0",
"name": "Form",
"type": "component",
"cName": "表单",
"desc": "用于数据录入、校验,支持输入框、单选框、复选框等类型。",
"sort": 19,
"show": true,
"taro": true,
"v15": 2,
"jdtaro": 2,
"author": "hanyuxinting",
"dd": false
},
{
"version": "2.0.0",
"name": "FormItem",
"type": "component",
"cName": "表单项",
"desc": "用于数据录入、校验,支持输入框、单选框、复选框等类型。",
"sort": 19,
"show": false,
"taro": true,
"jdtaro": 2,
"exportEmpty": true,
"author": "hanyuxinting",
"dd": false
},
{
"version": "3.0.0",
"name": "Input",
"type": "component",
"cName": "输入框",
"desc": "单行输入框",
"sort": 1,
"show": true,
"taro": true,
"v15": 1,
"jdtaro": 2,
"author": "VickyYe",
"dd": true
},
{
"version": "3.0.0",
"name": "InputNumber",
"type": "component",
"cName": "数字输入框",
"desc": "通过点击按钮控制数字增减。",
"sort": 3,
"show": true,
"taro": true,
"v15": 1,
"author": "swag~jun",
"dd": true
}
]
},
{
"name": "数据录入",
"enName": "dataentry",
"packages": [
{
"version": "2.0.0",
"name": "Menu",
"type": "component",
"cName": "菜单",
"desc": "向下弹出的菜单列表",
"sort": 13,
"show": true,
"taro": true,
"v15": 2,
"author": "oasis-cloud",
"dd": false
},
{
"version": "2.0.0",
"name": "MenuItem",
"type": "component",
"cName": "菜单子项",
"desc": "菜单子项",
"sort": 14,
"exportEmpty": true,
"show": false,
"taro": true,
"author": "oasis-cloud",
"dd": false
},
{
"version": "3.0.0",
"name": "NumberKeyboard",
"type": "component",
"cName": "数字键盘",
"desc": "",
"sort": 16,
"show": true,
"taro": true,
"v15": -1,
"author": "Drjingfubo",
"dd": true
},
{
"version": "2.0.0",
"name": "Picker",
"type": "component",
"cName": "选择器",
"desc": "提供多个选项集合供用户选择其中一项。",
"sort": 10,
"show": true,
"taro": true,
"v15": -1,
"dd": false,
"author": "songsong"
},
{
"version": "3.0.0",
"name": "PickerView",
"type": "component",
"cName": "选择器视图",
"desc": "PickerView 是 Picker 的内容区域。",
"sort": 15,
"show": true,
"taro": true,
"v15": -1,
"dd": false,
"author": "songsong"
},
{
"version": "3.0.0",
"name": "Radio",
"type": "component",
"cName": "单选按钮",
"desc": "用于在一组备选项中进行单选",
"sort": 6,
"show": true,
"taro": true,
"v15": 1,
"author": "oasis",
"dd": true
},
{
"version": "3.0.0",
"name": "RadioGroup",
"type": "component",
"cName": "单选按钮组",
"desc": "单选按钮组",
"sort": 10,
"exportEmpty": true,
"show": false,
"v15": 1,
"author": "oasis",
"dd": true
},
{
"version": "3.0.0",
"name": "Range",
"type": "component",
"cName": "区间选择器",
"desc": "滑动输入条,用于在给定的范围内选择一个值。",
"sort": 3,
"show": true,
"taro": true,
"v15": -1,
"author": "vickyYe",
"dd": false
},
{
"version": "3.0.0",
"name": "Rate",
"type": "component",
"cName": "评分",
"desc": "用于快速的评级操作,或对评价进行展示。",
"sort": 1,
"show": true,
"taro": true,
"v15": 1,
"author": "dsj",
"dd": true
},
{
"version": "3.0.0",
"name": "SearchBar",
"type": "component",
"cName": "搜索栏",
"desc": "用于搜索场景的输入框组件",
"sort": 16,
"show": true,
"taro": true,
"v15": 2,
"author": "Ymm0008",
"dd": true
},
{
"version": "2.0.0",
"name": "ShortPassword",
"type": "component",
"cName": "短密码",
"desc": "短密码输入框",
"sort": 10,
"show": true,
"taro": true,
"v15": -1,
"author": "Drjingfubo",
"dd": true
},
{
"version": "2.0.0",
"name": "Signature",
"type": "component",
"cName": "签名",
"desc": "基于Canvas的签名组件",
"sort": 1,
"show": true,
"taro": true,
"v15": 990,
"author": "songsong",
"dd": false
},
{
"version": "3.0.0",
"name": "Switch",
"type": "component",
"cName": "开关",
"desc": "用来打开或关闭选项。",
"sort": 11,
"show": true,
"taro": true,
"jdtaro": 2,
"v15": 1,
"author": "dsj",
"dd": true
},
{
"version": "3.0.0",
"name": "TextArea",
"type": "component",
"cName": "文本域",
"desc": "文本框内输入或编辑文字,支持限制输入数量。",
"sort": 2,
"show": true,
"taro": true,
"jdtaro": 2,
"v15": 1,
"author": "VickyYe",
"dd": true
},
{
"version": "3.0.0",
"name": "Uploader",
"type": "component",
"cName": "上传",
"desc": "用于将本地的图片或文件上传至服务器。",
"sort": 1,
"show": true,
"taro": true,
"v15": 1000,
"author": "swag~jun",
"dd": false
}
]
},
{
"name": "操作反馈",
"enName": "feedback",
"packages": [
{
"version": "3.0.0",
"name": "ActionSheet",
"type": "component",
"cName": "动作面板",
"desc": "从底部弹出的动作菜单面板。",
"sort": 11,
"show": true,
"taro": true,
"v15": 1,
"author": "dsj",
"dd": true
},
{
"version": "3.0.0",
"name": "Badge",
"type": "component",
"cName": "徽标",
"desc": "在图标或文字右上角的红色圆点、数字或者文字,表示有新内容或者待处理的信息。",
"sort": 4,
"show": true,
"taro": true,
"v15": 1,
"author": "lzz",
"dd": true
},
{
"version": "3.0.0",
"name": "Dialog",
"type": "component",
"cName": "对话框",
"desc": "模态对话框",
"sort": 12,
"show": true,
"taro": true,
"v15": 1,
"author": "yangjinjun3",
"dd": true
},
{
"version": "3.0.0",
"name": "Drag",
"type": "component",
"cName": "拖拽",
"desc": "实现可拖拽的任意元素",
"sort": 1,
"show": true,
"taro": true,
"v15": 990,
"author": "songsong",
"dd": false
},
{
"version": "3.0.0",
"name": "Empty",
"type": "component",
"cName": "空状态",
"desc": "空状态时的占位提示",
"sort": 16,
"show": true,
"taro": true,
"v15": 1,
"author": "liukun",
"dd": true
},
{
"version": "3.0.0",
"name": "InfiniteLoading",
"type": "component",
"cName": "滚动加载",
"desc": "列表滚动到底部自动加载更多数据。",
"sort": 5,
"show": true,
"taro": true,
"v15": 1,
"author": "swag~jun",
"dd": false
},
{
"version": "3.0.0",
"name": "Loading",
"type": "component",
"cName": "加载中",
"desc": "加载图标,用于显示正在加载中的状态",
"sort": 15,
"show": true,
"taro": true,
"v15": 1,
"author": "mike8625",
"dd": true
},
{
"version": "2.0.0",
"name": "NoticeBar",
"type": "component",
"cName": "公告栏",
"desc": "用于循环播放展示一组消息通知。",
"sort": 11,
"show": true,
"taro": true,
"v15": 2,
"author": "vickyYe",
"dd": false
},
{
"version": "3.0.0",
"name": "Notify",
"type": "component",
"cName": "消息通知",
"desc": "在页面顶部展示消息提示",
"sort": 11,
"show": true,
"taro": true,
"v15": 2,
"author": "vickyYE",
"dd": true
},
{
"version": "3.0.0",
"name": "Popover",
"type": "component",
"cName": "气泡弹出框",
"desc": "气泡弹出框",
"sort": 19,
"show": true,
"taro": true,
"v15": 1,
"author": "lzz",
"dd": true
},
{
"version": "3.0.0",
"name": "Popup",
"sort": 9,
"cName": "弹出层",
"type": "component",
"show": true,
"taro": true,
"v15": 1,
"rn": true,
"desc": "弹出层容器,用于展示弹窗、信息提示等内容,支持多个弹出层叠加展示",
"author": "szg2008",
"dd": true
},
{
"version": "3.0.0",
"name": "PullToRefresh",
"type": "component",
"cName": "下拉刷新",
"desc": "",
"sort": 10,
"show": true,
"taro": true,
"v15": 10,
"author": "oasis",
"dd": true
},
{
"version": "3.0.0",
"name": "ResultPage",
"type": "component",
"cName": "结果反馈",
"desc": "以页面的形式向用户反馈操作结果",
"sort": 15,
"show": true,