Bricks Schema 中文文档:结账优惠券

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

📄 原始资料 (已截断)  |  展开查看原始 JSON(woocommerce-checkout-coupon.json)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "bricks://elements/woocommerce-checkout-coupon",
  "schemaVersion": "2.3",
  "type": "object",
  "title": "Checkout coupon",
  "description": "Schema for Bricks Checkout coupon element",
  "metadata": {
    "name": "woocommerce-checkout-coupon",
    "category": "general",
    "tag": "div",
    "nestable": false
  },
  "settings": {
    "location": {
      "label": "Location",
      "options": {
        "before_order_review_heading": "Before order review heading",
        "before_order_review": "After order review heading",
        "order_review": "Before payment",
        "before_order_review_headingZh": "订单回顾标题之前",
        "before_order_reviewZh": "订单回顾标题之后",
        "order_reviewZh": "付款之前"
      },
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Single selection",
            "descriptionZh": "单选。"
          },
          {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Multiple selection",
            "descriptionZh": "多选。"
          }
        ]
      },
      "controlType": "select",
      "labelZh": "位置"
    },
    "toggleableForm": {
      "label": "Toggleable form",
      "valueSchema": {
        "type": "boolean"
      },
      "controlType": "checkbox",
      "labelZh": "可切换表单"
    },
    "toggleText": {
      "label": "Text",
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "文本"
    },
    "toggleDivJustifyContent": {
      "label": "Justify content",
      "css": [
        {
          "property": "justify-content",
          "selector": ".coupon-toggle"
        }
      ],
      "valueSchema": {
        "type": "string",
        "enum": [
          "flex-start",
          "flex-end",
          "center",
          "space-between",
          "space-around",
          "space-evenly"
        ]
      },
      "controlType": "justify-content",
      "labelZh": "内容对齐"
    },
    "toggleDivGap": {
      "label": "Gap",
      "units": true,
      "css": [
        {
          "property": "gap",
          "selector": ".coupon-toggle"
        }
      ],
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Value with unit (e.g., \"10px\", \"50%\")",
            "descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
          },
          {
            "type": "number"
          }
        ]
      },
      "controlType": "number",
      "labelZh": "间距"
    },
    "toggleButtonNoText": {
      "label": "Disable text",
      "hasRequired": true,
      "valueSchema": {
        "type": "boolean"
      },
      "controlType": "checkbox",
      "labelZh": "禁用文本"
    },
    "toggleButtonText": {
      "label": "Text",
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "文本"
    },
    "toggleIcon": {
      "label": "Icon",
      "valueSchema": {
        "type": "object",
        "description": "Icon settings",
        "properties": {
          "library": {
            "type": "string"
          },
          "icon": {
            "type": "string"
          },
          "svg": {
            "type": "object"
          }
        },
        "descriptionZh": "图标设置。"
      },
      "controlType": "icon",
      "labelZh": "图标"
    },
    "toggleIconTypography": {
      "label": "Icon typography",
      "css": [
        {
          "property": "font",
          "selector": ".coupon-toggle .showcoupon i"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "object",
        "description": "Typography settings",
        "properties": {
          "font-family": {
            "type": "string"
          },
          "font-size": {
            "type": "string"
          },
          "font-weight": {
            "type": [
              "string",
              "integer"
            ]
          },
          "font-style": {
            "type": "string",
            "enum": [
              "normal",
              "italic",
              "oblique"
            ]
          },
          "line-height": {
            "type": "string"
          },
          "letter-spacing": {
            "type": "string"
          },
          "text-align": {
            "type": "string",
            "enum": [
              "left",
              "center",
              "right",
              "justify"
            ]
          },
          "text-transform": {
            "type": "string",
            "enum": [
              "none",
              "uppercase",
              "lowercase",
              "capitalize"
            ]
          },
          "text-decoration": {
            "type": "string"
          },
          "color": {
            "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": "各种格式的颜色值。"
          }
        },
        "descriptionZh": "排版设置。"
      },
      "controlType": "typography",
      "labelZh": "图标排版"
    },
    "disableCouponMessage": {
      "label": "Disable coupon message",
      "valueSchema": {
        "type": "boolean"
      },
      "controlType": "checkbox",
      "labelZh": "禁用优惠券消息"
    },
    "couponMessage": {
      "label": "Coupon message",
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "优惠券消息"
    },
    "fieldsWrapperFlexDirection": {
      "label": "Flex direction",
      "css": [
        {
          "property": "flex-direction",
          "selector": ".coupon-form"
        }
      ],
      "valueSchema": {
        "type": "string",
        "enum": [
          "row",
          "row-reverse",
          "column",
          "column-reverse"
        ]
      },
      "controlType": "direction",
      "labelZh": "Flex 方向"
    },
    "applyButtonText": {
      "label": "Button text",
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "按钮文本"
    },
    "toggleDivMargin": {
      "label": "Margin",
      "css": [
        {
          "property": "margin",
          "selector": ".coupon-toggle"
        }
      ],
      "valueSchema": {
        "type": "object",
        "description": "Spacing value with directional properties",
        "properties": {
          "top": {
            "type": "string",
            "description": "Top spacing value with unit",
            "descriptio

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

前言

Bricks Checkout coupon 元素的 schema。

基本信息

  • 英文名称Checkout coupon
  • 中文名称:结账优惠券
  • Schema IDbricks://elements/woocommerce-checkout-coupon
  • Schema 版本2.3
  • 类型object
  • 分类general
  • Tagdiv
  • 内部名称woocommerce-checkout-coupon

设置项

  • location — 位置 (select)
  • toggleableForm — 可切换表单 (checkbox)
  • toggleText — 文本 (text)
  • toggleDivJustifyContent — 内容对齐 (justify-content)
  • toggleDivGap — 间距 (number)
  • toggleButtonNoText — 禁用文本 (checkbox)
  • toggleButtonText — 文本 (text)
  • toggleIcon — 图标 (icon)
  • toggleIconTypography — 图标排版 (typography)
  • disableCouponMessage — 禁用优惠券消息 (checkbox)
  • couponMessage — 优惠券消息 (text)
  • fieldsWrapperFlexDirection — Flex 方向 (direction)
  • applyButtonText — 按钮文本 (text)
  • toggleDivMargin — 外边距 (spacing)
  • toggleDivPadding — 内边距 (spacing)
  • toggleDivBackgroundColor — 背景颜色 (color)
  • toggleDivBorder — 边框 (border)
  • toggleDivBoxShadow — 盒子阴影 (box-shadow)
  • toggleDivTypography — 排版 (typography)
  • toggleButtonMargin — 外边距 (spacing)
  • toggleButtonPadding — 内边距 (spacing)
  • toggleButtonBackgroundColor — 背景颜色 (color)
  • toggleButtonBorder — 边框 (border)
  • toggleButtonBoxShadow — 盒子阴影 (box-shadow)
  • toggleButtonTypography — 排版 (typography)
  • formWrapperMargin — 外边距 (spacing)
  • formWrapperPadding — 内边距 (spacing)
  • formWrapperBackgroundColor — 背景颜色 (color)
  • formWrapperBorder — 边框 (border)
  • formWrapperBoxShadow — 盒子阴影 (box-shadow)
  • formWrapperTypography — 排版 (typography)
  • fieldsAlignItems — 项目对齐 (align-items)
  • fieldsWidth — 宽度 (number)
  • fieldsGap — 间距 (number)
  • placeholderTypography — 占位符排版 (typography)
  • fieldsInputMargin — 外边距 (spacing)
  • fieldsInputPadding — 内边距 (spacing)
  • fieldsInputBackgroundColor — 背景颜色 (color)
  • fieldsInputBorder — 边框 (border)
  • fieldsInputBoxShadow — 盒子阴影 (box-shadow)
  • fieldsInputTypography — 排版 (typography)
  • submitButtonWidth — 宽度 (number)
  • submitButtonMargin — 外边距 (spacing)
  • submitButtonPadding — 内边距 (spacing)
  • submitButtonBackgroundColor — 背景颜色 (color)
  • submitButtonBorder — 边框 (border)
  • submitButtonBoxShadow — 盒子阴影 (box-shadow)
  • submitButtonTypography — 排版 (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 文档