@webilix/ngx-form-m3 0.0.38 → 0.0.40
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
|
@@ -142,6 +142,7 @@ interface IInputDate extends Omit<IInput, 'english' | 'value' | 'autoFocus'> {
|
|
|
142
142
|
readonly value?: Date | null;
|
|
143
143
|
readonly minDate?: Date | 'NOW';
|
|
144
144
|
readonly maxDate?: Date | 'NOW';
|
|
145
|
+
readonly format?: string;
|
|
145
146
|
}
|
|
146
147
|
|
|
147
148
|
interface IInputEmail extends Omit<IInput, 'english'> {
|
|
@@ -171,6 +172,7 @@ interface IInputItemList extends Omit<IInput, 'value' | 'optional'> {
|
|
|
171
172
|
readonly maxCount?: number;
|
|
172
173
|
readonly disableSort?: boolean;
|
|
173
174
|
readonly allowDuplicates?: boolean;
|
|
175
|
+
readonly placeholder?: string;
|
|
174
176
|
}
|
|
175
177
|
|
|
176
178
|
interface IInputMobile extends Omit<IInput, 'english'> {
|
|
@@ -183,6 +185,7 @@ interface IInputMoment extends Omit<IInput, 'english' | 'value' | 'autoFocus'> {
|
|
|
183
185
|
readonly value?: Date | null;
|
|
184
186
|
readonly minDate?: Date | 'NOW';
|
|
185
187
|
readonly maxDate?: Date | 'NOW';
|
|
188
|
+
readonly format?: string;
|
|
186
189
|
}
|
|
187
190
|
|
|
188
191
|
interface IInputMultiSelect extends Omit<IInput, 'value' | 'optional' | 'autoFocus'> {
|
|
@@ -225,6 +228,7 @@ interface IInputOptionList extends Omit<IInput, 'value' | 'optional'> {
|
|
|
225
228
|
readonly maxCount?: number;
|
|
226
229
|
readonly disableSort?: boolean;
|
|
227
230
|
readonly allowDuplicates?: boolean;
|
|
231
|
+
readonly placeholder?: string;
|
|
228
232
|
}
|
|
229
233
|
|
|
230
234
|
interface IInputPassword extends Omit<IInput, 'english' | 'value'> {
|