📄 原始资料 (已截断) | 展开查看原始 JSON(icon.json)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://elements/icon",
"schemaVersion": "2.3",
"type": "object",
"title": "Icon",
"description": "Schema for Bricks Icon element",
"metadata": {
"name": "icon",
"category": "basic",
"tag": "div",
"nestable": false
},
"settings": {
"icon": {
"label": "Icon",
"valueSchema": {
"type": "object",
"description": "Icon settings",
"properties": {
"library": {
"type": "string"
},
"icon": {
"type": "string"
},
"svg": {
"type": "object"
}
},
"descriptionZh": "图标设置。"
},
"controlType": "icon",
"labelZh": "图标"
},
"iconColor": {
"label": "Color",
"css": [
{
"property": "color"
},
{
"property": "fill"
}
],
"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": "颜色"
},
"iconSize": {
"label": "Size",
"units": true,
"css": [
{
"property": "font-size"
}
],
"hasRequired": true,
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Value with unit (e.g., \"10px\", \"50%\")",
"descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
},
{
"type": "number"
}
]
},
"controlType": "number",
"labelZh": "尺寸"
},
"link": {
"label": "Link",
"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": "链接"
},
"isAccordionIcon": {
"label": "Is",
"hasRequired": true,
"valueSchema": {
"type": "boolean"
},
"controlType": "checkbox",
"labelZh": "用作"
},
"accordionTitleIconState": {
"label": "Show",
"options": {
"collapsed": "Collapsed",
"expanded": "Expanded",
"collapsedZh": "折叠",
"expandedZh": "展开"
},
"hasRequired": true,
"valueSchema": {
"oneOf": [
{
"type": "string",
"description": "Single selection",
"descriptionZh": "单选。"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Multiple selection",
"descriptionZh": "多选。"
}
]
},
"controlType": "select",
"labelZh": "显示"
},
"accordionTitleIconTransform": {
"label": "Transform",
"css": [
{
"property": "--brx-icon-transform"
}
],
"hasRequired": true,
"valueSchema": {
"type": "object",
"description": "CSS transform settings",
"properties": {
"translateX": {
"type": "string"
},
"translateY": {
"type": "string"
},
"translateZ": {
"type": "string"
},
"scaleX": {
"type": "string"
},
"scaleY": {
"type": "string"
},
"scaleZ": {
"type": "string"
},
"rotateX": {
"type": "string"
},
"rotateY": {
"type": "string"
},
"rotateZ": {
"type": "string"
},
"skewX": {
"type": "string"
},
"skewY": {
"type": "string"
},
"perspective": {
"type": "string"
}
},
"descriptionZh": "CSS 变换设置。"
},
"controlType": "transform",
"labelZh": "变换"
},
"accordionTitleIconTransition": {
"label": "Transition",
"css": [
{
"property": "transition"
}
],
"hasRequired": true,
"valueSchema": {
"type": "string"
},
"controlType": "text",
"labelZh": "过渡"
},
"_content": {
"label": "Content",
"css": [
{
"property": "content",
"value": "%s"
}
],
"valueSchema": {
"type": "string"
},
"controlType": "text",
"labelZh": "内容"
},
"_margin": {
"label": "Margin",
"valueSchema": {
"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": "string",
"description": "Bottom spacing value with unit",
"descriptionZh": "底部间距值(带单位)。"
},
"left": {
"type": "string",
"description": "Left spacing value with unit",
"descriptionZh": "左侧间距值(带单位)。"
}
},
"additionalProperties": false,
"descriptionZh": "带方向属性的间距值。"
},
"css": [
{
"property": "margin"
}
],
"controlType": "spacing",
"labelZh": "外边距"
},
"_padding": {
"label": "Padding",
"valueSchema": {
"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",
"descr
... (内容过长已截断,完整 JSON 见原始文件)