@dsivd/prestations-ng 14.5.20 → 14.5.21
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/CHANGELOG.md +4 -0
- package/UPGRADING_V14.md +8 -11
- package/bundles/dsivd-prestations-ng.umd.js +1 -3
- package/bundles/dsivd-prestations-ng.umd.js.map +1 -1
- package/dsivd-prestations-ng-v14.5.21.tgz +0 -0
- package/esm2015/foehn-status-progress-bar/foehn-status-progress-bar.component.js +2 -4
- package/fesm2015/dsivd-prestations-ng.js +1 -3
- package/fesm2015/dsivd-prestations-ng.js.map +1 -1
- package/package.json +1 -1
- package/dsivd-prestations-ng-v14.5.20.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -25,6 +25,10 @@ A change is considered **breaking** if you have to change your code or update yo
|
|
|
25
25
|
- adding a new constructor argument in one of our service is OK, if you just have to update your constructor's signature and your call to `super(...)`
|
|
26
26
|
|
|
27
27
|
---
|
|
28
|
+
## [14.5.21]
|
|
29
|
+
- [foehn-status-progress-bar.module.ts](projects/prestations-ng/src/foehn-status-progress-bar/foehn-status-progress-bar.module.ts)
|
|
30
|
+
- By default, `foehn-status-progress-bar` is visible
|
|
31
|
+
|
|
28
32
|
## [14.5.20]
|
|
29
33
|
- [foehn-status-progress-bar.module.ts](projects/prestations-ng/src/foehn-status-progress-bar/foehn-status-progress-bar.module.ts)
|
|
30
34
|
- Add foehn-status-progress-bar component. Component used in foehn-page and can be hidden with `statusProgressBarHidden` input
|
package/UPGRADING_V14.md
CHANGED
|
@@ -13,20 +13,19 @@ at this address:
|
|
|
13
13
|
### When having migrated to ESLint
|
|
14
14
|
```bash
|
|
15
15
|
yarn global add @angular/cli@12
|
|
16
|
+
ng update @angular/core@12 @angular/cli@12
|
|
16
17
|
ng update @angular-eslint/builder@12
|
|
17
18
|
ng update @angular-eslint/eslint-plugin @angular-eslint/eslint-plugin-template @angular-eslint/template-parser
|
|
18
|
-
ng update eslint
|
|
19
19
|
ng update eslint-plugin-import eslint-plugin-jasmine eslint-plugin-jsdoc eslint-plugin-prefer-arrow
|
|
20
20
|
ng update eslint-plugin-rxjs@3
|
|
21
21
|
ng update @typescript-eslint/eslint-plugin @typescript-eslint/parser
|
|
22
|
+
ng update eslint
|
|
22
23
|
ng update rxjs@6
|
|
23
24
|
ng update ng-http-loader@10
|
|
24
|
-
ng update @
|
|
25
|
-
ng update \
|
|
26
|
-
@types/jasmine \
|
|
27
|
-
@types/node@15 \
|
|
28
|
-
ts-node@10
|
|
25
|
+
ng update @types/jasmine @types/node@15 ts-node@10
|
|
29
26
|
yarn add dayjs@1
|
|
27
|
+
yarn add ngx-image-cropper@5
|
|
28
|
+
ng update @dsivd/prestations-ng@14
|
|
30
29
|
# Remove your resolutions in package.json before executing 'yarn upgrade'
|
|
31
30
|
yarn upgrade
|
|
32
31
|
```
|
|
@@ -37,12 +36,10 @@ yarn global add @angular/cli@12
|
|
|
37
36
|
ng update @angular/core@12 @angular/cli@12
|
|
38
37
|
ng update rxjs@6
|
|
39
38
|
ng update ng-http-loader@10
|
|
40
|
-
ng update @
|
|
41
|
-
ng update \
|
|
42
|
-
@types/jasmine \
|
|
43
|
-
@types/node@15 \
|
|
44
|
-
ts-node@10
|
|
39
|
+
ng update @types/jasmine @types/node@15 ts-node@10
|
|
45
40
|
yarn add dayjs@1
|
|
41
|
+
yarn add ngx-image-cropper@5
|
|
42
|
+
ng update @dsivd/prestations-ng@14
|
|
46
43
|
# Remove your resolutions in package.json before executing 'yarn upgrade'
|
|
47
44
|
yarn upgrade
|
|
48
45
|
```
|
|
@@ -5273,9 +5273,7 @@
|
|
|
5273
5273
|
this.isTransmitted = rxjs.merge(rxjs.of((_a = this.gesdemHand.lastResponse) === null || _a === void 0 ? void 0 : _a.meta), this.gesdemHand.updateFormDataSubject.pipe(operators.map(function () { return _this.gesdemHand.lastResponse.meta; }))).pipe(operators.filter(function (meta) { return !!meta; }), operators.map(function (meta) { return exports.ActionStatut[meta.statut]; }), operators.map(function (statut) { return GesdemStatutUtils.isFinal(statut); }));
|
|
5274
5274
|
}
|
|
5275
5275
|
FoehnStatusProgressBarComponent.prototype.isEnabled = function () {
|
|
5276
|
-
return
|
|
5277
|
-
this.hidden !== undefined &&
|
|
5278
|
-
this.hidden === false);
|
|
5276
|
+
return this.hidden !== true;
|
|
5279
5277
|
};
|
|
5280
5278
|
FoehnStatusProgressBarComponent.prototype.isStepVerificationActive = function () {
|
|
5281
5279
|
return this.navigation.initialized && this.navigation.isLastFormPage();
|