Bricks Schema 中文文档:搜索

标签TAGS: 

📄 原始资料 (已截断)  |  展开查看原始 JSON(search.json){ “$schema”: “https://json-schema.org/draft/2020-12/schema”, “$id”: “bricks://elements/search”, “schemaVersion”: “2.3”, “type”: “object”, “title”: “Search”, “description”: “Schema for Bricks Search element”, “metadata”: { “name”: “search”, “category…

📄 原始资料 (已截断)  |  展开查看原始 JSON(search.json)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "bricks://elements/search",
  "schemaVersion": "2.3",
  "type": "object",
  "title": "Search",
  "description": "Schema for Bricks Search element",
  "metadata": {
    "name": "search",
    "category": "wordpress",
    "tag": "div",
    "nestable": false
  },
  "settings": {
    "searchType": {
      "label": "Type",
      "options": {
        "input": "Input",
        "overlay": "Icon",
        "inputZh": "输入框",
        "overlayZh": "图标"
      },
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Single selection",
            "descriptionZh": "单选。"
          },
          {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Multiple selection",
            "descriptionZh": "多选。"
          }
        ]
      },
      "controlType": "select",
      "labelZh": "类型"
    },
    "ariaLabel": {
      "label": "aria-label",
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "aria-label"
    },
    "actionURL": {
      "label": "Action URL",
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "提交 URL"
    },
    "additionalParams": {
      "label": "Additional parameters",
      "valueSchema": {
        "type": "array",
        "items": {
          "type": "object"
        }
      },
      "controlType": "repeater",
      "labelZh": "附加参数"
    },
    "inputHeight": {
      "label": "Height",
      "units": true,
      "css": [
        {
          "property": "height",
          "selector": "input[type=search]"
        }
      ],
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Value with unit (e.g., \"10px\", \"50%\")",
            "descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
          },
          {
            "type": "number"
          }
        ]
      },
      "controlType": "number",
      "labelZh": "高度"
    },
    "inputWidth": {
      "label": "Width",
      "units": true,
      "css": [
        {
          "property": "width",
          "selector": "input[type=search]"
        },
        {
          "property": "max-width",
          "selector": ".bricks-search-overlay .bricks-search-form"
        }
      ],
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Value with unit (e.g., \"10px\", \"50%\")",
            "descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
          },
          {
            "type": "number"
          }
        ]
      },
      "controlType": "number",
      "labelZh": "宽度"
    },
    "placeholder": {
      "label": "Placeholder",
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "占位符"
    },
    "placeholderColor": {
      "label": "Placeholder color",
      "css": [
        {
          "property": "color",
          "selector": "input[type=search]::placeholder"
        }
      ],
      "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": "占位符颜色"
    },
    "inputBackgroundColor": {
      "label": "Background color",
      "css": [
        {
          "property": "background-color",
          "selector": "input[type=search]"
        }
      ],
      "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": "背景颜色"
    },
    "inputBorder": {
      "label": "Border",
      "css": [
        {
          "property": "border",
          "selector": "input[type=search]"
        }
      ],
      "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": "string",
                "description": "Bottom spacing value with unit",
                "descriptionZh": "底部间距值(带单位)。"
              },
              "left": {
                "type": "string",
                "description": "Left spacing value with unit",
                "descriptionZh": "左侧间距值(带单位)。"
              }
            },
            "additionalProperties": false,
            "descriptionZh": "带方向属性的间距值。"
          },
          "style": {
            "type": "string",
            "enum": [
              "none",
              "solid",
              "dashed",
              "dotted",
              "double",
              "groove",
              "ridge",
              "inset",
              "outset"
            ]
          },
          "color": {
            "description": "Color value in various formats",
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "hex": {
                    "type": "s

... (内容过长已截断,完整 JSON 见原始文件)

前言

Bricks Search 元素的 schema。

基本信息

  • 英文名称Search
  • 中文名称:搜索
  • Schema IDbricks://elements/search
  • Schema 版本2.3
  • 类型object
  • 分类wordpress
  • Tagdiv
  • 内部名称search

设置项

  • searchType — 类型 (select)
  • ariaLabel — aria-label (text)
  • actionURL — 提交 URL (text)
  • additionalParams — 附加参数 (repeater)
  • inputHeight — 高度 (number)
  • inputWidth — 宽度 (number)
  • placeholder — 占位符 (text)
  • placeholderColor — 占位符颜色 (color)
  • inputBackgroundColor — 背景颜色 (color)
  • inputBorder — 边框 (border)
  • inputBoxShadow — 盒子阴影 (box-shadow)
  • inputTypography — 排版 (typography)
  • showLabel — 显示标签 (checkbox)
  • labelText — 标签文本 (text)
  • labelTypography — 标签排版 (typography)
  • buttonAriaLabel — aria-label (text)
  • buttonText — 文本 (text)
  • icon — 图标 (icon)
  • buttonPadding — 内边距 (spacing)
  • iconHeight — 高度 (number)
  • iconWidth — 宽度 (number)
  • iconBackgroundColor — 背景颜色 (color)
  • iconBorder — 边框 (border)
  • iconBoxShadow — 盒子阴影 (box-shadow)
  • iconTypography — 排版 (typography)
  • overlayFormDirection — 方向 (direction)
  • overlayFormGap — 间距 (number)
  • searchOverlayTitle — 标题 (text)
  • searchOverlayTitleTag — 标题标签 (text)
  • searchOverlayTitleTypography — 标题排版 (typography)
  • searchOverlayBackground — 背景 (background)
  • searchOverlayBackgroundOverlay — 背景 (color)
  • overlayIconWidth — 按钮 (number)
  • overlayButtonPadding — 按钮 (spacing)
  • overlayButtonBackground — 按钮 (color)
  • overlayButtonBorder — 按钮 (border)
  • overlayButtonTypography — 按钮 (typography)
  • _content — 内容 (text)
  • _margin — 外边距 (spacing)
  • _padding — 内边距 (spacing)
  • _width — 宽度 (number)
  • _widthMin — 最小宽度 (number)
  • _widthMax — 最大宽度 (number)
  • _height — 高度 (number)
  • _heightMin — 最小高度 (number)
  • _heightMax — 最大高度 (number)
  • _aspectRatio — 宽高比 (text)
  • _position — 位置 (select)
  • _top — 顶部 (number)
  • _right — 右侧 (number)
  • _bottom — 底部 (number)
  • _left — 左侧 (number)
  • _zIndex — Z 索引 (number)
  • _order — 顺序 (number)
  • _display — 显示 (select)
  • _visibility — 可见性 (select)
  • _overflow — 溢出 (text)
  • _opacity — 不透明度 (number)
  • _cursor — 光标 (select)
  • _isolation — 隔离 (select)
  • _mixBlendMode — 混合模式 (select)
  • _pointerEvents — 指针事件 (text)
  • _perspective — 透视 (number)
  • _perspectiveOrigin — 透视原点 (text)
  • _gridItemJustifySelf — 自身水平对齐 (align-items)
  • _flexDirection — 方向 (direction)
  • _alignSelf — 自身对齐 (align-items)
  • _justifyContent — 主轴对齐 (justify-content)
  • _alignItems — 交叉轴对齐 (align-items)
  • _gap — 间距 (number)
  • _flexGrow — 放大比例 (number)
  • _flexShrink — 缩小比例 (number)
  • _flexBasis — 伸缩基准 (text)
  • _useMasonry — %s 布局 (checkbox)
  • _masonryColumn — 列数 (number)
  • _masonryGutter — 间距 (number)
  • _masonryHorizontalOrder — 水平顺序 (checkbox)
  • _masonryTransitionDuration — 过渡 (number)
  • _masonryTransitionMode — 显现动画 (select)
  • _typography — _typography (typography)
  • _background — _background (background)
  • _shapeDividers — 自定义形状 (repeater)
  • _gradient — _gradient (gradient)
  • _border — 边框 (border)
  • _boxShadow — 盒子阴影 (box-shadow)
  • _transform — 变换 (transform)
  • _transformOrigin — 变换原点 (text)
  • _motionElementParallax — 元素视差 (checkbox)
  • _motionElementParallaxSpeedX — 水平速度 (number)
  • _motionElementParallaxSpeedY — 垂直速度 (number)
  • _motionBackgroundParallax — 背景视差 (checkbox)
  • _motionBackgroundParallaxSpeed — 背景速度 (number)
  • _motionStartVisiblePercent — 视差起点 (number)
  • _cssCustom — 自定义 CSS (code)
  • _cssClasses — CSS 类 (text)
  • _cssId — CSS ID (text)
  • _cssFilters — CSS 滤镜 (filters)
  • _cssTransition — 过渡 (text)
  • _attributes — 姓名 (repeater)
  • _scrollSnapType — 类型 (select)
  • _scrollSnapAlign — 对齐 (select)
  • _scrollSnapStop — 停止 (select)

补充说明

更多细节可参考 Bricks 官方 Academy 文档