Checkboxes

Mostrar parámetros

Parámetros del componente

              params:
- name: describedBy
  type: string
  required: false
  description: One or more element IDs to add to the input `aria-describedby` attribute without a fieldset, used to provide additional descriptive information for screenreader users.
- name: fieldset
  type: object
  required: false
  description: Options for the fieldset component (e.g. legend).
  isComponent: true
- name: hint
  type: object
  required: false
  description: Options for the hint component (e.g. text).
  isComponent: true
- name: errorMessage
  type: object
  required: false
  description: Options for the error message component. The error message component will not display if you use a falsy value for `errorMessage`, for example `false` or `null`.
  isComponent: true
- name: formGroup
  type: object
  required: false
  description: Options for the form-group wrapper
  params:
  - name: classes
    type: string
    required: false
    description: Classes to add to the form group (e.g. to show error state for the whole group)
- name: idPrefix
  type: string
  required: false
  description: String to prefix id for each checkbox item if no id is specified on each item. If not passed, fall back to using the name option instead.
- name: name
  type: string
  required: true
  description: Name attribute for all checkbox items.
- name: items
  type: array
  required: true
  description: Array of checkbox items objects.
  params:
  - name: text
    type: string
    required: true
    description: If `html` is set, this is not required. Text to use within each checkbox item label. If `html` is provided, the `text` argument will be ignored.
  - name: html
    type: string
    required: true
    description: If `text` is set, this is not required. HTML to use within each checkbox item label. If `html` is provided, the `text` argument will be ignored.
  - name: id
    type: string
    required: false
    description: Specific id attribute for the checkbox item. If omitted, then idPrefix option will be applied.
  - name: name
    type: string
    required: true
    description: Specific name for the checkbox item. If omitted, then component global `name` string will be applied.
  - name: value
    type: string
    required: true
    description: Value for the checkbox input.
  - name: label
    type: object
    required: false
    description: Provide attributes and classes to each checkbox item label.
    isComponent: true
  - name: hint
    type: object
    required: false
    description: Provide hint to each checkbox item.
    isComponent: true
  - name: checked
    type: boolean
    required: false
    description: If true, checkbox will be checked.
  - name: isIndeterminate
    type: boolean
    required: false
    description: If true, the checkbox will have an additional indeterminate state to show a partial true.
  - name: indeterminateChecked
    type: boolean
    required: false
    description: If true, the checkbox will have an indeterminate checked initial state. This will override isChecked value.
  - name: conditional
    type: boolean
    required: false
    description: If true, content provided will be revealed when the item is checked.
  - name: conditional.html
    type: string
    required: false
    description: Provide content for the conditional reveal.
  - name: disabled
    type: boolean
    required: false
    description: If true, checkbox will be disabled.
  - name: classes
    type: string
    required: false
    description: Classes to add to the item.
  - name: attributes
    type: object
    required: false
    description: HTML attributes (for example data attributes) to add to the checkbox input tag.
- name: hasDividers
  type: boolean
  required: false
  description: With hasDividers equal to true, the items have an horizontal border to visually separate items.
- name: classes
  type: string
  required: false
  description: Classes to add to the checkboxes container.
- name: attributes
  type: object
  required: false
  description: HTML attributes (for example data attributes) to add to the anchor tag.
              
            

Por defecto

¿Cómo prefieres que te contactemos?

Si lo deseas puedes seleccionar varios elementos.

Mostrar códigodel ejemplo: Por defecto

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "default",
  "name": "default",
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?"
    }
  },
  "hint": {
    "text": "Si lo deseas puedes seleccionar varios elementos."
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "value": "correo-postal",
      "text": "Correo postal"
    },
    {
      "value": "telefono",
      "text": "Teléfono"
    }
  ]
}) }}

Con id y name

¿Cómo prefieres que te contactemos?

Si lo deseas puedes seleccionar varios elementos.

