@dsivd/prestations-ng 19.0.2-beta.4 → 19.0.2-beta.5
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.
|
@@ -5,8 +5,9 @@ Back offices that are behind IAM ACV should migrate to OIDC, IAM headers are now
|
|
|
5
5
|
## ADMIN
|
|
6
6
|
|
|
7
7
|
- You have to request a new VIP for your application (<env>-<deployunit>.etat-de-vaud.ch)
|
|
8
|
-
- i.e. for
|
|
8
|
+
- i.e. for sesamebo (R260429_00018) : https://int-sesame.etat-de-vaud.ch/
|
|
9
9
|
- On IAM side, you have to request a client id / secret on every environment to be used in your configuration
|
|
10
|
+
- i.e. for sesamebo (S260429_00110)
|
|
10
11
|
|
|
11
12
|
## FRONTEND
|
|
12
13
|
|
|
Binary file
|
|
@@ -1667,8 +1667,6 @@ class ComponentError {
|
|
|
1667
1667
|
|
|
1668
1668
|
class FoehnFormComponent {
|
|
1669
1669
|
constructor() {
|
|
1670
|
-
// Class of this input is manually instantiated. This is discouraged and prevents
|
|
1671
|
-
// migration.
|
|
1672
1670
|
this.shouldDisplayAlertSummary = input(true, ...(ngDevMode ? [{ debugName: "shouldDisplayAlertSummary" }] : /* istanbul ignore next */ []));
|
|
1673
1671
|
this.ngFormComponent = viewChild(NgForm, ...(ngDevMode ? [{ debugName: "ngFormComponent" }] : /* istanbul ignore next */ []));
|
|
1674
1672
|
this.childrenInputComponents = contentChildren(FoehnInputComponent, { ...(ngDevMode ? { debugName: "childrenInputComponents" } : /* istanbul ignore next */ {}), descendants: true });
|
|
@@ -8641,7 +8639,7 @@ class FoehnInputAddressComponent extends FoehnInputComponent {
|
|
|
8641
8639
|
if (value) {
|
|
8642
8640
|
// Need to manually load localities because country "modelChange" event does not fire anymore because a signal
|
|
8643
8641
|
// only fires when value has changed
|
|
8644
|
-
if (!this.isOnlySwiss() &&
|
|
8642
|
+
if (!this.isOnlySwiss() && value.country?.iso2Id === SWISS_ISO_ID) {
|
|
8645
8643
|
this.iso2IdSubject.next(SWISS_ISO_ID);
|
|
8646
8644
|
}
|
|
8647
8645
|
this.country = value.country;
|