@festo-ui/angular 5.0.0-dev.120 → 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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@festo-ui/angular",
3
- "version": "5.0.0-dev.120",
3
+ "version": "5.0.0-dev.122",
4
4
  "author": "Festo UI (styleguide@festo.com)",
5
5
  "license": "apache-2.0",
6
6
  "description": "CSS framework and utils to build FESTO web applications",