📄 原始资料 (已截断) | 展开查看原始 JSON(text-link.json)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://elements/text-link",
"schemaVersion": "2.3",
"type": "object",
"title": "Text link",
"description": "Schema for Bricks Text link element",
"metadata": {
"name": "text-link",
"category": "basic",
"tag": "a",
"nestable": false
},
"settings": {
"text": {
"default": "Text link",
"valueSchema": {
"type": "string"
},
"controlType": "text"
},
"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": "链接到"
},
"icon": {
"label": "Icon",
"css": [
{
"selector": ".icon > svg"
}
],
"valueSchema": {
"type": "object",
"description": "Icon settings",
"properties": {
"library": {
"type": "string"
},
"icon": {
"type": "string"
},
"svg": {
"type": "object"
}
},
"descriptionZh": "图标设置。"
},
"controlType": "icon",
"labelZh": "图标"
},
"iconSize": {
"label": "Size",
"units": true,
"css": [
{
"property": "font-size",
"selector": ".icon > i"
},
{
"property": "width",
"selector": ".icon > svg"
},
{
"property": "height",
"selector": ".icon > svg"
}
],
"hasRequired": true,
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Value with unit (e.g., \"10px\", \"50%\")",
"descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
},
{
"type": "number"
}
]
},
"controlType": "number",
"labelZh": "尺寸"
},
"iconWidth": {
"label": "Width",
"units": true,
"css": [
{
"property": "width",
"selector": ".icon"
}
],
"hasRequired": true,
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Value with unit (e.g., \"10px\", \"50%\")",
"descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
},
{
"type": "number"
}
]
},
"controlType": "number",
"labelZh": "宽度"
},
"iconHeight": {
"label": "Height",
"units": true,
"css": [
{
"property": "height",
"selector": ".icon"
}
],
"hasRequired": true,
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Value with unit (e.g., \"10px\", \"50%\")",
"descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
},
{
"type": "number"
}
]
},
"controlType": "number",
"labelZh": "高度"
},
"iconColor": {
"label": "Color",
"css": [
{
"property": "color",
"selector": ".icon"
},
{
"property": "fill",
"selector": ".icon"
}
],
"hasRequired": true,
"valueSchema": {
"description": "Color value in various formats",
"oneOf": [
{
"type": "object",
"properties": {
"hex": {
"type": "string",
"pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$"
}
},
"required": [
"hex"
]
},
{
"type": "object",
"properties": {
"rgb": {
"type": "string",
"pattern": "^rgba?\\("
}
},
"required": [
"rgb"
]
},
{
"type": "object",
"properties": {
"hsl": {
"type": "string",
"pattern": "^hsla?\\("
}
},
"required": [
"hsl"
]
},
{
"type": "object",
"properties": {
"raw": {
"type": "string",
"description": "Raw color value or CSS variable",
"descriptionZh": "原始颜色值或 CSS 变量。"
}
},
"required": [
"raw"
]
}
],
"descriptionZh": "各种格式的颜色值。"
},
"controlType": "color",
"labelZh": "颜色"
},
"iconBackground": {
"label": "Background color",
"css": [
{
"property": "background-color",
"selector": ".icon"
}
],
"hasRequired": true,
"valueSchema": {
"description": "Color value in various formats",
"oneOf": [
{
"type": "object",
"properties": {
"hex": {
"type": "string",
"pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$"
}
},
"required": [
"hex"
]
},
{
"type": "object",
"properties": {
"rgb": {
"type": "string",
"pattern": "^rgba?\\("
}
},
"required": [
"rgb"
]
},
{
"type": "object",
"properties": {
"hsl": {
"type": "string",
"pattern": "^hsla?\\("
}
},
"required": [
"hsl"
]
},
{
"type": "object",
"properties": {
"raw": {
"type": "string",
"description": "Raw color value or CSS variable",
"descriptionZh": "原始颜色值或 CSS 变量。"
}
},
"required": [
"raw"
]
}
],
"descriptionZh": "各种格式的颜色值。"
},
"controlType": "color",
"labelZh": "背景颜色"
},
"iconBorder": {
"label": "Border",
"css": [
{
"property": "border",
"selector": ".icon"
},
{
"property": "overflow",
"selector": ".icon",
"value": "hidden"
}
],
"hasRequired": true,
"valueSchema": {
"type": "object",
"description": "Border settings",
"properties": {
"width": {
"type": "object",
"description": "Spacing value with directional properties",
"properties": {
"top": {
"type": "string",
"description": "Top spacing value with unit",
"descriptionZh": "顶部间距值(带单位)。"
},
"right": {
"type": "string",
"description": "Right spacing value with unit",
"descriptionZh": "右侧间距值(带单位)。"
},
"bottom": {
"type"
... (内容过长已截断,完整 JSON 见原始文件)