@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.
- package/CHANGELOG.md +11 -2
- package/UPGRADING_V14.md +8 -11
- package/bundles/dsivd-prestations-ng.umd.js +464 -106
- package/bundles/dsivd-prestations-ng.umd.js.map +1 -1
- package/dsivd-prestations-ng-v14.5.23-beta1.tgz +0 -0
- package/esm2015/foehn-checkables/foehn-checkable-group.component.js +11 -3
- package/esm2015/foehn-date-picker/foehn-date-picker.component.js +2 -2
- package/esm2015/foehn-input/foehn-input-email.component.js +2 -2
- package/esm2015/foehn-input/foehn-input-hidden.component.js +2 -2
- package/esm2015/foehn-input/foehn-input-number.component.js +2 -2
- package/esm2015/foehn-input/foehn-input-password.component.js +2 -2
- package/esm2015/foehn-input/foehn-input-phone.component.js +2 -2
- package/esm2015/foehn-input/foehn-input-text.component.js +2 -2
- package/esm2015/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.js +287 -0
- package/esm2015/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.module.js +42 -0
- package/esm2015/foehn-status-progress-bar/foehn-status-progress-bar.component.js +2 -4
- package/esm2015/foehn-upload/foehn-picture-upload/foehn-picture-upload.component.js +2 -2
- package/esm2015/index.js +4 -1
- package/esm2015/sdk-dictionary/default-dictionary.js +12 -2
- package/esm2015/sdk-recaptcha/grecaptcha/grecaptcha.component.js +2 -2
- package/fesm2015/dsivd-prestations-ng.js +428 -104
- package/fesm2015/dsivd-prestations-ng.js.map +1 -1
- package/foehn-checkables/foehn-checkable-group.component.d.ts +3 -2
- package/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.d.ts +47 -0
- package/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.module.d.ts +13 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/sdk-recaptcha/grecaptcha/grecaptcha.component.d.ts +1 -1
- 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
|
-
|
|
35
|
-
|
|
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 @
|
|
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
|
```
|