@dckj-npm/dc-material 0.1.359 → 0.1.360

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.
Files changed (51) hide show
  1. package/build/lowcode/assets-daily.json +13 -13
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +13 -13
  4. package/build/lowcode/index.js +1 -1
  5. package/build/lowcode/meta.design.js +1 -1
  6. package/build/lowcode/meta.js +1 -1
  7. package/build/lowcode/preview.js +6 -6
  8. package/build/lowcode/render/default/view.css +1 -1
  9. package/build/lowcode/render/default/view.js +5 -5
  10. package/build/lowcode/view.css +1 -1
  11. package/build/lowcode/view.js +5 -5
  12. package/dist/BizComps.css +1 -1
  13. package/dist/BizComps.js +2 -2
  14. package/dist/BizComps.js.map +1 -1
  15. package/es/components/custom-form/custom-form.d.ts +37 -0
  16. package/es/components/custom-form/custom-form.js +158 -0
  17. package/es/components/custom-form/index.d.ts +6 -0
  18. package/es/components/custom-form/index.js +6 -0
  19. package/es/components/custom-form/index.scss +25 -0
  20. package/es/components/teletext-list/teletext-list-item.js +3 -3
  21. package/es/components/teletext-list/teletext-list.js +2 -1
  22. package/es/index.d.ts +2 -0
  23. package/es/index.js +4 -0
  24. package/es/style.js +8 -0
  25. package/es/utils/children-node-handle.js +5 -0
  26. package/lib/components/custom-form/custom-form.d.ts +37 -0
  27. package/lib/components/custom-form/custom-form.js +164 -0
  28. package/lib/components/custom-form/index.d.ts +6 -0
  29. package/lib/components/custom-form/index.js +6 -0
  30. package/lib/components/custom-form/index.scss +25 -0
  31. package/lib/components/teletext-list/teletext-list-item.js +3 -3
  32. package/lib/components/teletext-list/teletext-list.js +2 -1
  33. package/lib/index.d.ts +2 -0
  34. package/lib/index.js +6 -1
  35. package/lib/style.js +8 -0
  36. package/lib/utils/children-node-handle.js +5 -0
  37. package/lowcode/custom-form/meta.ts +307 -0
  38. package/lowcode_es/custom-form/meta.d.ts +22 -0
  39. package/lowcode_es/custom-form/meta.js +302 -0
  40. package/lowcode_es/meta.js +3 -2
  41. package/lowcode_lib/custom-form/meta.d.ts +22 -0
  42. package/lowcode_lib/custom-form/meta.js +307 -0
  43. package/lowcode_lib/meta.js +41 -40
  44. package/package.json +3 -3
  45. package/build/docs/colorful-button.html +0 -48
  46. package/build/docs/colorful-input.html +0 -48
  47. package/build/docs/index.html +0 -48
  48. package/build/docs/umi.d22560a0.css +0 -8
  49. package/build/docs/umi.d7be81d3.js +0 -1
  50. package/build/docs/~demos/colorful-button-demo.html +0 -47
  51. package/build/docs/~demos/colorful-input-demo.html +0 -47
package/lib/style.js CHANGED
@@ -9,4 +9,12 @@ require('@alifd/next/lib/switch/style');
9
9
  require('@alifd/next/lib/breadcrumb/style');
10
10
  require('@alifd/next/lib/collapse/style');
11
11
  require('@alifd/next/lib/rating/style');
12
+ require('@alifd/next/lib/upload/style');
13
+ require('@alifd/next/lib/number-picker/style');
14
+ require('@alifd/next/lib/date-picker/style');
15
+ require('@alifd/next/lib/checkbox/style');
16
+ require('@alifd/next/lib/radio/style');
17
+ require('@alifd/next/lib/input/style');
18
+ require('@alifd/next/lib/responsive-grid/style');
19
+ require('@alifd/next/lib/form/style');
12
20
  require('./index.scss');
