forked from alibaba/lowcode-materials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnippets.ts
More file actions
37 lines (37 loc) · 916 Bytes
/
snippets.ts
File metadata and controls
37 lines (37 loc) · 916 Bytes
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
export default [
{
title: '日期选择框',
screenshot:
'https://alifd.oss-cn-hangzhou.aliyuncs.com/fusion-cool/icons/icon-light/ic_light_date-picker.png',
schema: {
componentName: 'DatePicker',
props: {
prefix: 'next-',
format: 'YYYY-MM-DD',
size: 'medium',
hasClear: false,
popupTriggerType: 'click',
popupAlign: 'tl tl',
followTrigger: true,
},
},
},
{
title: '日期区间',
screenshot:
'https://alifd.oss-cn-hangzhou.aliyuncs.com/fusion-cool/icons/icon-light/ic_light_date-picker.png',
schema: {
componentName: 'RangePicker',
props: {
prefix: 'next-',
format: 'YYYY-MM-DD',
size: 'medium',
type: 'date',
hasClear: false,
popupTriggerType: 'click',
popupAlign: 'tl tl',
followTrigger: true,
},
},
},
];