@openeuropa/bcl-theme-joinup 1.6.0 → 1.7.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@openeuropa/bcl-theme-joinup",
3
3
  "author": "European Commission",
4
4
  "license": "EUPL-1.2",
5
- "version": "1.6.0",
5
+ "version": "1.7.0",
6
6
  "description": "OE - BCL theme joinup",
7
7
  "scripts": {
8
8
  "align-templates": "lerna --scope \"@openeuropa/bcl-twig-templates\" run prepublish",
@@ -28,10 +28,10 @@
28
28
  "@ecl/resources-eu-logo": "3.7.1",
29
29
  "@ecl/resources-flag-icons": "3.7.1",
30
30
  "@fontsource/roboto": "4.5.8",
31
- "@openeuropa/bcl-bootstrap": "^1.6.0",
32
- "@openeuropa/bcl-builder": "^1.6.0",
33
- "@openeuropa/bcl-theme-default": "^1.6.0",
34
- "@openeuropa/bcl-twig-templates": "^1.6.0",
31
+ "@openeuropa/bcl-bootstrap": "^1.7.0",
32
+ "@openeuropa/bcl-builder": "^1.7.0",
33
+ "@openeuropa/bcl-theme-default": "^1.7.0",
34
+ "@openeuropa/bcl-twig-templates": "^1.7.0",
35
35
  "copyfiles": "2.4.1",
36
36
  "cross-env": "7.0.3",
37
37
  "flag-icons": "6.9.2",
@@ -56,5 +56,5 @@
56
56
  "design-system",
57
57
  "twig"
58
58
  ],
59
- "gitHead": "f82d4f83aa17cc668a051d1fd26bcbdb0122fddd"
59
+ "gitHead": "04c6da17515cbe8b0c1f3daaf32b3024e3582332"
60
60
  }
@@ -12,6 +12,7 @@ import Collapse from "@openeuropa/bcl-bootstrap/js/src/collapse";
12
12
  import Dropdown from "@openeuropa/bcl-bootstrap/js/src/dropdown";
13
13
  import Gallery from "@openeuropa/bcl-theme-default/src/js/gallery/gallery";
14
14
  import Modal from "@openeuropa/bcl-bootstrap/js/src/modal";
15
+ import AccessibleToggle from "@openeuropa/bcl-theme-default/src/js/accessible-toggle/accessible-toggle";
15
16
  import Offcanvas from "@openeuropa/bcl-bootstrap/js/src/offcanvas";
16
17
  import Popover from "@openeuropa/bcl-bootstrap/js/src/popover";
17
18
  import ScrollSpyV2 from "@openeuropa/bcl-bootstrap/js/src/scrollspy";
@@ -28,6 +29,7 @@ export {
28
29
  Dropdown,
29
30
  Gallery,
30
31
  Modal,
32
+ AccessibleToggle,
31
33
  Offcanvas,
32
34
  Popover,
33
35
  ScrollSpyV2,
@@ -12,6 +12,7 @@ import Collapse from "@openeuropa/bcl-bootstrap/js/src/collapse";
12
12
  import Dropdown from "@openeuropa/bcl-bootstrap/js/src/dropdown";
13
13
  import Gallery from "@openeuropa/bcl-theme-default/src/js/gallery/gallery";
14
14
  import Modal from "@openeuropa/bcl-bootstrap/js/src/modal";
15
+ import AccessibleToggle from "@openeuropa/bcl-theme-default/src/js/accessible-toggle/accessible-toggle";
15
16
  import Offcanvas from "@openeuropa/bcl-bootstrap/js/src/offcanvas";
16
17
  import Popover from "@openeuropa/bcl-bootstrap/js/src/popover";
17
18
  import ScrollSpyV2 from "@openeuropa/bcl-bootstrap/js/src/scrollspy";
@@ -28,6 +29,7 @@ export default {
28
29
  Dropdown,
29
30
  Gallery,
30
31
  Modal,
32
+ AccessibleToggle,
31
33
  Offcanvas,
32
34
  Popover,
33
35
  ScrollSpyV2,
@@ -26,7 +26,7 @@
26
26
  <div class="d-flex justify-content-between align-items-center">
27
27
  {% endif %}
28
28
  <div class="d-flex align-items-center">
29
- {% set _title_classes = 'mb-0' %}
29
+ {% set _title_classes = 'modal-title mb-0' %}
30
30
  {% if _icon_path is not empty %}
31
31
  {% set _title_classes = _title_classes ~ ' ms-2' %}
32
32
  {% include '@oe-bcl/bcl-icon/icon.html.twig' with {
@@ -34,7 +34,7 @@
34
34
  path: _icon_path
35
35
  } only %}
36
36
  {% endif %}
37
- <h5 class="{{ _title_classes }}">{{ _title }}</h5>
37
+ <div class="{{ _title_classes }}">{{ _title }}</div>
38
38
  </div>
39
39
  <button type="button" class="btn-close" data-bs-dismiss="modal"
40
40
  {% if _close_label is not empty %}