@@ -19,8 +19,13 @@ function convertChildren(children, key, props) {
19
19
  for (var i = 0; i < children.length; i++) {
20
20
  var child = children[i];
21
21
  if (child.key === key) {
22
+ var _child$props;
22
23
  // 属性融合
23
24
  var propsContact = props ? (0, _extends2["default"])({}, child.props, props) : child.props;
25
+ // 样式融合
26
+ if (props !== null && props !== void 0 && props.style && (_child$props = child.props) !== null && _child$props !== void 0 && _child$props.style) {
27
+ propsContact.style = (0, _extends2["default"])({}, child.props.style, props.style);
28
+ }
24
29
  node = /*#__PURE__*/_react["default"].cloneElement(child, propsContact);
25
30
  break;
26
31
  }
@@ -0,0 +1,307 @@
1
+ import { IPublicTypeComponentMetadata, IPublicTypeSnippet } from '@alilc/lowcode-types'
2
+
3
+ const CustomFormMeta: IPublicTypeComponentMetadata = {
4
+ group: '低代码组件',
5
+ componentName: 'CustomForm',
6
+ title: '自定义表单',
7
+ docUrl: '',
8
+ screenshot: '',
9
+ devMode: 'proCode',
10
+ category: '信息输入',
11
+ npm: {
12
+ package: '@dckj-npm/dc-material',
13
+ version: '0.1.359',
14
+ exportName: 'CustomForm',
15
+ main: 'src/index.tsx',
16
+ destructuring: true,
17
+ subName: '',
18
+ },
19
+ configure: {
20
+ component: {
21
+ isContainer: true,
22
+ },
23
+ props: [
24
+ {
25
+ title: '列数',
26
+ name: 'columns',
27
+ setter: {
28
+ componentName: 'RadioGroupSetter',
29
+ props: {
30
+ dataSource: [
31
+ { label: '一列', value: 1 },
32
+ { label: '二列', value: 2 },
33
+ { label: '三列', value: 3 },
34
+ { label: '四列', value: 4 },
35
+ ],
36
+ options: [
37
+ { label: '一列', value: 1 },
38
+ { label: '二列', value: 2 },
39
+ { label: '三列', value: 3 },
40
+ { label: '四列', value: 4 },
41
+ ],
42
+ },
43
+ initialValue: 1,
44
+ },
45
+ },
46
+ {
47
+ title: '间距',
48
+ name: 'spacing',
49
+ setter: {
50
+ componentName: 'JsonSetter',
51
+ isRequired: false,
52
+ initialValue: [0, 16, 16, 0],
53
+ },
54
+ },
55
+ {
56
+ title: '空态文案',
57
+ name: 'emptyContent',
58
+ setter: {
59
+ componentName: 'StringSetter',
60
+ isRequired: false,
61
+ initialValue: '添加表单项',
62
+ },
63
+ },
64
+ {
65
+ title: '表单项',
66
+ name: 'formItems',
67
+ setter: {
68
+ componentName: 'ArraySetter',
69
+ props: {
70
+ itemSetter: {
71
+ componentName: 'ObjectSetter',
72
+ props: {
73
+ config: {
74
+ items: [
75
+ {
76
+ title: '字段名',
77
+ name: 'field',
78
+ setter: {
79
+ componentName: 'StringSetter',
80
+ isRequired: true,
81
+ initialValue: '',
82
+ },
83
+ },
84
+ {
85
+ title: '标题',
86
+ name: 'label',
87
+ setter: {
88
+ componentName: 'StringSetter',
89
+ isRequired: false,
90
+ initialValue: '',
91
+ },
92
+ },
93
+ {
94
+ title: '必填',
95
+ name: 'required',
96
+ setter: {
97
+ componentName: 'BoolSetter',
98
+ isRequired: false,
99
+ initialValue: false,
100
+ },
101
+ },
102
+ {
103
+ title: '组件类型',
104
+ name: 'componentType',
105
+ setter: {
106
+ componentName: 'SelectSetter',
107
+ props: {
108
+ options: [
109
+ { label: '输入框', value: 'Input' },
110
+ { label: '多行文本', value: 'TextArea' },
111
+ { label: '下拉选择', value: 'Select' },
112
+ { label: '单选组', value: 'RadioGroup' },
113
+ { label: '复选组', value: 'CheckboxGroup' },
114
+ { label: '数字输入', value: 'NumberPicker' },
115
+ { label: '日期选择', value: 'DatePicker' },
116
+ { label: '上传', value: 'Upload' },
117
+ ],
118
+ },
119
+ initialValue: 'Input',
120
+ },
121
+ },
122
+ {
123
+ title: '选项',
124
+ name: 'options',
125
+ setter: {
126
+ componentName: 'ArraySetter',
127
+ props: {
128
+ itemSetter: {
129
+ componentName: 'ObjectSetter',
130
+ props: {
131
+ config: {
132
+ items: [
133
+ {
134
+ title: '名称',
135
+ name: 'label',
136
+ setter: {
137
+ componentName: 'StringSetter',
138
+ isRequired: true,
139
+ initialValue: '',
140
+ },
141
+ },
142
+ {
143
+ title: '值',
144
+ name: 'value',
145
+ setter: {
146
+ componentName: 'StringSetter',
147
+ isRequired: true,
148
+ initialValue: '',
149
+ },
150
+ },
151
+ ],
152
+ },
153
+ },
154
+ },
155
+ },
156
+ initialValue: [],
157
+ },
158
+ },
159
+ {
160
+ title: '列跨度',
161
+ name: 'columnSpan',
162
+ setter: {
163
+ componentName: 'NumberSetter',
164
+ props: {
165
+ min: 1,
166
+ max: 4,
167
+ },
168
+ initialValue: 1,
169
+ },
170
+ },
171
+ {
172
+ title: '组件属性',
173
+ name: 'componentProps',
174
+ setter: {
175
+ componentName: 'JsonSetter',
176
+ isRequired: false,
177
+ },
178
+ },
179
+ {
180
+ title: '表单项属性',
181
+ name: 'formItemProps',
182
+ setter: {
183
+ componentName: 'JsonSetter',
184
+ isRequired: false,
185
+ },
186
+ },
187
+ ],
188
+ extraSetter: {
189
+ componentName: 'MixedSetter',
190
+ isRequired: false,
191
+ props: {},
192
+ },
193
+ },
194
+ },
195
+ },
196
+ },
197
+ initialValue: [],
198
+ },
199
+ },
200
+ {
201
+ title: '显示提交按钮',
202
+ name: 'showSubmit',
203
+ setter: {
204
+ componentName: 'BoolSetter',
205
+ initialValue: true,
206
+ },
207
+ },
208
+ {
209
+ title: '提交按钮文字',
210
+ name: 'submitText',
211
+ setter: {
212
+ componentName: 'StringSetter',
213
+ initialValue: '提交',
214
+ },
215
+ },
216
+ {
217
+ title: '提交时校验',
218
+ name: 'submitValidate',
219
+ setter: {
220
+ componentName: 'BoolSetter',
221
+ initialValue: true,
222
+ },
223
+ },
224
+ {
225
+ title: '提交数据源',
226
+ name: 'submitDataSource',
227
+ setter: {
228
+ componentName: 'SetterFormVariable',
229
+ props: {
230
+ showAttributesPanel: false,
231
+ },
232
+ },
233
+ },
234
+ {
235
+ title: '显示重置按钮',
236
+ name: 'showReset',
237
+ setter: {
238
+ componentName: 'BoolSetter',
239
+ initialValue: false,
240
+ },
241
+ },
242
+ {
243
+ title: '重置按钮文字',
244
+ name: 'resetText',
245
+ setter: {
246
+ componentName: 'StringSetter',
247
+ initialValue: '重置',
248
+ },
249
+ },
250
+ ],
251
+ supports: {
252
+ style: true,
253
+ events: [
254
+ {
255
+ name: 'onSubmit',
256
+ template:
257
+ "onSubmit(values, errors, field,${extParams}){\n// 提交成功(无校验错误)\nconsole.log('onSubmit', values, errors, field);\n}",
258
+ },
259
+ {
260
+ name: 'onSubmitFailed',
261
+ template:
262
+ "onSubmitFailed(values, errors, field,${extParams}){\n// 提交失败(校验错误)\nconsole.log('onSubmitFailed', values, errors, field);\n}",
263
+ },
264
+ ],
265
+ },
266
+ },
267
+ }
268
+
269
+ const snippets: IPublicTypeSnippet[] = [
270
+ {
271
+ title: '自定义表单',
272
+ screenshot: '',
273
+ schema: {
274
+ componentName: 'CustomForm',
275
+ props: {
276
+ columns: 1,
277
+ formItems: [
278
+ {
279
+ field: 'name',
280
+ label: '姓名',
281
+ required: true,
282
+ componentType: 'Input',
283
+ componentProps: {
284
+ placeholder: '请输入姓名',
285
+ },
286
+ },
287
+ {
288
+ field: 'gender',
289
+ label: '性别',
290
+ componentType: 'RadioGroup',
291
+ options: [
292
+ { label: '男', value: 'male' },
293
+ { label: '女', value: 'female' },
294
+ ],
295
+ },
296
+ ],
297
+ showSubmit: true,
298
+ submitText: '提交',
299
+ },
300
+ },
301
+ },
302
+ ]
303
+
304
+ export default {
305
+ ...CustomFormMeta,
306
+ snippets,
307
+ }
@@ -0,0 +1,22 @@
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;
@@ -0,0 +1,302 @@
1
+ import _extends from "@babel/runtime/helpers/extends";
2
+ var CustomFormMeta = {
3
+ group: '低代码组件',
4
+ componentName: 'CustomForm',
5
+ title: '自定义表单',
6
+ docUrl: '',
7
+ screenshot: '',
8
+ devMode: 'proCode',
9
+ category: '信息输入',
10
+ npm: {
11
+ "package": '@dckj-npm/dc-material',
12
+ version: '0.1.359',
13
+ exportName: 'CustomForm',
14
+ main: 'src/index.tsx',
15
+ destructuring: true,
16
+ subName: ''
17
+ },
18
+ configure: {
19
+ component: {
20
+ isContainer: true
21
+ },
22
+ props: [{
23
+ title: '列数',
24
+ name: 'columns',
25
+ setter: {
26
+ componentName: 'RadioGroupSetter',
27
+ props: {
28
+ dataSource: [{
29
+ label: '一列',
30
+ value: 1
31
+ }, {
32
+ label: '二列',
33
+ value: 2
34
+ }, {
35
+ label: '三列',
36
+ value: 3
37
+ }, {
38
+ label: '四列',
39
+ value: 4
40
+ }],
41
+ options: [{
42
+ label: '一列',
43
+ value: 1
44
+ }, {
45
+ label: '二列',
46
+ value: 2
47
+ }, {
48
+ label: '三列',
49
+ value: 3
50
+ }, {
51
+ label: '四列',
52
+ value: 4
53
+ }]
54
+ },
55
+ initialValue: 1
56
+ }
57
+ }, {
58
+ title: '间距',
59
+ name: 'spacing',
60
+ setter: {
61
+ componentName: 'JsonSetter',
62
+ isRequired: false,
63
+ initialValue: [0, 16, 16, 0]
64
+ }
65
+ }, {
66
+ title: '空态文案',
67
+ name: 'emptyContent',
68
+ setter: {
69
+ componentName: 'StringSetter',
70
+ isRequired: false,
71
+ initialValue: '添加表单项'
72
+ }
73
+ }, {
74
+ title: '表单项',
75
+ name: 'formItems',
76
+ setter: {
77
+ componentName: 'ArraySetter',
78
+ props: {
79
+ itemSetter: {
80
+ componentName: 'ObjectSetter',
81
+ props: {
82
+ config: {
83
+ items: [{
84
+ title: '字段名',
85
+ name: 'field',
86
+ setter: {
87
+ componentName: 'StringSetter',
88
+ isRequired: true,
89
+ initialValue: ''
90
+ }
91
+ }, {
92
+ title: '标题',
93
+ name: 'label',
94
+ setter: {
95
+ componentName: 'StringSetter',
96
+ isRequired: false,
97
+ initialValue: ''
98
+ }
99
+ }, {
100
+ title: '必填',
101
+ name: 'required',
102
+ setter: {
103
+ componentName: 'BoolSetter',
104
+ isRequired: false,
105
+ initialValue: false
106
+ }
107
+ }, {
108
+ title: '组件类型',
109
+ name: 'componentType',
110
+ setter: {
111
+ componentName: 'SelectSetter',
112
+ props: {
113
+ options: [{
114
+ label: '输入框',
115
+ value: 'Input'
116
+ }, {
117
+ label: '多行文本',
118
+ value: 'TextArea'
119
+ }, {
120
+ label: '下拉选择',
121
+ value: 'Select'
122
+ }, {
123
+ label: '单选组',
124
+ value: 'RadioGroup'
125
+ }, {
126
+ label: '复选组',
127
+ value: 'CheckboxGroup'
128
+ }, {
129
+ label: '数字输入',
130
+ value: 'NumberPicker'
131
+ }, {
132
+ label: '日期选择',
133
+ value: 'DatePicker'
134
+ }, {
135
+ label: '上传',
136
+ value: 'Upload'
137
+ }]
138
+ },
139
+ initialValue: 'Input'
140
+ }
141
+ }, {
142
+ title: '选项',
143
+ name: 'options',
144
+ setter: {
145
+ componentName: 'ArraySetter',
146
+ props: {
147
+ itemSetter: {
148
+ componentName: 'ObjectSetter',
149
+ props: {
150
+ config: {
151
+ items: [{
152
+ title: '名称',
153
+ name: 'label',
154
+ setter: {
155
+ componentName: 'StringSetter',
156
+ isRequired: true,
157
+ initialValue: ''
158
+ }
159
+ }, {
160
+ title: '值',
161
+ name: 'value',
162
+ setter: {
163
+ componentName: 'StringSetter',
164
+ isRequired: true,
165
+ initialValue: ''
166
+ }
167
+ }]
168
+ }
169
+ }
170
+ }
171
+ },
172
+ initialValue: []
173
+ }
174
+ }, {
175
+ title: '列跨度',
176
+ name: 'columnSpan',
177
+ setter: {
178
+ componentName: 'NumberSetter',
179
+ props: {
180
+ min: 1,
181
+ max: 4
182
+ },
183
+ initialValue: 1
184
+ }
185
+ }, {
186
+ title: '组件属性',
187
+ name: 'componentProps',
188
+ setter: {
189
+ componentName: 'JsonSetter',
190
+ isRequired: false
191
+ }
192
+ }, {
193
+ title: '表单项属性',
194
+ name: 'formItemProps',
195
+ setter: {
196
+ componentName: 'JsonSetter',
197
+ isRequired: false
198
+ }
199
+ }],
200
+ extraSetter: {
201
+ componentName: 'MixedSetter',
202
+ isRequired: false,
203
+ props: {}
204
+ }
205
+ }
206
+ }
207
+ }
208
+ },
209
+ initialValue: []
210
+ }
211
+ }, {
212
+ title: '显示提交按钮',
213
+ name: 'showSubmit',
214
+ setter: {
215
+ componentName: 'BoolSetter',
216
+ initialValue: true
217
+ }
218
+ }, {
219
+ title: '提交按钮文字',
220
+ name: 'submitText',
221
+ setter: {
222
+ componentName: 'StringSetter',
223
+ initialValue: '提交'
224
+ }
225
+ }, {
226
+ title: '提交时校验',
227
+ name: 'submitValidate',
228
+ setter: {
229
+ componentName: 'BoolSetter',
230
+ initialValue: true
231
+ }
232
+ }, {
233
+ title: '提交数据源',
234
+ name: 'submitDataSource',
235
+ setter: {
236
+ componentName: 'SetterFormVariable',
237
+ props: {
238
+ showAttributesPanel: false
239
+ }
240
+ }
241
+ }, {
242
+ title: '显示重置按钮',
243
+ name: 'showReset',
244
+ setter: {
245
+ componentName: 'BoolSetter',
246
+ initialValue: false
247
+ }
248
+ }, {
249
+ title: '重置按钮文字',
250
+ name: 'resetText',
251
+ setter: {
252
+ componentName: 'StringSetter',
253
+ initialValue: '重置'
254
+ }
255
+ }],
256
+ supports: {
257
+ style: true,
258
+ events: [{
259
+ name: 'onSubmit',
260
+ template: "onSubmit(values, errors, field,${extParams}){\n// 提交成功(无校验错误)\nconsole.log('onSubmit', values, errors, field);\n}"
261
+ }, {
262
+ name: 'onSubmitFailed',
263
+ template: "onSubmitFailed(values, errors, field,${extParams}){\n// 提交失败(校验错误)\nconsole.log('onSubmitFailed', values, errors, field);\n}"
264
+ }]
265
+ }
266
+ }
267
+ };
268
+ var snippets = [{
269
+ title: '自定义表单',
270
+ screenshot: '',
271
+ schema: {
272
+ componentName: 'CustomForm',
273
+ props: {
274
+ columns: 1,
275
+ formItems: [{
276
+ field: 'name',
277
+ label: '姓名',
278
+ required: true,
279
+ componentType: 'Input',
280
+ componentProps: {
281
+ placeholder: '请输入姓名'
282
+ }
283
+ }, {
284
+ field: 'gender',
285
+ label: '性别',
286
+ componentType: 'RadioGroup',
287
+ options: [{
288
+ label: '男',
289
+ value: 'male'
290
+ }, {
291
+ label: '女',
292
+ value: 'female'
293
+ }]
294
+ }],
295
+ showSubmit: true,
296
+ submitText: '提交'
297
+ }
298
+ }
299
+ }];
300
+ export default _extends({}, CustomFormMeta, {
301
+ snippets: snippets
302
+ });
@@ -7,6 +7,7 @@ import CollapseSelectorItemMeta from 'E:/projects/source-code/pupu-lowcode/lowco
7
7
  import CollapseSelectorMeta from 'E:/projects/source-code/pupu-lowcode/lowcode-react-material/lowcode/collapse-selector/meta';
8
8
  import CollapseMeta from 'E:/projects/source-code/pupu-lowcode/lowcode-react-material/lowcode/collapse/meta';
9
9
  import CustomDrawerMeta from 'E:/projects/source-code/pupu-lowcode/lowcode-react-material/lowcode/custom-drawer/meta';
10
+ import CustomFormMeta from 'E:/projects/source-code/pupu-lowcode/lowcode-react-material/lowcode/custom-form/meta';
10
11
  import CustomRadioGroupItemMeta from 'E:/projects/source-code/pupu-lowcode/lowcode-react-material/lowcode/custom-radio-group-item/meta';
11
12
  import CustomRadioGroupMeta from 'E:/projects/source-code/pupu-lowcode/lowcode-react-material/lowcode/custom-radio-group/meta';
12
13
  import CustomSelectMeta from 'E:/projects/source-code/pupu-lowcode/lowcode-react-material/lowcode/custom-select/meta';
@@ -116,7 +117,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
116
117
  packageName = '@dckj-npm/dc-material';
117
118
  }
118
119
  if (version === void 0) {
119
- version = '0.1.359';
120
+ version = '0.1.360';
120
121
  }
121
122
  if (basicLibraryVersion === void 0) {
122
123
  basicLibraryVersion = {
@@ -143,7 +144,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
143
144
  }
144
145
  return meta;
145
146
  }
146
- var componentMetas = [AccordionSelectorMeta, AddressListMeta, BreadCrumbMeta, Button2Meta, CollapseSelectorItemMeta, CollapseSelectorMeta, CollapseMeta, CustomDrawerMeta, CustomRadioGroupItemMeta, CustomRadioGroupMeta, CustomSelectMeta, DCSliderMeta, DrawerMeta, FormMeta, GoodsCardListCommonMeta, GoodsCardListMeta, GridNavMeta, ImageMeta, InputMeta, IntegralTaskMeta, ItemMeta, MemberCardMeta, MenuListMeta, MessageListMeta, NavigationMeta, NoticeBarMeta, PositionMeta, ProfileMeta, RatingMeta, ReviewListMeta, RichTextMeta, SearchBarMeta, SearchHistoryListMeta, ShoppingCartMeta, StreamListMeta, SwiperMeta, SwitchMeta, TabContainerItemMeta, TabContainerMeta, TabMessageMeta, TagCMeta, TeletextListMeta, TextDescriptionDetailListMeta, Title1Meta, Title2Meta, UserCardMeta];
147
+ var componentMetas = [AccordionSelectorMeta, AddressListMeta, BreadCrumbMeta, Button2Meta, CollapseSelectorItemMeta, CollapseSelectorMeta, CollapseMeta, CustomDrawerMeta, CustomFormMeta, CustomRadioGroupItemMeta, CustomRadioGroupMeta, CustomSelectMeta, DCSliderMeta, DrawerMeta, FormMeta, GoodsCardListCommonMeta, GoodsCardListMeta, GridNavMeta, ImageMeta, InputMeta, IntegralTaskMeta, ItemMeta, MemberCardMeta, MenuListMeta, MessageListMeta, NavigationMeta, NoticeBarMeta, PositionMeta, ProfileMeta, RatingMeta, ReviewListMeta, RichTextMeta, SearchBarMeta, SearchHistoryListMeta, ShoppingCartMeta, StreamListMeta, SwiperMeta, SwitchMeta, TabContainerItemMeta, TabContainerMeta, TabMessageMeta, TagCMeta, TeletextListMeta, TextDescriptionDetailListMeta, Title1Meta, Title2Meta, UserCardMeta];
147
148
  var components = [];
148
149
  var npmInfo = {};
149
150
  componentMetas.forEach(function (meta) {