@dsivd/prestations-ng 14.5.20 → 14.5.23-beta1

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +11 -2
  2. package/UPGRADING_V14.md +8 -11
  3. package/bundles/dsivd-prestations-ng.umd.js +464 -106
  4. package/bundles/dsivd-prestations-ng.umd.js.map +1 -1
  5. package/dsivd-prestations-ng-v14.5.23-beta1.tgz +0 -0
  6. package/esm2015/foehn-checkables/foehn-checkable-group.component.js +11 -3
  7. package/esm2015/foehn-date-picker/foehn-date-picker.component.js +2 -2
  8. package/esm2015/foehn-input/foehn-input-email.component.js +2 -2
  9. package/esm2015/foehn-input/foehn-input-hidden.component.js +2 -2
  10. package/esm2015/foehn-input/foehn-input-number.component.js +2 -2
  11. package/esm2015/foehn-input/foehn-input-password.component.js +2 -2
  12. package/esm2015/foehn-input/foehn-input-phone.component.js +2 -2
  13. package/esm2015/foehn-input/foehn-input-text.component.js +2 -2
  14. package/esm2015/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.js +287 -0
  15. package/esm2015/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.module.js +42 -0
  16. package/esm2015/foehn-status-progress-bar/foehn-status-progress-bar.component.js +2 -4
  17. package/esm2015/foehn-upload/foehn-picture-upload/foehn-picture-upload.component.js +2 -2
  18. package/esm2015/index.js +4 -1
  19. package/esm2015/sdk-dictionary/default-dictionary.js +12 -2
  20. package/esm2015/sdk-recaptcha/grecaptcha/grecaptcha.component.js +2 -2
  21. package/fesm2015/dsivd-prestations-ng.js +428 -104
  22. package/fesm2015/dsivd-prestations-ng.js.map +1 -1
  23. package/foehn-checkables/foehn-checkable-group.component.d.ts +3 -2
  24. package/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.d.ts +47 -0
  25. package/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.module.d.ts +13 -0
  26. package/index.d.ts +2 -0
  27. package/package.json +1 -1
  28. package/sdk-recaptcha/grecaptcha/grecaptcha.component.d.ts +1 -1
  29. package/dsivd-prestations-ng-v14.5.20.tgz +0 -0
package/CHANGELOG.md CHANGED
@@ -25,14 +25,23 @@ 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
+
29
+ ## [14.5.22]
30
+ - [grecaptcha.component.ts](projects/prestations-ng/src/sdk-recaptcha/grecaptcha/grecaptcha.component.ts)
31
+ - updated url to call recaptcha.net instead of google.com
32
+
33
+ ## [14.5.21]
34
+ - [foehn-status-progress-bar.module.ts](projects/prestations-ng/src/foehn-status-progress-bar/foehn-status-progress-bar.module.ts)
35
+ - By default, `foehn-status-progress-bar` is visible
36
+
28
37
  ## [14.5.20]
29
38
  - [foehn-status-progress-bar.module.ts](projects/prestations-ng/src/foehn-status-progress-bar/foehn-status-progress-bar.module.ts)
30
39
  - Add foehn-status-progress-bar component. Component used in foehn-page and can be hidden with `statusProgressBarHidden` input
31
40
 
32
41
  ## [14.5.19]
33
42
  ### Added
34
- - [foehn-confirm-modal.component.html](projects/prestations-ng/src/foehn-confirm-modal/foehn-confirm-modal.component.html)
35
- - Add closeable on FoehnConfirmModalContent. Default value is true. If false, modal has to be closed by the yes and no buttons.
43
+ - [foehn-confirm-modal.component.html](projects/prestations-ng/src/foehn-confirm-modal/foehn-confirm-modal.component.html)
44
+ - Add closeable on FoehnConfirmModalContent. Default value is true. If false, modal has to be closed by the yes and no buttons.
36
45
 
37
46
  ## [14.5.18]
38
47
  ### Fixed
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 @dsivd/prestations-ng@14
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 @dsivd/prestations-ng@14
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
  ```