mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-18 21:38:14 +00:00
TreeSelect适配
This commit is contained in:
parent
7e9829fc71
commit
071637dee3
@ -11899,28 +11899,23 @@
|
|||||||
"subName": ""
|
"subName": ""
|
||||||
},
|
},
|
||||||
"props": [
|
"props": [
|
||||||
{
|
|
||||||
"name": "prefix",
|
|
||||||
"propType": "string",
|
|
||||||
"defaultValue": "next-"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pure",
|
|
||||||
"propType": "bool",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "className",
|
"name": "className",
|
||||||
"propType": "string"
|
"propType": "string"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "children",
|
"name": "children",
|
||||||
"propType": {
|
"propType": "node",
|
||||||
"type": "instanceOf",
|
|
||||||
"value": "node"
|
|
||||||
},
|
|
||||||
"description": "树节点"
|
"description": "树节点"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "dataSource",
|
||||||
|
"propType": {
|
||||||
|
"type": "Json"
|
||||||
|
},
|
||||||
|
"description": "数据源"
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "size",
|
"name": "size",
|
||||||
"propType": {
|
"propType": {
|
||||||
@ -11969,12 +11964,12 @@
|
|||||||
"type": "instanceOf",
|
"type": "instanceOf",
|
||||||
"value": "node"
|
"value": "node"
|
||||||
},
|
},
|
||||||
"description": "自定义内联 label"
|
"description": "自定义内联label"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "readOnly",
|
"name": "readOnly",
|
||||||
"propType": "bool",
|
"propType": "bool",
|
||||||
"description": "是否只读,只读模式下可以展开弹层但不能选择"
|
"description": "是否只读"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "autoWidth",
|
"name": "autoWidth",
|
||||||
@ -12055,7 +12050,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "treeProps",
|
"name": "treeProps",
|
||||||
"propType": "object",
|
"propType": {
|
||||||
|
"type": "Json"
|
||||||
|
},
|
||||||
"description": "透传到 Tree 的属性对象"
|
"description": "透传到 Tree 的属性对象"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -12076,7 +12073,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "popupStyle",
|
"name": "popupStyle",
|
||||||
"propType": "object",
|
"propType": {
|
||||||
|
"type": "Json"
|
||||||
|
},
|
||||||
"description": "下拉框自定义样式对象"
|
"description": "下拉框自定义样式对象"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -12091,7 +12090,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "popupProps",
|
"name": "popupProps",
|
||||||
"propType": "object",
|
"propType": {
|
||||||
|
"type": "Json"
|
||||||
|
},
|
||||||
"description": "透传到 Popup 的属性对象"
|
"description": "透传到 Popup 的属性对象"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -12109,6 +12110,11 @@
|
|||||||
"propType": "func",
|
"propType": "func",
|
||||||
"description": "预览态模式下渲染的内容\n@param {Array<data>} value 选择值 { label: , value:}"
|
"description": "预览态模式下渲染的内容\n@param {Array<data>} value 选择值 { label: , value:}"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "useVirtual",
|
||||||
|
"propType": "bool",
|
||||||
|
"description": "是否开启虚拟滚动"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "style",
|
"name": "style",
|
||||||
"propType": "object"
|
"propType": "object"
|
||||||
|
|||||||
@ -119,6 +119,8 @@ class Renderer extends Component<{ renderer: SimulatorRenderer }> {
|
|||||||
children = (
|
children = (
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
|
height:'44px',
|
||||||
|
lineHeight:'44px',
|
||||||
backgroundColor: '#f0f0f0',
|
backgroundColor: '#f0f0f0',
|
||||||
borderColor: '#a7b1bd',
|
borderColor: '#a7b1bd',
|
||||||
border: '1px dotted',
|
border: '1px dotted',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user