@@ -160,51 +160,51 @@ 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 "
172- @update :model-value =" onUpdateModelValue " />
172+ @update :modelValue =" 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 "
183- @update :model-value =" onUpdateModelValue " />
183+ @update :modelValue =" 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 "
194- @update :model-value =" onUpdateModelValue " />
194+ @update :modelValue =" 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 "
207- @update :model-value =" onUpdateModelValue " />
207+ @update :modelValue =" onUpdateModelValue " />
208208
209209 <div v-else-if =" type === 'color'" class =" action-input__container" >
210210 <label
@@ -217,10 +217,10 @@ 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 "
223- @update :model-value =" onUpdateModelValue "
223+ @update :modelValue =" onUpdateModelValue "
224224 @submit =" $refs .form .requestSubmit ()" >
225225 <button
226226 class =" colorpicker__preview"
@@ -233,19 +233,19 @@ 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 "
247- @trailing-button-click =" $refs .form .requestSubmit ()"
248- @update :model-value =" onUpdateModelValue " />
247+ @trailingButtonClick =" $refs .form .requestSubmit ()"
248+ @update :modelValue =" onUpdateModelValue " />
249249 </div >
250250 </div >
251251 </form >
0 commit comments