📄 原始资料 (已截断) | 展开查看原始 JSON(heading.json)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://elements/heading",
"schemaVersion": "2.3",
"type": "object",
"title": "Heading",
"description": "Schema for Bricks Heading element",
"metadata": {
"name": "heading",
"category": "basic",
"tag": "h3",
"nestable": false
},
"settings": {
"text": {
"default": "I am a heading",
"valueSchema": {
"type": "string"
},
"controlType": "text"
},
"tag": {
"label": "HTML tag",
"options": {
"h1": "h1",
"h2": "h2",
"h3": "h3",
"h4": "h4",
"h5": "h5",
"h6": "h6",
"custom": "Custom",
"customZh": "自定义"
},
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Single selection",
"descriptionZh": "单选。"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Multiple selection",
"descriptionZh": "多选。"
}
]
},
"controlType": "select",
"labelZh": "HTML 标签"
},
"customTag": {
"label": "Custom tag",
"hasRequired": true,
"valueSchema": {
"type": "string"
},
"controlType": "text",
"labelZh": "自定义标签"
},
"type": {
"label": "Type",
"options": {
"hero": "Hero",
"lead": "Lead",
"heroZh": "Hero",
"leadZh": "Lead"
},
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Single selection",
"descriptionZh": "单选。"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Multiple selection",
"descriptionZh": "多选。"
}
]
},
"controlType": "select",
"labelZh": "类型"
},
"style": {
"label": "Style",
"options": {
"primary": "Primary",
"secondary": "Secondary",
"light": "Light",
"dark": "Dark",
"muted": "Muted",
"info": "Info",
"success": "Success",
"warning": "Warning",
"danger": "Danger",
"primaryZh": "主要",
"secondaryZh": "次要",
"lightZh": "浅色",
"darkZh": "深色",
"mutedZh": "静默",
"infoZh": "信息",
"successZh": "成功",
"warningZh": "警告",
"dangerZh": "危险"
},
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Single selection",
"descriptionZh": "单选。"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Multiple selection",
"descriptionZh": "多选。"
}
]
},
"controlType": "select",
"labelZh": "样式"
},
"link": {
"label": "Link to",
"valueSchema": {
"type": "object",
"description": "Link settings",
"properties": {
"type": {
"type": "string"
},
"url": {
"type": "string"
},
"postId": {
"type": [
"string",
"integer"
]
},
"newTab": {
"type": "boolean"
},
"rel": {
"type": "string"
},
"title": {
"type": "string"
},
"ariaLabel": {
"type": "string"
},
"lightboxId": {
"type": "string"
},
"lightboxType": {
"type": "string"
}
},
"descriptionZh": "链接设置。"
},
"controlType": "link",
"labelZh": "链接到"
},
"separator": {
"label": "Separator",
"options": {
"right": "Right",
"left": "Left",
"both": "Both",
"none": "None",
"rightZh": "右侧",
"leftZh": "左侧",
"bothZh": "两者",
"noneZh": "无"
},
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Single selection",
"descriptionZh": "单选。"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Multiple selection",
"descriptionZh": "多选。"
}
]
},
"controlType": "select",
"labelZh": "分隔符"
},
"separatorWidth": {
"label": "Width",
"units": true,
"css": [
{
"property": "width",
"selector": ".separator"
},
{
"property": "flex-grow",
"selector": ".separator"
},
{
"property": "width",
"value": "auto"
}
],
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Value with unit (e.g., \"10px\", \"50%\")",
"descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
},
{
"type": "number"
}
]
},
"controlType": "number",
"labelZh": "宽度"
},
"separatorHeight": {
"label": "Height",
"units": true,
"css": [
{
"property": "border-top-width",
"selector": ".separator"
},
{
"property": "height",
"selector": ".separator"
}
],
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Value with unit (e.g., \"10px\", \"50%\")",
"descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
},
{
"type": "number"
}
]
},
"controlType": "number",
"labelZh": "高度"
},
"separatorSpacing": {
"label": "Spacing",
"units": true,
"css": [
{
"property": "gap",
"selector": "&.has-separator"
}
],
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Value with unit (e.g., \"10px\", \"50%\")",
"descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
},
{
"type": "number"
}
]
},
"controlType": "number",
"labelZh": "间距"
},
"separatorStyle": {
"label": "Style",
"options": {
"none": "None",
"hidden": "Hidden",
"solid": "Solid",
"dotted": "Dotted",
"dashed": "Dashed",
"double": "Double",
"groove": "Groove",
"ridge": "Ridge",
"inset": "Inset",
"outset": "Outset",
"noneZh": "无",
"hiddenZh": "隐藏",
"solidZh": "实线",
"dottedZh": "点线",
"dashedZh": "虚线",
"doubleZh": "双线",
"grooveZh": "凹槽",
"ridgeZh": "凸脊",
"insetZh": "内嵌",
"outsetZh": "外凸"
},
"css": [
{
"property": "border-top-style",
"selector": ".separator"
}
],
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Single selection",
"descriptionZh": "单选。"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Multiple selection",
"descriptionZh": "多选。"
}
]
},
"controlType": "select",
"labelZh": "样式"
},
"separatorAlignItems": {
"label": "Align",
"css": [
{
"property": "align-items",
"selector": "&.has-separator",
"important": true
}
],
"valueSchema": {
"type": "string",
... (内容过长已截断,完整 JSON 见原始文件)