@openeuropa/bcl-subscription 0.4230.202512021730 → 0.4360.202601141610
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,13 +2,13 @@
|
|
|
2
2
|
"name": "@openeuropa/bcl-subscription",
|
|
3
3
|
"author": "European Commission",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.4360.202601141610",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
9
|
"description": "OE - BCL subscription",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@openeuropa/bcl-subscription-block": "^0.
|
|
11
|
+
"@openeuropa/bcl-subscription-block": "^0.4360.202601141610"
|
|
12
12
|
},
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"design-system",
|
|
25
25
|
"twig"
|
|
26
26
|
],
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "2caf9255f88587416f6e83e572a1f20e4cf206f5"
|
|
28
28
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{% extends "@oe-bcl/bcl-modal/modal.html.twig" %}
|
|
2
2
|
|
|
3
|
-
{
|
|
3
|
+
{#- Parameters:
|
|
4
4
|
- form: (form object) (default: {})
|
|
5
5
|
- success_alert: (alert object) (default: {})
|
|
6
6
|
- error_alert: (alert Object) (default: {})
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
- messages
|
|
11
11
|
#}
|
|
12
12
|
|
|
13
|
-
{
|
|
13
|
+
{%- set _form = form|default({}) %}
|
|
14
14
|
{% set _success_alert = success_alert|default({}) %}
|
|
15
15
|
{% set _error_alert = error_alert|default({}) %}
|
|
16
16
|
|
|
17
|
-
{
|
|
18
|
-
{
|
|
17
|
+
{%- block body %}
|
|
18
|
+
{%- include '@oe-bcl/bcl-form/form.html.twig' with _form only %}
|
|
19
19
|
{% endblock %}
|
|
20
20
|
|
|
21
|
-
{
|
|
22
|
-
{
|
|
23
|
-
{
|
|
21
|
+
{%- block messages %}
|
|
22
|
+
{%- include '@oe-bcl/bcl-alert/alert.html.twig' with _success_alert only %}
|
|
23
|
+
{%- include '@oe-bcl/bcl-alert/alert.html.twig' with _error_alert only %}
|
|
24
24
|
{% endblock %}
|
package/subscription.html.twig
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{% extends '@oe-bcl/bcl-base-templates/content-type.html.twig' -%}
|
|
2
2
|
|
|
3
3
|
{%- block sidebar %}
|
|
4
|
-
{
|
|
4
|
+
{%- include '@oe-bcl/bcl-inpage-navigation/inpage-navigation.html.twig' with sidebar only %}
|
|
5
5
|
{%- endblock -%}
|
|
6
6
|
|
|
7
7
|
{%- block content_bottom %}
|
|
8
|
-
{
|
|
9
|
-
{
|
|
8
|
+
{%- include '@oe-bcl/bcl-subscription-block/subscription-block.html.twig' with subscription only %}
|
|
9
|
+
{%- include '@oe-bcl/bcl-subscription/subscription-modal.html.twig' with modal only %}
|
|
10
10
|
{%- endblock -%}
|