@dckj-npm/dc-material 0.1.165 → 0.1.167
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lowcode/assets-daily.json +13 -13
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +13 -13
- package/build/lowcode/meta.design.js +1 -1
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.js +1 -1
- package/lowcode/teletext-list/meta.ts +126 -12
- package/lowcode_es/meta.js +2 -3
- package/lowcode_es/teletext-list/meta.js +106 -12
- package/lowcode_lib/meta.js +6 -7
- package/lowcode_lib/teletext-list/meta.js +106 -12
- package/package.json +2 -2
- package/lowcode/teletext-list-item/meta.ts +0 -222
- package/lowcode_es/teletext-list-item/meta.d.ts +0 -22
- package/lowcode_es/teletext-list-item/meta.js +0 -195
- package/lowcode_lib/teletext-list-item/meta.d.ts +0 -22
- package/lowcode_lib/teletext-list-item/meta.js +0 -200
|
@@ -1,222 +0,0 @@
|
|
|
1
|
-
import { IPublicTypeComponentMetadata, IPublicTypeSnippet } from '@alilc/lowcode-types'
|
|
2
|
-
|
|
3
|
-
const TeletextListItemMeta: IPublicTypeComponentMetadata = {
|
|
4
|
-
componentName: 'TeletextListItem',
|
|
5
|
-
title: 'TeletextListItem',
|
|
6
|
-
docUrl: '',
|
|
7
|
-
screenshot: '',
|
|
8
|
-
devMode: 'proCode',
|
|
9
|
-
npm: {
|
|
10
|
-
package: '@dckj-npm/dc-material',
|
|
11
|
-
version: '0.1.160',
|
|
12
|
-
exportName: 'TeletextListItem',
|
|
13
|
-
main: 'src\\index.tsx',
|
|
14
|
-
destructuring: true,
|
|
15
|
-
subName: '',
|
|
16
|
-
},
|
|
17
|
-
configure: {
|
|
18
|
-
props: [
|
|
19
|
-
{
|
|
20
|
-
title: {
|
|
21
|
-
label: {
|
|
22
|
-
type: 'i18n',
|
|
23
|
-
'en-US': 'onClick',
|
|
24
|
-
'zh-CN': '点击事件',
|
|
25
|
-
},
|
|
26
|
-
tip: 'onClick | 点击事件',
|
|
27
|
-
},
|
|
28
|
-
name: 'onClick',
|
|
29
|
-
description: '点击事件',
|
|
30
|
-
setter: {
|
|
31
|
-
componentName: 'FunctionSetter',
|
|
32
|
-
},
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
title: {
|
|
36
|
-
label: {
|
|
37
|
-
type: 'i18n',
|
|
38
|
-
'en-US': 'title',
|
|
39
|
-
'zh-CN': '标题',
|
|
40
|
-
},
|
|
41
|
-
tip: 'title | 标题',
|
|
42
|
-
},
|
|
43
|
-
name: 'title',
|
|
44
|
-
description: '标题',
|
|
45
|
-
setter: {
|
|
46
|
-
componentName: 'StringSetter',
|
|
47
|
-
isRequired: false,
|
|
48
|
-
initialValue: '',
|
|
49
|
-
},
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
title: {
|
|
53
|
-
label: {
|
|
54
|
-
type: 'i18n',
|
|
55
|
-
'en-US': 'image',
|
|
56
|
-
'zh-CN': '图片地址',
|
|
57
|
-
},
|
|
58
|
-
tip: 'image | 图片地址',
|
|
59
|
-
},
|
|
60
|
-
name: 'image',
|
|
61
|
-
description: '图片地址',
|
|
62
|
-
setter: {
|
|
63
|
-
componentName: 'ArraySetter',
|
|
64
|
-
props: {
|
|
65
|
-
itemSetter: {
|
|
66
|
-
componentName: 'StringSetter',
|
|
67
|
-
isRequired: false,
|
|
68
|
-
initialValue: '',
|
|
69
|
-
},
|
|
70
|
-
},
|
|
71
|
-
initialValue: [],
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
title: {
|
|
76
|
-
label: {
|
|
77
|
-
type: 'i18n',
|
|
78
|
-
'en-US': 'imagePlacement',
|
|
79
|
-
'zh-CN': '图片位置',
|
|
80
|
-
},
|
|
81
|
-
tip: 'imagePlacement | 图片位置',
|
|
82
|
-
},
|
|
83
|
-
name: 'imagePlacement',
|
|
84
|
-
description: '图片位置',
|
|
85
|
-
setter: {
|
|
86
|
-
componentName: 'RadioGroupSetter',
|
|
87
|
-
props: {
|
|
88
|
-
dataSource: [
|
|
89
|
-
{
|
|
90
|
-
label: 'left',
|
|
91
|
-
value: 'left',
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
label: 'right',
|
|
95
|
-
value: 'right',
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
label: 'none',
|
|
99
|
-
value: 'none',
|
|
100
|
-
},
|
|
101
|
-
],
|
|
102
|
-
options: [
|
|
103
|
-
{
|
|
104
|
-
label: 'left',
|
|
105
|
-
value: 'left',
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
label: 'right',
|
|
109
|
-
value: 'right',
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
label: 'none',
|
|
113
|
-
value: 'none',
|
|
114
|
-
},
|
|
115
|
-
],
|
|
116
|
-
},
|
|
117
|
-
initialValue: 'left',
|
|
118
|
-
},
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
title: {
|
|
122
|
-
label: {
|
|
123
|
-
type: 'i18n',
|
|
124
|
-
'en-US': 'description',
|
|
125
|
-
'zh-CN': '说明',
|
|
126
|
-
},
|
|
127
|
-
tip: 'description | 说明',
|
|
128
|
-
},
|
|
129
|
-
name: 'description',
|
|
130
|
-
description: '说明',
|
|
131
|
-
setter: {
|
|
132
|
-
componentName: 'StringSetter',
|
|
133
|
-
isRequired: false,
|
|
134
|
-
initialValue: '',
|
|
135
|
-
},
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
title: {
|
|
139
|
-
label: {
|
|
140
|
-
type: 'i18n',
|
|
141
|
-
'en-US': 'tags',
|
|
142
|
-
'zh-CN': '标签列表',
|
|
143
|
-
},
|
|
144
|
-
tip: 'tags | 标签列表',
|
|
145
|
-
},
|
|
146
|
-
name: 'tags',
|
|
147
|
-
description: '标签列表',
|
|
148
|
-
setter: {
|
|
149
|
-
componentName: 'StringSetter',
|
|
150
|
-
isRequired: false,
|
|
151
|
-
initialValue: '',
|
|
152
|
-
},
|
|
153
|
-
},
|
|
154
|
-
],
|
|
155
|
-
supports: {
|
|
156
|
-
style: true,
|
|
157
|
-
},
|
|
158
|
-
component: {
|
|
159
|
-
isContainer: true,
|
|
160
|
-
nestingRule: {
|
|
161
|
-
childWhitelist: [''],
|
|
162
|
-
},
|
|
163
|
-
},
|
|
164
|
-
},
|
|
165
|
-
}
|
|
166
|
-
const snippets: IPublicTypeSnippet[] = [
|
|
167
|
-
{
|
|
168
|
-
title: 'TeletextListItem',
|
|
169
|
-
screenshot: '',
|
|
170
|
-
schema: {
|
|
171
|
-
componentName: 'TeletextListItem',
|
|
172
|
-
props: {},
|
|
173
|
-
children: [
|
|
174
|
-
{
|
|
175
|
-
componentName: 'Title1',
|
|
176
|
-
props: {
|
|
177
|
-
type: 'h5',
|
|
178
|
-
children: '列表标题',
|
|
179
|
-
key: 'box-title',
|
|
180
|
-
},
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
componentName: 'Image',
|
|
184
|
-
props: {
|
|
185
|
-
src: 'https://img.alicdn.com/tps/TB16TQvOXXXXXbiaFXXXXXXXXXX-120-120.svg',
|
|
186
|
-
key: 'image',
|
|
187
|
-
},
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
componentName: 'NextText',
|
|
191
|
-
props: {
|
|
192
|
-
type: 'h5',
|
|
193
|
-
children: '标题标题',
|
|
194
|
-
key: 'title',
|
|
195
|
-
},
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
componentName: 'NextText',
|
|
199
|
-
props: {
|
|
200
|
-
type: 'inherit',
|
|
201
|
-
children:
|
|
202
|
-
'基于 Ali-Lowcode-Engine 快速打造高生产力的低代码研发平台, 基于自然布局体系快速搭建页面',
|
|
203
|
-
key: 'content',
|
|
204
|
-
},
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
componentName: 'TagC',
|
|
208
|
-
props: {
|
|
209
|
-
name: '报名火热',
|
|
210
|
-
color: 'orange',
|
|
211
|
-
key: 'teletext-tag-c',
|
|
212
|
-
},
|
|
213
|
-
},
|
|
214
|
-
],
|
|
215
|
-
},
|
|
216
|
-
},
|
|
217
|
-
]
|
|
218
|
-
|
|
219
|
-
export default {
|
|
220
|
-
...TeletextListItemMeta,
|
|
221
|
-
snippets,
|
|
222
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { IPublicTypeSnippet } from '@alilc/lowcode-types';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
snippets: IPublicTypeSnippet[];
|
|
4
|
-
componentName: string;
|
|
5
|
-
uri?: string;
|
|
6
|
-
title?: import("@alilc/lowcode-types").IPublicTypeTitleContent;
|
|
7
|
-
icon?: import("@alilc/lowcode-types").IPublicTypeIconType;
|
|
8
|
-
tags?: string[];
|
|
9
|
-
description?: string;
|
|
10
|
-
docUrl?: string;
|
|
11
|
-
screenshot?: string;
|
|
12
|
-
devMode?: "proCode" | "lowCode";
|
|
13
|
-
npm?: import("@alilc/lowcode-types").IPublicTypeNpmInfo;
|
|
14
|
-
props?: import("@alilc/lowcode-types").IPublicTypePropConfig[];
|
|
15
|
-
configure?: import("@alilc/lowcode-types").IPublicTypeFieldConfig[] | import("@alilc/lowcode-types").IPublicTypeConfigure;
|
|
16
|
-
experimental?: import("@alilc/lowcode-types").IPublicTypeAdvanced;
|
|
17
|
-
schema?: import("@alilc/lowcode-types").IPublicTypeComponentSchema;
|
|
18
|
-
group?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
|
|
19
|
-
category?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
|
|
20
|
-
priority?: number;
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
-
var TeletextListItemMeta = {
|
|
3
|
-
componentName: 'TeletextListItem',
|
|
4
|
-
title: 'TeletextListItem',
|
|
5
|
-
docUrl: '',
|
|
6
|
-
screenshot: '',
|
|
7
|
-
devMode: 'proCode',
|
|
8
|
-
npm: {
|
|
9
|
-
"package": '@dckj-npm/dc-material',
|
|
10
|
-
version: '0.1.160',
|
|
11
|
-
exportName: 'TeletextListItem',
|
|
12
|
-
main: 'src\\index.tsx',
|
|
13
|
-
destructuring: true,
|
|
14
|
-
subName: ''
|
|
15
|
-
},
|
|
16
|
-
configure: {
|
|
17
|
-
props: [{
|
|
18
|
-
title: {
|
|
19
|
-
label: {
|
|
20
|
-
type: 'i18n',
|
|
21
|
-
'en-US': 'onClick',
|
|
22
|
-
'zh-CN': '点击事件'
|
|
23
|
-
},
|
|
24
|
-
tip: 'onClick | 点击事件'
|
|
25
|
-
},
|
|
26
|
-
name: 'onClick',
|
|
27
|
-
description: '点击事件',
|
|
28
|
-
setter: {
|
|
29
|
-
componentName: 'FunctionSetter'
|
|
30
|
-
}
|
|
31
|
-
}, {
|
|
32
|
-
title: {
|
|
33
|
-
label: {
|
|
34
|
-
type: 'i18n',
|
|
35
|
-
'en-US': 'title',
|
|
36
|
-
'zh-CN': '标题'
|
|
37
|
-
},
|
|
38
|
-
tip: 'title | 标题'
|
|
39
|
-
},
|
|
40
|
-
name: 'title',
|
|
41
|
-
description: '标题',
|
|
42
|
-
setter: {
|
|
43
|
-
componentName: 'StringSetter',
|
|
44
|
-
isRequired: false,
|
|
45
|
-
initialValue: ''
|
|
46
|
-
}
|
|
47
|
-
}, {
|
|
48
|
-
title: {
|
|
49
|
-
label: {
|
|
50
|
-
type: 'i18n',
|
|
51
|
-
'en-US': 'image',
|
|
52
|
-
'zh-CN': '图片地址'
|
|
53
|
-
},
|
|
54
|
-
tip: 'image | 图片地址'
|
|
55
|
-
},
|
|
56
|
-
name: 'image',
|
|
57
|
-
description: '图片地址',
|
|
58
|
-
setter: {
|
|
59
|
-
componentName: 'ArraySetter',
|
|
60
|
-
props: {
|
|
61
|
-
itemSetter: {
|
|
62
|
-
componentName: 'StringSetter',
|
|
63
|
-
isRequired: false,
|
|
64
|
-
initialValue: ''
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
initialValue: []
|
|
68
|
-
}
|
|
69
|
-
}, {
|
|
70
|
-
title: {
|
|
71
|
-
label: {
|
|
72
|
-
type: 'i18n',
|
|
73
|
-
'en-US': 'imagePlacement',
|
|
74
|
-
'zh-CN': '图片位置'
|
|
75
|
-
},
|
|
76
|
-
tip: 'imagePlacement | 图片位置'
|
|
77
|
-
},
|
|
78
|
-
name: 'imagePlacement',
|
|
79
|
-
description: '图片位置',
|
|
80
|
-
setter: {
|
|
81
|
-
componentName: 'RadioGroupSetter',
|
|
82
|
-
props: {
|
|
83
|
-
dataSource: [{
|
|
84
|
-
label: 'left',
|
|
85
|
-
value: 'left'
|
|
86
|
-
}, {
|
|
87
|
-
label: 'right',
|
|
88
|
-
value: 'right'
|
|
89
|
-
}, {
|
|
90
|
-
label: 'none',
|
|
91
|
-
value: 'none'
|
|
92
|
-
}],
|
|
93
|
-
options: [{
|
|
94
|
-
label: 'left',
|
|
95
|
-
value: 'left'
|
|
96
|
-
}, {
|
|
97
|
-
label: 'right',
|
|
98
|
-
value: 'right'
|
|
99
|
-
}, {
|
|
100
|
-
label: 'none',
|
|
101
|
-
value: 'none'
|
|
102
|
-
}]
|
|
103
|
-
},
|
|
104
|
-
initialValue: 'left'
|
|
105
|
-
}
|
|
106
|
-
}, {
|
|
107
|
-
title: {
|
|
108
|
-
label: {
|
|
109
|
-
type: 'i18n',
|
|
110
|
-
'en-US': 'description',
|
|
111
|
-
'zh-CN': '说明'
|
|
112
|
-
},
|
|
113
|
-
tip: 'description | 说明'
|
|
114
|
-
},
|
|
115
|
-
name: 'description',
|
|
116
|
-
description: '说明',
|
|
117
|
-
setter: {
|
|
118
|
-
componentName: 'StringSetter',
|
|
119
|
-
isRequired: false,
|
|
120
|
-
initialValue: ''
|
|
121
|
-
}
|
|
122
|
-
}, {
|
|
123
|
-
title: {
|
|
124
|
-
label: {
|
|
125
|
-
type: 'i18n',
|
|
126
|
-
'en-US': 'tags',
|
|
127
|
-
'zh-CN': '标签列表'
|
|
128
|
-
},
|
|
129
|
-
tip: 'tags | 标签列表'
|
|
130
|
-
},
|
|
131
|
-
name: 'tags',
|
|
132
|
-
description: '标签列表',
|
|
133
|
-
setter: {
|
|
134
|
-
componentName: 'StringSetter',
|
|
135
|
-
isRequired: false,
|
|
136
|
-
initialValue: ''
|
|
137
|
-
}
|
|
138
|
-
}],
|
|
139
|
-
supports: {
|
|
140
|
-
style: true
|
|
141
|
-
},
|
|
142
|
-
component: {
|
|
143
|
-
isContainer: true,
|
|
144
|
-
nestingRule: {
|
|
145
|
-
childWhitelist: ['']
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
};
|
|
150
|
-
var snippets = [{
|
|
151
|
-
title: 'TeletextListItem',
|
|
152
|
-
screenshot: '',
|
|
153
|
-
schema: {
|
|
154
|
-
componentName: 'TeletextListItem',
|
|
155
|
-
props: {},
|
|
156
|
-
children: [{
|
|
157
|
-
componentName: 'Title1',
|
|
158
|
-
props: {
|
|
159
|
-
type: 'h5',
|
|
160
|
-
children: '列表标题',
|
|
161
|
-
key: 'box-title'
|
|
162
|
-
}
|
|
163
|
-
}, {
|
|
164
|
-
componentName: 'Image',
|
|
165
|
-
props: {
|
|
166
|
-
src: 'https://img.alicdn.com/tps/TB16TQvOXXXXXbiaFXXXXXXXXXX-120-120.svg',
|
|
167
|
-
key: 'image'
|
|
168
|
-
}
|
|
169
|
-
}, {
|
|
170
|
-
componentName: 'NextText',
|
|
171
|
-
props: {
|
|
172
|
-
type: 'h5',
|
|
173
|
-
children: '标题标题',
|
|
174
|
-
key: 'title'
|
|
175
|
-
}
|
|
176
|
-
}, {
|
|
177
|
-
componentName: 'NextText',
|
|
178
|
-
props: {
|
|
179
|
-
type: 'inherit',
|
|
180
|
-
children: '基于 Ali-Lowcode-Engine 快速打造高生产力的低代码研发平台, 基于自然布局体系快速搭建页面',
|
|
181
|
-
key: 'content'
|
|
182
|
-
}
|
|
183
|
-
}, {
|
|
184
|
-
componentName: 'TagC',
|
|
185
|
-
props: {
|
|
186
|
-
name: '报名火热',
|
|
187
|
-
color: 'orange',
|
|
188
|
-
key: 'teletext-tag-c'
|
|
189
|
-
}
|
|
190
|
-
}]
|
|
191
|
-
}
|
|
192
|
-
}];
|
|
193
|
-
export default _extends({}, TeletextListItemMeta, {
|
|
194
|
-
snippets: snippets
|
|
195
|
-
});
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { IPublicTypeSnippet } from '@alilc/lowcode-types';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
snippets: IPublicTypeSnippet[];
|
|
4
|
-
componentName: string;
|
|
5
|
-
uri?: string;
|
|
6
|
-
title?: import("@alilc/lowcode-types").IPublicTypeTitleContent;
|
|
7
|
-
icon?: import("@alilc/lowcode-types").IPublicTypeIconType;
|
|
8
|
-
tags?: string[];
|
|
9
|
-
description?: string;
|
|
10
|
-
docUrl?: string;
|
|
11
|
-
screenshot?: string;
|
|
12
|
-
devMode?: "proCode" | "lowCode";
|
|
13
|
-
npm?: import("@alilc/lowcode-types").IPublicTypeNpmInfo;
|
|
14
|
-
props?: import("@alilc/lowcode-types").IPublicTypePropConfig[];
|
|
15
|
-
configure?: import("@alilc/lowcode-types").IPublicTypeFieldConfig[] | import("@alilc/lowcode-types").IPublicTypeConfigure;
|
|
16
|
-
experimental?: import("@alilc/lowcode-types").IPublicTypeAdvanced;
|
|
17
|
-
schema?: import("@alilc/lowcode-types").IPublicTypeComponentSchema;
|
|
18
|
-
group?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
|
|
19
|
-
category?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
|
|
20
|
-
priority?: number;
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
exports.__esModule = true;
|
|
5
|
-
exports["default"] = void 0;
|
|
6
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
7
|
-
var TeletextListItemMeta = {
|
|
8
|
-
componentName: 'TeletextListItem',
|
|
9
|
-
title: 'TeletextListItem',
|
|
10
|
-
docUrl: '',
|
|
11
|
-
screenshot: '',
|
|
12
|
-
devMode: 'proCode',
|
|
13
|
-
npm: {
|
|
14
|
-
"package": '@dckj-npm/dc-material',
|
|
15
|
-
version: '0.1.160',
|
|
16
|
-
exportName: 'TeletextListItem',
|
|
17
|
-
main: 'src\\index.tsx',
|
|
18
|
-
destructuring: true,
|
|
19
|
-
subName: ''
|
|
20
|
-
},
|
|
21
|
-
configure: {
|
|
22
|
-
props: [{
|
|
23
|
-
title: {
|
|
24
|
-
label: {
|
|
25
|
-
type: 'i18n',
|
|
26
|
-
'en-US': 'onClick',
|
|
27
|
-
'zh-CN': '点击事件'
|
|
28
|
-
},
|
|
29
|
-
tip: 'onClick | 点击事件'
|
|
30
|
-
},
|
|
31
|
-
name: 'onClick',
|
|
32
|
-
description: '点击事件',
|
|
33
|
-
setter: {
|
|
34
|
-
componentName: 'FunctionSetter'
|
|
35
|
-
}
|
|
36
|
-
}, {
|
|
37
|
-
title: {
|
|
38
|
-
label: {
|
|
39
|
-
type: 'i18n',
|
|
40
|
-
'en-US': 'title',
|
|
41
|
-
'zh-CN': '标题'
|
|
42
|
-
},
|
|
43
|
-
tip: 'title | 标题'
|
|
44
|
-
},
|
|
45
|
-
name: 'title',
|
|
46
|
-
description: '标题',
|
|
47
|
-
setter: {
|
|
48
|
-
componentName: 'StringSetter',
|
|
49
|
-
isRequired: false,
|
|
50
|
-
initialValue: ''
|
|
51
|
-
}
|
|
52
|
-
}, {
|
|
53
|
-
title: {
|
|
54
|
-
label: {
|
|
55
|
-
type: 'i18n',
|
|
56
|
-
'en-US': 'image',
|
|
57
|
-
'zh-CN': '图片地址'
|
|
58
|
-
},
|
|
59
|
-
tip: 'image | 图片地址'
|
|
60
|
-
},
|
|
61
|
-
name: 'image',
|
|
62
|
-
description: '图片地址',
|
|
63
|
-
setter: {
|
|
64
|
-
componentName: 'ArraySetter',
|
|
65
|
-
props: {
|
|
66
|
-
itemSetter: {
|
|
67
|
-
componentName: 'StringSetter',
|
|
68
|
-
isRequired: false,
|
|
69
|
-
initialValue: ''
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
initialValue: []
|
|
73
|
-
}
|
|
74
|
-
}, {
|
|
75
|
-
title: {
|
|
76
|
-
label: {
|
|
77
|
-
type: 'i18n',
|
|
78
|
-
'en-US': 'imagePlacement',
|
|
79
|
-
'zh-CN': '图片位置'
|
|
80
|
-
},
|
|
81
|
-
tip: 'imagePlacement | 图片位置'
|
|
82
|
-
},
|
|
83
|
-
name: 'imagePlacement',
|
|
84
|
-
description: '图片位置',
|
|
85
|
-
setter: {
|
|
86
|
-
componentName: 'RadioGroupSetter',
|
|
87
|
-
props: {
|
|
88
|
-
dataSource: [{
|
|
89
|
-
label: 'left',
|
|
90
|
-
value: 'left'
|
|
91
|
-
}, {
|
|
92
|
-
label: 'right',
|
|
93
|
-
value: 'right'
|
|
94
|
-
}, {
|
|
95
|
-
label: 'none',
|
|
96
|
-
value: 'none'
|
|
97
|
-
}],
|
|
98
|
-
options: [{
|
|
99
|
-
label: 'left',
|
|
100
|
-
value: 'left'
|
|
101
|
-
}, {
|
|
102
|
-
label: 'right',
|
|
103
|
-
value: 'right'
|
|
104
|
-
}, {
|
|
105
|
-
label: 'none',
|
|
106
|
-
value: 'none'
|
|
107
|
-
}]
|
|
108
|
-
},
|
|
109
|
-
initialValue: 'left'
|
|
110
|
-
}
|
|
111
|
-
}, {
|
|
112
|
-
title: {
|
|
113
|
-
label: {
|
|
114
|
-
type: 'i18n',
|
|
115
|
-
'en-US': 'description',
|
|
116
|
-
'zh-CN': '说明'
|
|
117
|
-
},
|
|
118
|
-
tip: 'description | 说明'
|
|
119
|
-
},
|
|
120
|
-
name: 'description',
|
|
121
|
-
description: '说明',
|
|
122
|
-
setter: {
|
|
123
|
-
componentName: 'StringSetter',
|
|
124
|
-
isRequired: false,
|
|
125
|
-
initialValue: ''
|
|
126
|
-
}
|
|
127
|
-
}, {
|
|
128
|
-
title: {
|
|
129
|
-
label: {
|
|
130
|
-
type: 'i18n',
|
|
131
|
-
'en-US': 'tags',
|
|
132
|
-
'zh-CN': '标签列表'
|
|
133
|
-
},
|
|
134
|
-
tip: 'tags | 标签列表'
|
|
135
|
-
},
|
|
136
|
-
name: 'tags',
|
|
137
|
-
description: '标签列表',
|
|
138
|
-
setter: {
|
|
139
|
-
componentName: 'StringSetter',
|
|
140
|
-
isRequired: false,
|
|
141
|
-
initialValue: ''
|
|
142
|
-
}
|
|
143
|
-
}],
|
|
144
|
-
supports: {
|
|
145
|
-
style: true
|
|
146
|
-
},
|
|
147
|
-
component: {
|
|
148
|
-
isContainer: true,
|
|
149
|
-
nestingRule: {
|
|
150
|
-
childWhitelist: ['']
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
};
|
|
155
|
-
var snippets = [{
|
|
156
|
-
title: 'TeletextListItem',
|
|
157
|
-
screenshot: '',
|
|
158
|
-
schema: {
|
|
159
|
-
componentName: 'TeletextListItem',
|
|
160
|
-
props: {},
|
|
161
|
-
children: [{
|
|
162
|
-
componentName: 'Title1',
|
|
163
|
-
props: {
|
|
164
|
-
type: 'h5',
|
|
165
|
-
children: '列表标题',
|
|
166
|
-
key: 'box-title'
|
|
167
|
-
}
|
|
168
|
-
}, {
|
|
169
|
-
componentName: 'Image',
|
|
170
|
-
props: {
|
|
171
|
-
src: 'https://img.alicdn.com/tps/TB16TQvOXXXXXbiaFXXXXXXXXXX-120-120.svg',
|
|
172
|
-
key: 'image'
|
|
173
|
-
}
|
|
174
|
-
}, {
|
|
175
|
-
componentName: 'NextText',
|
|
176
|
-
props: {
|
|
177
|
-
type: 'h5',
|
|
178
|
-
children: '标题标题',
|
|
179
|
-
key: 'title'
|
|
180
|
-
}
|
|
181
|
-
}, {
|
|
182
|
-
componentName: 'NextText',
|
|
183
|
-
props: {
|
|
184
|
-
type: 'inherit',
|
|
185
|
-
children: '基于 Ali-Lowcode-Engine 快速打造高生产力的低代码研发平台, 基于自然布局体系快速搭建页面',
|
|
186
|
-
key: 'content'
|
|
187
|
-
}
|
|
188
|
-
}, {
|
|
189
|
-
componentName: 'TagC',
|
|
190
|
-
props: {
|
|
191
|
-
name: '报名火热',
|
|
192
|
-
color: 'orange',
|
|
193
|
-
key: 'teletext-tag-c'
|
|
194
|
-
}
|
|
195
|
-
}]
|
|
196
|
-
}
|
|
197
|
-
}];
|
|
198
|
-
var _default = exports["default"] = (0, _extends2["default"])({}, TeletextListItemMeta, {
|
|
199
|
-
snippets: snippets
|
|
200
|
-
});
|