@spw-ds/spw-stencil-library 1.12.2-alpha.0 → 1.12.2
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/dist/cem.json +40 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/spw-header-navigation.cjs.entry.js +3 -1
- package/dist/cjs/spw-stencil-library.cjs.js +1 -1
- package/dist/cjs/spw-wizard.cjs.entry.js +5 -3
- package/dist/collection/components/spw-header/spw-header-navigation/spw-header-navigation.js +23 -1
- package/dist/collection/components/spw-wizard/spw-wizard.js +25 -3
- package/dist/components/spw-header-navigation.js +1 -1
- package/dist/components/spw-wizard.js +1 -1
- package/dist/components_json.json +59 -1
- package/dist/components_vscode.json +8 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/spw-header-navigation.entry.js +3 -1
- package/dist/esm/spw-stencil-library.js +1 -1
- package/dist/esm/spw-wizard.entry.js +5 -3
- package/dist/spw-stencil-library/p-36e966b6.entry.js +1 -0
- package/dist/spw-stencil-library/p-d16208aa.entry.js +1 -0
- package/dist/spw-stencil-library/spw-stencil-library.esm.js +1 -1
- package/dist/stats.json +124 -16
- package/dist/types/components/spw-header/spw-header-navigation/spw-header-navigation.d.ts +2 -0
- package/dist/types/components/spw-wizard/spw-wizard.d.ts +2 -0
- package/dist/types/components.d.ts +22 -0
- package/hydrate/index.js +10 -4
- package/hydrate/index.mjs +10 -4
- package/package.json +1 -1
- package/dist/spw-stencil-library/p-5bdf3e69.entry.js +0 -1
- package/dist/spw-stencil-library/p-8491ce96.entry.js +0 -1
package/dist/collection/components/spw-header/spw-header-navigation/spw-header-navigation.js
CHANGED
|
@@ -11,6 +11,8 @@ export class SpwHeaderNavigation {
|
|
|
11
11
|
this.extraButtonTarget = '_self';
|
|
12
12
|
/** Variant de l'extra button */
|
|
13
13
|
this.extraButtonVariant = 'primary';
|
|
14
|
+
/** Texte du lien "Page d'accueil" dans la navigation mobile */
|
|
15
|
+
this.homepageLabel = "Page d'accueil";
|
|
14
16
|
}
|
|
15
17
|
componentDidLoad() {
|
|
16
18
|
this.updateHeightVar();
|
|
@@ -63,7 +65,7 @@ export class SpwHeaderNavigation {
|
|
|
63
65
|
};
|
|
64
66
|
}
|
|
65
67
|
render() {
|
|
66
|
-
return (h(Host, { key: '
|
|
68
|
+
return (h(Host, { key: 'cc8b36bb6c54587e51246dba2b2d564712884dde' }, h("nav", { key: '8aabc608c255c4b9dc399598cf69835cef34b5da', class: this.elementClass, ref: el => (this.navEl = el) }, h("div", { key: 'fac953ae5c2cde5bbae25935f0cb8d8b12ed8272', class: "spw-ds-container spw-tw-flex spw-tw-items-center spw-tw-justify-between" }, h("div", { key: 'f4c37ea68a814ba7348b24b0f429621ad0b8caaf', class: "spw-header-navigation__list" }, h("div", { key: '2498432ef6645dcb688310e4498ecbe0b75c8aa3', class: "spw-header-navigation__list-back" }, h("a", { key: '770ff2e852900f662b09ff095173f96c2803c3d4', href: "#", onClick: event => this.redirectToHome(event) }, h("spw-icon", { key: 'b1eda2204772067b8a8084bd4c2b3617e6912287', icon: "fa-chevron-left" }), " ", h("span", { key: 'c0a05bde1b81645addde13496fa49c71944fef3d' }, this.homepageLabel))), h("slot", { key: 'ce4bb4c4afd10d1835c3655ec080146d138babfd' })), this.extraButton && (h("div", { key: '39f6796ce53a36d012bb0d93907359aaa2026780', class: "spw-header-navigation__extra-button spw-header-navigation__extra-button--desktop" }, h("spw-button", { key: 'e19fa4ee5d998c292b91c695673b61fca0b93de0', variant: this.extraButtonVariant, icon: this.extraButtonIcon, href: this.extraButtonHref, target: this.extraButtonTarget, size: "small" }, this.extraButtonText))))), this.extraButton && (h("div", { key: '28d532d75dd97ecf9baa839ef82b45a10552a57c', class: "spw-header-navigation__extra-button-parent spw-header-navigation__extra-button--mobile" }, h("div", { key: '2e2f457c7fd5bccb33e5230fc9c7bb3fb5de9e9c', class: "spw-ds-container" }, h("div", { key: 'debb676659f4bf665fd54b97ba939cff3cd4bd91', class: "spw-header-navigation__extra-button spw-header-navigation__extra-button--mobile" }, h("spw-button", { key: 'bbf06e4972a91addb151a33c03f13191149b725a', "is-full-width": "true", variant: this.extraButtonVariant, icon: this.extraButtonIcon, href: this.extraButtonHref, target: this.extraButtonTarget, size: "small" }, this.extraButtonText)))))));
|
|
67
69
|
}
|
|
68
70
|
static get is() { return "spw-header-navigation"; }
|
|
69
71
|
static get encapsulation() { return "shadow"; }
|
|
@@ -215,6 +217,26 @@ export class SpwHeaderNavigation {
|
|
|
215
217
|
"setter": false,
|
|
216
218
|
"reflect": false,
|
|
217
219
|
"attribute": "extra-button-icon"
|
|
220
|
+
},
|
|
221
|
+
"homepageLabel": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"mutable": false,
|
|
224
|
+
"complexType": {
|
|
225
|
+
"original": "string",
|
|
226
|
+
"resolved": "string",
|
|
227
|
+
"references": {}
|
|
228
|
+
},
|
|
229
|
+
"required": false,
|
|
230
|
+
"optional": true,
|
|
231
|
+
"docs": {
|
|
232
|
+
"tags": [],
|
|
233
|
+
"text": "Texte du lien \"Page d'accueil\" dans la navigation mobile"
|
|
234
|
+
},
|
|
235
|
+
"getter": false,
|
|
236
|
+
"setter": false,
|
|
237
|
+
"reflect": false,
|
|
238
|
+
"attribute": "homepage-label",
|
|
239
|
+
"defaultValue": "\"Page d'accueil\""
|
|
218
240
|
}
|
|
219
241
|
};
|
|
220
242
|
}
|
|
@@ -5,6 +5,8 @@ export class SpwWizard {
|
|
|
5
5
|
this.currentStep = 1;
|
|
6
6
|
/** Orientation du wizard */
|
|
7
7
|
this.variant = 'horizontal';
|
|
8
|
+
/** Si `true`, les étapes suivantes sont également cliquables */
|
|
9
|
+
this.canClickNextSteps = false;
|
|
8
10
|
}
|
|
9
11
|
componentWillLoad() {
|
|
10
12
|
this.updateStepsState();
|
|
@@ -20,7 +22,7 @@ export class SpwWizard {
|
|
|
20
22
|
}
|
|
21
23
|
handleStepClick(event) {
|
|
22
24
|
const clickedStep = event.detail;
|
|
23
|
-
if (clickedStep < this.currentStep) {
|
|
25
|
+
if (clickedStep < this.currentStep || (this.canClickNextSteps && clickedStep > this.currentStep)) {
|
|
24
26
|
this.currentStep = clickedStep;
|
|
25
27
|
this.updateStepsState();
|
|
26
28
|
this.stepClick.emit(clickedStep);
|
|
@@ -57,7 +59,7 @@ export class SpwWizard {
|
|
|
57
59
|
item.setAttribute('variant', this.variant);
|
|
58
60
|
item.setAttribute('step-number', stepNumber.toString());
|
|
59
61
|
item.setAttribute('is-last', (index === items.length - 1).toString());
|
|
60
|
-
item.setAttribute('is-clickable', (stepNumber < this.currentStep).toString());
|
|
62
|
+
item.setAttribute('is-clickable', (stepNumber !== this.currentStep && (stepNumber < this.currentStep || this.canClickNextSteps)).toString());
|
|
61
63
|
item.setAttribute('is-current', (stepNumber === this.currentStep).toString());
|
|
62
64
|
item.setAttribute('is-before-current', (stepNumber < this.currentStep).toString());
|
|
63
65
|
item.setAttribute('is-after-current', (stepNumber > this.currentStep).toString());
|
|
@@ -71,7 +73,7 @@ export class SpwWizard {
|
|
|
71
73
|
};
|
|
72
74
|
}
|
|
73
75
|
render() {
|
|
74
|
-
return (h(Host, { key: '
|
|
76
|
+
return (h(Host, { key: 'a5eba43b0339adced1c10ba67a6fee404ab23ba7' }, h("div", { key: 'f0df2e2aece93f90e94d00fa9830c111783f3b55', class: this.elementClass }, h("slot", { key: '73a3daa9ba48010f31d71e200c5c2b4f1ef95cac' }))));
|
|
75
77
|
}
|
|
76
78
|
static get is() { return "spw-wizard"; }
|
|
77
79
|
static get encapsulation() { return "shadow"; }
|
|
@@ -126,6 +128,26 @@ export class SpwWizard {
|
|
|
126
128
|
"reflect": false,
|
|
127
129
|
"attribute": "variant",
|
|
128
130
|
"defaultValue": "'horizontal'"
|
|
131
|
+
},
|
|
132
|
+
"canClickNextSteps": {
|
|
133
|
+
"type": "boolean",
|
|
134
|
+
"mutable": false,
|
|
135
|
+
"complexType": {
|
|
136
|
+
"original": "boolean",
|
|
137
|
+
"resolved": "boolean",
|
|
138
|
+
"references": {}
|
|
139
|
+
},
|
|
140
|
+
"required": false,
|
|
141
|
+
"optional": true,
|
|
142
|
+
"docs": {
|
|
143
|
+
"tags": [],
|
|
144
|
+
"text": "Si `true`, les \u00E9tapes suivantes sont \u00E9galement cliquables"
|
|
145
|
+
},
|
|
146
|
+
"getter": false,
|
|
147
|
+
"setter": false,
|
|
148
|
+
"reflect": false,
|
|
149
|
+
"attribute": "can-click-next-steps",
|
|
150
|
+
"defaultValue": "false"
|
|
129
151
|
}
|
|
130
152
|
};
|
|
131
153
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,H as t,h as i,a,t as n}from"./index.js";import{d as s}from"./p-4fzd5oDU.js";import{d as o}from"./p-BFQBddHX.js";import{d as r}from"./p-CkwH0osH.js";const d=e(class extends t{constructor(e){super(),!1!==e&&this.__registerHost(),this.__attachShadow(),this.level=0,this.element=null,this.alignment="flex-start",this.extraButton=!1,this.extraButtonTarget="_self",this.extraButtonVariant="primary"}componentDidLoad(){this.updateHeightVar(),this.resizeObserver=new ResizeObserver((()=>this.updateHeightVar())),this.resizeObserver.observe(this.navEl)}disconnectedCallback(){var e;null===(e=this.resizeObserver)||void 0===e||e.disconnect()}updateHeightVar(){document.documentElement.style.setProperty("--spw-header-navigation-height",this.navEl.offsetHeight+"px")}redirectToHome(e){e.preventDefault(),window.location.href="/"}handleNavigation(e){e.stopPropagation(),this.element=e.detail.element,this.level=e.detail.level,setTimeout((()=>{this.updateNavigationItems()}),0)}updateNavigationItems(){this.getAllNavigationItems().forEach(((e,t)=>{e.setAttribute("data-id",""+(t+1)),e.setAttribute("data-level-visible",""+this.level)}))}getAllNavigationItems(){const e=[];return this.el.querySelectorAll("spw-header-navigation-item").forEach((t=>{e.push(t);const i=t.shadowRoot;i&&i.querySelectorAll("spw-header-navigation-item").forEach((t=>e.push(t)))})),e}get elementClass(){return{"spw-header-navigation":!0,["spw-header-navigation--"+this.alignment]:!0}}render(){return i(a,{key:"
|
|
1
|
+
import{p as e,H as t,h as i,a,t as n}from"./index.js";import{d as s}from"./p-4fzd5oDU.js";import{d as o}from"./p-BFQBddHX.js";import{d as r}from"./p-CkwH0osH.js";const d=e(class extends t{constructor(e){super(),!1!==e&&this.__registerHost(),this.__attachShadow(),this.level=0,this.element=null,this.alignment="flex-start",this.extraButton=!1,this.extraButtonTarget="_self",this.extraButtonVariant="primary",this.homepageLabel="Page d'accueil"}componentDidLoad(){this.updateHeightVar(),this.resizeObserver=new ResizeObserver((()=>this.updateHeightVar())),this.resizeObserver.observe(this.navEl)}disconnectedCallback(){var e;null===(e=this.resizeObserver)||void 0===e||e.disconnect()}updateHeightVar(){document.documentElement.style.setProperty("--spw-header-navigation-height",this.navEl.offsetHeight+"px")}redirectToHome(e){e.preventDefault(),window.location.href="/"}handleNavigation(e){e.stopPropagation(),this.element=e.detail.element,this.level=e.detail.level,setTimeout((()=>{this.updateNavigationItems()}),0)}updateNavigationItems(){this.getAllNavigationItems().forEach(((e,t)=>{e.setAttribute("data-id",""+(t+1)),e.setAttribute("data-level-visible",""+this.level)}))}getAllNavigationItems(){const e=[];return this.el.querySelectorAll("spw-header-navigation-item").forEach((t=>{e.push(t);const i=t.shadowRoot;i&&i.querySelectorAll("spw-header-navigation-item").forEach((t=>e.push(t)))})),e}get elementClass(){return{"spw-header-navigation":!0,["spw-header-navigation--"+this.alignment]:!0}}render(){return i(a,{key:"cc8b36bb6c54587e51246dba2b2d564712884dde"},i("nav",{key:"8aabc608c255c4b9dc399598cf69835cef34b5da",class:this.elementClass,ref:e=>this.navEl=e},i("div",{key:"fac953ae5c2cde5bbae25935f0cb8d8b12ed8272",class:"spw-ds-container spw-tw-flex spw-tw-items-center spw-tw-justify-between"},i("div",{key:"f4c37ea68a814ba7348b24b0f429621ad0b8caaf",class:"spw-header-navigation__list"},i("div",{key:"2498432ef6645dcb688310e4498ecbe0b75c8aa3",class:"spw-header-navigation__list-back"},i("a",{key:"770ff2e852900f662b09ff095173f96c2803c3d4",href:"#",onClick:e=>this.redirectToHome(e)},i("spw-icon",{key:"b1eda2204772067b8a8084bd4c2b3617e6912287",icon:"fa-chevron-left"})," ",i("span",{key:"c0a05bde1b81645addde13496fa49c71944fef3d"},this.homepageLabel))),i("slot",{key:"ce4bb4c4afd10d1835c3655ec080146d138babfd"})),this.extraButton&&i("div",{key:"39f6796ce53a36d012bb0d93907359aaa2026780",class:"spw-header-navigation__extra-button spw-header-navigation__extra-button--desktop"},i("spw-button",{key:"e19fa4ee5d998c292b91c695673b61fca0b93de0",variant:this.extraButtonVariant,icon:this.extraButtonIcon,href:this.extraButtonHref,target:this.extraButtonTarget,size:"small"},this.extraButtonText)))),this.extraButton&&i("div",{key:"28d532d75dd97ecf9baa839ef82b45a10552a57c",class:"spw-header-navigation__extra-button-parent spw-header-navigation__extra-button--mobile"},i("div",{key:"2e2f457c7fd5bccb33e5230fc9c7bb3fb5de9e9c",class:"spw-ds-container"},i("div",{key:"debb676659f4bf665fd54b97ba939cff3cd4bd91",class:"spw-header-navigation__extra-button spw-header-navigation__extra-button--mobile"},i("spw-button",{key:"bbf06e4972a91addb151a33c03f13191149b725a","is-full-width":"true",variant:this.extraButtonVariant,icon:this.extraButtonIcon,href:this.extraButtonHref,target:this.extraButtonTarget,size:"small"},this.extraButtonText)))))}get el(){return this}static get style(){return'html{line-height:1.3;-webkit-text-size-adjust:100%;}h1,h2,h3,h4,h5,h6,p,ul,li{padding:0;margin:0}ul{list-style:none}:host{box-sizing:border-box;line-height:1.3;-webkit-text-size-adjust:100%;font-size:100%}:host *,:host *::before,:host *::after{box-sizing:inherit;font-family:var(--spw-ds-font-main)}body{margin:0}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible;}pre{font-family:monospace, monospace;font-size:1em;}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted;}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em;}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0;}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px;}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--spw-ds-container-xl:1232px;--spw-ds-container-lg:1024px;--spw-ds-container-md:768px;--spw-ds-container-sm:640px}.spw-ds-container{width:100%;padding-left:16px;padding-right:16px;margin-left:auto;margin-right:auto}@media (min-width: 460px){.spw-ds-container{max-width:var(--spw-ds-container-sm)}}@media (min-width: 768px){.spw-ds-container{max-width:var(--spw-ds-container-md)}}@media (min-width: 1024px){.spw-ds-container{max-width:var(--spw-ds-container-lg)}}@media (min-width: 1350px){.spw-ds-container{max-width:var(--spw-ds-container-xl)}}:host{display:contents}.spw-header-navigation{display:none;left:0;width:100%;height:calc(100% - 80px);background:white;z-index:9999;overflow-y:auto;order:2;border-top:1px solid var(--spw-colors-support-grey-grey-300)}:host(.spw-ds-nav-open) .spw-header-navigation{display:flex;flex-direction:column}@media (min-width: 1024px){.spw-header-navigation{order:initial;display:block;height:auto;width:auto;overflow-y:initial;top:auto;left:auto;z-index:30}}@media (min-width: 1024px){:host(.spw-ds-search-open) .spw-header-navigation{display:none}}.spw-header-navigation__extra-button-parent{padding:16px;order:2;border-top:1px solid var(--spw-colors-support-grey-grey-300)}@media (min-width: 1024px){.spw-header-navigation__extra-button{padding-left:32px}}.spw-header-navigation__extra-button--desktop{display:none}@media (min-width: 1024px){.spw-header-navigation__extra-button--desktop{display:block}}.spw-header-navigation__extra-button--mobile{display:none}@media (max-width: 1023px){:host(.spw-ds-nav-open) .spw-header-navigation__extra-button--mobile{display:block}}.spw-header-navigation .spw-ds-container{position:relative}.spw-header-navigation__list{position:static;display:flex;flex:1;align-items:center;flex-direction:column;width:calc(100% + 32px);margin-left:-16px;margin-right:-16px}@media (min-width: 1024px){.spw-header-navigation__list{flex-direction:row}.spw-header-navigation--flex-start .spw-header-navigation__list{justify-content:flex-start}.spw-header-navigation--space-between .spw-header-navigation__list{justify-content:space-between}}@media (min-width: 1350px){.spw-header-navigation__list{gap:24px}}.spw-header-navigation__list-back{display:flex;justify-content:left;width:100%;padding:24px 16px;padding-bottom:0;position:relative;z-index:3}.spw-header-navigation__list-back:after{content:"";position:absolute;bottom:-1px;width:100%;left:0;height:1px;background:white}.spw-header-navigation__list-back a{gap:8px;display:flex;justify-content:left;align-items:center;font-weight:700;font-size:14px;text-decoration:none;color:var(--spw-colors-support-grey-grey-900)}.spw-header-navigation__list-back a span{text-decoration:underline}.spw-header-navigation__list-back a spw-icon{font-size:18px}@media (min-width: 1024px){.spw-header-navigation__list-back{display:none}}.spw-tw-flex{display:flex}.spw-tw-items-center{align-items:center}.spw-tw-justify-between{justify-content:space-between}'}},[257,"spw-header-navigation",{alignment:[1],extraButton:[4,"extra-button"],extraButtonHref:[1,"extra-button-href"],extraButtonTarget:[1,"extra-button-target"],extraButtonText:[1,"extra-button-text"],extraButtonVariant:[1,"extra-button-variant"],extraButtonIcon:[1,"extra-button-icon"],homepageLabel:[1,"homepage-label"],level:[32],element:[32]},[[2,"spwHeaderNavigationNavigate","handleNavigation"]]]),p=d,l=function(){"undefined"!=typeof customElements&&["spw-header-navigation","spw-button","spw-icon","spw-loading"].forEach((e=>{switch(e){case"spw-header-navigation":customElements.get(n(e))||customElements.define(n(e),d);break;case"spw-button":customElements.get(n(e))||s();break;case"spw-icon":customElements.get(n(e))||o();break;case"spw-loading":customElements.get(n(e))||r()}}))};export{p as SpwHeaderNavigation,l as defineCustomElement}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as t,H as e,c as i,h as s,a as n,t as o}from"./index.js";const a=t(class extends e{constructor(t){super(),!1!==t&&this.__registerHost(),this.__attachShadow(),this.stepClick=i(this,"stepClick",7),this.currentStep=1,this.variant="horizontal"}componentWillLoad(){this.updateStepsState()}slotChanged(){this.updateStepsState()}async setStep(t){this.currentStep=t,this.updateStepsState(),this.scrollToWizard()}handleStepClick(t){const e=t.detail;e<this.currentStep&&(this.currentStep=e,this.updateStepsState(),this.stepClick.emit(e),this.scrollToWizard())}scrollToWizard(){var t;const e=null===(t=this.el.shadowRoot)||void 0===t?void 0:t.host,i=(null==e?void 0:e.parentElement)||this.el;i&&i.scrollIntoView({behavior:"smooth",block:"start"})}updateStepsState(){requestAnimationFrame((()=>{const t=this.el.querySelectorAll("spw-wizard-item");t.forEach(((e,i)=>{const s=i+1;s>this.currentStep&&e.hasAttribute("status")&&e.removeAttribute("status"),e.hasAttribute("status")||e.setAttribute("state",s<this.currentStep?"completed":s===this.currentStep?"active":"inactive"),e.setAttribute("variant",this.variant),e.setAttribute("step-number",""+s),e.setAttribute("is-last",""+(i===t.length-1)),e.setAttribute("is-clickable",""+(s<this.currentStep)),e.setAttribute("is-current",""+(s===this.currentStep)),e.setAttribute("is-before-current",""+(s<this.currentStep)),e.setAttribute("is-after-current",""+(s>this.currentStep))}))}))}get elementClass(){return{"spw-wizard":!0,["spw-wizard--"+this.variant]:!0}}render(){return s(n,{key:"
|
|
1
|
+
import{p as t,H as e,c as i,h as s,a as n,t as o}from"./index.js";const a=t(class extends e{constructor(t){super(),!1!==t&&this.__registerHost(),this.__attachShadow(),this.stepClick=i(this,"stepClick",7),this.currentStep=1,this.variant="horizontal",this.canClickNextSteps=!1}componentWillLoad(){this.updateStepsState()}slotChanged(){this.updateStepsState()}async setStep(t){this.currentStep=t,this.updateStepsState(),this.scrollToWizard()}handleStepClick(t){const e=t.detail;(e<this.currentStep||this.canClickNextSteps&&e>this.currentStep)&&(this.currentStep=e,this.updateStepsState(),this.stepClick.emit(e),this.scrollToWizard())}scrollToWizard(){var t;const e=null===(t=this.el.shadowRoot)||void 0===t?void 0:t.host,i=(null==e?void 0:e.parentElement)||this.el;i&&i.scrollIntoView({behavior:"smooth",block:"start"})}updateStepsState(){requestAnimationFrame((()=>{const t=this.el.querySelectorAll("spw-wizard-item");t.forEach(((e,i)=>{const s=i+1;s>this.currentStep&&e.hasAttribute("status")&&e.removeAttribute("status"),e.hasAttribute("status")||e.setAttribute("state",s<this.currentStep?"completed":s===this.currentStep?"active":"inactive"),e.setAttribute("variant",this.variant),e.setAttribute("step-number",""+s),e.setAttribute("is-last",""+(i===t.length-1)),e.setAttribute("is-clickable",""+(s!==this.currentStep&&(s<this.currentStep||this.canClickNextSteps))),e.setAttribute("is-current",""+(s===this.currentStep)),e.setAttribute("is-before-current",""+(s<this.currentStep)),e.setAttribute("is-after-current",""+(s>this.currentStep))}))}))}get elementClass(){return{"spw-wizard":!0,["spw-wizard--"+this.variant]:!0}}render(){return s(n,{key:"a5eba43b0339adced1c10ba67a6fee404ab23ba7"},s("div",{key:"f0df2e2aece93f90e94d00fa9830c111783f3b55",class:this.elementClass},s("slot",{key:"73a3daa9ba48010f31d71e200c5c2b4f1ef95cac"})))}get el(){return this}static get style(){return"html{line-height:1.3;-webkit-text-size-adjust:100%;}h1,h2,h3,h4,h5,h6,p,ul,li{padding:0;margin:0}ul{list-style:none}:host{box-sizing:border-box;line-height:1.3;-webkit-text-size-adjust:100%;font-size:100%}:host *,:host *::before,:host *::after{box-sizing:inherit;font-family:var(--spw-ds-font-main)}body{margin:0}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible;}pre{font-family:monospace, monospace;font-size:1em;}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted;}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em;}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0;}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px;}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--spw-ds-container-xl:1232px;--spw-ds-container-lg:1024px;--spw-ds-container-md:768px;--spw-ds-container-sm:640px}.spw-ds-container{width:100%;padding-left:16px;padding-right:16px;margin-left:auto;margin-right:auto}@media (min-width: 460px){.spw-ds-container{max-width:var(--spw-ds-container-sm)}}@media (min-width: 768px){.spw-ds-container{max-width:var(--spw-ds-container-md)}}@media (min-width: 1024px){.spw-ds-container{max-width:var(--spw-ds-container-lg)}}@media (min-width: 1350px){.spw-ds-container{max-width:var(--spw-ds-container-xl)}}:host{display:block}.spw-wizard{display:flex;gap:0}.spw-wizard--horizontal{flex-direction:row}.spw-wizard--vertical{flex-direction:column;align-items:flex-start}"}},[257,"spw-wizard",{currentStep:[1026,"current-step"],variant:[1],canClickNextSteps:[4,"can-click-next-steps"],setStep:[64]},[[0,"slotchange","slotChanged"],[0,"wizardItemClick","handleStepClick"]]]),r=a,d=function(){"undefined"!=typeof customElements&&["spw-wizard"].forEach((t=>{"spw-wizard"===t&&(customElements.get(o(t))||customElements.define(o(t),a))}))};export{r as SpwWizard,d as defineCustomElement}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2026-05-
|
|
2
|
+
"timestamp": "2026-05-19T08:03:38",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.42.0",
|
|
@@ -9806,6 +9806,35 @@
|
|
|
9806
9806
|
"required": false,
|
|
9807
9807
|
"getter": false,
|
|
9808
9808
|
"setter": false
|
|
9809
|
+
},
|
|
9810
|
+
{
|
|
9811
|
+
"name": "homepageLabel",
|
|
9812
|
+
"type": "string",
|
|
9813
|
+
"complexType": {
|
|
9814
|
+
"original": "string",
|
|
9815
|
+
"resolved": "string",
|
|
9816
|
+
"references": {}
|
|
9817
|
+
},
|
|
9818
|
+
"mutable": false,
|
|
9819
|
+
"attr": "homepage-label",
|
|
9820
|
+
"reflectToAttr": false,
|
|
9821
|
+
"docs": "Texte du lien \"Page d'accueil\" dans la navigation mobile",
|
|
9822
|
+
"docsTags": [
|
|
9823
|
+
{
|
|
9824
|
+
"name": "default",
|
|
9825
|
+
"text": "\"Page d'accueil\""
|
|
9826
|
+
}
|
|
9827
|
+
],
|
|
9828
|
+
"default": "\"Page d'accueil\"",
|
|
9829
|
+
"values": [
|
|
9830
|
+
{
|
|
9831
|
+
"type": "string"
|
|
9832
|
+
}
|
|
9833
|
+
],
|
|
9834
|
+
"optional": true,
|
|
9835
|
+
"required": false,
|
|
9836
|
+
"getter": false,
|
|
9837
|
+
"setter": false
|
|
9809
9838
|
}
|
|
9810
9839
|
],
|
|
9811
9840
|
"methods": [],
|
|
@@ -25427,6 +25456,35 @@
|
|
|
25427
25456
|
"docsTags": [],
|
|
25428
25457
|
"usage": {},
|
|
25429
25458
|
"props": [
|
|
25459
|
+
{
|
|
25460
|
+
"name": "canClickNextSteps",
|
|
25461
|
+
"type": "boolean",
|
|
25462
|
+
"complexType": {
|
|
25463
|
+
"original": "boolean",
|
|
25464
|
+
"resolved": "boolean",
|
|
25465
|
+
"references": {}
|
|
25466
|
+
},
|
|
25467
|
+
"mutable": false,
|
|
25468
|
+
"attr": "can-click-next-steps",
|
|
25469
|
+
"reflectToAttr": false,
|
|
25470
|
+
"docs": "Si `true`, les étapes suivantes sont également cliquables",
|
|
25471
|
+
"docsTags": [
|
|
25472
|
+
{
|
|
25473
|
+
"name": "default",
|
|
25474
|
+
"text": "false"
|
|
25475
|
+
}
|
|
25476
|
+
],
|
|
25477
|
+
"default": "false",
|
|
25478
|
+
"values": [
|
|
25479
|
+
{
|
|
25480
|
+
"type": "boolean"
|
|
25481
|
+
}
|
|
25482
|
+
],
|
|
25483
|
+
"optional": true,
|
|
25484
|
+
"required": false,
|
|
25485
|
+
"getter": false,
|
|
25486
|
+
"setter": false
|
|
25487
|
+
},
|
|
25430
25488
|
{
|
|
25431
25489
|
"name": "currentStep",
|
|
25432
25490
|
"type": "number",
|
|
@@ -1931,6 +1931,10 @@
|
|
|
1931
1931
|
"name": "secondary"
|
|
1932
1932
|
}
|
|
1933
1933
|
]
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"name": "homepage-label",
|
|
1937
|
+
"description": "Texte du lien \"Page d'accueil\" dans la navigation mobile"
|
|
1934
1938
|
}
|
|
1935
1939
|
]
|
|
1936
1940
|
},
|
|
@@ -4982,6 +4986,10 @@
|
|
|
4982
4986
|
"value": ""
|
|
4983
4987
|
},
|
|
4984
4988
|
"attributes": [
|
|
4989
|
+
{
|
|
4990
|
+
"name": "can-click-next-steps",
|
|
4991
|
+
"description": "Si `true`, les étapes suivantes sont également cliquables"
|
|
4992
|
+
},
|
|
4985
4993
|
{
|
|
4986
4994
|
"name": "current-step",
|
|
4987
4995
|
"description": "Étape actuellement active (index basé sur 1)"
|
package/dist/esm/loader.js
CHANGED
|
@@ -4,7 +4,7 @@ export { s as setNonce } from './index-BvJ4Kko5.js';
|
|
|
4
4
|
const defineCustomElements = async (win, options) => {
|
|
5
5
|
if (typeof window === 'undefined') return undefined;
|
|
6
6
|
await globalScripts();
|
|
7
|
-
return bootstrapLazy(JSON.parse("[[\"spw-cookies\",[[1,\"spw-cookies\",{\"cookiesTitle\":[1,\"cookies-title\"],\"cookiesDescription\":[1,\"cookies-description\"],\"acceptAllButtonText\":[1,\"accept-all-button-text\"],\"acceptRequiredButtonText\":[1,\"accept-required-button-text\"],\"isVisible\":[32],\"analyticsEnabled\":[32]}]]],[\"spw-search-field\",[[1,\"spw-search-field\",{\"value\":[1537],\"items\":[1],\"placeholder\":[1],\"size\":[1],\"label\":[1],\"disabled\":[4],\"isRounded\":[4,\"is-rounded\"],\"name\":[1],\"required\":[4],\"assistiveText\":[1,\"assistive-text\"],\"viewAllResults\":[1,\"view-all-results\"],\"viewAllResultsLink\":[1,\"view-all-results-link\"],\"viewAllResultsSubmit\":[4,\"view-all-results-submit\"],\"noResults\":[1,\"no-results\"],\"loadingText\":[1,\"loading-text\"],\"hasSubmitButton\":[4,\"has-submit-button\"],\"minCharacters\":[2,\"min-characters\"],\"isLoading\":[4,\"is-loading\"],\"showDropdown\":[4,\"show-dropdown\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"filteredItems\":[32],\"parsedItems\":[32],\"searchText\":[32],\"isOpen\":[32],\"focusedItemIndex\":[32],\"dropdownDirection\":[32],\"resetInput\":[64],\"setValue\":[64],\"getValue\":[64]},null,{\"value\":[{\"handleValueChange\":0}],\"items\":[{\"parseItems\":0}]}]]],[\"spw-custom-select\",[[321,\"spw-custom-select\",{\"value\":[1544],\"label\":[1],\"placeholder\":[1],\"searchPlaceholder\":[1,\"search-placeholder\"],\"noResultsText\":[1,\"no-results-text\"],\"disabled\":[4],\"name\":[1],\"required\":[4],\"items\":[16],\"size\":[1],\"multiple\":[4],\"isSearch\":[4,\"is-search\"],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"fixedDropdown\":[4,\"fixed-dropdown\"],\"fixedDropdownParent\":[1,\"fixed-dropdown-parent\"],\"isClear\":[4,\"is-clear\"],\"direction\":[1],\"allowCreate\":[4,\"allow-create\"],\"internalValue\":[32],\"isOpen\":[32],\"parsedOptions\":[32],\"focusedOptionIndex\":[32],\"searchText\":[32],\"hasSlottedFooter\":[32],\"dropdownDirection\":[32],\"hasSelectedValue\":[32],\"dropdownPosition\":[32],\"setFocus\":[64],\"resetSelect\":[64],\"setValue\":[64],\"getValue\":[64]},null,{\"items\":[{\"parseOptions\":0}],\"value\":[{\"valueChangedHandler\":0}],\"internalValue\":[{\"internalValueChanged\":0}]}]]],[\"spw-lightbox\",[[257,\"spw-lightbox\",{\"gallery\":[513],\"closeButtonText\":[1,\"close-button-text\"],\"closeOnBackdropClick\":[4,\"close-on-backdrop-click\"],\"showThumbnails\":[4,\"show-thumbnails\"],\"textDialogLabel\":[1,\"text-dialog-label\"],\"textPrevious\":[1,\"text-previous\"],\"textNext\":[1,\"text-next\"],\"textThumbnailsLabel\":[1,\"text-thumbnails-label\"],\"textThumbnailItem\":[1,\"text-thumbnail-item\"],\"opened\":[32],\"activeIndex\":[32],\"items\":[32],\"open\":[64],\"close\":[64]},[[0,\"keydown\",\"handleFocusTrap\"]],{\"opened\":[{\"onOpenedChange\":0}],\"activeIndex\":[{\"onActiveIndexChange\":0}]}]]],[\"spw-pagination\",[[1,\"spw-pagination\",{\"totalItems\":[2,\"total-items\"],\"itemsPerPage\":[2,\"items-per-page\"],\"isDisabled\":[4,\"is-disabled\"],\"variant\":[1],\"currentPage\":[1026,\"current-page\"],\"nextButtonText\":[1,\"next-button-text\"],\"previousButtonText\":[1,\"previous-button-text\"],\"isDynamic\":[4,\"is-dynamic\"],\"inputPageValue\":[32],\"isMobile\":[32],\"setPage\":[64]},null,{\"totalItems\":[{\"calculateTotalPages\":0},{\"onTotalItemsChange\":0}],\"itemsPerPage\":[{\"calculateTotalPages\":0},{\"onItemsPerPageChange\":0}],\"currentPage\":[{\"calculateTotalPages\":0},{\"onCurrentPageChange\":0}]}]]],[\"spw-date-picker\",[[65,\"spw-date-picker\",{\"value\":[1537],\"placeholder\":[1],\"label\":[1],\"name\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"required\":[4],\"disabled\":[4],\"dateFormat\":[1,\"date-format\"],\"minDate\":[1,\"min-date\"],\"maxDate\":[1,\"max-date\"],\"disabledDays\":[1,\"disabled-days\"],\"disabledDates\":[1,\"disabled-dates\"],\"position\":[1],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"assistiveText\":[1,\"assistive-text\"],\"isClear\":[4,\"is-clear\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"range\":[4],\"rangeId\":[1,\"range-id\"],\"isStart\":[4,\"is-start\"],\"fixedCalendar\":[4,\"fixed-calendar\"],\"fixedCalendarParent\":[1,\"fixed-calendar-parent\"],\"isOpen\":[32],\"hasError\":[32],\"internalError\":[32],\"internalValue\":[32],\"isClearIconVisible\":[32],\"open\":[64],\"close\":[64],\"setDate\":[64],\"getDate\":[64],\"getRange\":[64],\"updateConstraints\":[64],\"resetInput\":[64],\"resetConstraints\":[64]},null,{\"value\":[{\"watchValue\":0}],\"disabled\":[{\"watchDisabled\":0}],\"minDate\":[{\"watchMinDate\":0}],\"maxDate\":[{\"watchMaxDate\":0}]}]]],[\"spw-input-slider\",[[65,\"spw-input-slider\",{\"min\":[2],\"max\":[2],\"step\":[2],\"value\":[1026],\"range\":[4],\"disabled\":[4],\"name\":[1],\"orientation\":[1],\"hasTooltip\":[4,\"has-tooltip\"],\"label\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"required\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"internalValue\":[32],\"isDragging\":[32],\"activeHandle\":[32],\"setValue\":[64],\"getValue\":[64]},null,{\"value\":[{\"handleValueChange\":0}]}]]],[\"spw-select\",[[321,\"spw-select\",{\"value\":[1544],\"label\":[1],\"placeholder\":[1],\"disabled\":[4],\"name\":[1],\"required\":[4],\"size\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"items\":[16],\"itemLabel\":[1,\"item-label\"],\"itemValue\":[1,\"item-value\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"isClear\":[4,\"is-clear\"],\"internalValue\":[32],\"resetSelect\":[64],\"setValue\":[64],\"getValue\":[64]},null,{\"items\":[{\"handleItemsChange\":0}],\"value\":[{\"handleValueChange\":0}]}]]],[\"spw-textarea\",[[65,\"spw-textarea\",{\"value\":[1537],\"label\":[1],\"placeholder\":[1],\"disabled\":[4],\"name\":[1],\"rows\":[2],\"minLength\":[2,\"min-length\"],\"maxLength\":[2,\"max-length\"],\"isSearch\":[4,\"is-search\"],\"required\":[4],\"size\":[1],\"indicator\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"internalValue\":[32],\"setFocus\":[64]},null,{\"value\":[{\"valueChangedHandler\":0}]}]]],[\"spw-file-upload\",[[65,\"spw-file-upload\",{\"disabled\":[4],\"error\":[4],\"name\":[1],\"value\":[16],\"enableDropZone\":[4,\"enable-drop-zone\"],\"multiple\":[4],\"accept\":[1],\"refuse\":[1],\"maxFileSize\":[2,\"max-file-size\"],\"maxFileSizeUnit\":[1,\"max-file-size-unit\"],\"maxFiles\":[2,\"max-files\"],\"textChooseFile\":[1,\"text-choose-file\"],\"textChooseFiles\":[1,\"text-choose-files\"],\"textDropFile\":[1,\"text-drop-file\"],\"textDropFiles\":[1,\"text-drop-files\"],\"textChooseFromComputer\":[1,\"text-choose-from-computer\"],\"textDelete\":[1,\"text-delete\"],\"textMaxFileSize\":[1,\"text-max-file-size\"],\"textMaxFiles\":[1,\"text-max-files\"],\"textAcceptedFormats\":[1,\"text-accepted-formats\"],\"textRefusedFormats\":[1,\"text-refused-formats\"],\"textAllFormats\":[1,\"text-all-formats\"],\"textErrorFormat\":[1,\"text-error-format\"],\"textErrorSize\":[1,\"text-error-size\"],\"textErrorFormatAndSize\":[1,\"text-error-format-and-size\"],\"textLimitReached\":[1,\"text-limit-reached\"],\"textLimitExceeded\":[1,\"text-limit-exceeded\"],\"selectedFiles\":[32],\"fileTypeErrors\":[32],\"fileLimitErrors\":[32],\"isDragging\":[32],\"isMaxFilesReachedExact\":[32],\"resetInput\":[64]},null,{\"value\":[{\"watchValueHandler\":0}]}]]],[\"spw-header\",[[257,\"spw-header\",{\"siteTitle\":[1,\"site-title\"],\"borderColor\":[1,\"border-color\"],\"hasWallonieLogo\":[4,\"has-wallonie-logo\"],\"hasMaWallonie\":[4,\"has-ma-wallonie\"],\"maWallonieLabel\":[1,\"ma-wallonie-label\"],\"maWallonieLink\":[1,\"ma-wallonie-link\"],\"hasWallonieBe\":[4,\"has-wallonie-be\"],\"wallonieBeLabel\":[1,\"wallonie-be-label\"],\"wallonieBeLink\":[1,\"wallonie-be-link\"],\"hasSearch\":[4,\"has-search\"],\"searchType\":[1,\"search-type\"],\"searchDirectHref\":[1,\"search-direct-href\"],\"searchDirectTarget\":[1,\"search-direct-target\"],\"searchCloseLabel\":[1,\"search-close-label\"],\"searchOpenLabel\":[1,\"search-open-label\"],\"menuCloseLabel\":[1,\"menu-close-label\"],\"menuOpenLabel\":[1,\"menu-open-label\"],\"hasHamburger\":[4,\"has-hamburger\"],\"homepageLink\":[1,\"homepage-link\"],\"emitLogoClick\":[4,\"emit-logo-click\"],\"isMenuOpen\":[32],\"isSearchOpen\":[32],\"closeMenu\":[64]}]]],[\"spw-header-lang\",[[1,\"spw-header-lang\",{\"accAriaLabel\":[1,\"acc-aria-label\"],\"activeLang\":[32],\"options\":[32]}]]],[\"spw-header-navigation\",[[257,\"spw-header-navigation\",{\"alignment\":[1],\"extraButton\":[4,\"extra-button\"],\"extraButtonHref\":[1,\"extra-button-href\"],\"extraButtonTarget\":[1,\"extra-button-target\"],\"extraButtonText\":[1,\"extra-button-text\"],\"extraButtonVariant\":[1,\"extra-button-variant\"],\"extraButtonIcon\":[1,\"extra-button-icon\"],\"level\":[32],\"element\":[32]},[[2,\"spwHeaderNavigationNavigate\",\"handleNavigation\"]]]]],[\"spw-scrolltop\",[[1,\"spw-scrolltop\",{\"threshold\":[2],\"hideOnMobile\":[4,\"hide-on-mobile\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"useWindow\":[4,\"use-window\"],\"isVisible\":[32]}]]],[\"spw-table-sidebar\",[[257,\"spw-table-sidebar\",{\"defaultExpanded\":[4,\"default-expanded\"],\"sidebarTitle\":[1,\"sidebar-title\"],\"sidebarIcon\":[1,\"sidebar-icon\"],\"sidebarWidth\":[2,\"sidebar-width\"],\"hasReset\":[4,\"has-reset\"],\"resetIcon\":[1,\"reset-icon\"],\"observedHeight\":[32],\"expanded\":[32]}]]],[\"spw-tabs-navigation-item\",[[257,\"spw-tabs-navigation-item\",{\"tabId\":[1,\"tab-id\"],\"active\":[4],\"disabled\":[4],\"bubble\":[4],\"hasEllipsis\":[4,\"has-ellipsis\"],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"tagText\":[1,\"tag-text\"],\"tagVariant\":[1,\"tag-variant\"],\"tagIcon\":[4,\"tag-icon\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"slotText\":[32]},[[0,\"slotchange\",\"handleSlotChange\"]]]]],[\"spw-breadcrumb-item\",[[257,\"spw-breadcrumb-item\",{\"href\":[1],\"surface\":[32]},null,{\"surface\":[{\"surfaceChanged\":0}]}]]],[\"spw-header-navigation-dropdown\",[[257,\"spw-header-navigation-dropdown\",{\"viewMoreText\":[1,\"view-more-text\"],\"shouldShowViewMore\":[32],\"parentHref\":[32],\"parentTarget\":[32],\"dropdownLevel\":[32],\"isMegamenu\":[32]}]]],[\"spw-hero\",[[257,\"spw-hero\",{\"imageSrc\":[1,\"image-src\"],\"imageAlt\":[1,\"image-alt\"],\"surface\":[1],\"hasPictureFull\":[4,\"has-picture-full\"],\"hasRadius\":[4,\"has-radius\"],\"hasShadow\":[4,\"has-shadow\"],\"hasVideo\":[4,\"has-video\"],\"modalVideoId\":[1,\"modal-video-id\"],\"variant\":[1],\"alignment\":[1],\"overlayOpacity\":[2,\"overlay-opacity\"],\"overlayColor\":[1,\"overlay-color\"],\"accPlayButtonAriaLabel\":[1,\"acc-play-button-aria-label\"],\"copyrightText\":[1,\"copyright-text\"],\"copyrightIcon\":[1,\"copyright-icon\"],\"copyrightIconVariant\":[1,\"copyright-icon-variant\"],\"copyrightHref\":[1,\"copyright-href\"],\"copyrightTarget\":[1,\"copyright-target\"],\"imagePosition\":[1,\"image-position\"],\"featuredRatio\":[1,\"featured-ratio\"],\"featuredRatioMobile\":[1,\"featured-ratio-mobile\"],\"featuredRatioTablet\":[1,\"featured-ratio-tablet\"],\"featuredRatioDesktop\":[1,\"featured-ratio-desktop\"]}]]],[\"spw-message\",[[257,\"spw-message\",{\"variant\":[1],\"messageId\":[1,\"message-id\"],\"isDismissable\":[4,\"is-dismissable\"],\"dismissableText\":[1,\"dismissable-text\"],\"messageTitle\":[1,\"message-title\"],\"icon\":[1],\"size\":[1],\"isVisible\":[32],\"hasSlotContent\":[32],\"showMessage\":[64],\"hideMessage\":[64]}]]],[\"spw-modal\",[[257,\"spw-modal\",{\"opened\":[1540],\"caption\":[1],\"closeButtonText\":[1,\"close-button-text\"],\"closeOnOverlayClick\":[4,\"close-on-overlay-click\"],\"stickyButtons\":[4,\"sticky-buttons\"],\"size\":[1],\"alertIcon\":[1,\"alert-icon\"],\"showCloseButton\":[4,\"show-close-button\"],\"showModal\":[32],\"slotButtonsPresent\":[32],\"isCloseButtonSticky\":[32],\"closeModal\":[64],\"openModal\":[64]},null,{\"opened\":[{\"openedChanged\":0}]}]]],[\"spw-sidebar-navigation-item\",[[260,\"spw-sidebar-navigation-item\",{\"href\":[1],\"icon\":[1],\"active\":[4],\"disabled\":[4],\"bubble\":[1],\"tooltipTitle\":[1,\"tooltip-title\"],\"iconVariant\":[1,\"icon-variant\"],\"openOnClick\":[4,\"open-on-click\"],\"hasDropdown\":[32],\"dropdownOpen\":[32],\"navExpanded\":[32],\"hasActiveChild\":[32]}]]],[\"spw-slider\",[[257,\"spw-slider\",{\"showArrows\":[4,\"show-arrows\"],\"showDots\":[4,\"show-dots\"],\"showAutoplayToggle\":[4,\"show-autoplay-toggle\"],\"autoplayInterval\":[2,\"autoplay-interval\"],\"autoplayEnabled\":[4,\"autoplay-enabled\"],\"autoplayText\":[1,\"autoplay-text\"],\"arrowsPosition\":[1,\"arrows-position\"],\"dotsPosition\":[1,\"dots-position\"],\"nextSlideText\":[1,\"next-slide-text\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"previousSlideText\":[1,\"previous-slide-text\"],\"hasFixedHeight\":[4,\"has-fixed-height\"],\"activeIndex\":[32],\"totalSlides\":[32],\"currentHeight\":[32],\"isAutoplayActive\":[32]},[[1,\"touchstart\",\"handleTouchStart\"],[0,\"mousedown\",\"handleMouseDown\"],[0,\"touchmove\",\"handleTouchMove\"],[1,\"mousemove\",\"handleMouseMove\"],[1,\"touchend\",\"handleTouchEnd\"],[1,\"mouseup\",\"handleMouseUp\"],[1,\"mouseleave\",\"handleMouseLeave\"],[0,\"keydown\",\"handleKeyDown\"]]]]],[\"spw-table-header\",[[257,\"spw-table-header\",{\"colspan\":[2],\"headers\":[1],\"rowspan\":[2],\"isHighlighted\":[4,\"is-highlighted\"],\"textAlign\":[1,\"text-align\"],\"verticalAlign\":[1,\"vertical-align\"],\"padding\":[1],\"columnId\":[1,\"column-id\"],\"sortable\":[4],\"sortDirection\":[1,\"sort-direction\"],\"isSorted\":[4,\"is-sorted\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"sticky\":[4],\"stickyPosition\":[1,\"sticky-position\"],\"stickyOffset\":[2,\"sticky-offset\"]}]]],[\"spw-toast-controller\",[[1,\"spw-toast-controller\",{\"position\":[1],\"create\":[64],\"dismissAll\":[64]}]]],[\"spw-box\",[[257,\"spw-box\",{\"hasRadius\":[4,\"has-radius\"],\"hasShadow\":[4,\"has-shadow\"],\"isSticky\":[4,\"is-sticky\"],\"stickyTop\":[1,\"sticky-top\"],\"padding\":[1],\"isCollapsible\":[4,\"is-collapsible\"],\"collapsibleBreakpoint\":[1,\"collapsible-breakpoint\"],\"isOpen\":[32]}]]],[\"spw-card-image\",[[257,\"spw-card-image\",{\"label\":[1],\"ratio\":[1],\"ratioMobile\":[1,\"ratio-mobile\"],\"ratioTablet\":[1,\"ratio-tablet\"],\"ratioDesktop\":[1,\"ratio-desktop\"],\"imagePosition\":[1,\"image-position\"],\"hoverIcon\":[1,\"hover-icon\"],\"imageFit\":[1,\"image-fit\"]}]]],[\"spw-dropdown-item\",[[260,\"spw-dropdown-item\",{\"href\":[1],\"disabled\":[4],\"icon\":[1],\"iconVariant\":[1,\"icon-variant\"],\"hasSubItems\":[32],\"subItemsOpen\":[32]}]]],[\"spw-footer-content-col\",[[257,\"spw-footer-content-col\",{\"colTitle\":[1,\"col-title\"],\"open\":[32]}]]],[\"spw-header-navigation-item\",[[257,\"spw-header-navigation-item\",{\"isActive\":[4,\"is-active\"],\"variant\":[1],\"internalIsActive\":[32],\"hasSubnav\":[32],\"level\":[32],\"isSubnavVisible\":[32],\"lastClickedLevel1Item\":[32],\"isMobile\":[32]}]]],[\"spw-header-persona\",[[1,\"spw-header-persona\",{\"personaLabel\":[1,\"persona-label\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"activePersona\":[32],\"options\":[32]}]]],[\"spw-lightbox-item\",[[257,\"spw-lightbox-item\",{\"src\":[1],\"alt\":[1],\"captionTitle\":[1,\"caption-title\"],\"captionText\":[1,\"caption-text\"],\"copyrightText\":[1,\"copyright-text\"],\"copyrightIcon\":[1,\"copyright-icon\"],\"copyrightIconVariant\":[1,\"copyright-icon-variant\"],\"copyrightHref\":[1,\"copyright-href\"],\"copyrightTarget\":[1,\"copyright-target\"],\"textOpenImage\":[1,\"text-open-image\"],\"isHover\":[4,\"is-hover\"],\"hoverIcon\":[1,\"hover-icon\"]}]]],[\"spw-list-item\",[[257,\"spw-list-item\",{\"variant\":[1],\"href\":[1],\"target\":[1],\"icon\":[1],\"lineClamp\":[1,\"line-clamp\"],\"category\":[1],\"categoryLink\":[1,\"category-link\"],\"categoryIcon\":[1,\"category-icon\"],\"surface\":[1]},[[0,\"slotchange\",\"slotChanged\"],[1,\"mouseenter\",\"onMouseEnter\"],[1,\"mouseleave\",\"onMouseLeave\"],[1,\"touchstart\",\"onTouchStart\"],[1,\"touchend\",\"onTouchEnd\"],[1,\"mousedown\",\"onMouseDown\"],[1,\"mouseup\",\"onMouseUp\"],[0,\"blur\",\"onBlur\"],[0,\"focus\",\"onFocus\"]]]]],[\"spw-list-title\",[[257,\"spw-list-title\",{\"icon\":[1],\"lineClamp\":[1,\"line-clamp\"]}]]],[\"spw-sidebar\",[[257,\"spw-sidebar\",{\"defaultExpanded\":[4,\"default-expanded\"],\"expanded\":[32],\"hasTopbar\":[32],\"open\":[64],\"close\":[64],\"toggle\":[64]}]]],[\"spw-sidebar-navigation-separator\",[[1,\"spw-sidebar-navigation-separator\"]]],[\"spw-tabs-navigation\",[[257,\"spw-tabs-navigation\",{\"accAriaLabel\":[1,\"acc-aria-label\"],\"isVerticalOnMobile\":[4,\"is-vertical-on-mobile\"],\"isCentered\":[4,\"is-centered\"],\"showLeftArrow\":[32],\"showRightArrow\":[32],\"hasOverflow\":[32]},[[9,\"resize\",\"onWindowResize\"]]]]],[\"spw-tile\",[[257,\"spw-tile\",{\"variant\":[1],\"height\":[1],\"href\":[1],\"target\":[1],\"imageSrc\":[1,\"image-src\"],\"imageAlt\":[1,\"image-alt\"],\"overlayOpacity\":[2,\"overlay-opacity\"]},[[0,\"slotchange\",\"slotChanged\"],[1,\"mouseenter\",\"onMouseEnter\"],[1,\"mouseleave\",\"onMouseLeave\"]]]]],[\"spw-timeline-item\",[[257,\"spw-timeline-item\",{\"label\":[1],\"description\":[1],\"state\":[1],\"isLast\":[1,\"is-last\"],\"variant\":[1],\"isDescriptionExpanded\":[32],\"showToggle\":[32]}]]],[\"spw-wizard-item\",[[1,\"spw-wizard-item\",{\"label\":[1],\"description\":[1],\"additionalInfo\":[1,\"additional-info\"],\"icon\":[1],\"state\":[1],\"status\":[1],\"isLast\":[1,\"is-last\"],\"stepNumber\":[2,\"step-number\"],\"variant\":[1],\"isClickable\":[1,\"is-clickable\"],\"isBeforeCurrent\":[1,\"is-before-current\"],\"isAfterCurrent\":[1,\"is-after-current\"],\"isCurrent\":[1,\"is-current\"]}]]],[\"spw-avatar\",[[1,\"spw-avatar\",{\"size\":[1],\"image\":[1],\"initials\":[1],\"bubble\":[1],\"clickable\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"]}]]],[\"spw-block-content\",[[257,\"spw-block-content\",{\"variant\":[1],\"imageSrc\":[1,\"image-src\"],\"imageAlt\":[1,\"image-alt\"],\"href\":[1],\"target\":[1],\"background\":[1],\"ratio\":[1],\"ratioMobile\":[1,\"ratio-mobile\"],\"ratioTablet\":[1,\"ratio-tablet\"],\"ratioDesktop\":[1,\"ratio-desktop\"]}]]],[\"spw-breadcrumb\",[[257,\"spw-breadcrumb\",{\"variant\":[1],\"surface\":[1],\"fontSize\":[1,\"font-size\"],\"accAriaLabel\":[1,\"acc-aria-label\"]}]]],[\"spw-card\",[[257,\"spw-card\",{\"variant\":[1],\"elementType\":[1,\"element-type\"],\"href\":[1],\"target\":[1],\"rel\":[1],\"dateStart\":[1,\"date-start\"],\"dateEnd\":[1,\"date-end\"],\"fullHeight\":[4,\"full-height\"],\"disabled\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"],\"hasImage\":[32]},[[0,\"slotchange\",\"slotChanged\"],[1,\"mouseenter\",\"onMouseEnter\"],[1,\"mouseleave\",\"onMouseLeave\"]]]]],[\"spw-card-content\",[[257,\"spw-card-content\",{\"tag\":[1],\"date\":[1],\"hasImage\":[32]}]]],[\"spw-card-excerpt\",[[257,\"spw-card-excerpt\",{\"lineClamp\":[8,\"line-clamp\"]}]]],[\"spw-card-subtag-item\",[[257,\"spw-card-subtag-item\",{\"link\":[1]}]]],[\"spw-card-subtags\",[[260,\"spw-card-subtags\",{\"variant\":[1]}]]],[\"spw-card-title\",[[257,\"spw-card-title\",{\"borderColor\":[1,\"border-color\"]}]]],[\"spw-dropdown\",[[257,\"spw-dropdown\",{\"direction\":[1],\"alignment\":[1],\"hasPadding\":[4,\"has-padding\"],\"contentWidth\":[2,\"content-width\"],\"maxHeight\":[1,\"max-height\"],\"open\":[1540],\"isVisible\":[32],\"close\":[64]},null,{\"open\":[{\"onOpenChange\":0}]}]]],[\"spw-dropdown-container\",[[257,\"spw-dropdown-container\"]]],[\"spw-footer\",[[257,\"spw-footer\",{\"colsMobile\":[2,\"cols-mobile\"],\"colsTablet\":[2,\"cols-tablet\"],\"colsDesktop\":[2,\"cols-desktop\"]},null,{\"colsMobile\":[{\"configurationChanged\":0}],\"colsTablet\":[{\"configurationChanged\":0}],\"colsDesktop\":[{\"configurationChanged\":0}]}]]],[\"spw-footer-bottom\",[[257,\"spw-footer-bottom\",{\"siteTitle\":[1,\"site-title\"],\"hasWallonieLogo\":[4,\"has-wallonie-logo\"]}]]],[\"spw-footer-content\",[[257,\"spw-footer-content\"]]],[\"spw-footer-link\",[[257,\"spw-footer-link\",{\"href\":[1],\"target\":[1],\"linkTitle\":[1,\"link-title\"]}]]],[\"spw-grid\",[[257,\"spw-grid\",{\"colsMobile\":[2,\"cols-mobile\"],\"colsTablet\":[2,\"cols-tablet\"],\"colsDesktop\":[2,\"cols-desktop\"],\"gap\":[1]},null,{\"colsMobile\":[{\"configurationChanged\":0}],\"colsTablet\":[{\"configurationChanged\":0}],\"colsDesktop\":[{\"configurationChanged\":0}]}]]],[\"spw-grid-item\",[[257,\"spw-grid-item\",{\"colSpanMobile\":[2,\"col-span-mobile\"],\"colSpanTablet\":[2,\"col-span-tablet\"],\"colSpanDesktop\":[2,\"col-span-desktop\"],\"rowSpanMobile\":[2,\"row-span-mobile\"],\"rowSpanTablet\":[2,\"row-span-tablet\"],\"rowSpanDesktop\":[2,\"row-span-desktop\"]}]]],[\"spw-header-persona-item\",[[257,\"spw-header-persona-item\",{\"active\":[516]}]]],[\"spw-illustration\",[[1,\"spw-illustration\",{\"variant\":[1],\"width\":[1],\"height\":[1],\"alt\":[1]}]]],[\"spw-list\",[[257,\"spw-list\",{\"gap\":[1],\"surface\":[1]},[[0,\"slotchange\",\"slotChanged\"]]]]],[\"spw-list-description\",[[257,\"spw-list-description\",{\"lineClamp\":[1,\"line-clamp\"]}]]],[\"spw-mosaic\",[[257,\"spw-mosaic\",{\"items\":[8],\"isMasonry\":[4,\"is-masonry\"],\"colsMobile\":[2,\"cols-mobile\"],\"colsTablet\":[2,\"cols-tablet\"],\"colsDesktop\":[2,\"cols-desktop\"],\"initialized\":[32],\"waitForImages\":[64],\"initializeMasonry\":[64]},null,{\"items\":[{\"itemsChanged\":0}],\"isMasonry\":[{\"isMasonryChanged\":0}],\"colsMobile\":[{\"configurationChanged\":0}],\"colsTablet\":[{\"configurationChanged\":0}],\"colsDesktop\":[{\"configurationChanged\":0}]}]]],[\"spw-mosaic-item\",[[257,\"spw-mosaic-item\",{\"colSpanMobile\":[2,\"col-span-mobile\"],\"colSpanTablet\":[2,\"col-span-tablet\"],\"colSpanDesktop\":[2,\"col-span-desktop\"]},null,{\"colSpanMobile\":[{\"colSpanChanged\":0}],\"colSpanTablet\":[{\"colSpanChanged\":0}],\"colSpanDesktop\":[{\"colSpanChanged\":0}]}]]],[\"spw-radio\",[[321,\"spw-radio\",{\"disabled\":[4],\"checked\":[1540],\"error\":[4],\"name\":[1],\"value\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"internalChecked\":[32],\"setChecked\":[64]},null,{\"checked\":[{\"checkedChanged\":0}]}]]],[\"spw-sidebar-navigation-dropdown\",[[260,\"spw-sidebar-navigation-dropdown\",{\"open\":[1028]}]]],[\"spw-slider-item\",[[257,\"spw-slider-item\"]]],[\"spw-socials\",[[260,\"spw-socials\",{\"mainTitle\":[1,\"main-title\"]}]]],[\"spw-table\",[[257,\"spw-table\",{\"accAriaLabel\":[1,\"acc-aria-label\"],\"isSticky\":[4,\"is-sticky\"],\"maxHeight\":[1,\"max-height\"],\"minWidth\":[1,\"min-width\"],\"tableLayout\":[1,\"table-layout\"],\"isZebra\":[4,\"is-zebra\"],\"disableSort\":[4,\"disable-sort\"],\"currentSort\":[1040],\"resizable\":[4],\"minHeight\":[2,\"min-height\"],\"currentHeight\":[32]},[[0,\"spwHeaderClick\",\"handleHeaderClick\"]],{\"currentSort\":[{\"onCurrentSortChange\":0}],\"isSticky\":[{\"onIsStickyChange\":0}]}]]],[\"spw-table-body\",[[257,\"spw-table-body\",{\"isZebra\":[516,\"is-zebra\"],\"updateZebraStyles\":[64]}]]],[\"spw-table-cell\",[[257,\"spw-table-cell\",{\"colspan\":[2],\"headers\":[1],\"rowspan\":[2],\"isHighlighted\":[4,\"is-highlighted\"],\"textAlign\":[1,\"text-align\"],\"verticalAlign\":[1,\"vertical-align\"],\"width\":[1],\"padding\":[1],\"state\":[1],\"sticky\":[4],\"stickyPosition\":[1,\"sticky-position\"],\"stickyOffset\":[2,\"sticky-offset\"],\"isFirst\":[32]}]]],[\"spw-table-container\",[[257,\"spw-table-container\"]]],[\"spw-table-footer\",[[257,\"spw-table-footer\"]]],[\"spw-table-head\",[[257,\"spw-table-head\"]]],[\"spw-table-row\",[[257,\"spw-table-row\",{\"state\":[1],\"padding\":[1]},[[0,\"slotchange\",\"slotChanged\"]],{\"state\":[{\"onStateChange\":0}],\"padding\":[{\"onPaddingChange\":0}]}]]],[\"spw-tabs\",[[257,\"spw-tabs\",{\"defaultActiveTab\":[1,\"default-active-tab\"],\"variant\":[1],\"hasEllipsis\":[4,\"has-ellipsis\"],\"maxWidth\":[2,\"max-width\"],\"size\":[1],\"activeTab\":[1025,\"active-tab\"],\"getSelectedTab\":[64],\"setSelectedTab\":[64]},[[2,\"tabSelected\",\"handleTabSelected\"],[0,\"slotchange\",\"slotChanged\"]],{\"activeTab\":[{\"activeTabChanged\":0}],\"maxWidth\":[{\"maxWidthChanged\":0}],\"hasEllipsis\":[{\"hasEllipsisChanged\":0}]}]]],[\"spw-tabs-content\",[[257,\"spw-tabs-content\",{\"tabId\":[1,\"tab-id\"],\"active\":[4]}]]],[\"spw-tile-description\",[[257,\"spw-tile-description\"]]],[\"spw-tile-title\",[[257,\"spw-tile-title\"]]],[\"spw-timeline\",[[257,\"spw-timeline\",{\"visibleItems\":[2,\"visible-items\"],\"showMoreText\":[1,\"show-more-text\"],\"showLessText\":[1,\"show-less-text\"],\"showAll\":[32]},[[0,\"slotchange\",\"slotChanged\"]]]]],[\"spw-toc\",[[260,\"spw-toc\"]]],[\"spw-toc-container\",[[260,\"spw-toc-container\",{\"getItems\":[64]}]]],[\"spw-toc-navigation\",[[0,\"spw-toc-navigation\",{\"variant\":[1],\"items\":[32],\"currentItemIndex\":[32],\"currentH2Index\":[32],\"h2ProgressPercents\":[32],\"clickedH2Index\":[32],\"h2Distances\":[32]},[[8,\"tocItemsChanged\",\"handleTocItemsChanged\"]]]]],[\"spw-topbar\",[[257,\"spw-topbar\",{\"siteTitle\":[1,\"site-title\"],\"hasWallonieLogo\":[4,\"has-wallonie-logo\"],\"homepageLink\":[1,\"homepage-link\"],\"emitLogoClick\":[4,\"emit-logo-click\"]}]]],[\"spw-wizard\",[[257,\"spw-wizard\",{\"currentStep\":[1026,\"current-step\"],\"variant\":[1],\"setStep\":[64]},[[0,\"slotchange\",\"slotChanged\"],[0,\"wizardItemClick\",\"handleStepClick\"]]]]],[\"spw-skeleton\",[[257,\"spw-skeleton\",{\"blocks\":[2],\"variant\":[1]}]]],[\"spw-field-label_8\",[[260,\"spw-group\",{\"type\":[1],\"orientation\":[1],\"alignment\":[1],\"disabled\":[4],\"label\":[1],\"required\":[4],\"isReversed\":[4,\"is-reversed\"],\"name\":[1],\"isFullWidth\":[4,\"is-full-width\"],\"flexWrap\":[1,\"flex-wrap\"],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"]},null,{\"disabled\":[{\"handleSlotChange\":0}],\"error\":[{\"handleSlotChange\":0}]}],[260,\"spw-theme-provider\",{\"theme\":[1]}],[1,\"spw-separator\",{\"surface\":[1],\"direction\":[1],\"thickness\":[2],\"width\":[1],\"height\":[1]}],[257,\"spw-link\",{\"href\":[1],\"target\":[1],\"rel\":[1],\"icon\":[1],\"download\":[1],\"iconPosition\":[1,\"icon-position\"],\"disabled\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"],\"surface\":[1]}],[1,\"spw-field-label\",{\"name\":[1],\"label\":[1],\"required\":[4],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"]}],[257,\"spw-field-message\",{\"showIcon\":[4,\"show-icon\"],\"variant\":[1]}],[257,\"spw-tooltip\",{\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"maxWidth\":[1,\"max-width\"],\"direction\":[1],\"cursor\":[1],\"visible\":[4],\"isVisible\":[32]}],[1,\"spw-icon\",{\"icon\":[1],\"variant\":[1]}]]],[\"spw-toast\",[[1,\"spw-toast\",{\"variant\":[1],\"heading\":[1],\"message\":[1],\"linkLabel\":[1,\"link-label\"],\"linkHref\":[1,\"link-href\"],\"duration\":[2],\"dismissable\":[4],\"dismissText\":[1,\"dismiss-text\"],\"icon\":[1],\"visible\":[32],\"show\":[64],\"dismiss\":[64]},null,{\"duration\":[{\"durationChanged\":0}]}]]],[\"spw-text-field\",[[65,\"spw-text-field\",{\"value\":[1544],\"type\":[1],\"label\":[1],\"placeholder\":[1],\"disabled\":[4],\"name\":[1],\"min\":[2],\"max\":[2],\"step\":[2],\"minLength\":[2,\"min-length\"],\"maxLength\":[2,\"max-length\"],\"isSearch\":[4,\"is-search\"],\"isClear\":[4,\"is-clear\"],\"required\":[4],\"size\":[1],\"indicator\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"accAriaLabelIncrement\":[1,\"acc-aria-label-increment\"],\"accAriaLabelDecrement\":[1,\"acc-aria-label-decrement\"],\"hasControls\":[4,\"has-controls\"],\"hasSubmitButton\":[4,\"has-submit-button\"],\"mask\":[1],\"decimalPrecision\":[2,\"decimal-precision\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"isClearIconVisible\":[32],\"setFocus\":[64],\"setValue\":[64]},null,{\"value\":[{\"valueChangedHandler\":0}]}]]],[\"spw-checkbox\",[[321,\"spw-checkbox\",{\"disabled\":[4],\"checked\":[1540],\"error\":[4],\"icon\":[1],\"name\":[1],\"value\":[1],\"variant\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"internalChecked\":[32],\"toggleCheckedState\":[64]},null,{\"checked\":[{\"checkedChanged\":0}]}]]],[\"spw-tag\",[[257,\"spw-tag\",{\"variant\":[1],\"surface\":[1],\"hasIcon\":[4,\"has-icon\"],\"icon\":[1],\"href\":[1],\"target\":[1],\"size\":[1],\"iconVariant\":[1,\"icon-variant\"],\"iconPosition\":[1,\"icon-position\"]}]]],[\"spw-accordion_4\",[[257,\"spw-accordion-title\",{\"tag\":[1],\"icon\":[1]}],[257,\"spw-accordion\",{\"background\":[1],\"variant\":[1]},null,{\"background\":[{\"backgroundChanged\":0}],\"variant\":[{\"variantChanged\":0}]}],[257,\"spw-accordion-content\",{\"isOpened\":[32]},[[4,\"accordionToggle\",\"handleAccordionToggle\"]]],[257,\"spw-accordion-item\",{\"defaultOpen\":[4,\"default-open\"],\"variant\":[513],\"isOpen\":[32],\"isMobile\":[32]},null,{\"defaultOpen\":[{\"defaultOpenChanged\":0}]}]]],[\"spw-button_2\",[[257,\"spw-button\",{\"href\":[1],\"target\":[1],\"rel\":[1],\"download\":[1],\"name\":[1],\"value\":[8],\"type\":[1],\"form\":[1],\"variant\":[1],\"surface\":[1],\"disabled\":[4],\"size\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"isIconOnly\":[4,\"is-icon-only\"],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"iconVariant\":[1,\"icon-variant\"],\"isFullWidth\":[516,\"is-full-width\"],\"isFullWidthMobile\":[516,\"is-full-width-mobile\"],\"hideTextOnMobile\":[4,\"hide-text-on-mobile\"],\"isLoading\":[4,\"is-loading\"],\"setFocus\":[64]}],[1,\"spw-loading\",{\"text\":[1],\"surface\":[1],\"size\":[1],\"orientation\":[1]}]]]]"), options);
|
|
7
|
+
return bootstrapLazy(JSON.parse("[[\"spw-cookies\",[[1,\"spw-cookies\",{\"cookiesTitle\":[1,\"cookies-title\"],\"cookiesDescription\":[1,\"cookies-description\"],\"acceptAllButtonText\":[1,\"accept-all-button-text\"],\"acceptRequiredButtonText\":[1,\"accept-required-button-text\"],\"isVisible\":[32],\"analyticsEnabled\":[32]}]]],[\"spw-search-field\",[[1,\"spw-search-field\",{\"value\":[1537],\"items\":[1],\"placeholder\":[1],\"size\":[1],\"label\":[1],\"disabled\":[4],\"isRounded\":[4,\"is-rounded\"],\"name\":[1],\"required\":[4],\"assistiveText\":[1,\"assistive-text\"],\"viewAllResults\":[1,\"view-all-results\"],\"viewAllResultsLink\":[1,\"view-all-results-link\"],\"viewAllResultsSubmit\":[4,\"view-all-results-submit\"],\"noResults\":[1,\"no-results\"],\"loadingText\":[1,\"loading-text\"],\"hasSubmitButton\":[4,\"has-submit-button\"],\"minCharacters\":[2,\"min-characters\"],\"isLoading\":[4,\"is-loading\"],\"showDropdown\":[4,\"show-dropdown\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"filteredItems\":[32],\"parsedItems\":[32],\"searchText\":[32],\"isOpen\":[32],\"focusedItemIndex\":[32],\"dropdownDirection\":[32],\"resetInput\":[64],\"setValue\":[64],\"getValue\":[64]},null,{\"value\":[{\"handleValueChange\":0}],\"items\":[{\"parseItems\":0}]}]]],[\"spw-custom-select\",[[321,\"spw-custom-select\",{\"value\":[1544],\"label\":[1],\"placeholder\":[1],\"searchPlaceholder\":[1,\"search-placeholder\"],\"noResultsText\":[1,\"no-results-text\"],\"disabled\":[4],\"name\":[1],\"required\":[4],\"items\":[16],\"size\":[1],\"multiple\":[4],\"isSearch\":[4,\"is-search\"],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"fixedDropdown\":[4,\"fixed-dropdown\"],\"fixedDropdownParent\":[1,\"fixed-dropdown-parent\"],\"isClear\":[4,\"is-clear\"],\"direction\":[1],\"allowCreate\":[4,\"allow-create\"],\"internalValue\":[32],\"isOpen\":[32],\"parsedOptions\":[32],\"focusedOptionIndex\":[32],\"searchText\":[32],\"hasSlottedFooter\":[32],\"dropdownDirection\":[32],\"hasSelectedValue\":[32],\"dropdownPosition\":[32],\"setFocus\":[64],\"resetSelect\":[64],\"setValue\":[64],\"getValue\":[64]},null,{\"items\":[{\"parseOptions\":0}],\"value\":[{\"valueChangedHandler\":0}],\"internalValue\":[{\"internalValueChanged\":0}]}]]],[\"spw-lightbox\",[[257,\"spw-lightbox\",{\"gallery\":[513],\"closeButtonText\":[1,\"close-button-text\"],\"closeOnBackdropClick\":[4,\"close-on-backdrop-click\"],\"showThumbnails\":[4,\"show-thumbnails\"],\"textDialogLabel\":[1,\"text-dialog-label\"],\"textPrevious\":[1,\"text-previous\"],\"textNext\":[1,\"text-next\"],\"textThumbnailsLabel\":[1,\"text-thumbnails-label\"],\"textThumbnailItem\":[1,\"text-thumbnail-item\"],\"opened\":[32],\"activeIndex\":[32],\"items\":[32],\"open\":[64],\"close\":[64]},[[0,\"keydown\",\"handleFocusTrap\"]],{\"opened\":[{\"onOpenedChange\":0}],\"activeIndex\":[{\"onActiveIndexChange\":0}]}]]],[\"spw-pagination\",[[1,\"spw-pagination\",{\"totalItems\":[2,\"total-items\"],\"itemsPerPage\":[2,\"items-per-page\"],\"isDisabled\":[4,\"is-disabled\"],\"variant\":[1],\"currentPage\":[1026,\"current-page\"],\"nextButtonText\":[1,\"next-button-text\"],\"previousButtonText\":[1,\"previous-button-text\"],\"isDynamic\":[4,\"is-dynamic\"],\"inputPageValue\":[32],\"isMobile\":[32],\"setPage\":[64]},null,{\"totalItems\":[{\"calculateTotalPages\":0},{\"onTotalItemsChange\":0}],\"itemsPerPage\":[{\"calculateTotalPages\":0},{\"onItemsPerPageChange\":0}],\"currentPage\":[{\"calculateTotalPages\":0},{\"onCurrentPageChange\":0}]}]]],[\"spw-date-picker\",[[65,\"spw-date-picker\",{\"value\":[1537],\"placeholder\":[1],\"label\":[1],\"name\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"required\":[4],\"disabled\":[4],\"dateFormat\":[1,\"date-format\"],\"minDate\":[1,\"min-date\"],\"maxDate\":[1,\"max-date\"],\"disabledDays\":[1,\"disabled-days\"],\"disabledDates\":[1,\"disabled-dates\"],\"position\":[1],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"assistiveText\":[1,\"assistive-text\"],\"isClear\":[4,\"is-clear\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"range\":[4],\"rangeId\":[1,\"range-id\"],\"isStart\":[4,\"is-start\"],\"fixedCalendar\":[4,\"fixed-calendar\"],\"fixedCalendarParent\":[1,\"fixed-calendar-parent\"],\"isOpen\":[32],\"hasError\":[32],\"internalError\":[32],\"internalValue\":[32],\"isClearIconVisible\":[32],\"open\":[64],\"close\":[64],\"setDate\":[64],\"getDate\":[64],\"getRange\":[64],\"updateConstraints\":[64],\"resetInput\":[64],\"resetConstraints\":[64]},null,{\"value\":[{\"watchValue\":0}],\"disabled\":[{\"watchDisabled\":0}],\"minDate\":[{\"watchMinDate\":0}],\"maxDate\":[{\"watchMaxDate\":0}]}]]],[\"spw-input-slider\",[[65,\"spw-input-slider\",{\"min\":[2],\"max\":[2],\"step\":[2],\"value\":[1026],\"range\":[4],\"disabled\":[4],\"name\":[1],\"orientation\":[1],\"hasTooltip\":[4,\"has-tooltip\"],\"label\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"required\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"internalValue\":[32],\"isDragging\":[32],\"activeHandle\":[32],\"setValue\":[64],\"getValue\":[64]},null,{\"value\":[{\"handleValueChange\":0}]}]]],[\"spw-select\",[[321,\"spw-select\",{\"value\":[1544],\"label\":[1],\"placeholder\":[1],\"disabled\":[4],\"name\":[1],\"required\":[4],\"size\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"items\":[16],\"itemLabel\":[1,\"item-label\"],\"itemValue\":[1,\"item-value\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"isClear\":[4,\"is-clear\"],\"internalValue\":[32],\"resetSelect\":[64],\"setValue\":[64],\"getValue\":[64]},null,{\"items\":[{\"handleItemsChange\":0}],\"value\":[{\"handleValueChange\":0}]}]]],[\"spw-textarea\",[[65,\"spw-textarea\",{\"value\":[1537],\"label\":[1],\"placeholder\":[1],\"disabled\":[4],\"name\":[1],\"rows\":[2],\"minLength\":[2,\"min-length\"],\"maxLength\":[2,\"max-length\"],\"isSearch\":[4,\"is-search\"],\"required\":[4],\"size\":[1],\"indicator\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"internalValue\":[32],\"setFocus\":[64]},null,{\"value\":[{\"valueChangedHandler\":0}]}]]],[\"spw-file-upload\",[[65,\"spw-file-upload\",{\"disabled\":[4],\"error\":[4],\"name\":[1],\"value\":[16],\"enableDropZone\":[4,\"enable-drop-zone\"],\"multiple\":[4],\"accept\":[1],\"refuse\":[1],\"maxFileSize\":[2,\"max-file-size\"],\"maxFileSizeUnit\":[1,\"max-file-size-unit\"],\"maxFiles\":[2,\"max-files\"],\"textChooseFile\":[1,\"text-choose-file\"],\"textChooseFiles\":[1,\"text-choose-files\"],\"textDropFile\":[1,\"text-drop-file\"],\"textDropFiles\":[1,\"text-drop-files\"],\"textChooseFromComputer\":[1,\"text-choose-from-computer\"],\"textDelete\":[1,\"text-delete\"],\"textMaxFileSize\":[1,\"text-max-file-size\"],\"textMaxFiles\":[1,\"text-max-files\"],\"textAcceptedFormats\":[1,\"text-accepted-formats\"],\"textRefusedFormats\":[1,\"text-refused-formats\"],\"textAllFormats\":[1,\"text-all-formats\"],\"textErrorFormat\":[1,\"text-error-format\"],\"textErrorSize\":[1,\"text-error-size\"],\"textErrorFormatAndSize\":[1,\"text-error-format-and-size\"],\"textLimitReached\":[1,\"text-limit-reached\"],\"textLimitExceeded\":[1,\"text-limit-exceeded\"],\"selectedFiles\":[32],\"fileTypeErrors\":[32],\"fileLimitErrors\":[32],\"isDragging\":[32],\"isMaxFilesReachedExact\":[32],\"resetInput\":[64]},null,{\"value\":[{\"watchValueHandler\":0}]}]]],[\"spw-header\",[[257,\"spw-header\",{\"siteTitle\":[1,\"site-title\"],\"borderColor\":[1,\"border-color\"],\"hasWallonieLogo\":[4,\"has-wallonie-logo\"],\"hasMaWallonie\":[4,\"has-ma-wallonie\"],\"maWallonieLabel\":[1,\"ma-wallonie-label\"],\"maWallonieLink\":[1,\"ma-wallonie-link\"],\"hasWallonieBe\":[4,\"has-wallonie-be\"],\"wallonieBeLabel\":[1,\"wallonie-be-label\"],\"wallonieBeLink\":[1,\"wallonie-be-link\"],\"hasSearch\":[4,\"has-search\"],\"searchType\":[1,\"search-type\"],\"searchDirectHref\":[1,\"search-direct-href\"],\"searchDirectTarget\":[1,\"search-direct-target\"],\"searchCloseLabel\":[1,\"search-close-label\"],\"searchOpenLabel\":[1,\"search-open-label\"],\"menuCloseLabel\":[1,\"menu-close-label\"],\"menuOpenLabel\":[1,\"menu-open-label\"],\"hasHamburger\":[4,\"has-hamburger\"],\"homepageLink\":[1,\"homepage-link\"],\"emitLogoClick\":[4,\"emit-logo-click\"],\"isMenuOpen\":[32],\"isSearchOpen\":[32],\"closeMenu\":[64]}]]],[\"spw-header-lang\",[[1,\"spw-header-lang\",{\"accAriaLabel\":[1,\"acc-aria-label\"],\"activeLang\":[32],\"options\":[32]}]]],[\"spw-header-navigation\",[[257,\"spw-header-navigation\",{\"alignment\":[1],\"extraButton\":[4,\"extra-button\"],\"extraButtonHref\":[1,\"extra-button-href\"],\"extraButtonTarget\":[1,\"extra-button-target\"],\"extraButtonText\":[1,\"extra-button-text\"],\"extraButtonVariant\":[1,\"extra-button-variant\"],\"extraButtonIcon\":[1,\"extra-button-icon\"],\"homepageLabel\":[1,\"homepage-label\"],\"level\":[32],\"element\":[32]},[[2,\"spwHeaderNavigationNavigate\",\"handleNavigation\"]]]]],[\"spw-scrolltop\",[[1,\"spw-scrolltop\",{\"threshold\":[2],\"hideOnMobile\":[4,\"hide-on-mobile\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"useWindow\":[4,\"use-window\"],\"isVisible\":[32]}]]],[\"spw-table-sidebar\",[[257,\"spw-table-sidebar\",{\"defaultExpanded\":[4,\"default-expanded\"],\"sidebarTitle\":[1,\"sidebar-title\"],\"sidebarIcon\":[1,\"sidebar-icon\"],\"sidebarWidth\":[2,\"sidebar-width\"],\"hasReset\":[4,\"has-reset\"],\"resetIcon\":[1,\"reset-icon\"],\"observedHeight\":[32],\"expanded\":[32]}]]],[\"spw-tabs-navigation-item\",[[257,\"spw-tabs-navigation-item\",{\"tabId\":[1,\"tab-id\"],\"active\":[4],\"disabled\":[4],\"bubble\":[4],\"hasEllipsis\":[4,\"has-ellipsis\"],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"tagText\":[1,\"tag-text\"],\"tagVariant\":[1,\"tag-variant\"],\"tagIcon\":[4,\"tag-icon\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"slotText\":[32]},[[0,\"slotchange\",\"handleSlotChange\"]]]]],[\"spw-breadcrumb-item\",[[257,\"spw-breadcrumb-item\",{\"href\":[1],\"surface\":[32]},null,{\"surface\":[{\"surfaceChanged\":0}]}]]],[\"spw-header-navigation-dropdown\",[[257,\"spw-header-navigation-dropdown\",{\"viewMoreText\":[1,\"view-more-text\"],\"shouldShowViewMore\":[32],\"parentHref\":[32],\"parentTarget\":[32],\"dropdownLevel\":[32],\"isMegamenu\":[32]}]]],[\"spw-hero\",[[257,\"spw-hero\",{\"imageSrc\":[1,\"image-src\"],\"imageAlt\":[1,\"image-alt\"],\"surface\":[1],\"hasPictureFull\":[4,\"has-picture-full\"],\"hasRadius\":[4,\"has-radius\"],\"hasShadow\":[4,\"has-shadow\"],\"hasVideo\":[4,\"has-video\"],\"modalVideoId\":[1,\"modal-video-id\"],\"variant\":[1],\"alignment\":[1],\"overlayOpacity\":[2,\"overlay-opacity\"],\"overlayColor\":[1,\"overlay-color\"],\"accPlayButtonAriaLabel\":[1,\"acc-play-button-aria-label\"],\"copyrightText\":[1,\"copyright-text\"],\"copyrightIcon\":[1,\"copyright-icon\"],\"copyrightIconVariant\":[1,\"copyright-icon-variant\"],\"copyrightHref\":[1,\"copyright-href\"],\"copyrightTarget\":[1,\"copyright-target\"],\"imagePosition\":[1,\"image-position\"],\"featuredRatio\":[1,\"featured-ratio\"],\"featuredRatioMobile\":[1,\"featured-ratio-mobile\"],\"featuredRatioTablet\":[1,\"featured-ratio-tablet\"],\"featuredRatioDesktop\":[1,\"featured-ratio-desktop\"]}]]],[\"spw-message\",[[257,\"spw-message\",{\"variant\":[1],\"messageId\":[1,\"message-id\"],\"isDismissable\":[4,\"is-dismissable\"],\"dismissableText\":[1,\"dismissable-text\"],\"messageTitle\":[1,\"message-title\"],\"icon\":[1],\"size\":[1],\"isVisible\":[32],\"hasSlotContent\":[32],\"showMessage\":[64],\"hideMessage\":[64]}]]],[\"spw-modal\",[[257,\"spw-modal\",{\"opened\":[1540],\"caption\":[1],\"closeButtonText\":[1,\"close-button-text\"],\"closeOnOverlayClick\":[4,\"close-on-overlay-click\"],\"stickyButtons\":[4,\"sticky-buttons\"],\"size\":[1],\"alertIcon\":[1,\"alert-icon\"],\"showCloseButton\":[4,\"show-close-button\"],\"showModal\":[32],\"slotButtonsPresent\":[32],\"isCloseButtonSticky\":[32],\"closeModal\":[64],\"openModal\":[64]},null,{\"opened\":[{\"openedChanged\":0}]}]]],[\"spw-sidebar-navigation-item\",[[260,\"spw-sidebar-navigation-item\",{\"href\":[1],\"icon\":[1],\"active\":[4],\"disabled\":[4],\"bubble\":[1],\"tooltipTitle\":[1,\"tooltip-title\"],\"iconVariant\":[1,\"icon-variant\"],\"openOnClick\":[4,\"open-on-click\"],\"hasDropdown\":[32],\"dropdownOpen\":[32],\"navExpanded\":[32],\"hasActiveChild\":[32]}]]],[\"spw-slider\",[[257,\"spw-slider\",{\"showArrows\":[4,\"show-arrows\"],\"showDots\":[4,\"show-dots\"],\"showAutoplayToggle\":[4,\"show-autoplay-toggle\"],\"autoplayInterval\":[2,\"autoplay-interval\"],\"autoplayEnabled\":[4,\"autoplay-enabled\"],\"autoplayText\":[1,\"autoplay-text\"],\"arrowsPosition\":[1,\"arrows-position\"],\"dotsPosition\":[1,\"dots-position\"],\"nextSlideText\":[1,\"next-slide-text\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"previousSlideText\":[1,\"previous-slide-text\"],\"hasFixedHeight\":[4,\"has-fixed-height\"],\"activeIndex\":[32],\"totalSlides\":[32],\"currentHeight\":[32],\"isAutoplayActive\":[32]},[[1,\"touchstart\",\"handleTouchStart\"],[0,\"mousedown\",\"handleMouseDown\"],[0,\"touchmove\",\"handleTouchMove\"],[1,\"mousemove\",\"handleMouseMove\"],[1,\"touchend\",\"handleTouchEnd\"],[1,\"mouseup\",\"handleMouseUp\"],[1,\"mouseleave\",\"handleMouseLeave\"],[0,\"keydown\",\"handleKeyDown\"]]]]],[\"spw-table-header\",[[257,\"spw-table-header\",{\"colspan\":[2],\"headers\":[1],\"rowspan\":[2],\"isHighlighted\":[4,\"is-highlighted\"],\"textAlign\":[1,\"text-align\"],\"verticalAlign\":[1,\"vertical-align\"],\"padding\":[1],\"columnId\":[1,\"column-id\"],\"sortable\":[4],\"sortDirection\":[1,\"sort-direction\"],\"isSorted\":[4,\"is-sorted\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"sticky\":[4],\"stickyPosition\":[1,\"sticky-position\"],\"stickyOffset\":[2,\"sticky-offset\"]}]]],[\"spw-toast-controller\",[[1,\"spw-toast-controller\",{\"position\":[1],\"create\":[64],\"dismissAll\":[64]}]]],[\"spw-box\",[[257,\"spw-box\",{\"hasRadius\":[4,\"has-radius\"],\"hasShadow\":[4,\"has-shadow\"],\"isSticky\":[4,\"is-sticky\"],\"stickyTop\":[1,\"sticky-top\"],\"padding\":[1],\"isCollapsible\":[4,\"is-collapsible\"],\"collapsibleBreakpoint\":[1,\"collapsible-breakpoint\"],\"isOpen\":[32]}]]],[\"spw-card-image\",[[257,\"spw-card-image\",{\"label\":[1],\"ratio\":[1],\"ratioMobile\":[1,\"ratio-mobile\"],\"ratioTablet\":[1,\"ratio-tablet\"],\"ratioDesktop\":[1,\"ratio-desktop\"],\"imagePosition\":[1,\"image-position\"],\"hoverIcon\":[1,\"hover-icon\"],\"imageFit\":[1,\"image-fit\"]}]]],[\"spw-dropdown-item\",[[260,\"spw-dropdown-item\",{\"href\":[1],\"disabled\":[4],\"icon\":[1],\"iconVariant\":[1,\"icon-variant\"],\"hasSubItems\":[32],\"subItemsOpen\":[32]}]]],[\"spw-footer-content-col\",[[257,\"spw-footer-content-col\",{\"colTitle\":[1,\"col-title\"],\"open\":[32]}]]],[\"spw-header-navigation-item\",[[257,\"spw-header-navigation-item\",{\"isActive\":[4,\"is-active\"],\"variant\":[1],\"internalIsActive\":[32],\"hasSubnav\":[32],\"level\":[32],\"isSubnavVisible\":[32],\"lastClickedLevel1Item\":[32],\"isMobile\":[32]}]]],[\"spw-header-persona\",[[1,\"spw-header-persona\",{\"personaLabel\":[1,\"persona-label\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"activePersona\":[32],\"options\":[32]}]]],[\"spw-lightbox-item\",[[257,\"spw-lightbox-item\",{\"src\":[1],\"alt\":[1],\"captionTitle\":[1,\"caption-title\"],\"captionText\":[1,\"caption-text\"],\"copyrightText\":[1,\"copyright-text\"],\"copyrightIcon\":[1,\"copyright-icon\"],\"copyrightIconVariant\":[1,\"copyright-icon-variant\"],\"copyrightHref\":[1,\"copyright-href\"],\"copyrightTarget\":[1,\"copyright-target\"],\"textOpenImage\":[1,\"text-open-image\"],\"isHover\":[4,\"is-hover\"],\"hoverIcon\":[1,\"hover-icon\"]}]]],[\"spw-list-item\",[[257,\"spw-list-item\",{\"variant\":[1],\"href\":[1],\"target\":[1],\"icon\":[1],\"lineClamp\":[1,\"line-clamp\"],\"category\":[1],\"categoryLink\":[1,\"category-link\"],\"categoryIcon\":[1,\"category-icon\"],\"surface\":[1]},[[0,\"slotchange\",\"slotChanged\"],[1,\"mouseenter\",\"onMouseEnter\"],[1,\"mouseleave\",\"onMouseLeave\"],[1,\"touchstart\",\"onTouchStart\"],[1,\"touchend\",\"onTouchEnd\"],[1,\"mousedown\",\"onMouseDown\"],[1,\"mouseup\",\"onMouseUp\"],[0,\"blur\",\"onBlur\"],[0,\"focus\",\"onFocus\"]]]]],[\"spw-list-title\",[[257,\"spw-list-title\",{\"icon\":[1],\"lineClamp\":[1,\"line-clamp\"]}]]],[\"spw-sidebar\",[[257,\"spw-sidebar\",{\"defaultExpanded\":[4,\"default-expanded\"],\"expanded\":[32],\"hasTopbar\":[32],\"open\":[64],\"close\":[64],\"toggle\":[64]}]]],[\"spw-sidebar-navigation-separator\",[[1,\"spw-sidebar-navigation-separator\"]]],[\"spw-tabs-navigation\",[[257,\"spw-tabs-navigation\",{\"accAriaLabel\":[1,\"acc-aria-label\"],\"isVerticalOnMobile\":[4,\"is-vertical-on-mobile\"],\"isCentered\":[4,\"is-centered\"],\"showLeftArrow\":[32],\"showRightArrow\":[32],\"hasOverflow\":[32]},[[9,\"resize\",\"onWindowResize\"]]]]],[\"spw-tile\",[[257,\"spw-tile\",{\"variant\":[1],\"height\":[1],\"href\":[1],\"target\":[1],\"imageSrc\":[1,\"image-src\"],\"imageAlt\":[1,\"image-alt\"],\"overlayOpacity\":[2,\"overlay-opacity\"]},[[0,\"slotchange\",\"slotChanged\"],[1,\"mouseenter\",\"onMouseEnter\"],[1,\"mouseleave\",\"onMouseLeave\"]]]]],[\"spw-timeline-item\",[[257,\"spw-timeline-item\",{\"label\":[1],\"description\":[1],\"state\":[1],\"isLast\":[1,\"is-last\"],\"variant\":[1],\"isDescriptionExpanded\":[32],\"showToggle\":[32]}]]],[\"spw-wizard-item\",[[1,\"spw-wizard-item\",{\"label\":[1],\"description\":[1],\"additionalInfo\":[1,\"additional-info\"],\"icon\":[1],\"state\":[1],\"status\":[1],\"isLast\":[1,\"is-last\"],\"stepNumber\":[2,\"step-number\"],\"variant\":[1],\"isClickable\":[1,\"is-clickable\"],\"isBeforeCurrent\":[1,\"is-before-current\"],\"isAfterCurrent\":[1,\"is-after-current\"],\"isCurrent\":[1,\"is-current\"]}]]],[\"spw-avatar\",[[1,\"spw-avatar\",{\"size\":[1],\"image\":[1],\"initials\":[1],\"bubble\":[1],\"clickable\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"]}]]],[\"spw-block-content\",[[257,\"spw-block-content\",{\"variant\":[1],\"imageSrc\":[1,\"image-src\"],\"imageAlt\":[1,\"image-alt\"],\"href\":[1],\"target\":[1],\"background\":[1],\"ratio\":[1],\"ratioMobile\":[1,\"ratio-mobile\"],\"ratioTablet\":[1,\"ratio-tablet\"],\"ratioDesktop\":[1,\"ratio-desktop\"]}]]],[\"spw-breadcrumb\",[[257,\"spw-breadcrumb\",{\"variant\":[1],\"surface\":[1],\"fontSize\":[1,\"font-size\"],\"accAriaLabel\":[1,\"acc-aria-label\"]}]]],[\"spw-card\",[[257,\"spw-card\",{\"variant\":[1],\"elementType\":[1,\"element-type\"],\"href\":[1],\"target\":[1],\"rel\":[1],\"dateStart\":[1,\"date-start\"],\"dateEnd\":[1,\"date-end\"],\"fullHeight\":[4,\"full-height\"],\"disabled\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"],\"hasImage\":[32]},[[0,\"slotchange\",\"slotChanged\"],[1,\"mouseenter\",\"onMouseEnter\"],[1,\"mouseleave\",\"onMouseLeave\"]]]]],[\"spw-card-content\",[[257,\"spw-card-content\",{\"tag\":[1],\"date\":[1],\"hasImage\":[32]}]]],[\"spw-card-excerpt\",[[257,\"spw-card-excerpt\",{\"lineClamp\":[8,\"line-clamp\"]}]]],[\"spw-card-subtag-item\",[[257,\"spw-card-subtag-item\",{\"link\":[1]}]]],[\"spw-card-subtags\",[[260,\"spw-card-subtags\",{\"variant\":[1]}]]],[\"spw-card-title\",[[257,\"spw-card-title\",{\"borderColor\":[1,\"border-color\"]}]]],[\"spw-dropdown\",[[257,\"spw-dropdown\",{\"direction\":[1],\"alignment\":[1],\"hasPadding\":[4,\"has-padding\"],\"contentWidth\":[2,\"content-width\"],\"maxHeight\":[1,\"max-height\"],\"open\":[1540],\"isVisible\":[32],\"close\":[64]},null,{\"open\":[{\"onOpenChange\":0}]}]]],[\"spw-dropdown-container\",[[257,\"spw-dropdown-container\"]]],[\"spw-footer\",[[257,\"spw-footer\",{\"colsMobile\":[2,\"cols-mobile\"],\"colsTablet\":[2,\"cols-tablet\"],\"colsDesktop\":[2,\"cols-desktop\"]},null,{\"colsMobile\":[{\"configurationChanged\":0}],\"colsTablet\":[{\"configurationChanged\":0}],\"colsDesktop\":[{\"configurationChanged\":0}]}]]],[\"spw-footer-bottom\",[[257,\"spw-footer-bottom\",{\"siteTitle\":[1,\"site-title\"],\"hasWallonieLogo\":[4,\"has-wallonie-logo\"]}]]],[\"spw-footer-content\",[[257,\"spw-footer-content\"]]],[\"spw-footer-link\",[[257,\"spw-footer-link\",{\"href\":[1],\"target\":[1],\"linkTitle\":[1,\"link-title\"]}]]],[\"spw-grid\",[[257,\"spw-grid\",{\"colsMobile\":[2,\"cols-mobile\"],\"colsTablet\":[2,\"cols-tablet\"],\"colsDesktop\":[2,\"cols-desktop\"],\"gap\":[1]},null,{\"colsMobile\":[{\"configurationChanged\":0}],\"colsTablet\":[{\"configurationChanged\":0}],\"colsDesktop\":[{\"configurationChanged\":0}]}]]],[\"spw-grid-item\",[[257,\"spw-grid-item\",{\"colSpanMobile\":[2,\"col-span-mobile\"],\"colSpanTablet\":[2,\"col-span-tablet\"],\"colSpanDesktop\":[2,\"col-span-desktop\"],\"rowSpanMobile\":[2,\"row-span-mobile\"],\"rowSpanTablet\":[2,\"row-span-tablet\"],\"rowSpanDesktop\":[2,\"row-span-desktop\"]}]]],[\"spw-header-persona-item\",[[257,\"spw-header-persona-item\",{\"active\":[516]}]]],[\"spw-illustration\",[[1,\"spw-illustration\",{\"variant\":[1],\"width\":[1],\"height\":[1],\"alt\":[1]}]]],[\"spw-list\",[[257,\"spw-list\",{\"gap\":[1],\"surface\":[1]},[[0,\"slotchange\",\"slotChanged\"]]]]],[\"spw-list-description\",[[257,\"spw-list-description\",{\"lineClamp\":[1,\"line-clamp\"]}]]],[\"spw-mosaic\",[[257,\"spw-mosaic\",{\"items\":[8],\"isMasonry\":[4,\"is-masonry\"],\"colsMobile\":[2,\"cols-mobile\"],\"colsTablet\":[2,\"cols-tablet\"],\"colsDesktop\":[2,\"cols-desktop\"],\"initialized\":[32],\"waitForImages\":[64],\"initializeMasonry\":[64]},null,{\"items\":[{\"itemsChanged\":0}],\"isMasonry\":[{\"isMasonryChanged\":0}],\"colsMobile\":[{\"configurationChanged\":0}],\"colsTablet\":[{\"configurationChanged\":0}],\"colsDesktop\":[{\"configurationChanged\":0}]}]]],[\"spw-mosaic-item\",[[257,\"spw-mosaic-item\",{\"colSpanMobile\":[2,\"col-span-mobile\"],\"colSpanTablet\":[2,\"col-span-tablet\"],\"colSpanDesktop\":[2,\"col-span-desktop\"]},null,{\"colSpanMobile\":[{\"colSpanChanged\":0}],\"colSpanTablet\":[{\"colSpanChanged\":0}],\"colSpanDesktop\":[{\"colSpanChanged\":0}]}]]],[\"spw-radio\",[[321,\"spw-radio\",{\"disabled\":[4],\"checked\":[1540],\"error\":[4],\"name\":[1],\"value\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"internalChecked\":[32],\"setChecked\":[64]},null,{\"checked\":[{\"checkedChanged\":0}]}]]],[\"spw-sidebar-navigation-dropdown\",[[260,\"spw-sidebar-navigation-dropdown\",{\"open\":[1028]}]]],[\"spw-slider-item\",[[257,\"spw-slider-item\"]]],[\"spw-socials\",[[260,\"spw-socials\",{\"mainTitle\":[1,\"main-title\"]}]]],[\"spw-table\",[[257,\"spw-table\",{\"accAriaLabel\":[1,\"acc-aria-label\"],\"isSticky\":[4,\"is-sticky\"],\"maxHeight\":[1,\"max-height\"],\"minWidth\":[1,\"min-width\"],\"tableLayout\":[1,\"table-layout\"],\"isZebra\":[4,\"is-zebra\"],\"disableSort\":[4,\"disable-sort\"],\"currentSort\":[1040],\"resizable\":[4],\"minHeight\":[2,\"min-height\"],\"currentHeight\":[32]},[[0,\"spwHeaderClick\",\"handleHeaderClick\"]],{\"currentSort\":[{\"onCurrentSortChange\":0}],\"isSticky\":[{\"onIsStickyChange\":0}]}]]],[\"spw-table-body\",[[257,\"spw-table-body\",{\"isZebra\":[516,\"is-zebra\"],\"updateZebraStyles\":[64]}]]],[\"spw-table-cell\",[[257,\"spw-table-cell\",{\"colspan\":[2],\"headers\":[1],\"rowspan\":[2],\"isHighlighted\":[4,\"is-highlighted\"],\"textAlign\":[1,\"text-align\"],\"verticalAlign\":[1,\"vertical-align\"],\"width\":[1],\"padding\":[1],\"state\":[1],\"sticky\":[4],\"stickyPosition\":[1,\"sticky-position\"],\"stickyOffset\":[2,\"sticky-offset\"],\"isFirst\":[32]}]]],[\"spw-table-container\",[[257,\"spw-table-container\"]]],[\"spw-table-footer\",[[257,\"spw-table-footer\"]]],[\"spw-table-head\",[[257,\"spw-table-head\"]]],[\"spw-table-row\",[[257,\"spw-table-row\",{\"state\":[1],\"padding\":[1]},[[0,\"slotchange\",\"slotChanged\"]],{\"state\":[{\"onStateChange\":0}],\"padding\":[{\"onPaddingChange\":0}]}]]],[\"spw-tabs\",[[257,\"spw-tabs\",{\"defaultActiveTab\":[1,\"default-active-tab\"],\"variant\":[1],\"hasEllipsis\":[4,\"has-ellipsis\"],\"maxWidth\":[2,\"max-width\"],\"size\":[1],\"activeTab\":[1025,\"active-tab\"],\"getSelectedTab\":[64],\"setSelectedTab\":[64]},[[2,\"tabSelected\",\"handleTabSelected\"],[0,\"slotchange\",\"slotChanged\"]],{\"activeTab\":[{\"activeTabChanged\":0}],\"maxWidth\":[{\"maxWidthChanged\":0}],\"hasEllipsis\":[{\"hasEllipsisChanged\":0}]}]]],[\"spw-tabs-content\",[[257,\"spw-tabs-content\",{\"tabId\":[1,\"tab-id\"],\"active\":[4]}]]],[\"spw-tile-description\",[[257,\"spw-tile-description\"]]],[\"spw-tile-title\",[[257,\"spw-tile-title\"]]],[\"spw-timeline\",[[257,\"spw-timeline\",{\"visibleItems\":[2,\"visible-items\"],\"showMoreText\":[1,\"show-more-text\"],\"showLessText\":[1,\"show-less-text\"],\"showAll\":[32]},[[0,\"slotchange\",\"slotChanged\"]]]]],[\"spw-toc\",[[260,\"spw-toc\"]]],[\"spw-toc-container\",[[260,\"spw-toc-container\",{\"getItems\":[64]}]]],[\"spw-toc-navigation\",[[0,\"spw-toc-navigation\",{\"variant\":[1],\"items\":[32],\"currentItemIndex\":[32],\"currentH2Index\":[32],\"h2ProgressPercents\":[32],\"clickedH2Index\":[32],\"h2Distances\":[32]},[[8,\"tocItemsChanged\",\"handleTocItemsChanged\"]]]]],[\"spw-topbar\",[[257,\"spw-topbar\",{\"siteTitle\":[1,\"site-title\"],\"hasWallonieLogo\":[4,\"has-wallonie-logo\"],\"homepageLink\":[1,\"homepage-link\"],\"emitLogoClick\":[4,\"emit-logo-click\"]}]]],[\"spw-wizard\",[[257,\"spw-wizard\",{\"currentStep\":[1026,\"current-step\"],\"variant\":[1],\"canClickNextSteps\":[4,\"can-click-next-steps\"],\"setStep\":[64]},[[0,\"slotchange\",\"slotChanged\"],[0,\"wizardItemClick\",\"handleStepClick\"]]]]],[\"spw-skeleton\",[[257,\"spw-skeleton\",{\"blocks\":[2],\"variant\":[1]}]]],[\"spw-field-label_8\",[[260,\"spw-group\",{\"type\":[1],\"orientation\":[1],\"alignment\":[1],\"disabled\":[4],\"label\":[1],\"required\":[4],\"isReversed\":[4,\"is-reversed\"],\"name\":[1],\"isFullWidth\":[4,\"is-full-width\"],\"flexWrap\":[1,\"flex-wrap\"],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"]},null,{\"disabled\":[{\"handleSlotChange\":0}],\"error\":[{\"handleSlotChange\":0}]}],[260,\"spw-theme-provider\",{\"theme\":[1]}],[1,\"spw-separator\",{\"surface\":[1],\"direction\":[1],\"thickness\":[2],\"width\":[1],\"height\":[1]}],[257,\"spw-link\",{\"href\":[1],\"target\":[1],\"rel\":[1],\"icon\":[1],\"download\":[1],\"iconPosition\":[1,\"icon-position\"],\"disabled\":[4],\"accAriaLabel\":[1,\"acc-aria-label\"],\"surface\":[1]}],[1,\"spw-field-label\",{\"name\":[1],\"label\":[1],\"required\":[4],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"]}],[257,\"spw-field-message\",{\"showIcon\":[4,\"show-icon\"],\"variant\":[1]}],[257,\"spw-tooltip\",{\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"maxWidth\":[1,\"max-width\"],\"direction\":[1],\"cursor\":[1],\"visible\":[4],\"isVisible\":[32]}],[1,\"spw-icon\",{\"icon\":[1],\"variant\":[1]}]]],[\"spw-toast\",[[1,\"spw-toast\",{\"variant\":[1],\"heading\":[1],\"message\":[1],\"linkLabel\":[1,\"link-label\"],\"linkHref\":[1,\"link-href\"],\"duration\":[2],\"dismissable\":[4],\"dismissText\":[1,\"dismiss-text\"],\"icon\":[1],\"visible\":[32],\"show\":[64],\"dismiss\":[64]},null,{\"duration\":[{\"durationChanged\":0}]}]]],[\"spw-text-field\",[[65,\"spw-text-field\",{\"value\":[1544],\"type\":[1],\"label\":[1],\"placeholder\":[1],\"disabled\":[4],\"name\":[1],\"min\":[2],\"max\":[2],\"step\":[2],\"minLength\":[2,\"min-length\"],\"maxLength\":[2,\"max-length\"],\"isSearch\":[4,\"is-search\"],\"isClear\":[4,\"is-clear\"],\"required\":[4],\"size\":[1],\"indicator\":[1],\"assistiveText\":[1,\"assistive-text\"],\"error\":[1],\"hint\":[1],\"success\":[1],\"warning\":[1],\"showErrorIcon\":[4,\"show-error-icon\"],\"showHintIcon\":[4,\"show-hint-icon\"],\"showSuccessIcon\":[4,\"show-success-icon\"],\"showWarningIcon\":[4,\"show-warning-icon\"],\"accAriaLabel\":[1,\"acc-aria-label\"],\"accAriaLabelIncrement\":[1,\"acc-aria-label-increment\"],\"accAriaLabelDecrement\":[1,\"acc-aria-label-decrement\"],\"hasControls\":[4,\"has-controls\"],\"hasSubmitButton\":[4,\"has-submit-button\"],\"mask\":[1],\"decimalPrecision\":[2,\"decimal-precision\"],\"tooltipTitle\":[1,\"tooltip-title\"],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipMaxWidth\":[1,\"tooltip-max-width\"],\"tooltipDirection\":[1,\"tooltip-direction\"],\"tooltipCursor\":[1,\"tooltip-cursor\"],\"isClearIconVisible\":[32],\"setFocus\":[64],\"setValue\":[64]},null,{\"value\":[{\"valueChangedHandler\":0}]}]]],[\"spw-checkbox\",[[321,\"spw-checkbox\",{\"disabled\":[4],\"checked\":[1540],\"error\":[4],\"icon\":[1],\"name\":[1],\"value\":[1],\"variant\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"internalChecked\":[32],\"toggleCheckedState\":[64]},null,{\"checked\":[{\"checkedChanged\":0}]}]]],[\"spw-tag\",[[257,\"spw-tag\",{\"variant\":[1],\"surface\":[1],\"hasIcon\":[4,\"has-icon\"],\"icon\":[1],\"href\":[1],\"target\":[1],\"size\":[1],\"iconVariant\":[1,\"icon-variant\"],\"iconPosition\":[1,\"icon-position\"]}]]],[\"spw-accordion_4\",[[257,\"spw-accordion-title\",{\"tag\":[1],\"icon\":[1]}],[257,\"spw-accordion\",{\"background\":[1],\"variant\":[1]},null,{\"background\":[{\"backgroundChanged\":0}],\"variant\":[{\"variantChanged\":0}]}],[257,\"spw-accordion-content\",{\"isOpened\":[32]},[[4,\"accordionToggle\",\"handleAccordionToggle\"]]],[257,\"spw-accordion-item\",{\"defaultOpen\":[4,\"default-open\"],\"variant\":[513],\"isOpen\":[32],\"isMobile\":[32]},null,{\"defaultOpen\":[{\"defaultOpenChanged\":0}]}]]],[\"spw-button_2\",[[257,\"spw-button\",{\"href\":[1],\"target\":[1],\"rel\":[1],\"download\":[1],\"name\":[1],\"value\":[8],\"type\":[1],\"form\":[1],\"variant\":[1],\"surface\":[1],\"disabled\":[4],\"size\":[1],\"accAriaLabel\":[1,\"acc-aria-label\"],\"isIconOnly\":[4,\"is-icon-only\"],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"iconVariant\":[1,\"icon-variant\"],\"isFullWidth\":[516,\"is-full-width\"],\"isFullWidthMobile\":[516,\"is-full-width-mobile\"],\"hideTextOnMobile\":[4,\"hide-text-on-mobile\"],\"isLoading\":[4,\"is-loading\"],\"setFocus\":[64]}],[1,\"spw-loading\",{\"text\":[1],\"surface\":[1],\"size\":[1],\"orientation\":[1]}]]]]"), options);
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
export { defineCustomElements };
|
|
@@ -15,6 +15,8 @@ const SpwHeaderNavigation = class {
|
|
|
15
15
|
this.extraButtonTarget = '_self';
|
|
16
16
|
/** Variant de l'extra button */
|
|
17
17
|
this.extraButtonVariant = 'primary';
|
|
18
|
+
/** Texte du lien "Page d'accueil" dans la navigation mobile */
|
|
19
|
+
this.homepageLabel = "Page d'accueil";
|
|
18
20
|
}
|
|
19
21
|
componentDidLoad() {
|
|
20
22
|
this.updateHeightVar();
|
|
@@ -67,7 +69,7 @@ const SpwHeaderNavigation = class {
|
|
|
67
69
|
};
|
|
68
70
|
}
|
|
69
71
|
render() {
|
|
70
|
-
return (h(Host, { key: '
|
|
72
|
+
return (h(Host, { key: 'cc8b36bb6c54587e51246dba2b2d564712884dde' }, h("nav", { key: '8aabc608c255c4b9dc399598cf69835cef34b5da', class: this.elementClass, ref: el => (this.navEl = el) }, h("div", { key: 'fac953ae5c2cde5bbae25935f0cb8d8b12ed8272', class: "spw-ds-container spw-tw-flex spw-tw-items-center spw-tw-justify-between" }, h("div", { key: 'f4c37ea68a814ba7348b24b0f429621ad0b8caaf', class: "spw-header-navigation__list" }, h("div", { key: '2498432ef6645dcb688310e4498ecbe0b75c8aa3', class: "spw-header-navigation__list-back" }, h("a", { key: '770ff2e852900f662b09ff095173f96c2803c3d4', href: "#", onClick: event => this.redirectToHome(event) }, h("spw-icon", { key: 'b1eda2204772067b8a8084bd4c2b3617e6912287', icon: "fa-chevron-left" }), " ", h("span", { key: 'c0a05bde1b81645addde13496fa49c71944fef3d' }, this.homepageLabel))), h("slot", { key: 'ce4bb4c4afd10d1835c3655ec080146d138babfd' })), this.extraButton && (h("div", { key: '39f6796ce53a36d012bb0d93907359aaa2026780', class: "spw-header-navigation__extra-button spw-header-navigation__extra-button--desktop" }, h("spw-button", { key: 'e19fa4ee5d998c292b91c695673b61fca0b93de0', variant: this.extraButtonVariant, icon: this.extraButtonIcon, href: this.extraButtonHref, target: this.extraButtonTarget, size: "small" }, this.extraButtonText))))), this.extraButton && (h("div", { key: '28d532d75dd97ecf9baa839ef82b45a10552a57c', class: "spw-header-navigation__extra-button-parent spw-header-navigation__extra-button--mobile" }, h("div", { key: '2e2f457c7fd5bccb33e5230fc9c7bb3fb5de9e9c', class: "spw-ds-container" }, h("div", { key: 'debb676659f4bf665fd54b97ba939cff3cd4bd91', class: "spw-header-navigation__extra-button spw-header-navigation__extra-button--mobile" }, h("spw-button", { key: 'bbf06e4972a91addb151a33c03f13191149b725a', "is-full-width": "true", variant: this.extraButtonVariant, icon: this.extraButtonIcon, href: this.extraButtonHref, target: this.extraButtonTarget, size: "small" }, this.extraButtonText)))))));
|
|
71
73
|
}
|
|
72
74
|
get el() { return getElement(this); }
|
|
73
75
|
};
|