Mostrar códigodel ejemplo: Con id y name

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "with-id-and-name",
  "name": "with-id-and-name",
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?"
    }
  },
  "hint": {
    "text": "Si lo deseas puedes seleccionar varios elementos."
  },
  "items": [
    {
      "name": "correo-electronico",
      "id": "correo-electronico-id",
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "name": "correo-postal",
      "id": "correo-postal-id",
      "value": "correo-postal",
      "text": "Correo postal"
    }
  ]
}) }}

Con pistas en los items

¿Cómo prefieres que te contactemos?

Asegúrate de que el correo no llega a la bandeja de spam.

Asegúrate de haber introducido la dirección postal correctamente.

Mostrar códigodel ejemplo: Con pistas en los items

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "hints-on-items",
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?",
      "isPageHeading": true
    }
  },
  "items": [
    {
      "name": "correo-electronico",
      "id": "correo-electronico-a",
      "value": "desy-correo-electronico",
      "text": "Correo electrónico",
      "hint": {
        "text": "Asegúrate de que el correo no llega a la bandeja de spam."
      }
    },
    {
      "name": "correo-postal",
      "id": "desy-correo-postal-a",
      "value": "desy-correo-postal-a",
      "text": "Correo postal",
      "hint": {
        "text": "Asegúrate de haber introducido la dirección postal correctamente."
      }
    }
  ]
}) }}

Con líneas divisorias

¿Cómo prefieres que te contactemos?

Si lo deseas puedes seleccionar varios elementos.

Asegúrate de haber introducido la dirección postal correctamente.

Asegúrate de haber introducido la dirección postal correctamente.

Mostrar códigodel ejemplo: Con líneas divisorias

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "has-dividers",
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?"
    }
  },
  "hint": {
    "text": "Si lo deseas puedes seleccionar varios elementos."
  },
  "hasDividers": true,
  "items": [
    {
      "name": "correo-electronico",
      "id": "correo-electronico-b",
      "value": "desy-correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "name": "correo-postal",
      "id": "desy-correo-postal-b",
      "value": "desy-correo-postal-b",
      "text": "Correo postal",
      "hint": {
        "text": "Asegúrate de haber introducido la dirección postal correctamente."
      }
    },
    {
      "name": "telefono",
      "id": "telefono-b",
      "value": "telefono",
      "text": "Teléfono",
      "checked": true,
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"telefono-1\">Número de teléfono</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"telefono-1\" name=\"telefono-name-1\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    },
    {
      "name": "correo-postal",
      "id": "desy-correo-postal-c",
      "value": "desy-correo-postal-c",
      "text": "Correo postal",
      "hint": {
        "text": "Asegúrate de haber introducido la dirección postal correctamente."
      }
    }
  ]
}) }}

Con clases de css aplicadas

Los parámetros classes nos permiten aplicar clases de Tailwind CSS a nuestro componente.

¿Cómo prefieres que te contactemos?

Asegúrate de que el correo no llega a la bandeja de spam.

Asegúrate de haber introducido la dirección postal correctamente.

Mostrar códigodel ejemplo: Con clases de css aplicadas

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "classes",
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?"
    }
  },
  "items": [
    {
      "name": "correo-electronico",
      "id": "correo-electronico-c",
      "value": "desy-correo-electronico",
      "text": "Correo electrónico",
      "hint": {
        "text": "Asegúrate de que el correo no llega a la bandeja de spam."
      },
      "classes": "bg-primary-light"
    },
    {
      "name": "correo-postal",
      "id": "desy-correo-postal-d",
      "value": "desy-correo-postal-d",
      "text": "Correo postal",
      "hint": {
        "text": "Asegúrate de haber introducido la dirección postal correctamente."
      },
      "classes": "bg-neutral-lighter"
    }
  ]
}) }}

Con item deshabilitado

Mostrar códigodel ejemplo: Con item deshabilitado

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "disabled-item",
  "name": "colours",
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "value": "correo-postal",
      "text": "Correo postal",
      "disabled": true,
      "checked": true
    },
    {
      "value": "telefono",
      "text": "Teléfono",
      "disabled": true
    }
  ]
}) }}

Con un legend como encabezado

Usa el parámetro "heading" para añadir un encabezado asociado al componente. Usa el parámetro "headingLevel" para establecer el nivel del encabezado. Por ejemplo: "headingLevel": 3 creará un encabezado <h3>.

