{# ========================================================================== #}
{# :: Imports #}
{# ========================================================================== #}
{% import "general/components/formfieldset/formfieldset-macros.njk" as formfieldset %}

{# ========================================================================== #}
{# :: Settings #}
{# ========================================================================== #}
{% set params = {
	isFullWidth: false,
	styleVendors: [],
	scriptVendors: ["https://kit.fontawesome.com/74199cd914.js"],
	order: 1,
	scope: ""
} %}

{# ========================================================================== #}
{# :: Info #}
{# ========================================================================== #}
{# {% set info %}

{% endset %} #}

{# ========================================================================== #}
{# :: Preview #}
{# ========================================================================== #}
{% set preview %}

	{{formfieldset.default("", {
		question: "Wat is je dienstverband?",
		options:[
			{
				name: "button",
				text: "vast",
				type: "button"
			},
			{
				name: "button",
				text: "zelfstandig",
				type: "button"
			},
			{
				name: "button",
				text: "flexwerker",
				type: "button"
			},
			{
				name: "button",
				text: "pensioen",
				type: "button",
				checked:"true"
			}
		]
	})}}

	{{formfieldset.default("", {
		question: "Wat is je geboortedatum?",
		options:[
			{
				name: "birthdate",
				text: "dd/mm/yyyy",
				type: "text"
			}
		]
	})}}

	{{formfieldset.default("", {
		question: "Jouw bruto jaarinkomen?",
		options:[
			{
				name: "birthdate",
				text: "€ 0",
				type: "text"
			},
			{
				link: "#",
				text: "Rekenhulp nodig?",
				type: "link"
			}
		]
	})}}

	{{formfieldset.default("", {
		question: "",
		options:[
			{
				name: "hasPartner",
				text: "Ik koop mijn huis met mijn partner",
				type: "checkbox"
			}
		]
	})}}

{% endset %}

{# ========================================================================== #}
{# :: Code #}
{# ========================================================================== #}
{# {% set code %} {% endset %} #}
