@ifsworld/granite-components 14.2.0 → 14.2.2
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/carousel/lib/carousel.component.d.ts +18 -3
- package/esm2022/carousel/lib/carousel.component.mjs +102 -8
- package/esm2022/file-upload/lib/file-upload.component.mjs +1 -1
- package/esm2022/lib/input-field/input-field.component.mjs +10 -2
- package/fesm2022/ifsworld-granite-components-carousel.mjs +101 -7
- package/fesm2022/ifsworld-granite-components-carousel.mjs.map +1 -1
- package/fesm2022/ifsworld-granite-components-file-upload.mjs +1 -1
- package/fesm2022/ifsworld-granite-components-file-upload.mjs.map +1 -1
- package/fesm2022/ifsworld-granite-components.mjs +9 -1
- package/fesm2022/ifsworld-granite-components.mjs.map +1 -1
- package/lib/input-field/input-field.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ export declare class GraniteInputFieldComponent implements OnInit, OnChanges {
|
|
|
26
26
|
_passwordField: boolean;
|
|
27
27
|
_currentCharCount: number;
|
|
28
28
|
private _passwordToggled;
|
|
29
|
+
private _lastEmittedValue;
|
|
29
30
|
constructor(_focusMonitor: FocusMonitor);
|
|
30
31
|
ngOnInit(): void;
|
|
31
32
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -36,6 +37,7 @@ export declare class GraniteInputFieldComponent implements OnInit, OnChanges {
|
|
|
36
37
|
private _applyCharacterCount;
|
|
37
38
|
private _getInputElement;
|
|
38
39
|
private _getTextareaElement;
|
|
40
|
+
private _emitValueIfChanged;
|
|
39
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<GraniteInputFieldComponent, never>;
|
|
40
42
|
static ɵcmp: i0.ɵɵComponentDeclaration<GraniteInputFieldComponent, "granite-input-field", ["graniteInputField"], { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "prefixicon": { "alias": "prefixicon"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "countcharacters": { "alias": "countcharacters"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; }, { "valueChange": "valueChange"; }, never, ["[graniteInputSuffixButton]"], false, never>;
|
|
41
43
|
}
|