¿Cómo prefieres que te contactemos?

Si lo deseas puedes seleccionar varios elementos.

Mostrar códigodel ejemplo: Con un legend como encabezado

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "legend-as-page-heading",
  "name": "legend-as-page-heading",
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?",
      "classes": "c-h2",
      "isPageHeading": true
    },
    "headingLevel": 2
  },
  "hint": {
    "text": "Si lo deseas puedes seleccionar varios elementos."
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "value": "correp-postal",
      "text": "Correo postal"
    },
    {
      "value": "telefono",
      "text": "Teléfono"
    }
  ]
}) }}

Con un legend del tamaño de un encabezado h2

¿Cómo prefieres que te contactemos?

Si lo deseas puedes seleccionar varios elementos.

Error:Error: Tienes que seleccionar al menos una opción

Mostrar códigodel ejemplo: Con un legend del tamaño de un encabezado h2

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "medium-legend",
  "name": "medium-legend",
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?",
      "classes": "c-h2"
    }
  },
  "hint": {
    "text": "Si lo deseas puedes seleccionar varios elementos."
  },
  "errorMessage": {
    "text": "Error: Tienes que seleccionar al menos una opción"
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "value": "correp-postal",
      "text": "Correo postal"
    },
    {
      "value": "telefono",
      "text": "Teléfono"
    }
  ]
}) }}

Sin fieldset

Mostrar códigodel ejemplo: Sin fieldset

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "without-fieldset",
  "name": "without-fieldset",
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "value": "correp-postal",
      "text": "Correo postal"
    },
    {
      "value": "telefono",
      "text": "Teléfono"
    }
  ]
}) }}

Con una sóla opción usando 'aria-describedby' en el input

Error:Error: Por favor, debes aceptar los términos y condiciones

Mostrar códigodel ejemplo: Con una sóla opción usando 'aria-describedby' en el input

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "describedby",
  "name": "describedby",
  "errorMessage": {
    "text": "Error: Por favor, debes aceptar los términos y condiciones"
  },
  "items": [
    {
      "value": "acepto",
      "html": "Acepto los <a href=\"#\" target=\"_blank\" class=\"c-link\" title=\"Se abre en ventana nueva del navegador\">términos y condiciones</a>"
    }
  ]
}) }}

Con una sóla opción (y pista) usando 'aria-describedby' en el input

Error:Error: Por favor, debes aceptar los términos y condiciones

Puedes visualizarlos en ventana nueva del navegador

Mostrar códigodel ejemplo: Con una sóla opción (y pista) usando 'aria-describedby' en el input

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "name": "t-and-c-with-hint",
  "errorMessage": {
    "text": "Error: Por favor, debes aceptar los términos y condiciones"
  },
  "items": [
    {
      "value": "acepto",
      "html": "Acepto los <a href=\"#\" target=\"_blank\" class=\"c-link\" title=\"Se abre en ventana nueva del navegador\">términos y condiciones</a>",
      "hint": {
        "text": "Puedes visualizarlos en ventana nueva del navegador"
      }
    }
  ]
}) }}

Con fieldset y mensaje de error

¿Cómo prefieres que te contactemos?

Error:Error: Tienes que seleccionar al menos una opción

Mostrar códigodel ejemplo: Con fieldset y mensaje de error

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "name": "colours",
  "errorMessage": {
    "text": "Error: Tienes que seleccionar al menos una opción"
  },
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?"
    }
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "value": "correo-postal",
      "text": "Correo postal"
    },
    {
      "value": "telefono",
      "text": "Teléfono"
    }
  ]
}) }}

Con mensaje de error

¿Cómo prefieres que te contactemos?

Error:Error: Tienes que seleccionar al menos una opción

Mostrar códigodel ejemplo: Con mensaje de error

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "error-message",
  "name": "error-message",
  "errorMessage": {
    "text": "Error: Tienes que seleccionar al menos una opción"
  },
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?"
    }
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico"
    },
    {
      "value": "correp-postal",
      "text": "Correo postal"
    },
    {
      "value": "telefono",
      "text": "Teléfono"
    }
  ]
}) }}

