Skip to content

Divider

Divider element can be used as a visual separator between sections or groups of controls.

Options

variant

string Optional parameter. Defines the color intensity of the divider line. Default value: default.

Available values: - default — standard visibility - subtle — low contrast, less prominent - strong — high contrast, more prominent - transparent — no visible line, spacing only

JSON
{
  "options": {
    "variant": "subtle"
  }
}

Build-in Validators

Element has no build-in validators.

Available Validators

Element does not have available validators.

Relations Support

Element does not support relations between elements.

Configuration output schema

schema
{
  "<element_type>" : "divider",
  "<element_name>" : string,
  "<element_isHidden>" : bool,
  "<element_options>" : {
    "<element_variant>" : string
  }
}
example
{
  "type": "divider",
  "name": "section-divider",
  "isHidden": false,
  "options": {
    "variant": "strong"
  }
}