基本信息
- 英文名称:
Bricks Breakpoints - 中文名称:Bricks 断点
- Schema ID:
bricks://global/breakpoints - Schema 版本:
2.3 - 类型:
array
条目属性
key(string)label(string)width(integer)widthBuilder(integer)icon(string)base(boolean)custom(boolean)edited(boolean)paused(boolean)
Schema 定义
完整 JSON 定义
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://global/breakpoints",
"schemaVersion": "2.3",
"title": "Bricks Breakpoints",
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"label": {
"type": "string"
},
"width": {
"type": "integer"
},
"widthBuilder": {
"type": "integer"
},
"icon": {
"type": "string"
},
"base": {
"type": "boolean"
},
"custom": {
"type": "boolean"
},
"edited": {
"type": "boolean"
},
"paused": {
"type": "boolean"
}
},
"required": [
"key",
"label",
"width",
"icon"
],
"additionalProperties": false
},
"titleZh": "Bricks 断点"
}
补充说明
更多细节可参考 Bricks 官方 Academy 文档。