Con mensaje de error y pistas en los items

¿Cómo prefieres que te contactemos?

Error:Error: Tienes que seleccionar al menos una opción

Asegúrate de que nuestros correos no lleguen a la bandeja de spam.

Asegúrate de haber introducido correctamente tu dirección.

Sólo enviamos mensajes durante el día.

Mostrar códigodel ejemplo: Con mensaje de error y pistas en los items

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "error-and-hints",
  "name": "error-and-hints",
  "errorMessage": {
    "text": "Error: Tienes que seleccionar al menos una opción"
  },
  "fieldset": {
    "legend": {
      "text": "¿Cómo prefieres que te contactemos?"
    }
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico",
      "hint": {
        "text": "Asegúrate de que nuestros correos no lleguen a la bandeja de spam."
      }
    },
    {
      "value": "correo-postal",
      "text": "Correo postal",
      "hint": {
        "text": "Asegúrate de haber introducido correctamente tu dirección."
      }
    },
    {
      "value": "telefono",
      "text": "Teléfono",
      "hint": {
        "text": "Sólo enviamos mensajes durante el día."
      }
    }
  ]
}) }}

Con un texto de item muy largo

Maecenas faucibus mollis interdum?

Nullam id dolor id nibh ultricies vehicula ut id elit.

Error:Error: Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Mostrar códigodel ejemplo: Con un texto de item muy largo

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "long-option",
  "name": "long-option",
  "hint": {
    "text": "Nullam id dolor id nibh ultricies vehicula ut id elit."
  },
  "errorMessage": {
    "text": "Error: Lorem ipsum dolor sit amet, consectetur adipiscing elit."
  },
  "fieldset": {
    "legend": {
      "text": "Maecenas faucibus mollis interdum?"
    }
  },
  "items": [
    {
      "value": "nullam",
      "text": "Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Maecenas faucibus mollis interdum. Donec id elit non mi porta gravida at eget metus."
    },
    {
      "value": "aenean",
      "text": "Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Donec sed odio dui. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum."
    },
    {
      "value": "fusce",
      "text": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Etiam porta sem malesuada magna mollis euismod. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. Sed posuere consectetur est at lobortis."
    }
  ]
}) }}

Con items condicionales

¿Cómo quieres que te contactemos?
Mostrar códigodel ejemplo: Con items condicionales

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "how-contacted",
  "name": "with-conditional-items",
  "fieldset": {
    "legend": {
      "text": "¿Cómo quieres que te contactemos?"
    }
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico",
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"mobile-1\">Número de teléfono móvil</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"mobile-1\" name=\"mobile-name-1\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    },
    {
      "value": "telefono",
      "text": "Teléfono",
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"telefono-2\">Número de teléfono</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"telefono-2\" name=\"telefono-name-2\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    },
    {
      "value": "mensaje-SMS",
      "text": "Mensaje SMS",
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"mobile-2\">Número de teléfono móvil</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"mobile-2\" name=\"mobile-name-2\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    }
  ]
}) }}

Con items condicionales anidados

