mtrl 0.4.4 → 0.4.5

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.
@@ -1,4 +1,4 @@
1
- import { BaseComponent, ElementComponent } from '../../../core/compose/component';
1
+ import { BaseComponent, ElementComponent } from "../../../core/compose/component";
2
2
  /**
3
3
  * Extended element component with input field
4
4
  */
@@ -39,6 +39,10 @@ export interface TextInputConfig {
39
39
  * Initial input value
40
40
  */
41
41
  value?: string;
42
+ /**
43
+ * Placeholder attribute
44
+ */
45
+ placeholder?: string;
42
46
  [key: string]: any;
43
47
  }
44
48
  /**