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
40 lines (40 loc) · 915 Bytes
/
snippets.ts
File metadata and controls
40 lines (40 loc) · 915 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
38
39
40
export default [
{
title: '输入框',
screenshot: 'https://img.alicdn.com/tfs/TB1ysp3u8v0gK0jSZKbXXbK2FXa-112-64.png',
schema: {
componentName: 'Input',
props: {
hasBorder: true,
size: 'medium',
autoComplete: 'off',
placeholder: '请输入',
},
},
},
{
title: '密码框',
screenshot: 'https://img.alicdn.com/tfs/TB1ikF3u7P2gK0jSZPxXXacQpXa-112-64.png',
schema: {
componentName: 'Input.Password',
props: {
hasBorder: true,
size: 'medium',
autoComplete: 'off',
},
},
},
{
title: 'TextArea',
screenshot:
'https://alifd.oss-cn-hangzhou.aliyuncs.com/fusion-cool/icons/icon-light/ic_light_input.png',
schema: {
componentName: 'Input.TextArea',
props: {
hasBorder: true,
size: 'medium',
autoComplete: 'off',
},
},
},
];