¿Cómo quieres que te contactemos?
Mostrar códigodel ejemplo: Con items condicionales anidados

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "how-contacted-nested",
  "name": "with-conditional-nested-items",
  "fieldset": {
    "legend": {
      "text": "¿Cómo quieres que te contactemos?"
    }
  },
  "items": [
    {
      "value": "presencial",
      "text": "Presencial",
      "checked": true,
      "conditional": {
        "html": "  \n\n<!-- checkboxes -->\n<div class=\"c-form-group\">\n  <div class=\"c-checkboxes\" data-module=\"c-checkboxes\">\n      <div class=\" c-checkboxes__conditional c-checkboxes__conditional-active\">\n        <div class=\"relative flex items-start py-base\">\n          <div class=\"flex items-center mx-sm\">\n            <input class=\"w-6 h-6 transition duration-150 ease-in-out border-black focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-offset-0 focus:ring-warning-base disabled:bg-neutral-base disabled:border-neutral-base text-primary-base\" id=\"with-conditional-items-checked-nested-1\" name=\"with-conditional-items-checked-nested-1\" type=\"checkbox\" value=\"oficinas-de-registro\" checked aria-controls=\"conditional-with-conditional-items-checked-nested-1\" aria-describedby=\" \">\n          </div>\n          <div class=\"pt-0.5 leading-5\">\n            <!-- label -->\n            <label class=\"block\" for=\"with-conditional-items-checked-nested-1\">Oficinas de registro</label>\n            <!-- /label -->\n          </div>\n        </div>\n        <div class=\"mb-base ml-5 py-sm pl-6 origin-top-left border-l-2 border-primary-base c-checkboxes__conditional-item\" id=\"conditional-with-conditional-items-checked-nested-1\">\n            \n            \n            <!-- checkboxes -->\n            <div class=\"c-form-group\">\n              <div class=\"c-checkboxes\" data-module=\"c-checkboxes\">\n                  <div class=\" c-checkboxes__conditional-hidden\">\n                    <div class=\"relative flex items-start py-base\">\n                      <div class=\"flex items-center mx-sm\">\n                        <input class=\"w-6 h-6 transition duration-150 ease-in-out border-black focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-offset-0 focus:ring-warning-base disabled:bg-neutral-base disabled:border-neutral-base text-primary-base\" id=\"oficina-principal-id\" name=\"oficina-principal\" type=\"checkbox\" value=\"oficina-principal\" aria-describedby=\" \">\n                      </div>\n                      <div class=\"pt-0.5 leading-5\">\n                        <!-- label -->\n                        <label class=\"block\" for=\"oficina-principal-id\">Oficina principal</label>\n                        <!-- /label -->\n                      </div>\n                    </div>\n                  </div>\n                  <div class=\" c-checkboxes__conditional-hidden\">\n                    <div class=\"relative flex items-start py-base\">\n                      <div class=\"flex items-center mx-sm\">\n                        <input class=\"w-6 h-6 transition duration-150 ease-in-out border-black focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-offset-0 focus:ring-warning-base disabled:bg-neutral-base disabled:border-neutral-base text-primary-base\" id=\"oficina-secundaria-id\" name=\"oficina-secundaria\" type=\"checkbox\" value=\"oficina-secundaria\" aria-describedby=\" \">\n                      </div>\n                      <div class=\"pt-0.5 leading-5\">\n                        <!-- label -->\n                        <label class=\"block\" for=\"oficina-secundaria-id\">Oficina secundaria</label>\n                        <!-- /label -->\n                      </div>\n                    </div>\n                  </div>\n                </div>\n            </div>\n            <!-- /checkboxes -->\n            \n            \n        </div>\n      </div>\n    </div>\n</div>\n<!-- /checkboxes -->\n\n"
      }
    }
  ]
}) }}

Con item condicional seleccionado

¿Cómo quieres que te contactemos?
Mostrar códigodel ejemplo: Con item condicional seleccionado

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "with-conditional-items-checked",
  "name": "with-conditional-items-checked",
  "fieldset": {
    "legend": {
      "text": "¿Cómo quieres que te contactemos?"
    }
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico",
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"mobile-3\">Número de teléfono móvil</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"mobile-3\" name=\"mobile-name-3\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    },
    {
      "value": "telefono",
      "text": "Teléfono",
      "checked": true,
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"telefono-3\">Número de teléfono</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"telefono-3\" name=\"telefono-name-3\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    },
    {
      "value": "mensaje-SMS",
      "text": "Mensaje SMS",
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"mobile-4\">Número de teléfono móvil</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"mobile-4\" name=\"mobile-name-4\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    }
  ]
}) }}

Con clases opcionales del form-group mostrando un error del grupo

¿Cómo quieres que te contactemos?

Error:Error: Este campo no puede estar vacío

