@dckj-npm/dc-material 0.1.262 → 0.1.263
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/index.js +1 -1
- package/build/lowcode/meta.design.js +1 -1
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/preview.js +5 -5
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +2 -2
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +1 -1
- package/lowcode/text-description-detail-list/meta.ts +102 -0
- package/lowcode_es/meta.js +3 -2
- package/lowcode_es/text-description-detail-list/meta.d.ts +22 -0
- package/lowcode_es/text-description-detail-list/meta.js +99 -0
- package/lowcode_lib/meta.js +6 -5
- package/lowcode_lib/text-description-detail-list/meta.d.ts +22 -0
- package/lowcode_lib/text-description-detail-list/meta.js +104 -0
- package/package.json +2 -2
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import {
|
|
2
|
+
IPublicTypeComponentMetadata,
|
|
3
|
+
IPublicTypeSnippet,
|
|
4
|
+
IPublicTypeConfigure,
|
|
5
|
+
} from '@alilc/lowcode-types'
|
|
6
|
+
|
|
7
|
+
const TextDescriptionDetailListMeta: IPublicTypeComponentMetadata = {
|
|
8
|
+
group: '低代码组件',
|
|
9
|
+
componentName: 'TextDescriptionDetailList',
|
|
10
|
+
title: '文本描述详情列表',
|
|
11
|
+
docUrl: '',
|
|
12
|
+
screenshot: '',
|
|
13
|
+
devMode: 'proCode',
|
|
14
|
+
npm: {
|
|
15
|
+
package: '@dckj-npm/dc-material',
|
|
16
|
+
version: '0.1.262',
|
|
17
|
+
exportName: 'TextDescriptionDetailList',
|
|
18
|
+
main: 'src/index.tsx',
|
|
19
|
+
destructuring: true,
|
|
20
|
+
subName: '',
|
|
21
|
+
},
|
|
22
|
+
configure: {
|
|
23
|
+
props: [
|
|
24
|
+
{
|
|
25
|
+
title: '数据源绑定',
|
|
26
|
+
name: 'dataList',
|
|
27
|
+
setter: {
|
|
28
|
+
componentName: 'SetterFormVariable',
|
|
29
|
+
props: {
|
|
30
|
+
attributes: [
|
|
31
|
+
{
|
|
32
|
+
label: '选项',
|
|
33
|
+
value: 'options',
|
|
34
|
+
children: [
|
|
35
|
+
{ label: '标签', isRequire: true, value: 'label' },
|
|
36
|
+
{ label: '值', isRequire: true, value: 'value' },
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
title: '固定数据',
|
|
45
|
+
name: 'fixedData',
|
|
46
|
+
setter: {
|
|
47
|
+
componentName: 'ArraySetter',
|
|
48
|
+
props: {
|
|
49
|
+
itemSetter: {
|
|
50
|
+
componentName: 'ObjectSetter',
|
|
51
|
+
props: {
|
|
52
|
+
attributes: [
|
|
53
|
+
{ label: '标签', isRequire: true, value: 'label' },
|
|
54
|
+
{ label: '值', isRequire: true, value: 'value' },
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
title: '标签位置',
|
|
63
|
+
name: 'labelPosition',
|
|
64
|
+
setter: {
|
|
65
|
+
componentName: 'RadioGroupSetter',
|
|
66
|
+
props: {
|
|
67
|
+
options: [
|
|
68
|
+
{ label: '左', value: 'left' },
|
|
69
|
+
{ label: '上', value: 'top' },
|
|
70
|
+
],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
supports: {
|
|
76
|
+
style: true,
|
|
77
|
+
},
|
|
78
|
+
component: {
|
|
79
|
+
disableBehaviors: ['copy'],
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const snippets: IPublicTypeSnippet[] = [
|
|
85
|
+
{
|
|
86
|
+
title: '文本描述详情列表',
|
|
87
|
+
screenshot: '',
|
|
88
|
+
schema: {
|
|
89
|
+
componentName: 'TextDescriptionDetailList',
|
|
90
|
+
props: {
|
|
91
|
+
dataList: [],
|
|
92
|
+
fixedData: [],
|
|
93
|
+
labelPosition: 'left',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
export default {
|
|
100
|
+
...TextDescriptionDetailListMeta,
|
|
101
|
+
snippets,
|
|
102
|
+
}
|
package/lowcode_es/meta.js
CHANGED
|
@@ -28,6 +28,7 @@ import TabContainerMeta from 'D:/project/company2/lowcode-material/lowcode/tab-c
|
|
|
28
28
|
import TabMessageMeta from 'D:/project/company2/lowcode-material/lowcode/tab-message/meta';
|
|
29
29
|
import TagCMeta from 'D:/project/company2/lowcode-material/lowcode/tag-c/meta';
|
|
30
30
|
import TeletextListMeta from 'D:/project/company2/lowcode-material/lowcode/teletext-list/meta';
|
|
31
|
+
import TextDescriptionDetailListMeta from 'D:/project/company2/lowcode-material/lowcode/text-description-detail-list/meta';
|
|
31
32
|
import Title1Meta from 'D:/project/company2/lowcode-material/lowcode/title1/meta';
|
|
32
33
|
import Title2Meta from 'D:/project/company2/lowcode-material/lowcode/title2/meta';
|
|
33
34
|
import UserCardMeta from 'D:/project/company2/lowcode-material/lowcode/user-card/meta';
|
|
@@ -102,7 +103,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
|
|
|
102
103
|
packageName = '@dckj-npm/dc-material';
|
|
103
104
|
}
|
|
104
105
|
if (version === void 0) {
|
|
105
|
-
version = '0.1.
|
|
106
|
+
version = '0.1.263';
|
|
106
107
|
}
|
|
107
108
|
if (basicLibraryVersion === void 0) {
|
|
108
109
|
basicLibraryVersion = {
|
|
@@ -129,7 +130,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
|
|
|
129
130
|
}
|
|
130
131
|
return meta;
|
|
131
132
|
}
|
|
132
|
-
var componentMetas = [AddressListMeta, Button2Meta, CustomRadioGroupItemMeta, CustomRadioGroupMeta, DCSliderMeta, FormMeta, GoodsCardListCommonMeta, GoodsCardListMeta, GridNavMeta, ImageMeta, InputMeta, IntegralTaskMeta, MemberCardMeta, MenuListMeta, MessageListMeta, NavigationMeta, NoticeBarMeta, PositionMeta, RichTextMeta, SearchBarMeta, SelectMeta, ShoppingCartMeta, StreamListMeta, SwiperMeta, TabContainerItemMeta, TabContainerMeta, TabMessageMeta, TagCMeta, TeletextListMeta, Title1Meta, Title2Meta, UserCardMeta];
|
|
133
|
+
var componentMetas = [AddressListMeta, Button2Meta, CustomRadioGroupItemMeta, CustomRadioGroupMeta, DCSliderMeta, FormMeta, GoodsCardListCommonMeta, GoodsCardListMeta, GridNavMeta, ImageMeta, InputMeta, IntegralTaskMeta, MemberCardMeta, MenuListMeta, MessageListMeta, NavigationMeta, NoticeBarMeta, PositionMeta, RichTextMeta, SearchBarMeta, SelectMeta, ShoppingCartMeta, StreamListMeta, SwiperMeta, TabContainerItemMeta, TabContainerMeta, TabMessageMeta, TagCMeta, TeletextListMeta, TextDescriptionDetailListMeta, Title1Meta, Title2Meta, UserCardMeta];
|
|
133
134
|
var components = [];
|
|
134
135
|
var npmInfo = {};
|
|
135
136
|
componentMetas.forEach(function (meta) {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IPublicTypeSnippet, IPublicTypeConfigure } 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[] | 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,99 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
var TextDescriptionDetailListMeta = {
|
|
3
|
+
group: '低代码组件',
|
|
4
|
+
componentName: 'TextDescriptionDetailList',
|
|
5
|
+
title: '文本描述详情列表',
|
|
6
|
+
docUrl: '',
|
|
7
|
+
screenshot: '',
|
|
8
|
+
devMode: 'proCode',
|
|
9
|
+
npm: {
|
|
10
|
+
"package": '@dckj-npm/dc-material',
|
|
11
|
+
version: '0.1.262',
|
|
12
|
+
exportName: 'TextDescriptionDetailList',
|
|
13
|
+
main: 'src/index.tsx',
|
|
14
|
+
destructuring: true,
|
|
15
|
+
subName: ''
|
|
16
|
+
},
|
|
17
|
+
configure: {
|
|
18
|
+
props: [{
|
|
19
|
+
title: '数据源绑定',
|
|
20
|
+
name: 'dataList',
|
|
21
|
+
setter: {
|
|
22
|
+
componentName: 'SetterFormVariable',
|
|
23
|
+
props: {
|
|
24
|
+
attributes: [{
|
|
25
|
+
label: '选项',
|
|
26
|
+
value: 'options',
|
|
27
|
+
children: [{
|
|
28
|
+
label: '标签',
|
|
29
|
+
isRequire: true,
|
|
30
|
+
value: 'label'
|
|
31
|
+
}, {
|
|
32
|
+
label: '值',
|
|
33
|
+
isRequire: true,
|
|
34
|
+
value: 'value'
|
|
35
|
+
}]
|
|
36
|
+
}]
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}, {
|
|
40
|
+
title: '固定数据',
|
|
41
|
+
name: 'fixedData',
|
|
42
|
+
setter: {
|
|
43
|
+
componentName: 'ArraySetter',
|
|
44
|
+
props: {
|
|
45
|
+
itemSetter: {
|
|
46
|
+
componentName: 'ObjectSetter',
|
|
47
|
+
props: {
|
|
48
|
+
attributes: [{
|
|
49
|
+
label: '标签',
|
|
50
|
+
isRequire: true,
|
|
51
|
+
value: 'label'
|
|
52
|
+
}, {
|
|
53
|
+
label: '值',
|
|
54
|
+
isRequire: true,
|
|
55
|
+
value: 'value'
|
|
56
|
+
}]
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}, {
|
|
62
|
+
title: '标签位置',
|
|
63
|
+
name: 'labelPosition',
|
|
64
|
+
setter: {
|
|
65
|
+
componentName: 'RadioGroupSetter',
|
|
66
|
+
props: {
|
|
67
|
+
options: [{
|
|
68
|
+
label: '左',
|
|
69
|
+
value: 'left'
|
|
70
|
+
}, {
|
|
71
|
+
label: '上',
|
|
72
|
+
value: 'top'
|
|
73
|
+
}]
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}],
|
|
77
|
+
supports: {
|
|
78
|
+
style: true
|
|
79
|
+
},
|
|
80
|
+
component: {
|
|
81
|
+
disableBehaviors: ['copy']
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
};
|
|
85
|
+
var snippets = [{
|
|
86
|
+
title: '文本描述详情列表',
|
|
87
|
+
screenshot: '',
|
|
88
|
+
schema: {
|
|
89
|
+
componentName: 'TextDescriptionDetailList',
|
|
90
|
+
props: {
|
|
91
|
+
dataList: [],
|
|
92
|
+
fixedData: [],
|
|
93
|
+
labelPosition: 'left'
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}];
|
|
97
|
+
export default _extends({}, TextDescriptionDetailListMeta, {
|
|
98
|
+
snippets: snippets
|
|
99
|
+
});
|
package/lowcode_lib/meta.js
CHANGED
|
@@ -33,9 +33,10 @@ var _meta26 = _interopRequireDefault(require("D:/project/company2/lowcode-materi
|
|
|
33
33
|
var _meta27 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/tab-message/meta"));
|
|
34
34
|
var _meta28 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/tag-c/meta"));
|
|
35
35
|
var _meta29 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/teletext-list/meta"));
|
|
36
|
-
var _meta30 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/
|
|
37
|
-
var _meta31 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/
|
|
38
|
-
var _meta32 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/
|
|
36
|
+
var _meta30 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/text-description-detail-list/meta"));
|
|
37
|
+
var _meta31 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/title1/meta"));
|
|
38
|
+
var _meta32 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/title2/meta"));
|
|
39
|
+
var _meta33 = _interopRequireDefault(require("D:/project/company2/lowcode-material/lowcode/user-card/meta"));
|
|
39
40
|
var componentCategorySort = {};
|
|
40
41
|
["基础元素", "布局容器类", "表格类", "表单详情类", "帮助类", "对话框类", "业务类", "通用", "引导", "信息输入", "信息展示", "信息反馈"].reverse().forEach(function (item, index) {
|
|
41
42
|
componentCategorySort[item] = ++index;
|
|
@@ -107,7 +108,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
|
|
|
107
108
|
packageName = '@dckj-npm/dc-material';
|
|
108
109
|
}
|
|
109
110
|
if (version === void 0) {
|
|
110
|
-
version = '0.1.
|
|
111
|
+
version = '0.1.263';
|
|
111
112
|
}
|
|
112
113
|
if (basicLibraryVersion === void 0) {
|
|
113
114
|
basicLibraryVersion = {
|
|
@@ -134,7 +135,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
|
|
|
134
135
|
}
|
|
135
136
|
return meta;
|
|
136
137
|
}
|
|
137
|
-
var componentMetas = [_meta["default"], _meta2["default"], _meta3["default"], _meta4["default"], _meta5["default"], _meta6["default"], _meta7["default"], _meta8["default"], _meta9["default"], _meta10["default"], _meta11["default"], _meta12["default"], _meta13["default"], _meta14["default"], _meta15["default"], _meta16["default"], _meta17["default"], _meta18["default"], _meta19["default"], _meta20["default"], _meta21["default"], _meta22["default"], _meta23["default"], _meta24["default"], _meta25["default"], _meta26["default"], _meta27["default"], _meta28["default"], _meta29["default"], _meta30["default"], _meta31["default"], _meta32["default"]];
|
|
138
|
+
var componentMetas = [_meta["default"], _meta2["default"], _meta3["default"], _meta4["default"], _meta5["default"], _meta6["default"], _meta7["default"], _meta8["default"], _meta9["default"], _meta10["default"], _meta11["default"], _meta12["default"], _meta13["default"], _meta14["default"], _meta15["default"], _meta16["default"], _meta17["default"], _meta18["default"], _meta19["default"], _meta20["default"], _meta21["default"], _meta22["default"], _meta23["default"], _meta24["default"], _meta25["default"], _meta26["default"], _meta27["default"], _meta28["default"], _meta29["default"], _meta30["default"], _meta31["default"], _meta32["default"], _meta33["default"]];
|
|
138
139
|
var components = exports.components = [];
|
|
139
140
|
var npmInfo = {};
|
|
140
141
|
componentMetas.forEach(function (meta) {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IPublicTypeSnippet, IPublicTypeConfigure } 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[] | 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,104 @@
|
|
|
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 TextDescriptionDetailListMeta = {
|
|
8
|
+
group: '低代码组件',
|
|
9
|
+
componentName: 'TextDescriptionDetailList',
|
|
10
|
+
title: '文本描述详情列表',
|
|
11
|
+
docUrl: '',
|
|
12
|
+
screenshot: '',
|
|
13
|
+
devMode: 'proCode',
|
|
14
|
+
npm: {
|
|
15
|
+
"package": '@dckj-npm/dc-material',
|
|
16
|
+
version: '0.1.262',
|
|
17
|
+
exportName: 'TextDescriptionDetailList',
|
|
18
|
+
main: 'src/index.tsx',
|
|
19
|
+
destructuring: true,
|
|
20
|
+
subName: ''
|
|
21
|
+
},
|
|
22
|
+
configure: {
|
|
23
|
+
props: [{
|
|
24
|
+
title: '数据源绑定',
|
|
25
|
+
name: 'dataList',
|
|
26
|
+
setter: {
|
|
27
|
+
componentName: 'SetterFormVariable',
|
|
28
|
+
props: {
|
|
29
|
+
attributes: [{
|
|
30
|
+
label: '选项',
|
|
31
|
+
value: 'options',
|
|
32
|
+
children: [{
|
|
33
|
+
label: '标签',
|
|
34
|
+
isRequire: true,
|
|
35
|
+
value: 'label'
|
|
36
|
+
}, {
|
|
37
|
+
label: '值',
|
|
38
|
+
isRequire: true,
|
|
39
|
+
value: 'value'
|
|
40
|
+
}]
|
|
41
|
+
}]
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}, {
|
|
45
|
+
title: '固定数据',
|
|
46
|
+
name: 'fixedData',
|
|
47
|
+
setter: {
|
|
48
|
+
componentName: 'ArraySetter',
|
|
49
|
+
props: {
|
|
50
|
+
itemSetter: {
|
|
51
|
+
componentName: 'ObjectSetter',
|
|
52
|
+
props: {
|
|
53
|
+
attributes: [{
|
|
54
|
+
label: '标签',
|
|
55
|
+
isRequire: true,
|
|
56
|
+
value: 'label'
|
|
57
|
+
}, {
|
|
58
|
+
label: '值',
|
|
59
|
+
isRequire: true,
|
|
60
|
+
value: 'value'
|
|
61
|
+
}]
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}, {
|
|
67
|
+
title: '标签位置',
|
|
68
|
+
name: 'labelPosition',
|
|
69
|
+
setter: {
|
|
70
|
+
componentName: 'RadioGroupSetter',
|
|
71
|
+
props: {
|
|
72
|
+
options: [{
|
|
73
|
+
label: '左',
|
|
74
|
+
value: 'left'
|
|
75
|
+
}, {
|
|
76
|
+
label: '上',
|
|
77
|
+
value: 'top'
|
|
78
|
+
}]
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}],
|
|
82
|
+
supports: {
|
|
83
|
+
style: true
|
|
84
|
+
},
|
|
85
|
+
component: {
|
|
86
|
+
disableBehaviors: ['copy']
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
var snippets = [{
|
|
91
|
+
title: '文本描述详情列表',
|
|
92
|
+
screenshot: '',
|
|
93
|
+
schema: {
|
|
94
|
+
componentName: 'TextDescriptionDetailList',
|
|
95
|
+
props: {
|
|
96
|
+
dataList: [],
|
|
97
|
+
fixedData: [],
|
|
98
|
+
labelPosition: 'left'
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}];
|
|
102
|
+
var _default = exports["default"] = (0, _extends2["default"])({}, TextDescriptionDetailListMeta, {
|
|
103
|
+
snippets: snippets
|
|
104
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dckj-npm/dc-material",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.263",
|
|
4
4
|
"description": "dc低代码物料",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
},
|
|
107
107
|
"componentConfig": {
|
|
108
108
|
"isComponentLibrary": true,
|
|
109
|
-
"materialSchema": "https://unpkg.com/@dckj-npm/dc-material@0.1.
|
|
109
|
+
"materialSchema": "https://unpkg.com/@dckj-npm/dc-material@0.1.263/build/lowcode/assets-prod.json"
|
|
110
110
|
},
|
|
111
111
|
"lcMeta": {
|
|
112
112
|
"type": "component"
|