@dsivd/prestations-ng 15.3.0 → 15.3.1-beta3
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 +15 -1
- package/dsivd-prestations-ng-v15.3.1-beta3.tgz +0 -0
- package/esm2020/directives/currency-formatter.directive.mjs +1 -1
- package/esm2020/foehn-help-modal/foehn-help-modal.component.mjs +3 -3
- package/esm2020/foehn-help-modal/foehn-help-modal.type.mjs +1 -1
- package/esm2020/foehn-input/foehn-input-email.component.mjs +8 -6
- package/esm2020/foehn-input/foehn-input-hidden.component.mjs +3 -3
- package/esm2020/foehn-input/foehn-input-number.component.mjs +4 -3
- package/esm2020/foehn-input/foehn-input-password.component.mjs +3 -3
- package/esm2020/foehn-input/foehn-input-phone.component.mjs +3 -3
- package/esm2020/foehn-input/foehn-input-text.component.mjs +3 -3
- package/esm2020/foehn-input/foehn-input.component.mjs +3 -8
- package/esm2020/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.mjs +3 -6
- package/esm2020/sdk-dictionary/default-dictionary.mjs +3 -2
- package/fesm2015/dsivd-prestations-ng.mjs +25 -30
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +25 -30
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-help-modal/foehn-help-modal.type.d.ts +3 -0
- package/foehn-input/foehn-input.component.d.ts +3 -4
- package/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.d.ts +1 -2
- package/package.json +1 -1
- package/dsivd-prestations-ng-v15.3.0.tgz +0 -0
|
@@ -3,6 +3,7 @@ import { NgModel } from '@angular/forms';
|
|
|
3
3
|
import { FormError } from '../form-error';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { ValidationHandlerService } from '../validation/validation-handler.service';
|
|
6
|
+
import { HelpModal } from '../foehn-help-modal/foehn-help-modal.type';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare const GESDEM_MAX_DATA_LENGTH = 10000;
|
|
8
9
|
export declare abstract class FoehnInputComponent<T> implements OnInit, OnDestroy {
|
|
@@ -52,9 +53,7 @@ export declare abstract class FoehnInputComponent<T> implements OnInit, OnDestro
|
|
|
52
53
|
* https://developer.mozilla.org/fr/docs/Web/HTML/Global_attributes/autocapitalize
|
|
53
54
|
*/
|
|
54
55
|
autocapitalize: string;
|
|
55
|
-
|
|
56
|
-
helpModalTitle: string;
|
|
57
|
-
helpModalContent: string;
|
|
56
|
+
helpModal: HelpModal;
|
|
58
57
|
inputModelList: QueryList<NgModel>;
|
|
59
58
|
inputElement: ElementRef;
|
|
60
59
|
subComponents: QueryList<FoehnInputComponent<any>>;
|
|
@@ -114,5 +113,5 @@ export declare abstract class FoehnInputComponent<T> implements OnInit, OnDestro
|
|
|
114
113
|
protected isEmpty(data: any): boolean;
|
|
115
114
|
protected triggerUserInput(value: T): void;
|
|
116
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnInputComponent<any>, never>;
|
|
117
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FoehnInputComponent<any>, never, never, { "id": "id"; "required": "required"; "label": "label"; "isLabelSrOnly": "isLabelSrOnly"; "helpText": "helpText"; "name": "name"; "pattern": "pattern"; "labelStyleModifier": "labelStyleModifier"; "customErrors": "customErrors"; "maxlength": "maxlength"; "overrideGesdemMaxlength": "overrideGesdemMaxlength"; "min": "min"; "max": "max"; "autocomplete": "autocomplete"; "disabled": "disabled"; "preventPaste": "preventPaste"; "clearButton": "clearButton"; "excludeFromErrorSummary": "excludeFromErrorSummary"; "hideNotRequiredExtraLabel": "hideNotRequiredExtraLabel"; "isErrorInherited": "isErrorInherited"; "showErrorWhenDisabled": "showErrorWhenDisabled"; "autocapitalize": "autocapitalize"; "
|
|
116
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FoehnInputComponent<any>, never, never, { "id": "id"; "required": "required"; "label": "label"; "isLabelSrOnly": "isLabelSrOnly"; "helpText": "helpText"; "name": "name"; "pattern": "pattern"; "labelStyleModifier": "labelStyleModifier"; "customErrors": "customErrors"; "maxlength": "maxlength"; "overrideGesdemMaxlength": "overrideGesdemMaxlength"; "min": "min"; "max": "max"; "autocomplete": "autocomplete"; "disabled": "disabled"; "preventPaste": "preventPaste"; "clearButton": "clearButton"; "excludeFromErrorSummary": "excludeFromErrorSummary"; "hideNotRequiredExtraLabel": "hideNotRequiredExtraLabel"; "isErrorInherited": "isErrorInherited"; "showErrorWhenDisabled": "showErrorWhenDisabled"; "autocapitalize": "autocapitalize"; "helpModal": "helpModal"; "model": "model"; }, { "modelChange": "modelChange"; "userInput": "userInput"; "blurHandler": "blur"; "focusHandler": "focus"; }, never>;
|
|
118
117
|
}
|
|
@@ -15,7 +15,6 @@ export declare class FoehnMultiselectAutocompleteComponent extends FoehnAutocomp
|
|
|
15
15
|
* Defaults to `label`
|
|
16
16
|
*/
|
|
17
17
|
elementBadgeLabel: any;
|
|
18
|
-
itemHeightInSuggestionListInPx: number;
|
|
19
18
|
autocompleteInputValue: string;
|
|
20
19
|
showEmptyListMessage: boolean;
|
|
21
20
|
srAnnouncements: string;
|
|
@@ -48,5 +47,5 @@ export declare class FoehnMultiselectAutocompleteComponent extends FoehnAutocomp
|
|
|
48
47
|
private showAlertMessageAndHideAutocomplete;
|
|
49
48
|
private manageScreenReaderAnnouncement;
|
|
50
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnMultiselectAutocompleteComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnMultiselectAutocompleteComponent, "foehn-multiselect-autocomplete", never, { "elementBadgeLabel": "elementBadgeLabel"; "
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnMultiselectAutocompleteComponent, "foehn-multiselect-autocomplete", never, { "elementBadgeLabel": "elementBadgeLabel"; "defaultElementValues": "defaultElementValues"; "defaultElementValue": "defaultElementValue"; }, {}, never, never>;
|
|
52
51
|
}
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"ng-update": {
|
|
37
37
|
"migrations": "./schematics/migration-collection.json"
|
|
38
38
|
},
|
|
39
|
-
"version": "15.3.
|
|
39
|
+
"version": "15.3.1-beta3",
|
|
40
40
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
41
41
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
42
42
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
Binary file
|