Mostrar códigodel ejemplo: Con clases opcionales del form-group mostrando un error del grupo

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "optional-classes-showing-error",
  "name": "optional-classes-showing-error",
  "formGroup": {
    "classes": "c-form-group--error"
  },
  "fieldset": {
    "legend": {
      "text": "¿Cómo quieres que te contactemos?"
    }
  },
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico",
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"mobile-5\">Número de teléfono móvil</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"mobile-5\" name=\"mobile-name-5\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    },
    {
      "value": "telefono",
      "text": "Teléfono",
      "checked": true,
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group c-form-group--error\">\n  <!-- label -->\n  <label class=\"block\" for=\"input-with-error-message-1\">Número de teléfono móvil</label>\n  <!-- /label -->\n  <!-- error-message -->\n  <p id=\"input-with-error-message-1-error\" class=\"block font-semibold text-alert-base\">\n    <span class=\"sr-only\">Error:</span>Error: Este campo no puede estar vacío\n  </p>\n  <!-- /error-message -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base border-alert-base ring-2 ring-alert-base \" id=\"input-with-error-message-1\" name=\"test-name-1\" type=\"text\" aria-describedby=\"input-with-error-message-1-error\" aria-errormessage=\"input-with-error-message-1-error\" aria-invalid=\"true\">\n</div>\n<!-- /input -->\n"
      }
    },
    {
      "value": "mensaje-SMS",
      "text": "Mensaje SMS",
      "conditional": {
        "html": "  <!-- input -->\n<div class=\"c-form-group\">\n  <!-- label -->\n  <label class=\"block\" for=\"mobile-6\">Número de teléfono móvil</label>\n  <!-- /label -->\n  <input class=\"c-input block mt-sm border-black rounded font-semibold placeholder-neutral-dark focus:border-black focus:shadow-outline-focus-input focus:ring-4 focus:ring-warning-base disabled:bg-neutral-light disabled:border-neutral-base\" id=\"mobile-6\" name=\"mobile-name-6\" type=\"text\">\n</div>\n<!-- /input -->\n"
      }
    }
  ]
}) }}

Peque

Mostrar códigodel ejemplo: Peque

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "small",
  "name": "peque",
  "classes": "c-checkboxes--sm",
  "items": [
    {
      "value": "correo-electronico",
      "text": "Correo electrónico",
      "classes": "-mt-base",
      "label": {
        "classes": "text-sm -mt-1"
      }
    },
    {
      "value": "correo-postal",
      "text": "Correo postal",
      "classes": "-mt-base",
      "label": {
        "classes": "text-sm -mt-1"
      }
    },
    {
      "value": "telefono",
      "text": "Teléfono",
      "classes": "-mt-base",
      "label": {
        "classes": "text-sm -mt-1"
      }
    }
  ]
}) }}

Indeterminado

Usando el parámetro "isIndeterminate": true podemos crear un item del checkbox que tenga 3 estados: marcado, desmarcado o indeterminado. El estado indeterminado expresa que hay sólo algún item seleccionado pero no todos. Útil para selecciones múltiples.

Mostrar códigodel ejemplo: Indeterminado

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "indeterminate",
  "name": "indeterminate",
  "classes": "c-checkboxes--sm",
  "items": [
    {
      "value": "indeterminate",
      "text": "1 elemento seleccionado",
      "isIndeterminate": true,
      "classes": "-mt-base",
      "label": {
        "classes": "text-sm -mt-1"
      }
    }
  ]
}) }}

Indeterminado marcado

Usando los parámetros "isIndeterminate": true y "indeterminateChecked": true podemos marcar como estado indeterminado un item que sea de tipo indeterminado.

Mostrar códigodel ejemplo: Indeterminado marcado

Contenido

Nunjucks macro

{% from "components/checkboxes/_macro.checkboxes.njk" import componentCheckboxes %}

{{ componentCheckboxes({
  "idPrefix": "indeterminate-checked",
  "name": "indeterminate-checked",
  "classes": "c-checkboxes--sm",
  "items": [
    {
      "value": "indeterminate-checked-item",
      "text": "1 elemento seleccionado",
      "isIndeterminate": true,
      "indeterminateChecked": true,
      "checked": false,
      "classes": "-mt-base",
      "label": {
        "classes": "text-sm -mt-1"
      }
    }
  ]
}) }}