@festo-ui/angular 5.0.0-dev.119 → 5.0.0-dev.122
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/esm2020/lib/forms/text-input/text-input.component.mjs +7 -7
- package/esm2020/lib/modals/prompt/prompt.component.mjs +5 -3
- package/fesm2015/festo-ui-angular.mjs +205 -204
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +205 -204
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/lib/forms/text-input/text-input.component.d.ts +6 -6
- package/lib/modals/prompt/prompt.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -18,11 +18,11 @@ export declare class FngTextInputComponent implements OnInit, ControlValueAccess
|
|
|
18
18
|
get readonly(): boolean;
|
|
19
19
|
set readonly(value: boolean);
|
|
20
20
|
private innerReadonly;
|
|
21
|
-
step: number;
|
|
22
|
-
min: number;
|
|
23
|
-
max: number;
|
|
24
|
-
tabindex: number;
|
|
25
|
-
placeholder: string;
|
|
21
|
+
step: number | undefined;
|
|
22
|
+
min: number | undefined;
|
|
23
|
+
max: number | undefined;
|
|
24
|
+
tabindex: number | undefined;
|
|
25
|
+
placeholder: string | undefined;
|
|
26
26
|
name: string;
|
|
27
27
|
/**
|
|
28
28
|
* When true the control's disabled attribute is set
|
|
@@ -53,7 +53,7 @@ export declare class FngTextInputComponent implements OnInit, ControlValueAccess
|
|
|
53
53
|
/**
|
|
54
54
|
* Hint description when valid.
|
|
55
55
|
*/
|
|
56
|
-
hint: string;
|
|
56
|
+
hint: string | undefined;
|
|
57
57
|
inputElement: ElementRef | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* When true the text input has focus.
|
|
@@ -13,6 +13,7 @@ export interface FngPromptData {
|
|
|
13
13
|
cancel?: string;
|
|
14
14
|
ok?: string;
|
|
15
15
|
value?: string;
|
|
16
|
+
placeholder?: string;
|
|
16
17
|
validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null;
|
|
17
18
|
asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null;
|
|
18
19
|
}
|
package/package.json
CHANGED