@webilix/ngx-form-m3 0.0.38 → 0.0.39
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
|
@@ -171,6 +171,7 @@ interface IInputItemList extends Omit<IInput, 'value' | 'optional'> {
|
|
|
171
171
|
readonly maxCount?: number;
|
|
172
172
|
readonly disableSort?: boolean;
|
|
173
173
|
readonly allowDuplicates?: boolean;
|
|
174
|
+
readonly placeholder?: string;
|
|
174
175
|
}
|
|
175
176
|
|
|
176
177
|
interface IInputMobile extends Omit<IInput, 'english'> {
|
|
@@ -225,6 +226,7 @@ interface IInputOptionList extends Omit<IInput, 'value' | 'optional'> {
|
|
|
225
226
|
readonly maxCount?: number;
|
|
226
227
|
readonly disableSort?: boolean;
|
|
227
228
|
readonly allowDuplicates?: boolean;
|
|
229
|
+
readonly placeholder?: string;
|
|
228
230
|
}
|
|
229
231
|
|
|
230
232
|
interface IInputPassword extends Omit<IInput, 'english' | 'value'> {
|