oadp-material
Version:
oadp-material
99 lines (95 loc) • 2.49 kB
text/typescript
import { IPublicTypeComponentMetadata, IPublicTypeSnippet } from '@alilc/lowcode-types';
const OadpCardHeaderMeta: IPublicTypeComponentMetadata = {
"componentName": "OadpCardHeader",
"title": "卡片标题",
"docUrl": "",
"category": "高级组件",
"group": "低代码组件",
"screenshot": "https://img.alicdn.com/imgextra/i4/O1CN01E2PcPW1bKJV5QUVMg_!!6000000003446-55-tps-50-50.svg",
"devMode": "proCode",
"npm": {
"package": "oadp-material",
"version": "{{version}}",
"exportName": "OadpCardHeader",
"main": "src/index.tsx",
"destructuring": true,
"subName": ""
},
"configure": {
"props": [
{
"name": "title",
"title": {
"label": {
"type": "i18n",
"zh_CN": "标题",
"en_US": "title",
},
"tip": {
"type": "i18n",
"zh_CN": "属性: title | 说明: 标题",
"en_US": "prop: title | description: title content",
},
},
"setter": "StringSetter",
"description": "标题",
},
{
"name": "subTitle",
"title": {
"label": {
"type": "i18n",
"zh_CN": "提示",
"en_US": "subTitle",
},
"tip": {
"type": "i18n",
"zh_CN": "属性: subTitle | 说明: 提示",
"en_US": "prop: subTitle | description: subTitle",
},
},
"setter": "StringSetter"
},
{
"name": "extra",
"title": {
"label": {
"type": "i18n",
"zh_CN": "默认值",
"en_US": "extra",
},
"tip": {
"type": "i18n",
"zh_CN": "属性: extra | 说明: 默认值",
"en_US": "prop: extra | description: extra Value",
},
},
"setter": "StringSetter",
"supportVariable": true,
"description": "默认值",
}
],
"supports": {
"style": true
},
"component": {}
}
};
const snippets: IPublicTypeSnippet[] = [
{
"title": "卡片标题",
"screenshot": "https://img.alicdn.com/imgextra/i4/O1CN01E2PcPW1bKJV5QUVMg_!!6000000003446-55-tps-50-50.svg",
"schema": {
"componentName": "OadpCardHeader",
"props": {
"title": "卡片标题",
"subTitle": "",
"extra": "",
},
}
}
];
export default {
...OadpCardHeaderMeta,
snippets
};