前言
下拉选择控件类型的值 schema。
基本信息
- 英文名称:
Select Control - 中文名称:选择控件
- Schema ID:
bricks://controls/select - Schema 版本:
2.3
Schema 定义
完整 JSON 定义
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://controls/select",
"schemaVersion": "2.3",
"title": "Select Control",
"description": "Value schema for select control type",
"oneOf": [
{
"type": "string",
"description": "Single selection",
"descriptionZh": "单选。"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Multiple selection",
"descriptionZh": "多选。"
}
],
"controlProperties": [
"type",
"label",
"group",
"placeholder",
"default",
"inline",
"options",
"hasRequired",
"tab",
"css",
"multiple",
"deprecated"
],
"titleZh": "选择控件",
"descriptionZh": "下拉选择控件类型的值 schema。"
}
补充说明
更多细节可参考 Bricks 官方 Academy 文档。