desy-html 8.12.1 → 8.13.1
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/docs/ds/_ds.section.textos.njk +10 -0
- package/docs/index.html +13 -0
- package/package.json +3 -4
- package/src/js/desy-html.js +1 -0
- package/src/templates/components/footer/_examples.footer.njk +13 -0
- package/src/templates/components/footer/_styles.footer.css +9 -2
- package/src/templates/components/footer/_template.footer.njk +2 -0
- package/src/templates/components/footer/params.footer.yaml +1 -1
- package/src/templates/components/header/_template.header.njk +1 -1
- package/src/templates/components/header-advanced/_examples.header-advanced.njk +67 -17
- package/src/templates/components/menu-horizontal/_styles.menu-horizontal.css +11 -0
- package/src/templates/components/menu-navigation/_template.menu-navigation.njk +2 -2
- package/src/templates/components/nav/_template.nav.njk +1 -1
- package/src/templates/components/table-advanced/_styles.table-advanced.css +1 -0
|
@@ -140,6 +140,16 @@
|
|
|
140
140
|
</dd>
|
|
141
141
|
</dl>
|
|
142
142
|
</li>
|
|
143
|
+
<li>
|
|
144
|
+
<dl class="grid grid-cols-2 lg:grid-cols-4 gap-x-lg gap-y-base mb-lg">
|
|
145
|
+
<dt class="col-span-2 lg:col-span-2 p-base border border-neutral-base rounded relative hover:bg-neutral-light">
|
|
146
|
+
<a href="#" class="c-link c-link--full">Contenedor con enlace</a>
|
|
147
|
+
</dt>
|
|
148
|
+
<dd class="col-span-2 lg:col-span-2 mb-lg">
|
|
149
|
+
<p class="text-neutral-dark text-sm"><code>.c-link.c-link--full</code> + contenedor <code>.relative.hover:bg-neutral-light</code> - <code>normal</code> - <code>underline</code> - <code>primary-base</code> - hover: <code>bg-neutral-light</code></p>
|
|
150
|
+
</dd>
|
|
151
|
+
</dl>
|
|
152
|
+
</li>
|
|
143
153
|
</ul>
|
|
144
154
|
{% from "ds/_ds.macro.subsection-title.njk" import DSSubsectionTitle %}
|
|
145
155
|
{{ DSSubsectionTitle({
|
package/docs/index.html
CHANGED
|
@@ -38,6 +38,19 @@
|
|
|
38
38
|
|
|
39
39
|
<h2>Changelog (English)</h2>
|
|
40
40
|
<p>What's new in the latest version of desy-html</p>
|
|
41
|
+
<h3>v.8.13.1</h3>
|
|
42
|
+
<ul class="text-sm">
|
|
43
|
+
<li>Minor fixes.</li>
|
|
44
|
+
</ul>
|
|
45
|
+
<h3>v.8.13.0</h3>
|
|
46
|
+
<ul class="text-sm">
|
|
47
|
+
<li>Added logos in Header Advanced examples.</li>
|
|
48
|
+
<li>Added FEADER logos in Footer.</li>
|
|
49
|
+
<li>Tooltip now allows select content inside.</li>
|
|
50
|
+
<li>Updated to latest Tailwind CSS.</li>
|
|
51
|
+
<li>Accesibility fixes.</li>
|
|
52
|
+
<li>Minor improvements.</li>
|
|
53
|
+
</ul>
|
|
41
54
|
<h3>v.8.12.1</h3>
|
|
42
55
|
<ul class="text-sm">
|
|
43
56
|
<li>Fixed logo.html parameter in Footer and improved styles for logo.</li>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "desy-html",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.13.1",
|
|
4
4
|
"description": "desy-html contains the code you need to start building a user interface for Gobierno de Aragón government webapps.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Desy (SDA Servicios Digitales de Aragón)",
|
|
@@ -33,15 +33,14 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@tailwindcss/forms": "^0.5.7",
|
|
36
|
-
"@tailwindcss/typography": "^0.5.
|
|
36
|
+
"@tailwindcss/typography": "^0.5.13",
|
|
37
37
|
"autoprefixer": "^10.0.2",
|
|
38
38
|
"hex-rgb": "^5.0.0",
|
|
39
39
|
"highlight.js": "^11.7.0",
|
|
40
|
-
"npm-run-all": "^4.1.5",
|
|
41
40
|
"postcss": "^8.2.15",
|
|
42
41
|
"postcss-cli": "^10.0.0",
|
|
43
42
|
"postcss-import": "^15.0.0",
|
|
44
|
-
"tailwindcss": "^3.3
|
|
43
|
+
"tailwindcss": "^3.4.3"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
46
|
"browser-sync": "^2.26.13",
|
package/src/js/desy-html.js
CHANGED
|
@@ -140,6 +140,19 @@
|
|
|
140
140
|
"classes": "lg:mt-48"
|
|
141
141
|
}
|
|
142
142
|
},
|
|
143
|
+
{
|
|
144
|
+
"name": "con logo tipo Feader",
|
|
145
|
+
"description": 'Usa <code>logo.type: FEADER</code> para cambiar el logo.',
|
|
146
|
+
"data": {
|
|
147
|
+
"meta": {
|
|
148
|
+
"html": 'Creado por <a href="https://sda.aragon.es/" class="c-link c-link--neutral">SDA Servicios Digitales de Aragón</a>'
|
|
149
|
+
},
|
|
150
|
+
"logo": {
|
|
151
|
+
"type": "FEADER"
|
|
152
|
+
},
|
|
153
|
+
"classes": "lg:mt-48"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
143
156
|
{
|
|
144
157
|
"name": "con logo tipo Plurifondo",
|
|
145
158
|
"description": 'Usa <code>logo.type: plurifondo</code> para cambiar el logo.',
|