@festo-ui/angular 9.0.0-dev.694 → 9.0.0-dev.696
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/index.d.ts
CHANGED
|
@@ -992,6 +992,10 @@ declare class FngTextInputComponent implements OnInit, ControlValueAccessor {
|
|
|
992
992
|
* The text input label.
|
|
993
993
|
*/
|
|
994
994
|
label: string;
|
|
995
|
+
/**
|
|
996
|
+
* When true, shows validation state icons (checkmark for valid, X for invalid).
|
|
997
|
+
*/
|
|
998
|
+
showValidationIcons: boolean;
|
|
995
999
|
/**
|
|
996
1000
|
* A string specifying the type of control to render.
|
|
997
1001
|
*/
|
|
@@ -1083,7 +1087,7 @@ declare class FngTextInputComponent implements OnInit, ControlValueAccessor {
|
|
|
1083
1087
|
*/
|
|
1084
1088
|
setDisabledState(isDisabled: boolean): void;
|
|
1085
1089
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngTextInputComponent, never>;
|
|
1086
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FngTextInputComponent, "fng-text-input", never, { "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "step": { "alias": "step"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "required": { "alias": "required"; "required": false; }; "error": { "alias": "error"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; }, {}, never, [".fng-hint", ".fng-error"], true, never>;
|
|
1090
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngTextInputComponent, "fng-text-input", never, { "label": { "alias": "label"; "required": false; }; "showValidationIcons": { "alias": "showValidationIcons"; "required": false; }; "type": { "alias": "type"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "step": { "alias": "step"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "required": { "alias": "required"; "required": false; }; "error": { "alias": "error"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; }, {}, never, [".fng-hint", ".fng-error"], true, never>;
|
|
1087
1091
|
}
|
|
1088
1092
|
|
|
1089
1093
|
interface FngPromptData {
|
package/package.json
CHANGED