desy-html 5.3.0 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/tailwind.config.js +11 -21
- package/docs/_include.template-header.njk +16 -4
- package/docs/_macro.example-render.njk +16 -0
- package/docs/componentes.html +12 -0
- package/docs/ds/_ds.example.accordion.njk +61 -0
- package/docs/ds/_ds.example.footer.njk +7 -128
- package/docs/ds/_ds.example.header.njk +118 -0
- package/docs/ds/_ds.example.layout.njk +16 -6
- package/docs/ds/_ds.example.menu-navigation.njk +494 -0
- package/docs/ds/_ds.example.searchbar.njk +39 -0
- package/docs/ds/_ds.example.table.njk +432 -0
- package/docs/ds/_ds.example.toggle.njk +55 -35
- package/docs/ds/_ds.section.layout.njk +12 -12
- package/docs/ds/_ds.section.navigation.njk +5 -0
- package/docs/ds/_ds.section.textos.njk +27 -0
- package/docs/examples-accordion-history.html +5 -0
- package/docs/examples-header-2.html +5 -0
- package/docs/examples-header-advanced-2.html +5 -0
- package/docs/examples-header-advanced.html +5 -0
- package/docs/examples-header-mini.html +5 -0
- package/docs/examples-menu-navigation.html +5 -0
- package/docs/index.html +53 -0
- package/gulpfile.js +7 -6
- package/package.json +6 -7
- package/src/css/base.css +4 -0
- package/src/css/styles.css +1 -0
- package/src/js/aria/accordion.js +16 -5
- package/src/js/aria/disclosureMenu.js +153 -0
- package/src/js/desy-html.js +15 -0
- package/src/js/index.js +2 -0
- package/src/templates/components/accordion/_examples.accordion.njk +70 -2
- package/src/templates/components/accordion/_template.accordion.njk +18 -8
- package/src/templates/components/accordion/params.accordion.yaml +38 -0
- package/src/templates/components/accordion-history/_examples.accordion-history.njk +356 -0
- package/src/templates/components/accordion-history/_macro.accordion-history.njk +3 -0
- package/src/templates/components/accordion-history/_template.accordion-history.njk +220 -0
- package/src/templates/components/accordion-history/params.accordion-history.yaml +125 -0
- package/src/templates/components/button/_examples.button.njk +7 -0
- package/src/templates/components/button/_styles.button.css +34 -0
- package/src/templates/components/button/_template.button.njk +1 -1
- package/src/templates/components/button-loader/_styles.button-loader.css +6 -0
- package/src/templates/components/button-loader/_template.button-loader.njk +6 -6
- package/src/templates/components/checkboxes/_styles.checkboxes.css +7 -0
- package/src/templates/components/dropdown/_styles.dropdown.css +12 -4
- package/src/templates/components/file-upload/_template.file-upload.njk +1 -1
- package/src/templates/components/footer/_examples.footer.njk +46 -136
- package/src/templates/components/footer/_template.footer.njk +35 -28
- package/src/templates/components/footer/params.footer.yaml +18 -0
- package/src/templates/components/header/_examples.header-2.njk +536 -0
- package/src/templates/components/header/_examples.header.njk +134 -1
- package/src/templates/components/header/_template.header.header__navigation.njk +3 -3
- package/src/templates/components/header/_template.header.header__offcanvasButton.njk +1 -1
- package/src/templates/components/header/_template.header.header__subnav.njk +2 -2
- package/src/templates/components/header/_template.header.njk +8 -9
- package/src/templates/components/header/params.header.yaml +24 -0
- package/src/templates/components/header-advanced/_examples.header-advanced-2.njk +851 -0
- package/src/templates/components/header-advanced/_examples.header-advanced.njk +761 -0
- package/src/templates/components/header-advanced/_macro.header-advanced.njk +3 -0
- package/src/templates/components/header-advanced/_template.header-advanced.njk +146 -0
- package/src/templates/components/header-advanced/params.header-advanced.yaml +298 -0
- package/src/templates/components/header-mini/_examples.header-mini.njk +30 -0
- package/src/templates/components/header-mini/_macro.header-mini.njk +3 -0
- package/src/templates/components/header-mini/_template.header-mini.njk +14 -0
- package/src/templates/components/header-mini/params.header-mini.yaml +25 -0
- package/src/templates/components/input/_styles.input.css +7 -0
- package/src/templates/components/item/_examples.item.njk +26 -1
- package/src/templates/components/item/_template.item.njk +4 -4
- package/src/templates/components/item/params.item.yaml +4 -0
- package/src/templates/components/listbox/_styles.listbox.css +14 -4
- package/src/templates/components/menu-horizontal/_examples.menu-horizontal.njk +25 -0
- package/src/templates/components/menu-horizontal/_styles.menu-horizontal.css +26 -0
- package/src/templates/components/menu-horizontal/_template.menu-horizontal.njk +1 -1
- package/src/templates/components/menu-navigation/_examples.menu-navigation.njk +1080 -0
- package/src/templates/components/menu-navigation/_macro.menu-navigation.njk +3 -0
- package/src/templates/components/menu-navigation/_styles.menu-navigation.css +224 -0
- package/src/templates/components/menu-navigation/_template.menu-navigation.njk +116 -0
- package/src/templates/components/menu-navigation/params.menu-navigation.yaml +93 -0
- package/src/templates/components/menubar/_examples.menubar.njk +1 -1
- package/src/templates/components/menubar/_styles.menubar.css +33 -5
- package/src/templates/components/modal/_examples.modal.njk +62 -0
- package/src/templates/components/modal/_template.modal.njk +21 -4
- package/src/templates/components/modal/params.modal.yaml +2 -2
- package/src/templates/components/pagination/_examples.pagination.njk +60 -0
- package/src/templates/components/pagination/_template.pagination.njk +16 -2
- package/src/templates/components/pagination/params.pagination.yaml +49 -0
- package/src/templates/components/radios/_styles.radios.css +7 -0
- package/src/templates/components/searchbar/_examples.searchbar.njk +12 -1
- package/src/templates/components/searchbar/_template.searchbar.njk +9 -9
- package/src/templates/components/select/_styles.select.css +8 -0
- package/src/templates/components/spinner/_styles.spinner.css +1 -0
- package/src/templates/components/spinner/_template.spinner.njk +4 -4
- package/src/templates/components/table-advanced/_examples.table-advanced.njk +182 -5
- package/src/templates/components/table-advanced/_template.table-advanced.njk +27 -2
- package/src/templates/components/table-advanced/params.table-advanced.yaml +5 -0
- package/src/templates/components/toggle/_examples.toggle.njk +33 -11
- package/src/templates/components/toggle/_template.toggle.njk +3 -1
- package/src/templates/components/toggle/params.toggle.yaml +4 -0
- package/src/templates/components/tree/_examples.tree.njk +580 -32
- package/src/templates/components/tree/_styles.tree.css +8 -0
- package/src/templates/components/tree/_template.tree.njk +1 -1
- package/config/clean-css.js +0 -25
|
@@ -1,5 +1,116 @@
|
|
|
1
1
|
{% from "components/nav/_macro.nav.njk" import componentNav %}
|
|
2
2
|
{% from "components/details/_macro.details.njk" import componentDetails %}
|
|
3
|
+
{% from "components/menu-navigation/_macro.menu-navigation.njk" import componentMenuNavigation %}
|
|
4
|
+
|
|
5
|
+
{% set navigationCustom %}
|
|
6
|
+
{{ componentMenuNavigation({
|
|
7
|
+
"idPrefix": "header-custom-nav",
|
|
8
|
+
"classes": "c-menu-navigation--last-right hidden lg:block w-full bg-neutral-lighter ",
|
|
9
|
+
"items": [
|
|
10
|
+
{
|
|
11
|
+
"text": "Custom Item 1",
|
|
12
|
+
"id": "header-custom-nav-item-1",
|
|
13
|
+
"classes": "c-menu-navigation__button--header -mr-base",
|
|
14
|
+
"sub": {
|
|
15
|
+
"items": [
|
|
16
|
+
{
|
|
17
|
+
"href": "#",
|
|
18
|
+
"text": "Subitem 1"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"href": "#",
|
|
22
|
+
"text": "Subitem 2"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"href": "#",
|
|
26
|
+
"text": "Subitem 3"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"attributes": {
|
|
30
|
+
"aria-labelledby": "header-custom-nav-item-1"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"text": "Custom Active Item 2",
|
|
36
|
+
"id": "header-custom-nav-item-2",
|
|
37
|
+
"classes": "c-menu-navigation__button--header -mr-base",
|
|
38
|
+
"active": true,
|
|
39
|
+
"sub": {
|
|
40
|
+
"items": [
|
|
41
|
+
{
|
|
42
|
+
"href": "#",
|
|
43
|
+
"text": "Subitem 1"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"href": "#",
|
|
47
|
+
"text": "Subitem 2",
|
|
48
|
+
"active": true
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"href": "#",
|
|
52
|
+
"text": "Subitem 3"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"attributes": {
|
|
56
|
+
"aria-labelledby": "header-custom-nav-item-2"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"text": "Custom Item 3",
|
|
62
|
+
"id": "header-custom-nav-item-3",
|
|
63
|
+
"classes": "c-menu-navigation__button--header -mr-base",
|
|
64
|
+
"sub": {
|
|
65
|
+
"items": [
|
|
66
|
+
{
|
|
67
|
+
"href": "#",
|
|
68
|
+
"text": "Subitem 1"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"href": "#",
|
|
72
|
+
"text": "Subitem 2"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"href": "#",
|
|
76
|
+
"text": "Subitem 3"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"attributes": {
|
|
80
|
+
"aria-labelledby": "header-custom-nav-item-3"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"text": "Item 4 right",
|
|
86
|
+
"id": "header-custom-nav-item-4",
|
|
87
|
+
"classes": "c-menu-navigation__button--header",
|
|
88
|
+
"sub": {
|
|
89
|
+
"items": [
|
|
90
|
+
{
|
|
91
|
+
"href": "#",
|
|
92
|
+
"text": "Subitem 1"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"href": "#",
|
|
96
|
+
"text": "Subitem 2"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"href": "#",
|
|
100
|
+
"text": "Subitem 3"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"attributes": {
|
|
104
|
+
"aria-labelledby": "header-custom-nav-item-4"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"attributes": {
|
|
110
|
+
"aria-label": "Navegación principal"
|
|
111
|
+
}
|
|
112
|
+
}) }}
|
|
113
|
+
{% endset %}
|
|
3
114
|
|
|
4
115
|
{% set exampleOffcanvas %}
|
|
5
116
|
<nav class="w-full p-2" aria-label="Menú móvil">
|
|
@@ -116,6 +227,28 @@
|
|
|
116
227
|
}
|
|
117
228
|
}
|
|
118
229
|
},
|
|
230
|
+
{
|
|
231
|
+
"name": "with custom navigation",
|
|
232
|
+
"description": "Tras nuestro menú de navegación tenemos customNavigationHtml: una zona anidable para poder añadir una navegación personalizada",
|
|
233
|
+
"data": {
|
|
234
|
+
"homepageUrl": "/",
|
|
235
|
+
"subnav": {
|
|
236
|
+
"text": "Carpeta del gestor"
|
|
237
|
+
},
|
|
238
|
+
"customNavigationHtml": '<div class="flex flex-wrap flex-1 gap-base">'+ navigationCustom | safe + '</div>'
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "with custom navigation right",
|
|
243
|
+
"description": "En el customNavigationHtml podemos añadir elementos posicionados a la derecha",
|
|
244
|
+
"data": {
|
|
245
|
+
"homepageUrl": "/",
|
|
246
|
+
"subnav": {
|
|
247
|
+
"text": "Carpeta del gestor"
|
|
248
|
+
},
|
|
249
|
+
"customNavigationHtml": '<div class="relative flex justify-end items-center flex-1 gap-base"><div class="absolute -top-3 right-0 text-black"><a href="#"><svg class="w-5 h-5" width="1em" height="1em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" aria-label="Notificaciones"><path d="M7.25 12.5h-1.5a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5Z" fill="currentColor" transform="scale(3.42857)"/><g transform="scale(3.42857)"><circle cx="10.5" cy="2.5" r="2.5" fill="currentColor"/><path d="M11.5 10a1 1 0 0 1-1-1V6.74a.25.25 0 0 0-.24-.25 4 4 0 0 1-3.76-4 3.43 3.43 0 0 1 .11-.86.12.12 0 0 0 0-.1.15.15 0 0 0-.09 0 4 4 0 0 0-4 4V9a1 1 0 0 1-1 1 .5.5 0 0 0 0 1h10a.5.5 0 0 0 0-1Z" fill="currentColor"/></g></svg></a></div></div>'
|
|
250
|
+
}
|
|
251
|
+
},
|
|
119
252
|
{
|
|
120
253
|
"name": "with custom skipLink",
|
|
121
254
|
"description": "Pasando parámetros customizados al componente Skip Link. Útil para hacer plantillas de página con barra lateral o con un contenido principal localizado en otro sitio diferente al habitual.",
|
|
@@ -268,7 +401,7 @@
|
|
|
268
401
|
"data": {
|
|
269
402
|
"homepageUrl": "/",
|
|
270
403
|
"dropdown": {
|
|
271
|
-
"html": '<
|
|
404
|
+
"html": '<span class="block text-right">Marta Pérez <br>(Administración)</span>',
|
|
272
405
|
"items": [
|
|
273
406
|
{
|
|
274
407
|
"text": "Perfil",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
{% set idPrefix = params.idPrefix if params.idPrefix else "header-nav-item" %}
|
|
4
4
|
|
|
5
5
|
<nav class="{{ params.classes if params.classes else 'hidden lg:block' }}" {%- for attribute, value in params.attributes %} {{ attribute }}="{{ value }}"{% endfor %}>
|
|
6
|
-
<ul class="ml-sm flex flex-wrap items-baseline
|
|
6
|
+
<ul class="ml-sm flex flex-wrap items-baseline">
|
|
7
7
|
{% for item in params.items %}
|
|
8
8
|
{% if item %}
|
|
9
9
|
<li>
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
{% endif %}
|
|
20
20
|
{% endif %}
|
|
21
21
|
{% if item.active %}
|
|
22
|
-
<a {%- if id %} id="{{ id }}"{% endif %} href="{{ item.href }}" class="max-w-40 lg:max-w-xs px-3 py-4 font-bold text-sm text-
|
|
22
|
+
<a {%- if id %} id="{{ id }}"{% endif %} href="{{ item.href }}" class="max-w-40 lg:max-w-xs px-3 py-4 font-bold text-sm text-black hover:underline truncate focus:outline-none focus:ring-4 focus:ring-inset focus:ring-black focus:bg-warning-base" aria-current="page" {%- if item.target %} target="{{ item.target }}"{% endif %}><strong class="font-bold">{{ item.html | safe if item.html else item.text }}</strong></a>
|
|
23
23
|
{% else %}
|
|
24
|
-
<a href="{{ item.href }}" class="max-w-40 lg:max-w-xs px-3 py-4 text-sm text-
|
|
24
|
+
<a href="{{ item.href }}" class="max-w-40 lg:max-w-xs px-3 py-4 text-sm text-black hover:underline truncate focus:outline-none focus:ring-4 focus:ring-inset focus:ring-black focus:bg-warning-base {%- if item.disabled %} opacity-50 pointer-events-none{% endif -%}" {%- if item.disabled %} disabled="disabled" aria-disabled="true" tabindex="-1"{% endif -%} {%- if item.target %} target="{{ item.target }}"{% endif %}>{{ item.html | safe if item.html else item.text }}</a>
|
|
25
25
|
{% endif %}
|
|
26
26
|
</li>
|
|
27
27
|
{% endif %}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<button id="header-offcanvas-button"
|
|
3
3
|
onclick="openDialog('header-offcanvas', this)"
|
|
4
4
|
tabindex="0"
|
|
5
|
-
class="inline-flex items-center px-3 py-4 text-sm text-
|
|
5
|
+
class="inline-flex items-center px-3 py-4 text-sm text-black focus:outline-none focus:shadow-outline-black focus:bg-warning-base" aria-haspopup="true">
|
|
6
6
|
<span id="header-offcanvas-button-text" class="inline-block align-middle text-right">{{ params.html | safe if params.html else params.text }}</span> <svg role="img" aria-label="Cerrado" class="inline-block align-middle" viewBox="0 0 96 96" fill="currentColor" width="1.5em" height="1.5em"><g><path d="M46.71 58.037a1.823 1.823 0 002.581 0L62.048 45.28a1.823 1.823 0 00-1.29-3.113H35.243a1.823 1.823 0 00-1.291 3.113z"/></g></svg>
|
|
7
7
|
</button>
|
|
8
8
|
</div>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
{% if params.items %}
|
|
5
5
|
<div class="hidden lg:flex items-center">
|
|
6
|
-
<div class="
|
|
6
|
+
<div class="py-2 relative border-r border-l border-neutral-base">
|
|
7
7
|
<p class="sr-only">Aplicación actual: </p>
|
|
8
8
|
{% call componentDropdown({
|
|
9
9
|
"text": params.text,
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
</div>
|
|
24
24
|
</div>
|
|
25
25
|
{% else %}
|
|
26
|
-
<p class="hidden lg:inline-block align-middle
|
|
26
|
+
<p class="hidden lg:inline-block align-middle px-3 py-4 border-r border-l border-neutral-base text-sm text-black">
|
|
27
27
|
<span class="sr-only">Aplicación actual: </span>
|
|
28
28
|
{{ params.html | safe if params.html else params.text }}
|
|
29
29
|
</p>
|
|
@@ -12,19 +12,17 @@
|
|
|
12
12
|
href: params.skipLink.href if params.skipLink.href else "#content"
|
|
13
13
|
}) }}
|
|
14
14
|
</nav>
|
|
15
|
-
<div class="
|
|
16
|
-
<div class="flex-auto bg-yellow-300 h-full"></div>
|
|
17
|
-
<div class="flex-auto bg-red-500 h-full"></div>
|
|
18
|
-
<div class="flex-auto bg-red-800 h-full"></div>
|
|
19
|
-
</div>
|
|
20
|
-
<div class="bg-black" x-data="{ isOn: false }" >
|
|
15
|
+
<div class="bg-neutral-lighter border-b border-neutral-base" x-data="{ isOn: false }" >
|
|
21
16
|
<div class="container mx-auto px-base">
|
|
22
17
|
<div class="flex items-center justify-between min-h-14">
|
|
23
18
|
<div class="flex flex-wrap items-center">
|
|
24
19
|
<div class="flex items-center flex-shrink-0">
|
|
25
|
-
<a href="{{ params.homepageUrl | default('/') }}" class="text-
|
|
26
|
-
|
|
27
|
-
|
|
20
|
+
<a href="{{ params.homepageUrl | default('/') }}" class="flex flex-wrap mr-4 text-black focus:outline-none focus:shadow-outline-black" title="Ir a la página de inicio">
|
|
21
|
+
{% if not params.noLogo %}
|
|
22
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 144 32" width="144" height="32" class="fill-current {% if params.expandedLogo %} hidden sm:block{% else %} hidden{% endif %}" aria-label="Gobierno de Aragón" role="img"><title>Ir a la página de inicio</title><defs><clipPath id="b-logo-expanded"><path fill="gold" d="M0 0h31.509v31.495H0z"/></clipPath><clipPath id="a-logo-expanded"><path d="M0 0h144v32H0z"/></clipPath></defs><g clip-path="url(#a-logo-expanded)"><path fill="gold" d="M0 .205h31.509V31.7H0z"/><g clip-path="url(#b-logo-expanded)" transform="translate(0 .205)"><g fill="#dd171b" fill-rule="evenodd"><path d="m31.509 6.048-7.568 1.515a14.545 14.545 0 0 1-7.905-1.025 15.04 15.04 0 0 0-5-1.817 12.536 12.536 0 0 0-3.535-.011l-5.051.9c-.8.156-1.639.3-2.453.434V.315A7.1 7.1 0 0 1 3.888.226a9.926 9.926 0 0 1 2.085.936 17.6 17.6 0 0 0 4.293 1.962 13.92 13.92 0 0 0 6.6-.034l4.728-.858 4.939-.892 4.97-1.024ZM6.602 24.229a14.592 14.592 0 0 1 9.555 1.014 12.178 12.178 0 0 0 8.307 1.5l7.044-1.271v5.706a8.247 8.247 0 0 1-3.008.256 6.4 6.4 0 0 1-1.594-.457l-3.657-1.917a12.217 12.217 0 0 0-7.092-.825L1.026 31.011 0 31.177v-5.706l1.26-.256 3.312-.613c.669-.123 1.371-.245 2.029-.379ZM-.003 15.077v-4.391l13.027-2.377a15.5 15.5 0 0 1 9.11 1.638 12.535 12.535 0 0 0 8.474.925l.9-.189v4.391l-2.874-1.639a12.286 12.286 0 0 0-6.835-1.014l-8.006 1.46c-.959.179-2.877.524-2.877.524l-7.292 1.349a5.152 5.152 0 0 1-3.627-.677ZM31.509 16.583v4.324L18.6 23.282a15.5 15.5 0 0 1-9.11-1.638 12.532 12.532 0 0 0-8.474-.925l-1.015.19v-4.324l2.988 1.572a12.291 12.291 0 0 0 6.835 1.014l8.006-1.46c.959-.178 2.877-.524 2.877-.524l7.292-1.349a5.142 5.142 0 0 1 3.51.745Z"/></g></g><path d="M38.2 28.807v-8.551h1.393c2.893 0 4.478 1.522 4.478 4.286 0 2.829-1.521 4.265-4.5 4.265Zm10.4-11.4v14.294h9.47v-2.893h-6.277v-3.257h6.214v-2.893h-6.214v-2.379h6.277v-2.871Zm21.751 0-5.206 14.294h3.385l1.542-4.35h4.371l1.521 4.35h3.45L74.1 17.407Zm1.885 2.956-1.328 4.223h2.679Zm42.341 4.03h-3.192v4.5a4.206 4.206 0 0 1-1.371.193 4.251 4.251 0 0 1-4.242-4.5 4.443 4.443 0 0 1 4.735-4.65 7.481 7.481 0 0 1 4.071 1.243v-3.257a11.674 11.674 0 0 0-4.349-.857c-4.628 0-7.841 3.107-7.841 7.564 0 4.393 3.149 7.372 7.841 7.372a12.977 12.977 0 0 0 4.349-.75Zm16.132.129a7.424 7.424 0 1 0-7.391 7.436 7.122 7.122 0 0 0 7.393-7.436Zm-7.456-4.458c-2.4 0-4.006 1.822-4.006 4.5s1.65 4.5 4.071 4.5c2.4 0 3.985-1.8 3.985-4.5s-1.627-4.501-4.048-4.501Zm8.689-2.657v14.294h3.257v-9.108l5.762 9.108h3.021V17.407h-3.256v8.889l-5.532-8.889ZM46.922 7.33h-3.193v4.5a4.335 4.335 0 0 1-5.613-4.307 4.443 4.443 0 0 1 4.735-4.65 7.487 7.487 0 0 1 4.071 1.243V.859a11.674 11.674 0 0 0-4.35-.858c-4.628 0-7.841 3.107-7.841 7.565 0 4.393 3.15 7.371 7.841 7.371a12.99 12.99 0 0 0 4.35-.75Zm16.116.128a7.424 7.424 0 1 0-7.392 7.436 7.122 7.122 0 0 0 7.396-7.436Zm-7.456-4.457c-2.4 0-4.006 1.821-4.006 4.5s1.65 4.5 4.071 4.5c2.4 0 3.985-1.8 3.985-4.5s-1.626-4.5-4.047-4.5ZM64.107.344v14.293h5.914c3.15 0 4.992-1.565 4.992-4.243a3.717 3.717 0 0 0-2.978-3.728 3.133 3.133 0 0 0 1.95-2.936c.021-2.272-1.521-3.386-4.606-3.386Zm4.757 5.336c1.393 0 1.95-.386 1.95-1.35 0-.921-.536-1.264-2.057-1.264h-1.393V5.68Zm.429 6.043c1.585 0 2.271-.493 2.271-1.651 0-1.2-.707-1.671-2.4-1.671h-1.8v3.322ZM78.879.344h-3.192v14.293h3.192Zm1.39 0v14.293h9.47v-2.893h-6.278V8.487h6.214V5.594h-6.214V3.216h6.278V.345Zm50.463 7.114a7.424 7.424 0 1 0-7.392 7.436 7.122 7.122 0 0 0 7.395-7.436Zm-7.456-4.457c-2.4 0-4.006 1.821-4.006 4.5s1.65 4.5 4.071 4.5c2.4 0 3.985-1.8 3.985-4.5s-1.626-4.5-4.047-4.5ZM97.917 24.585l-1.35-4.223-1.328 4.223ZM83.249 31.7v-5.872h.407c2.057 0 2.271.214 3.642 3.75a7.159 7.159 0 0 0 .3.729l.278.664a6.4 6.4 0 0 0 .343.729h4.641l1.543-4.35h4.371l1.521 4.35h3.45l-5.314-14.294h-3.749L90.46 28.997c-.3-.622-.642-1.371-1.04-2.291a3.042 3.042 0 0 0-1.907-2.014 3.416 3.416 0 0 0 2.614-3.429c0-2.571-1.693-3.857-5.1-3.857H79.97V31.7Zm0-8.572h1.414c1.371 0 2.057-.493 2.057-1.521s-.622-1.478-2.014-1.478h-1.457Zm11.156-8.492V8.764h.407c2.057 0 2.271.214 3.642 3.75a6.982 6.982 0 0 0 .3.729l.278.665a6.37 6.37 0 0 0 .342.729h6.432l.018-9.169 5.745 9.169h3.021V.344h-3.256l.014 8.769-5.542-8.769h-3.257v13.3a29.76 29.76 0 0 1-1.975-4 3.043 3.043 0 0 0-1.907-2.014 3.415 3.415 0 0 0 2.614-3.428c0-2.572-1.693-3.857-5.1-3.857h-5.054v14.293Zm0-8.572h1.412c1.371 0 2.056-.493 2.056-1.521s-.621-1.478-2.013-1.478h-1.457Zm-59.44 11.342V31.7h4.778c4.842 0 7.692-2.657 7.692-7.158 0-4.479-2.914-7.136-7.863-7.136Z" fill="#161615" fill-rule="evenodd"/></g></svg>
|
|
23
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" class="w-8 h-8 fill-current {%- if params.expandedLogo %} sm:hidden{% endif %}" ><title>Ir a la página de inicio</title><defs><clipPath id="b-logo-mini"><path fill="gold" d="M0 0h32v32.001H0z"/></clipPath><clipPath id="a-logo-mini"><path d="M0 0h32v32H0z"/></clipPath></defs><g clip-path="url(#a-logo-mini)"><path fill="gold" d="M0 .305h32v32.001H0z"/><g clip-path="url(#b-logo-mini)" transform="translate(0 .305)"><g fill="#dd171b" fill-rule="evenodd"><path d="m31.997 6.145-7.686 1.539a14.764 14.764 0 0 1-8.028-1.042 15.267 15.267 0 0 0-5.073-1.846 12.725 12.725 0 0 0-3.59-.011l-5.13.918a94.41 94.41 0 0 1-2.491.442V.324a7.213 7.213 0 0 1 3.952-.09 10.087 10.087 0 0 1 2.118.951 17.859 17.859 0 0 0 4.36 1.993 14.13 14.13 0 0 0 6.7-.034l4.8-.872 5.016-.906 5.048-1.04ZM6.705 24.619a14.812 14.812 0 0 1 9.7 1.03 12.363 12.363 0 0 0 8.437 1.529l7.154-1.291v5.8a8.37 8.37 0 0 1-3.055.26 6.509 6.509 0 0 1-1.619-.464l-3.714-1.948a12.4 12.4 0 0 0-7.2-.838l-15.366 2.82L0 31.686v-5.8l1.28-.26 3.363-.623c.679-.125 1.393-.249 2.061-.385ZM-.003 15.32v-4.462l13.23-2.417a15.734 15.734 0 0 1 9.252 1.665 12.723 12.723 0 0 0 8.606.94l.914-.192v4.462L29.08 13.65a12.472 12.472 0 0 0-6.941-1.031l-8.131 1.483c-.974.182-2.921.532-2.921.532l-7.406 1.371a5.23 5.23 0 0 1-3.684-.685ZM31.997 16.851v4.393l-13.11 2.413a15.735 15.735 0 0 1-9.252-1.665 12.721 12.721 0 0 0-8.606-.94l-1.03.193v-4.394l3.035 1.6a12.476 12.476 0 0 0 6.941 1.03l8.13-1.483c.974-.182 2.922-.532 2.922-.532l7.406-1.371a5.219 5.219 0 0 1 3.564.756Z"/></g></g></g></svg>
|
|
24
|
+
{% endif %}
|
|
25
|
+
{{ params.customLogoHtml | safe if params.customLogoHtml }}
|
|
28
26
|
</a>
|
|
29
27
|
{% if params.subnav %}
|
|
30
28
|
{% from "./_macro.header.header__subnav.njk" import componentHeaderSubnav %}
|
|
@@ -66,6 +64,7 @@
|
|
|
66
64
|
}) | indent(12) }}
|
|
67
65
|
{% endif %}
|
|
68
66
|
</div>
|
|
67
|
+
{{ params.customNavigationHtml | safe if params.customNavigationHtml }}
|
|
69
68
|
{% if params.dropdown.items or params.dropdown.contentHtml %}
|
|
70
69
|
{% from "./_macro.header.header__dropdown.njk" import componentHeaderDropdown %}
|
|
71
70
|
{% call componentHeaderDropdown({
|
|
@@ -11,6 +11,14 @@ params:
|
|
|
11
11
|
type: boolean
|
|
12
12
|
required: false
|
|
13
13
|
description: When true, the logo has the complete logo with text. Use it when showing header to citizen public apps.
|
|
14
|
+
- name: noLogo
|
|
15
|
+
type: boolean
|
|
16
|
+
required: false
|
|
17
|
+
description: When true, there will be no Gobierno de Aragón logo.
|
|
18
|
+
- name: customLogoHtml
|
|
19
|
+
type: string
|
|
20
|
+
required: false
|
|
21
|
+
description: HTML for the custom logo. If provided there will appear a custom logo after the Gobierno de Aragón logo
|
|
14
22
|
- name: subnav
|
|
15
23
|
type: object
|
|
16
24
|
required: false
|
|
@@ -57,6 +65,10 @@ params:
|
|
|
57
65
|
type: string
|
|
58
66
|
required: true
|
|
59
67
|
description: Item link.
|
|
68
|
+
- name: target
|
|
69
|
+
type: string
|
|
70
|
+
required: false
|
|
71
|
+
description: The target where the item should link to.
|
|
60
72
|
- name: text
|
|
61
73
|
type: string
|
|
62
74
|
required: true
|
|
@@ -135,6 +147,10 @@ params:
|
|
|
135
147
|
type: string
|
|
136
148
|
required: true
|
|
137
149
|
description: Item link.
|
|
150
|
+
- name: target
|
|
151
|
+
type: string
|
|
152
|
+
required: false
|
|
153
|
+
description: The target where the item should link to.
|
|
138
154
|
- name: text
|
|
139
155
|
type: string
|
|
140
156
|
required: true
|
|
@@ -193,6 +209,10 @@ params:
|
|
|
193
209
|
type: string
|
|
194
210
|
required: false
|
|
195
211
|
description: Url of the navigation item anchor. Both `href` and `text` attributes for navigation items need to be provided to create an item.
|
|
212
|
+
- name: target
|
|
213
|
+
type: string
|
|
214
|
+
required: false
|
|
215
|
+
description: The target where the item should link to.
|
|
196
216
|
- name: active
|
|
197
217
|
type: boolean
|
|
198
218
|
required: false
|
|
@@ -201,6 +221,10 @@ params:
|
|
|
201
221
|
type: object
|
|
202
222
|
required: false
|
|
203
223
|
description: HTML attributes (for example data attributes) to add to the navigation item anchor.
|
|
224
|
+
- name: customNavigationHtml
|
|
225
|
+
type: string
|
|
226
|
+
required: false
|
|
227
|
+
description: HTML for the custom navigation area. If provided there will appear an embed area where you can nest custom navigation after the default one.
|
|
204
228
|
- name: offcanvas
|
|
205
229
|
type: object
|
|
206
230
|
required: false
|