@dsivd/prestations-ng 16.4.0-beta.5 → 16.4.0-beta.7
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 +5 -0
- package/dsivd-prestations-ng-v16.4.0-beta.7.tgz +0 -0
- package/esm2020/i18n-form.mjs +2 -1
- package/fesm2015/dsivd-prestations-ng.mjs +1 -0
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +1 -0
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/i18n-form.d.ts +1 -0
- package/package.json +1 -1
- package/dsivd-prestations-ng-v16.4.0-beta.5.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -34,11 +34,16 @@
|
|
|
34
34
|
- added `@Input() triggerRecoveryOnFirstSave = false` to set `triggerOnFirstSave` to its `<gesdem-action-recovery-registration>'
|
|
35
35
|
|
|
36
36
|
- [ApplicationInfo](projects/prestations-ng/src/sdk-appinfo/application-info.ts)
|
|
37
|
+
|
|
37
38
|
- added fields to `ApplicationInfo.EtapeInfo` :
|
|
38
39
|
- `lienAcces : string` link to the FO's base url as defined in Catprest
|
|
39
40
|
- `Integer draftDemRetentionDaysPublic : number` conservation duration of draft demands when not connected (in days)
|
|
40
41
|
- `Integer draftDemRetentionDaysConnected : number` conservation duration of draft demands when connected (in days)
|
|
41
42
|
|
|
43
|
+
- [I18NForm](projects/prestations-ng/src/i18n-form.ts)
|
|
44
|
+
- added field `referenceInterne = ''`, since the reference interne can now be set via action recovery, it has to be kept in sync with the form
|
|
45
|
+
- you can use this field to request the user for a reference interne.
|
|
46
|
+
|
|
42
47
|
## [16.3.0] - must be aligned with prestations-be
|
|
43
48
|
|
|
44
49
|
### Added
|
|
Binary file
|
package/esm2020/i18n-form.mjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export class I18nForm {
|
|
2
2
|
constructor() {
|
|
3
3
|
this.language = 'fr';
|
|
4
|
+
this.referenceInterne = '';
|
|
4
5
|
}
|
|
5
6
|
}
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaTE4bi1mb3JtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvcHJlc3RhdGlvbnMtbmcvc3JjL2kxOG4tZm9ybS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLE9BQU8sUUFBUTtJQUFyQjtRQUNJLGFBQVEsR0FBRyxJQUFJLENBQUM7UUFFaEIscUJBQWdCLEdBQUcsRUFBRSxDQUFDO0lBQzFCLENBQUM7Q0FBQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBJMThuRm9ybSB7XG4gICAgbGFuZ3VhZ2UgPSAnZnInO1xuICAgIGFjY2VwdERlY2lzaW9uRWxlY3Ryb25pcXVlOiBib29sZWFuO1xuICAgIHJlZmVyZW5jZUludGVybmUgPSAnJztcbn1cbiJdfQ==
|