@@ -160,49 +160,49 @@ For the `NcSelect` component, all events will be passed through. Please see the
160160 <NcDateTimePicker
161161 v-if =" datePickerType"
162162 ref =" datetimepicker"
163- :model-value =" modelValue"
163+ :modelValue =" modelValue"
164164 style =" z-index : 99999999999 ;"
165165 :placeholder =" text"
166166 :disabled =" disabled"
167167 :type =" datePickerType"
168- :input-class =" ['mx-input', { focusable: isFocusable }]"
168+ :inputClass =" ['mx-input', { focusable: isFocusable }]"
169169 class =" action-input__datetimepicker"
170- append-to-body
170+ appendToBody
171171 v-bind =" $attrs"
172172 @update:model-value =" onUpdateModelValue" />
173173
174174 <NcDateTimePickerNative
175175 v-else-if =" isNativePicker"
176176 :id =" idNativeDateTimePicker"
177- :model-value =" modelValue"
177+ :modelValue =" modelValue"
178178 :label =" label"
179179 :type =" nativeDatePickerType"
180- :input-class =" { focusable: isFocusable }"
180+ :inputClass =" { focusable: isFocusable }"
181181 class =" action-input__datetimepicker"
182182 v-bind =" $attrs"
183183 @update:model-value =" onUpdateModelValue" />
184184
185185 <NcSelect
186186 v-else-if =" isMultiselectType"
187- :model-value =" modelValue"
187+ :modelValue =" modelValue"
188188 :placeholder =" text"
189189 :disabled =" disabled"
190- :append-to-body =" false"
191- :input-class =" { focusable: isFocusable }"
190+ :appendToBody =" false"
191+ :inputClass =" { focusable: isFocusable }"
192192 class =" action-input__multi"
193193 v-bind =" $attrs"
194194 @update:model-value =" onUpdateModelValue" />
195195
196196 <NcPasswordField
197197 v-else-if =" type === 'password'"
198198 :id =" inputId"
199- :model-value =" modelValue"
199+ :modelValue =" modelValue"
200200 :label =" label"
201- :label-outside =" !label || labelOutside"
201+ :labelOutside =" !label || labelOutside"
202202 :placeholder =" text"
203203 :disabled =" disabled"
204- :input-class =" { focusable: isFocusable }"
205- :show-trailing-button =" showTrailingButton && !disabled"
204+ :inputClass =" { focusable: isFocusable }"
205+ :showTrailingButton =" showTrailingButton && !disabled"
206206 v-bind =" $attrs"
207207 @update:model-value =" onUpdateModelValue" />
208208
@@ -217,7 +217,7 @@ For the `NcSelect` component, all events will be passed through. Please see the
217217 <div class =" action-input__input-container" >
218218 <NcColorPicker
219219 id =" inputId"
220- :model-value =" modelValue"
220+ :modelValue =" modelValue"
221221 class =" colorpicker__trigger"
222222 v-bind =" $attrs"
223223 @update:model-value =" onUpdateModelValue"
@@ -233,16 +233,16 @@ For the `NcSelect` component, all events will be passed through. Please see the
233233 <NcTextField
234234 v-else
235235 :id =" inputId"
236- :model-value =" modelValue"
236+ :modelValue =" modelValue"
237237 :label =" label"
238- :label-outside =" !label || labelOutside"
238+ :labelOutside =" !label || labelOutside"
239239 :placeholder =" text"
240240 :disabled =" disabled"
241- :input-class =" { focusable: isFocusable }"
241+ :inputClass =" { focusable: isFocusable }"
242242 :type =" type"
243- trailing-button-icon =" arrowRight"
244- :trailing-button-label =" trailingButtonLabel"
245- :show-trailing-button =" showTrailingButton && !disabled"
243+ trailingButtonIcon =" arrowRight"
244+ :trailingButtonLabel =" trailingButtonLabel"
245+ :showTrailingButton =" showTrailingButton && !disabled"
246246 v-bind =" $attrs"
247247 @trailing-button-click =" $refs.form.requestSubmit()"
248248 @update:model-value =" onUpdateModelValue" />
0 commit comments